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
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
| <plist version="1.0"> | |
| <dict> | |
| <key>items</key> | |
| <array> | |
| <dict> | |
| <key>assets</key> | |
| <array> | |
| <dict> |
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
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>My awesome app</title> | |
| </head> | |
| <body> | |
| <h2>beta builds</h2> | |
| <a href="itms-services://?action=download-manifest&url=http://dl.dropbox.com/u/1001/manifest.plist">Awesome App v 0.0.16</a></body> | |
| <h2>alpha builds</h2> |
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
| [Desktop Entry] | |
| Type=Application | |
| Name=Android Studio | |
| Comment=Android Studio Integrated Development Environment | |
| Icon=/opt/android-studio/bin/androidstudio.ico | |
| Exec=/opt/android-studio/bin/studio.sh | |
| Terminal=false | |
| Categories=Development;IDE;Java;Android |
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
| [Desktop Entry] | |
| Encoding=UTF-8 | |
| Name=Genymotion | |
| Comment=Alternative Android Emulator based on VirtualBox | |
| Exec=/opt/genymotion/genymotion | |
| Icon=/opt/genymotion/icons/icon.png | |
| NoDisplay=false | |
| Terminal=false | |
| Type=Application | |
| Categories=Application;Development; |
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
| # .local/share/applications/eclipse.desktop | |
| [Desktop Entry] | |
| Type=Application | |
| Name=Eclipse | |
| Comment=Eclipse Integrated Development Environment | |
| Icon=/opt/eclipse/icon.xpm | |
| Exec=/opt/eclipse/eclipse | |
| Terminal=false | |
| Categories=Development;IDE;Java; |
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
| server { | |
| listen 80; | |
| server_name server.mydomain.net | |
| root /var/www/app/web; | |
| index index.php; | |
| location ~ \.php$ { | |
| fastcgi_pass 127.0.0.1:9000; | |
| fastcgi_index index.php; | |
| include fastcgi_params; |
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
| ############################################################################# | |
| # current prompt | |
| ############################################################################# | |
| # \d – Current date | |
| # \t – Current time | |
| # \h – Host name | |
| # \# – Command number | |
| # \u – User name | |
| # \W – Current working directory (ie: Desktop/) | |
| # \w – Current working directory, full path (ie: /Users/Admin/Desktop) |
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
| 67 facebook-ios-sdk | |
| 48 Bolts-iOS | |
| 39 AFNetworking | |
| 38 Google-Mobile-Ads-SDK | |
| 38 Reachability (Apple) | |
| 37 Crashlytics | |
| 31 Flurry-iOS-SDK | |
| 30 CocoaPods | |
| 29 GoogleConversionTracking | |
| 26 SDWebImage |
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
| #!/bin/sh | |
| ADB_PATH="/Users/medyo/Library/Android/sdk/platform-tools" | |
| PACKAGE_NAME="com.mobiacube.elbotola.debug" | |
| DB_NAME="default.realm" | |
| DESTINATION_PATH="/Users/Medyo/Desktop/" | |
| NOT_PRESENT="List of devices attached" | |
| ADB_FOUND=`${ADB_PATH}/adb devices | tail -2 | head -1 | cut -f 1 | sed 's/ *$//g'` | |
| if [[ ${ADB_FOUND} == ${NOT_PRESENT} ]]; then | |
| echo "Make sure a device is connected" | |
| else |
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
| var obj = {b: 3, c: 2, a: 1}; | |
| _.sortKeysBy(obj); | |
| // {a: 1, b: 3, c: 2} | |
| _.sortKeysBy(obj, function (value, key) { | |
| return value; | |
| }); | |
| // {a: 1, c: 2, b: 3} |
OlderNewer