This file contains 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
grammar SgfGrammar | |
rule node | |
'(' sp chunk* sp ')' sp { | |
def value | |
get([elements[2]]) | |
end | |
def get(e) | |
a = [] | |
if !e.nil? |
This file contains 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
# | |
# Created by Eric Lindvall <[email protected]> | |
# | |
# WHAT: Provides a simple overview of memory allocation occuring during a | |
# require. | |
# | |
# NOTE: The numbers provided are of self + children, meaning the same will | |
# be attributed to multiple files at once. | |
# | |
# Also, memory that is no longer referenced (and would be freed) is still |
This file contains 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
class Achievement | |
include MongoMapper::Document | |
key :name, String | |
key :description, String | |
key :requirements, String | |
key :lang, String | |
end |
This file contains 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
SELECT id, username, exp, money, @prev := @curr, @curr := money, @rank := IF(@prev = @curr, @rank, @rank+1) AS rank FROM users, (SELECT @curr := null, @prev := null, @rank := 0) sel1 ORDER BY money DESC LIMIT 1; |
This file contains 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
class Watch | |
# Instance property | |
location: 'here' | |
# Class property | |
@location: 'over there' | |
locate: -> | |
alert "I am #{@location}." |
This file contains 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
tell application "World of Warcraft" | |
activate | |
end tell | |
tell application "System Events" | |
tell process "World of Warcraft" | |
repeat | |
set x to (random number from 1 to 2) | |
if x = 2 then |
This file contains 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
class Score | |
include MongoMapper::Document | |
key :user_id, ObjectId, :index => true | |
key :stage, String, :index => true | |
key :score, Integer | |
timestamps! | |
def self.high_score_map | |
<<-MAP |
This file contains 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
using UnityEngine; | |
using System.Collections; | |
public class SystemController : MonoBehaviour { | |
const int size = 64; | |
public GameObject[][] cubes = new GameObject[size][]; | |
public GameObject clone_cube; | |
void Awake() { |
This file contains 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
using UnityEngine; | |
using System.Collections; | |
public class ParallaxScroll : MonoBehaviour { | |
public float furthestDepth = 100.0F; | |
public float depthStep = 10.0F; | |
public float baseSpeed = 0.001F; | |
public int baseSpeedup = 2; |
This file contains 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
using UnityEngine; | |
using System.Collections; | |
// relies on: http://forum.unity3d.com/threads/12031-create-random-colors?p=84625&viewfull=1#post84625 | |
public class ColorPicker : MonoBehaviour { | |
public bool useDefinedPosition = false; | |
public int positionLeft = 0; | |
public int positionTop = 0; |
OlderNewer