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
let ๐ = "๐ถ๐บ๐ฑ๐ญ๐น๐ฐ๐ธ๐ฏ๐จ๐ป๐ท๐ฝ๐ฎ๐๐ต๐๐ด๐๐๐ผ๐ง๐ฆ๐ค๐ฅ๐ฃ๐๐๐ข๐๐๐๐๐๐๐๐ ๐๐ฌ๐ณ๐๐๐๐๐๐ ๐๐๐๐๐๐๐๐๐๐ฒ๐ก๐๐ซ๐ช๐๐๐ฉ" | |
var ๐ข: [String] = [] | |
for ๐พ in ๐.characters { | |
let ๐ = String(๐พ) | |
๐ข.append(๐ + ๐) | |
} | |
๐ข |
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
#run this script from Product page in your project Derived Data folder | |
framework_name="${$(basename $(find ./Debug-iphoneos -type d -name '*.framework' -maxdepth 1))%.*}" && \ | |
cp -R Debug-iphoneos/$framework_name.framework ./$framework_name.framework && \ | |
lipo -create -output "$framework_name.framework/$framework_name" \ | |
"Debug-iphonesimulator/$framework_name.framework/$framework_name" \ | |
"Debug-iphoneos/$framework_name.framework/$framework_name" |
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 bash | |
if [ -n "$1" ] | |
then | |
if grep "ide.mac.useNativeClipboard=" "$1"/Contents/bin/idea.properties > /dev/null | |
then | |
if grep "ide.mac.useNativeClipboard=false" "$1"/Contents/bin/idea.properties > /dev/null | |
then | |
echo "ide.mac.useNativeClipboard=false found -> change to true" |
NewerOlder