This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Claude3 writing back to itself while inventing languages and getting really weird. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
echo "Target architectures: $VALID_ARCHS" | |
find "$APP_PATH" -name '*.framework' -type d | while read -r FRAMEWORK | |
do | |
FILENAME=$(basename "$FRAMEWORK" .framework) | |
FRAMEWORK_EXECUTABLE_NAME=$FILENAME | |
FRAMEWORK_EXECUTABLE_PATH="$FRAMEWORK/$FRAMEWORK_EXECUTABLE_NAME" | |
if ! [[ "$(file "$FRAMEWORK_EXECUTABLE_PATH")" == *"dynamically linked shared library"* ]]; then | |
continue |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
import os, sys | |
sys.path.insert(0, os.path.abspath("..")) | |
sys.path.insert(0, os.path.abspath("../common")) | |
import os | |
import time | |
import numpy as np | |
import glob | |
from scipy import misc, ndimage |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System.Collections.Generic; | |
using UnityEngine; | |
using System.Collections; | |
using UnityEngine.XR.iOS; | |
using System; | |
using System.Runtime.InteropServices; | |
using System.Threading; | |
using Object = System.Object; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#put in your ~/.bash_profile or ~/.profile and source it | |
showmac="ifconfig en0 | grep ether" | |
genmac="sudo ifconfig en0 ether $(openssl rand -hex 6 | sed 's/\(..\)/\1:/g; s/./0/2; s/.$//')" | |
alias newmac="${showmac}; ${genmac}; echo 'switched to'; ${showmac};" | |
#then just run newmac from terminal and reconnect. If need be, clear cookies from your browsers |