Skip to content

Instantly share code, notes, and snippets.

View nobitagit's full-sized avatar
🕸️
The less I know the better

Aurelio nobitagit

🕸️
The less I know the better
View GitHub Profile
@nobitagit
nobitagit / index.js
Last active May 28, 2017 15:37
requirebin sketch
// Welcome! require() some modules from npm (like you were using browserify)
// and then hit Run Code to run your code on the right side.
// Modules get downloaded from browserify-cdn and bundled in your browser.
var $ = require("jquery");
var Bacon = require('baconjs');
const counter = $('#counter');
const plus = $('#plus');
const minus = $('#minus');
// map event to stream
@nobitagit
nobitagit / index.js
Created May 28, 2017 14:38
requirebin sketch
// Welcome! require() some modules from npm (like you were using browserify)
// and then hit Run Code to run your code on the right side.
// Modules get downloaded from browserify-cdn and bundled in your browser.
var ee = require('event-emitter');
const ev = ee();
var credit = 0;
// var hasCredit = false;
function checkCredit() {
const hasCredit = credit > 0;

This example, using satirical data from The Onion, demonstrates how to wrap long axis labels to fit on multiple lines.

UPDATE: In order to make this code work for horizontal bar charts, the code for setting the 'y' attribute must be used when setting the 'x' attribute. I've included only the wrap function in this fork.

// ARRAYS
// Arrays are immutable fixed length collections
// ArrayBuffers have to be imported and are mutable dynamic length collections
import scala.collection.mutable.ArrayBuffer
val arrB = new ArrayBuffer[Int]
// Add an element
arrB += 1
// Add more elements in one go
arrB += (2,3,4,5)
@nobitagit
nobitagit / package.json
Created March 23, 2017 22:24 — forked from nojaf/package.json
From TypeScript to Babel to ES5 with webpack
{
"name": "webpack-ts-babel",
"version": "1.0.0",
"description": "",
"main": "webpack.config.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
@nobitagit
nobitagit / .babelrc
Created March 23, 2017 22:17 — forked from c9s/.babelrc
webpack + babel + typescript + es6 - total solutions!
{
"presets": ["es2015"],
"plugins": ["transform-runtime"]
}
@nobitagit
nobitagit / s4di_ch01_exercises.sc
Created March 18, 2017 19:00 — forked from parambirs/s4di_ch01_exercises.sc
Solutions for "Scala for the Impatient", chapter 1 exercises
package src.exercises
import scala.math._
import BigInt.probablePrime
import util.Random
object chap01 {
// 1. In the Scala REPL, type 3. followed by the Tab key. What methods can be
// applied?
// => Do it in REPL. There are many methods including %, &, *, +, toByte, toChar etc.
@nobitagit
nobitagit / s4di_ch01_exercises.sc
Created March 18, 2017 19:00 — forked from parambirs/s4di_ch01_exercises.sc
Solutions for "Scala for the Impatient", chapter 1 exercises
package src.exercises
import scala.math._
import BigInt.probablePrime
import util.Random
object chap01 {
// 1. In the Scala REPL, type 3. followed by the Tab key. What methods can be
// applied?
// => Do it in REPL. There are many methods including %, &, *, +, toByte, toChar etc.
@nobitagit
nobitagit / events.js
Last active March 12, 2017 22:44
Node basic examples
// DOCS https://nodejs.org/api/events.html
const Emitter = require('events');
class Basket extends Emitter {
constructor(total) {
super();
this.total = total || 0;
this.currency = '£';
}
@nobitagit
nobitagit / 1.js
Last active March 11, 2017 13:37
Introduction to JavaScript Generators
// Intro to generators in JavaScript
// You can use: https://repl.it/languages/babel
// to follow along the code
// A generic counter
function counter() {
console.log('counter #1');
console.log('1');
console.log('2');
}