Skip to content

Instantly share code, notes, and snippets.

View tbodt's full-sized avatar

tbodt tbodt

View GitHub Profile
@tbodt
tbodt / Anagrams.java
Created July 23, 2014 00:21
Print all anagrams
public class Anagrams {
public static void main(String[] args) {
String start = args[0];
String anagram = start;
do {
System.out.println(anagram);
anagram = nextAnagram(anangram);
} while (!start.equals(anagram))
}
public static String nextAnagram(String word) {
int N = 0;
int _;
int O = 328;
int l = 192;
int y = 4;
int Y[80][64] = {0};
int I;
char *F = "JF>:>FB;;BII";
int f(x) {
@tbodt
tbodt / codebreak.rb
Created November 12, 2015 23:49
codebreaker
#!/usr/bin/env ruby
require 'net/http'
ep_num = ARGV[0].to_i
0.upto 999 do |i|
num = i.to_s.rjust(3, "0")
url = URI("http://download.publicradio.org/podcast/marketplace/codebreaker/2015/11/11/codebreaker_#{ep_num}_20151111_#{num}_64.mp3")
res = Net::HTTP.get_response(url)
@tbodt
tbodt / strafelooking.cfg
Last active June 9, 2016 22:28
Semiautomatic airstrafing for Portal 2
// Semiautomatic airstrafing (strafelooking) script by tbodt.
// When strafelooking is enabled, the strafe keys (a and d) will turn the camera and strafe at the same time.
// When it is disabled, they behave normally.
//
// Keybinding configuration:
// Bind a key to +strafelooking to turn on strafelooking while it is held down.
// Bind a key to toggle_strafelooking to toggle strafelooking when you press it.
// I use this configuration:
// bind tab toggle_strafelooking
// bind ctrl +strafelooking
@tbodt
tbodt / ArrayIndexOf
Created November 15, 2016 00:25
how do i find a item in an array in javascript
void Builtins::Generate_ArrayIndexOf(CodeStubAssembler* assembler) {
typedef compiler::Node Node;
typedef CodeStubAssembler::Label Label;
typedef CodeStubAssembler::Variable Variable;
Node* array = assembler->Parameter(0);
Node* search_element = assembler->Parameter(1);
Node* start_from = assembler->Parameter(2);
Node* context = assembler->Parameter(3 + 2);
@tbodt
tbodt / lisp.py
Last active December 25, 2016 00:09
lisp in python
class Null:
def __repr__(self):
return '()'
null = Null()
class cons:
def __init__(self, car, cdr):
self.car = car
self.cdr = cdr
@tbodt
tbodt / fox.s
Created February 3, 2017 23:11
# What does the fox say? This program will tell you, but only if you tell it.
# Proud author: Theodore Dubois
.data
dataStart:
animalPrompt:
.int 16
.ascii "Type an animal: "
soundPrompt:
# Ooohhh! A vending machine!
# This is a time vending machine. You can buy timepieces. You pay by waiting.
#################################### Data segment ####################################
# All sorts of data.
.data
welcome_message:
.int 30
.ascii "Time vending/killing machine\n\n"
//
// Decompiled by Procyon v0.5.30
//
package one.krake.mcexe.screens;
import one.krake.design.event.DCMouseEvent;
import one.krake.design.frame.Frame;
import one.krake.design.alert.Alert;
import javax.swing.Icon;
std::__1::__tree_iterator<std::__1::__value_type<std::__1::pair<WTF::MediaTime, WTF::MediaTime>, WTF::RefPtr<WebCore::MediaSample> >, std::__1::__tree_node<std::__1::__value_type<std::__1::pair<WTF::MediaTime, WTF::MediaTime>, WTF::RefPtr<WebCore::MediaSample> >, void*>*, long> std::__1::__tree<std::__1::__value_type<std::__1::pair<WTF::MediaTime, WTF::MediaTime>, WTF::RefPtr<WebCore::MediaSample> >, std::__1::__map_value_compare<std::__1::pair<WTF::MediaTime, WTF::MediaTime>, std::__1::__value_type<std::__1::pair<WTF::MediaTime, WTF::MediaTime>, WTF::RefPtr<WebCore::MediaSample> >, std::__1::less<std::__1::pair<WTF::MediaTime, WTF::MediaTime> >, true>, std::__1::allocator<std::__1::__value_type<std::__1::pair<WTF::MediaTime, WTF::MediaTime>, WTF::RefPtr<WebCore::MediaSample> > > >::__insert_unique<std::__1::pair<std::__1::pair<WTF::MediaTime, WTF::MediaTime> const, WTF::RefPtr<WebCore::MediaSample> >&>(std::__1::__tree_const_iterator<std::__1::__value_type<std::__1::pair<WTF::MediaTime, WTF::MediaTime>, WTF: