- Save
Tests.scptto the folder~/.Xcode/ - Open the folder
~/.Xcode/inTerminal.app - Perform the command
chmod +x ./Tests.scptinTerminal.app - Open
Xcode ➭ Behaviors ➭ Testing Succeeds - Choose
~/.Xcode/Tests.scptin the Run popup - Open
Xcode ➭ Behaviors ➭ Testing Failsand repeat
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
| app id = de.xida.example | |
| install: | |
| adb install yourapk.apk | |
| uninstall: | |
| adb uninstall de.xida.example | |
| kill task | |
| adb shell am force-stop de.xida.example |
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
| // These two need to be declared outside the try/catch | |
| // so that they can be closed in the finally block. | |
| HttpURLConnection urlConnection = null; | |
| BufferedReader reader = null; | |
| // Will contain the raw JSON response as a string. | |
| String forecastJsonStr = null; | |
| try { | |
| // Construct the URL for the OpenWeatherMap query |
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
| Httpconnection connection = null; | |
| BufferedReader reader = null; | |
| String forecastJsonStr = null; | |
| try { | |
| URL url = new URL("http://api.openweathermap.org/data/2.5/forecast/daily?q=94043&mode=json&units=metric&cnt=7"); | |
| connection = (Httpconnection) url.openConnection(); | |
| connection.setRequestMethod("GET"); | |
| connection.connect(); | |
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
| create dummy images | |
| curl -L "http://dummyimage.com/600x400/000/fff&text=DummyImage%20[01-10]" -o image_#1.png | |
| get page headers | |
| curl --head http://google.com | |
| send parameters to page | |
| curl.exe -L -G "http://yoururl.com" --data-urlencode "text=DESIGN6 daily backup started" | |
| send formdata & files to page |
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
| curl -L "https://graph.facebook.com/[1-100000000]/picture?width=160&height=160" -o "facebook_user_#1.jpg" |
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
| /* | |
| Distributed under The MIT License: | |
| http://opensource.org/licenses/mit-license.php | |
| Permission is hereby granted, free of charge, to any person obtaining | |
| a copy of this software and associated documentation files (the | |
| "Software"), to deal in the Software without restriction, including | |
| without limitation the rights to use, copy, modify, merge, publish, | |
| distribute, sublicense, and/or sell copies of the Software, and to |
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
| Windows Registry Editor Version 5.00 | |
| [HKEY_CLASSES_ROOT\Folder\shell\Unity5] | |
| @="" | |
| "Icon"="%ProgramFiles%\\Unity\\Editor\\Unity.exe" | |
| "MUIVerb"="Open as Unity Project" | |
| [HKEY_CLASSES_ROOT\Folder\shell\Unity5\Command] | |
| @="cmd /c start /D\"c:\\Program Files\\Unity\\Editor\\\" Unity.exe -projectPath \"%1\"" |
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
| # Unity generated and a few customs # | |
| # ================================= # | |
| Temp/* | |
| Library/* | |
| Build/* | |
| Obj/* | |
| WebBuild/* | |
| WindowsBuild/* | |
| # ===================================== # |
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
| //disable warning:"PerformSelector may cause a leak because its selector is unknown" | |
| #pragma clang diagnostic push | |
| #pragma clang diagnostic ignored "-Warc-performSelector-leaks" | |
| [self.delegate performSelector:self.selector]; | |
| #pragma clang diagnostic pop | |
OlderNewer