Skip to content

Instantly share code, notes, and snippets.

View jupp0r's full-sized avatar

Jupp Mueller jupp0r

  • Santa Barbara, CA, USA
View GitHub Profile

Elm 0.17.1

Install

This is a patch release. Everything is the same, just slightly better!

The main changes are:

  • Default dependencies in elm-package.json are elm-lang/core and elm-lang/html.
  • Error messages for elm-package are improved (e.g. this and this)
@Falconerd
Falconerd / gulpfile.js
Last active April 10, 2019 17:16
Gulp + Watchify + Babelify + BrowserSync
/**
* This gulpfile will copy static libraries and a index.html file as well as
* merge, babelify and uglify the rest of the javascript project.
*
* TODO:
* - Separate media, libs and src with different watchers.
* - Media and libs should only be copied to dist if they are different sizes.
*
* The expected project is to be laid out as such:
*
@irh
irh / concepts_polymorphism.rs
Last active August 28, 2016 11:16
A Rust version of Sean Parent's example of concepts-based polymorphism in C++
// ...from 'Inheritance Is The Base Class of Evil'
use std::fmt;
use std::rc::Rc;
fn white_space(count: usize) -> String {
std::iter::repeat(' ').take(count).collect::<String>()
}
trait Drawable {
@swanson
swanson / gist:7829022
Created December 6, 2013 17:43
Remove all items from a folder in a Crucible review
@tissak
tissak / package.json
Created December 28, 2011 03:41
Haml support in Spine without hacking spine
{
"name": "app",
"version": "0.0.1",
"dependencies": {
"serveup": "~0.0.2",
"hem": "~0.1.6",
"es5-shimify": "~0.0.1",
"json2ify": "~0.0.1",
"jqueryify": "~0.0.1",
"spine": "~1.0.5",