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
import Foundation | |
import UIKit | |
class Recursion: NSObject { | |
internal var zundoko = [String]() | |
internal var item: [String]! | |
internal var decision: String! | |
internal var count: Int! |
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
#if [ "${CONFIGURATION}" = "Release" ]; then | |
xcrun -sdk iphoneos PackageApplication \ | |
"${BUILD_DIR}/${CONFIGURATION}${EFFECTIVE_PLATFORM_NAME}"/"${WRAPPER_NAME}" \ | |
-o ~/Downloads/"${PRODUCT_NAME}".ipa \ | |
#--embed ~/Library/MobileDevice/Provisioning\ Profiles/<プロファイルのファイル名> | |
curl -F "token=<API key>" -F "file=@/Users/<Use名>/Downloads/${PRODUCT_NAME}.ipa" -F "message=<メッセージ>" https://deploygate.com/api/users/<deployGateのユーザー名>/apps | |
#fi |
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
import java.util.Random; | |
class PPAP { | |
enum PPAP_STATE { | |
UNKNOWN, | |
PEN, | |
PINEAPPLE, | |
APPLE, | |
PPAP; |
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
Show hidden characters
{ | |
"file_regex": "^(...*?):([0-9]*):?([0-9]*)", | |
"selector": ["source.kt"], | |
"shell_cmd": "gradle -Pmain=\"${file_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
{ | |
"file_regex": "^(...*?):([0-9]*):?([0-9]*)", | |
"selector": ["source.swift"], | |
"shell_cmd": "swift $file_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
{ | |
"selector": ["source.kts"], | |
"shell_cmd": "kotlinc -script $file_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
import java.io.BufferedReader; | |
import java.io.File; | |
import java.io.FileReader; | |
import java.io.FileNotFoundException; | |
import java.io.InputStream; | |
import java.io.InputStreamReader; | |
import java.io.OutputStream; | |
import java.io.PrintStream; | |
import java.util.ArrayList; |
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
/* | |
## Usage | |
$ javac T2bf.java; java T2bf helloworld.tb hello.tt | |
*/ | |
class T2bf extends Text2Brainfuck { | |
public static void main(String[] args) { | |
T2bf tb = new T2bf(args); | |
} | |
public T2bf(String[] args) { |
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
import java.util.* | |
val ppap = listOf("I have a ✏️", "I have a 🍍", "I have an 🍎", "I have a ✏️") | |
fun getPPAP(count : Int) : String { | |
println(ppap[count]) | |
return ppap[count] | |
} | |
fun compile() { |
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
{ | |
"file_regex": "^(...*?):([0-9]*):?([0-9]*)", | |
"selector": ["source.java"], | |
"shell_cmd": "gradle -Pmain=\"${file_base_name}\"" | |
} |
OlderNewer