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 sys.FileSystem; | |
| import sys.io.File; | |
| /** | |
| Haxe port of nekoboot.neko for creating executables from neko bytecode. | |
| Original: http://code.google.com/p/nekovm/source/browse/trunk/src/tools/nekoboot.neko | |
| Usage : nekoboot <file.n> | |
| */ |
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
| .shape{ | |
| height: 100%; | |
| width: 100%; | |
| } | |
| .circle { | |
| border-radius: 50%/50%; | |
| -moz-border-radius: 50%/50%; | |
| -webkit-border-radius: 50%/50%; | |
| } | |
| .hide { |
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
| /** | |
| * iOS 6 style switch checkboxes | |
| * by Lea Verou http://lea.verou.me | |
| */ | |
| :root input[type="checkbox"] { /* :root here acting as a filter for older browsers */ | |
| position: absolute; | |
| opacity: 0; | |
| } |
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
| function inferInputModel() { | |
| if (window.navigator.msPointerEnabled) { | |
| return 'pointer'; | |
| } else if (window.ontouchstart !== undefined) { | |
| return 'touch'; | |
| } else { | |
| return 'unknown'; | |
| } | |
| } |
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
| # -*- encoding: UTF-8 -*- | |
| COUNTRIES = { | |
| u'DZA': {'code': u'DZA', 'fr': u'Algerie', 'en': u'Algeria', 'num': 12}, | |
| u'AGO': {'code': u'AGO', 'fr': u'Angola', 'en': u'Angola', 'num': 24}, | |
| u'EGY': {'code': u'EGY', 'fr': u'Egypte', 'en': u'Egypt', 'num': 818}, | |
| u'BGD': {'code': u'BGD', 'fr': u'Bangladesh', 'en': u'Bangladesh', 'num': 50}, | |
| u'NER': {'code': u'NER', 'fr': u'Niger', 'en': u'Niger', 'num': 562}, | |
| u'LIE': {'code': u'LIE', 'fr': u'Liechtenstein', 'en': u'Liechtenstein', 'num': 438}, | |
| u'NAM': {'code': u'NAM', 'fr': u'Namibie', 'en': u'Namibia', 'num': 516}, |
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
| #:kivy 1.3 | |
| <WonPopup>: | |
| title: 'YOU WIN' | |
| auto_dismiss: False | |
| size_hint: None, None | |
| size: 300, 200 | |
| btn_restart: btn_restart | |
| btn_close: btn_close | |
| content: content |
if you ever used one of these, i have some questions :
-
github integration
-
fit for small teams (<10) ?
- Bijou 150 x 10 pixels icons : http://bijou.im/
- http://thenounproject.com/
- 50 amazing free icons sets : http://webdesignledger.com/freebies/50-amazing-free-icon-sets
- Smashing Mag : 35 (Really) Incredible Free Icon Sets : http://www.smashingmagazine.com/2008/03/06/35-really-incredible-free-icon-sets/
- 30 free icons packs from the Dribble community : http://line25.com/articles/30-free-icon-packs-from-the-dribbble-community
- 32 elegant and minimalist icon packs : http://psd.fanextra.com/articles/32-elegant-and-minimalist-icon-packs/
- POI icons : http://mapbox.com/maki/
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
| package | |
| { | |
| import com.bit101.components.CheckBox; | |
| import com.bit101.components.ComboBox; | |
| import com.bit101.components.PushButton; | |
| import com.powerflasher.as3potrace.POTrace; | |
| import com.powerflasher.as3potrace.backend.GraphicsDataBackend; | |
| import flash.display.Bitmap; | |
| import flash.display.BitmapData; |