This file contains 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/bash | |
echo "processing $1 and $2" | |
PNG0=$1 ## png0 <----- first image should be the BLACKEST | |
PNG1=$2 ## png1 <----- second image should be the WHITEST | |
#PNG2=$3 ## png2 <----- third - todo - this could be an opaque fg with tranparent bg | |
bg_size=`identify -format '%wx%h' "$1"` | |
#echo "bg is $bg_size" | |
magick convert $PNG1 -resize $bg_size $PNG1 | |
magick convert $PNG0 -channel RGBA -matte -colorspace gray -normalize -ordered-dither o8x8 gray_$PNG0 | |
magick convert $PNG1 -channel RGBA -matte -colorspace gray -normalize -ordered-dither o8x8 gray_$PNG1 |
This file contains 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
cd ios | |
rm -rf ./Pods ./Podfile.lokck | |
pod cache clean —all | |
pod install |
This file contains 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
ng serve --disableHostCheck=true --host=192.168.1.212 --proxy-config=proxy.conf.json --base-href '/phone/' |
This file contains 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
open -a "Google Chrome" --args --disable-web-security --user-data-dir | |
open -a "Microsoft Edge" --args --disable-web-security --user-data-dir |
This file contains 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
printf "p *(char*)(void(*)())AudioDeviceDuck=0xc3\nq" | lldb -n QQ |