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
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); |
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
// 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 |
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
#!/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) |
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
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) { |
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
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) { |
NewerOlder