Skip to content

Instantly share code, notes, and snippets.

View geppy's full-sized avatar

geppy geppy

View GitHub Profile
@geppy
geppy / .gitconfig
Created April 30, 2017 15:50
bits of geppy's .gitconfig
[pull]
ff = only
[core]
autocrlf = true
@geppy
geppy / index.html
Last active January 8, 2017 21:13 — forked from paulirish/index.html
array augmenting: push read vs concat vs push.apply vs manually appending (https://jsbench.github.io/#fe339c9f282f9da76bf8b77bf90bdb2a) #jsbench #jsperf
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<title>array augmenting: push read vs concat vs push.apply vs manually appending</title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/benchmark/1.0.0/benchmark.min.js"></script>
<script src="./suite.js"></script>
</head>
<body>
<h1>Open the console to view the results</h1>
@geppy
geppy / index.html
Created January 8, 2017 21:00
String#includes vs. String#indexOf vs. Badness (https://jsbench.github.io/#caa8a3c39ca02e1727c715f6c4547792) #jsbench #jsperf
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<title>String#includes vs. String#indexOf vs. Badness</title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/benchmark/1.0.0/benchmark.min.js"></script>
<script src="./suite.js"></script>
</head>
<body>
<h1>Open the console to view the results</h1>
@geppy
geppy / my-program-excerpt.svg
Created December 28, 2016 04:43
Blockly block SVG example
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@geppy
geppy / hero-list.html
Created January 11, 2016 23:59
Capturing selected list element
<!--
@license
Copyright (c) 2015 The Polymer Project Authors. All rights reserved.
This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt
The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt
Code distributed by Google as part of the polymer project is also
subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
-->
@geppy
geppy / gulpfile.js
Created September 11, 2015 06:32
PolymerTS-Starter-Kit
/// <binding BeforeBuild='before-build' />
/*
Copyright (c) 2015 The Polymer Project Authors. All rights reserved.
This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt
The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt
Code distributed by Google as part of the polymer project is also
subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
*/
/// <reference path="../node_modules/definitelytyped/node/node.d.ts" />
/// <reference path="../node_modules/definitelytyped/socket.io-client/socket.io-client.d.ts" />
/// <reference path="../node_modules/definitelytyped/aws-sdk/aws-sdk.d.ts" />
/// <reference path="../types/socket.d.ts" />
/// <reference path="../types/promise.d.ts" />
import SocketIo = require('socket.io');
import AWS = require('aws-sdk');
var iap = require('in-app-purchase');
@mixin keyframes($name) {
@-moz-keyframes #{$name} { @content; }
@-webkit-keyframes #{$name} { @content; }
@-o-keyframes #{$name} { @content; }
@-ms-keyframes #{$name} { @content; }
@keyframes #{$name} { @content; }
}
@mixin animation($animation...) {
-moz-animation: $animation;
2014-12-10 19:59:41.712 MOMO[5664:3394607] Apache Cordova native platform version 3.6.3 is starting.
2014-12-10 19:59:41.713 MOMO[5664:3394607] Multi-tasking -> Device: YES, App: YES
2014-12-10 19:59:41.727 MOMO[5664:3394607] Unlimited access to network resources
2014-12-10 19:59:49.482 MOMO[5664:3394607] Copy from /private/var/mobile/Containers/Bundle/Application/7A1D6646-7BE5-4E95-AA20-602B0C3FF407/MOMO.app/www to /private/var/mobile/Containers/Data/Application/7E191377-6985-42CA-9ABB-54D99DDB0348/tmp/www is ok: YES
2014-12-10 19:59:49.568 MOMO[5664:3394607] Using a WKWebView
@geppy
geppy / gradle-wrapper.properties
Created December 9, 2014 17:50
My version of gradle-wrapper.properties
#Wed Apr 10 15:27:10 PDT 2013
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-2.2.1-all.zip