The only cross-platform browser that fits in a Gist!
One line install. Works on Linux, MacOSX and Windows.
$> npm install http://gist.github.com/morganrallen/f07f59802884bcdcad4a/download
| // Source: https://groups.google.com/forum/#!topic/angular/hVrkvaHGOfc | |
| // jsFiddle: http://jsfiddle.net/pkozlowski_opensource/PxdSP/14/ | |
| // author: Pawel Kozlowski | |
| var myApp = angular.module('myApp', []); | |
| //service style, probably the simplest one | |
| myApp.service('helloWorldFromService', function() { | |
| this.sayHello = function() { | |
| return "Hello, World!" |
| SASSC = sass --style compact | |
| COMPSDIR = resources/assets/components | |
| SASSDIR = resources/assets/css | |
| JSDIR = resources/assets/js | |
| DISTDIR = web/dist | |
| CSSDIR = $(DISTDIR)/css | |
| SASSINC = $(SASSDIR) \ | |
| $(COMPSDIR)/asimov/src/scss \ | |
| $(COMPSDIR)/asimov-contests/src/scss \ | |
| $(COMPSDIR)/asimovicons/src/scss |
| /* File: regexutils.js */ | |
| /* Language: JavaScript */ | |
| /* http://scriptular.com/ */ | |
| // Match a standard email | |
| var email = /(?:[a-z0-9!#$%&'*+\/=?^_`{|}~-]+(?:\.[a-z0-9!#$%&'*+\/=?^_`{|}~-]+)*|"(?:[\x01-\x08\x0b\x0c\x0e-\x1f\x21\x23-\x5b\x5d-\x7f]|\\[\x01-\x09\x0b\x0c\x0e-\x7f])*")@(?:(?:[a-z0-9](?:[a-z0-9-]*[a-z0-9])?\.)+[a-z0-9](?:[a-z0-9-]*[a-z0-9])?|\[(?:(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.){3}(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?|[a-z0-9-]*[a-z0-9]:(?:[\x01-\x08\x0b\x0c\x0e-\x1f\x21-\x5a\x53-\x7f]|\\[\x01-\x09\x0b\x0c\x0e-\x7f])+)\])/i | |
| // Match an HTML comment | |
| var htmlComment = /<!--((?:(?!-->).)*)-->/; | |
| // Match the Host and page address from an URL | |
| var urlAndHost = /^(https?):\/\/((?:[A-Z0-9]*\.?)*)((?:\/?[A-Z0-9])*)/i; |
| #!/usr/bin/env node | |
| /** This hook updates platform configuration files based on preferences and config-file data defined in config.xml. | |
| Currently only the AndroidManifest.xml and IOS *-Info.plist file are supported. | |
| See http://stackoverflow.com/questions/28198983/ionic-cordova-add-intent-filter-using-config-xml | |
| Preferences: | |
| 1. Preferences defined outside of the platform element will apply to all platforms | |
| 2. Preferences defined inside a platform element will apply only to the specified platform |
| .hex:before { | |
| content: " "; | |
| width: 0; height: 0; | |
| border-bottom: 30px solid #6C6; | |
| border-left: 52px solid transparent; | |
| border-right: 52px solid transparent; | |
| position: absolute; | |
| top: -30px; | |
| } |
| using System; | |
| using System.ComponentModel; | |
| using System.Runtime.InteropServices; | |
| using System.Windows.Forms; | |
| namespace Zorgatone.WindowsFormsCueComponents | |
| { | |
| public class CueComboBox : ComboBox | |
| { | |
| #region PInvoke Helpers |
chiptrack https://gist.github.com/jturcotte/3adba9f9cddaf60ad1cacf41027b10a5| // When I was starting to learn Zig, strings were such a pain in the ass, so I | |
| // made this little guide for you to understand better what each type of string | |
| // does and why some of them seems to be "wrong". | |
| // | |
| // I will assume that you already know how pointers, const, var, comptime and | |
| // the stack works. You don't need to be an expert, but I will not waste time | |
| // detailing these concepts. | |
| // | |
| // Sorry for the English mistakes, I'm far from being a fluent English speaker, | |
| // but what counts is the information. |