Skip to content

Instantly share code, notes, and snippets.

View rubyist's full-sized avatar

Scott Barron rubyist

View GitHub Profile
@R2 // A = 2
M=0 // Memory[2] = 0
(LOOP)
@R1 // A = 1
M=M-1 // Memory[1] = Memory[1] - 1
D=M // D = Memory[1]
@END
D;JLT // Jump to @END if D < 0
@R0 // A = 0
D=M // D = Memory[0]
@rubyist
rubyist / waves.m
Last active December 21, 2015 02:08
Generate different kinds of wave forms
long maxSampleCount = SAMPLE_RATE * DURATION;
long sampleCount = 0;
UInt32 bytesToWrite = 2;
double wavelengthInSamples = SAMPLE_RATE / hz;
while (sampleCount < maxSampleCount) {
// for (int i = 0; i < wavelengthInSamples; i++) {
// // Square wave
// SInt16 sample;
// if (i < wavelengthInSamples/2) {
@rubyist
rubyist / caveatPatchor.js
Created June 14, 2013 17:48
Put this in ~/Library/Application Support/Propane/unsupported/caveatPatchor.js
function sayIt(msg) {
message = this.chat.transcript.insertPendingMessage(msg);
new Campfire.OutgoingMessage(this.chat, message, msg, '').send();
this.chat.dispatch('messageSpoken', message);
}
Campfire.Speaker.Filters.push(
function(message) {
if(message.match(/^\/soundlist\s*$/)) {
var soundList = [];
@rubyist
rubyist / client.js
Created May 30, 2013 15:35
I have a Meteor app that authenticates against Google for logging in. I also have a cucumber suite that runs against the app and I don't want it to go through the Google auth. This setup will check a KIT_ENV environment variable, and if it is "test" (i.e. being run for the cucumber suite) it will just run an anonymous login and setup a default u…
var attemptLogin = function() {
var validateResult = function(e, result) {
if (e) {
Meteor.loginWithGoogle();
}
};
Accounts.callLoginMethod({methodArguments: [{}], userCallback: validateResult});
};
@rubyist
rubyist / searchy.html
Last active February 19, 2017 21:39
How one might filter a list in meteor
<head>
<title>searchy</title>
</head>
<body>
{{> searchy}}
</body>
<template name="searchy">
<h1>Searchy</h1>
@rubyist
rubyist / structure.m
Created September 5, 2012 12:45
Basic structure
objectManager = [RKObjectManager managerWithBaseURLString:kAPIBaseURL];
objectStore = [RKManagedObjectStore objectStoreWithStoreFilename:kDataStore];
objectManager.objectStore = objectStore;
// Set up object mappings, relationships, etc. e.g.
RKObjectMapping *collectionMapping = [Item mappingInStore:objectStore];
// Pagination mapping
RKObjectMapping *paginationMapping = [RKObjectMapping mappingForClass:[RKObjectPaginator class]];
[paginationMapping mapKeyPath:@"pagination.page" toAttribute:@"currentPage"];
@rubyist
rubyist / gist:1556059
Created January 3, 2012 17:50
nyan for a nyan
// Add this to your ~/Library/Application Support/Propane/unsupported/caveatPatchor.js
var nyanForNyan = true;
if (nyanForNyan) {
Campfire.NyanForNyan = Class.create({
initialize: function(chat) {
this.chat = chat;
},
@rubyist
rubyist / config.yml
Created September 3, 2011 22:40
Lockette config.yml
enable-messages-help: true
broadcast-snoop-target: '[Everyone]'
broadcast-reload-target: '[Operators]'
broadcast-break-target: '[Everyone]'
enable-messages-error: true
enable-messages-user: true
enable-messages-owner: false
enable-messages-admin: true
enable-protection-doors: true
default-door-timer: 0
@rubyist
rubyist / gist:1191891
Created September 3, 2011 22:39
BigBrother.yml
database:
port: 3306
username: ''
prefix: ''
hostname: ''
cleanser:
age: 14d
deletes-per-operation: 20000
type: H2
password: ''
@rubyist
rubyist / Rakefile
Created August 15, 2011 18:06
coffee compiling rakefile
require 'coffee_script'
require 'rake/clean'
def coffee_to_js(coffee)
File.join(BUILDDIR, File.dirname(coffee.split('/')[1..-1].join('/')), File.basename(coffee).ext('js'))
end
JSFILE = 'app.js'
JSPATH = "_attachments/js/app/#{JSFILE}"
COFFEE = FileList['coffeescript/**/*.coffee']