Skip to content

Instantly share code, notes, and snippets.

View tbodt's full-sized avatar

tbodt tbodt

View GitHub Profile
@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 / 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 / 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)
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 / 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) {