This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Define the state machine | |
const stateMachine = Machine({ | |
id: 'projectIdeasOnBenevityStateMachine', | |
initial: 'new', | |
states: { | |
new: { | |
on: { | |
CENSORED: 'censored', | |
DRAFT: 'draft', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const fetchMachine = Machine({ | |
id: 'submission-state-machine', | |
initial: 'draft', | |
context: {}, | |
states: { | |
draft: { | |
on: { | |
SUBMIT: { target: 'preModeration' }, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const fetchMachine = Machine({ | |
id: 'submission-state-machine', | |
initial: 'draft', | |
context: {}, | |
states: { | |
draft: { | |
on: { | |
SUBMIT: { target: 'preModeration' }, | |
DELETE: { target: 'deleted' }, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import csv | |
import os | |
import argparse | |
parser = argparse.ArgumentParser(description='Convert CSV Columns to a PHP KeyValue array') | |
parser.add_argument('-f', '--file', action='store', dest='file', default='exampe.csv', help="CSV file. Default: exmple.csv") | |
parser.add_argument('-k', '--key', action='store', dest='column_key', default='0', help="Key Column Number") | |
parser.add_argument('-v', '--value', action='store', dest='column_value', default='1', help="Value Column Number") | |
args = parser.parse_args() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var PlayerGravity = function (game, x, y) { | |
this.game = game; | |
this.speed = 5; | |
Phaser.Sprite.call(this, this.game, this.game.world.randomX, 10, 'chocobo'); | |
game.physics.enable( [ this ], Phaser.Physics.ARCADE); | |
this.body.collideWorldBounds = true; | |
this.body.bounce.y = 0.8; | |
}; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Media Queries in Sass 3.2 | |
// | |
// These mixins make media queries a breeze with Sass. | |
// The media queries from mobile up until desktop all | |
// trigger at different points along the way | |
// | |
// And important point to remember is that and width | |
// over the portrait width is considered to be part of the | |
// landscape width. This allows us to capture widths of devices | |
// that might not fit the dimensions exactly. This means the break |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python2 | |
# -*- coding: utf-8 -*- | |
import pylast | |
api_key = '189c5354198342a01be847e595afbb14' | |
username = 'eikiu' | |
api = pylast.LastFMNetwork(api_key = api_key) | |
user = pylast.User(username, api) | |
library = user.get_library() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
clear | |
mkdir temp_gif | |
segs=`expr $1 \* 5` | |
for (( i = 1; i <= $segs ; i++ )); | |
do | |
printf -v number "%06d" $i | |
import -window $WINDOWID temp_gif/$number.gif |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python2 | |
# -*- coding: utf-8 -*- | |
a = ['A1', 'A2', 'A3', 'A4'] | |
b = ['B1', 'B2', 'B3'] | |
c = ['C1', 'C2'] | |
d = [] | |
for i in a: |
NewerOlder