(CareCloud)[https://www.google.com/?gws_rd=ssl#q=CareCloud] (Kairos)[https://www.google.com/?gws_rd=ssl#q=Kairos] (Flomio)[https://www.google.com/?gws_rd=ssl#q=Flomio] (Techstars)[https://www.google.com/?gws_rd=ssl#q=Techstars] (Home61)[https://www.google.com/?gws_rd=ssl#q=Home61] (LiveNinja)[https://www.google.com/?gws_rd=ssl#q=LiveNinja] (Clutch Prep)[https://www.google.com/?gws_rd=ssl#q=Clutch%20Prep] (OnTrade)[https://www.google.com/?gws_rd=ssl#q=OnTrade] (Nearpod)[https://www.google.com/?gws_rd=ssl#q=Nearpod] (Red Karaoke)[https://www.google.com/?gws_rd=ssl#q=Red%20Karaoke]
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
| [ | |
| "CareCloud", | |
| "Kairos", | |
| "Flomio", | |
| "Techstars", | |
| "Home61", | |
| "LiveNinja", | |
| "Clutch Prep", | |
| "OnTrade", | |
| "Nearpod", |
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 a function that figures out the distribution of spots per generation | |
| where the children can add only 1 spot based on the number of spots their parent | |
| have. The children must also have at least as many spots as their parent. | |
| */ | |
| var childrenPerGeneration = 3; |
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 MyInstanceFactory () { | |
| function myFunc () { | |
| } | |
| return { | |
| publicFunc: function () { | |
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
| /// <reference path="typings/angular2/angular2.d.ts" /> | |
| import {Component, View, bootstrap} from 'angular2/angular2'; | |
| @Component({ | |
| selector: 'my-app' | |
| }) | |
| @View({ | |
| template: '<h1>Hello {{ name }}</h1><input type="button" value="fuck off" (click)="cM()">' | |
| }) |
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
| // functional | |
| function createPerson (name, age, eyeColor, height) { | |
| return { | |
| name: name, | |
| age: age, | |
| eyeColor: eyeColor, |
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
| tar -zc --exclude wordpress/wp-content/themes/bucket-api/app/node_modules/ wordpress/wp-content/themes/bucket-api | ssh root@littlebigberry.com "cat > ~/file.tar.gz && tar -zxvf file.tar.gz && rm -rf /var/www/wp-content/themes/bucket-api/ && cp -r ~/wordpress/wp-content/themes/bucket-api/ /var/www/wp-content/themes/bucket-api/ && rm -rf file.tar.gz && rm -rf wordpress/" |
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
| // using the setTimeout implementation https://gist.github.com/jearle/6bfe6153a2e36139ef5c | |
| public func setInterval(#seconds: Double, callback: CancelFunc) -> EmptyFunc { | |
| return setTimeout(seconds: seconds) { | |
| callback(setInterval(seconds: seconds, callback)) | |
| } | |
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 pickFiles = require('broccoli-static-compiler'); | |
| var fastBrowserify = require('broccoli-fast-browserify'); | |
| var babelTranspiler = require('broccoli-babel-transpiler'); | |
| var mergeTrees = require('broccoli-merge-trees'); | |
| var libTree = pickFiles('lib', { | |
| files: ['**/*.js'], | |
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 <objc/runtime.h> | |
| #import <objc/message.h> | |
| Class* getClassesFromClassList () { | |
| int numClasses = objc_getClassList(nil, 0); | |
| Class *classes = (__unsafe_unretained Class *)malloc(sizeof(Class) * numClasses); | |
| return classes; | |