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
// ==UserScript== | |
// @name GitHub without signup | |
// @version 0.0.3 | |
// @namespace https://gist.githubusercontent.com/timoa/ | |
// @downloadURL https://gist.github.com/timoa/fb22f3ea14500c074e4d9570c9c5e1ad/raw/67d5bfe79a97f460ed20f8f278f1c73942f8f959/Github_without_signup.user.js | |
// @description Allows to browse a GitHub profiles without the signup box on top | |
// @author Timoa | |
// @include http*://github.com/* | |
// @license MIT | |
// ==/UserScript== |
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
https://code.visualstudio.com/docs/setup/mac |
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
<!-- /platform/android/res/values/custom_theme.xml --> | |
<?xml version="1.0" encoding="utf-8"?> | |
<resources> | |
<style name="MyCustomTheme" parent="@style/Theme.AppCompat"> | |
<item name="colorPrimary">#86569A</item> | |
<item name="colorAccent">#FFFFFF</item> | |
<item name="android:statusBarColor">#86569A</item> | |
<item name="android:navigationBarColor">#86569A</item> | |
</style> | |
</resources> |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<resources> | |
<string name="win1_title">Tab 1</string> | |
<string name="win1_text">Je suis la fenêtre 1</string> | |
<string name="win2_title">Tab 2</string> | |
<string name="win2_text">Je suis la fenêtre 2</string> | |
</resources> |
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
export PATH=${PATH}:~/Documents/SDK/android-sdk/tools |
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
// parsed from https://github.com/danielbruce/entypo/blob/master/config.yml | |
[ | |
{ | |
"name": "note", | |
"code": "0x266a", | |
"search": [ | |
"music", | |
"note", | |
"song" |
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
<android xmlns:android="http://schemas.android.com/apk/res/android"> | |
<tool-api-level>8</tool-api-level> | |
<manifest android:installLocation="preferExternal"> | |
<uses-sdk android:minSdkVersion="7" /> | |
</manifest> | |
</android> |
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
/** | |
* Debug : var_dump | |
* | |
* @var: Var | |
* @level: Level max | |
* | |
*/ | |
function var_dump(_var, _level) { | |
var dumped_text = ""; | |
if(!_level) _level = 0; |
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
// OS | |
if(Ti.Platform.osname === 'iPhone' || Ti.Platform.osname === 'iPad') { | |
var ios = true; | |
} | |
/** | |
* Save file function | |
* | |
* @file: Binary file (Blob) | |
* @filename: Name of file (String) |