I hereby claim:
- I am niklas-r on github.
- I am niklas_r_urbit (https://keybase.io/niklas_r_urbit) on keybase.
- I have a public key ASDtwSspaYqhNFoG18V7P-ANtF8JfIUu-223qNFt9tU4bQo
To claim this, I am signing this object:
| const userTiming = () => (next) => (action) => { | |
| if (performance.mark === undefined) return next(action); | |
| performance.mark(`${action.type}_start`); | |
| const result = next(action); | |
| performance.mark(`${action.type}_end`); | |
| performance.measure( | |
| `${action.type}`, | |
| `${action.type}_start`, | |
| `${action.type}_end`, | |
| ); |
I hereby claim:
To claim this, I am signing this object:
| // -------------------------------------------------- | |
| // Flexbox SASS mixins | |
| // The spec: http://www.w3.org/TR/css3-flexbox | |
| // -------------------------------------------------- | |
| // Flexbox display | |
| @mixin flexbox() { | |
| display: -webkit-box; | |
| display: -moz-box; | |
| display: -ms-flexbox; |
| window = {} unless window? | |
| global.$=require('jquery') unless jQuery? | |
| global._=require('underscore') unless _? | |
| global.Backbone=require('backbone') unless Backbone? | |
| global.Mustache=require('../lib/mustache') unless Mustache? | |
| global.localStorage=require('localStorage') unless localStorage? | |
| global.Store=require('../lib/backbone.localStorage') unless Store? | |
| global.jsdom = require("jsdom").jsdom | |
| global.document = jsdom('<html><body></body></html>') | |
| global.window = document.createWindow() |
| function f({a = "I'm A", b = "I'm B"} = {}) { | |
| console.log(a); // >"I'm C" | |
| console.log(b); // >"I'm B" | |
| } | |
| f({ a: "I'm C" }); |
| { | |
| "user": { | |
| "debug": false, | |
| "delay": 0.25, | |
| "error_color": "D02000", | |
| "gutter_theme": "Packages/SublimeLinter/gutter-themes/Default/Default.gutter-theme", | |
| "gutter_theme_excludes": [], | |
| "lint_mode": "background", | |
| "linters": { | |
| "jshint": { |
| Here is a list of scopes to use in Sublime Text 2 snippets - | |
| ActionScript: source.actionscript.2 | |
| AppleScript: source.applescript | |
| ASP: source.asp | |
| Batch FIle: source.dosbatch | |
| C#: source.cs | |
| C++: source.c++ | |
| Clojure: source.clojure | |
| CoffeeScript: source.coffee |
| # node-webkit: | |
| # https://github.com/rogerwang/node-webkit | |
| # generator för grunt | |
| # https://github.com/Dica-Developer/generator-node-webkit | |
| # Installera Grunt, Bower, Yeoman | |
| npm install -g yo grunt bower | |
| # Installera node-webkit generatorn |
| // Go to menue: | |
| // find->find in files | |
| // Switch on reg_ex button | |
| // Find: | |
| ^.*\S+.*$ | |
| // Where: | |
| c:\your_folder\,*.php,*.phtml,*.js,*.inc,*.html, -*/folder_to_exclude/* | |
| // Then click on the find button | |
| // Be careful to not click on Replace!!! |
| <!doctype html> | |
| <html lang="en" ng-app> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>Stop Events</title> | |
| </head> | |
| <body ng-controller="appCtrl"> | |
| <div ng-click="doSomething()"> | |
| <p>Hey!</p> | |
| <div ng-click="doSomethingElse()" stop-event="click"> |