Not for everyone. Each programmer has their own appreciation of what is good coding music.
(From most influential to least)
Not for everyone. Each programmer has their own appreciation of what is good coding music.
(From most influential to least)
# Copyright (c) 2016-2018 Ming Qin (覃明) <https://github.com/QinMing> | |
# Open source under MIT LICENSE. | |
lazy_load() { | |
# Act as a stub to another shell function/command. When first run, it will load the actual function/command then execute it. | |
# E.g. This made my zsh load 0.8 seconds faster by loading `nvm` when "nvm", "npm" or "node" is used for the first time | |
# $1: space separated list of alias to release after the first load | |
# $2: file to source | |
# $3: name of the command to run after it's loaded | |
# $4+: argv to be passed to $3 |
#!/usr/bin/env bash | |
# dontforget | |
# Description: A stupid script for short term reminders in bash | |
# Requires: espeak, mpg123, notify-send, ogg123 (vorbis-tools) | |
# Source: http://brettterpstra.com/2016/01/22/quick-reminders-from-terminal | |
# Usage: | |
# | |
# Arguments just need to contain a number and a bunch of words. | |
# | |
# The number can be anywhere in the arguments, but there shouldn't |
import six | |
import inflection | |
import marshmallow as ma | |
class Model(object): | |
def __init__(self, **kwargs): | |
self._schema = self.Schema() | |
self.load(**kwargs) |
/* bling.js */ | |
window.$ = document.querySelector.bind(document); | |
window.$$ = document.querySelectorAll.bind(document); | |
Node.prototype.on = window.on = function(name, fn) { this.addEventListener(name, fn); }; | |
NodeList.prototype.__proto__ = Array.prototype; | |
NodeList.prototype.on = function(name, fn) { this.forEach((elem) => elem.on(name, fn)); }; |
m.callableComponent = function (componentObj) { | |
var componentFn = function (props, content) { | |
return m.component(componentFn, props, content) | |
} | |
if (componentObj) { | |
for (var prop in componentObj) { | |
componentFn[prop] = componentObj | |
} | |
} | |
return componentFn |
var MyComponent = Factory({ | |
willMount: function(element, context) { | |
console.log('component mounted', element.tagName); | |
}; | |
willUnmount: function(element, context) { | |
console.log('component unmount', element.tagName); | |
}; | |
view: function() { |
var slice = Array.prototype.slice; | |
function Class( Super, Schema ){ | |
if( arguments.length < 2 ){ | |
Schema = Super; | |
Super = Object; | |
} | |
var constructor = Schema.constructor ? Super ? function SubClass(){ | |
var args = slice.call( arguments ); |
Recent improvements to the ClojureScript compiler have greatly simplified setting up development versus production outputs.
This example uses Figwheel as something that you want to exclude for production, but the pattern is general.
With this simple setup you only need one html file/view and it will work for developement and production.