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) { |
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
#!/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
// 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
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
class Null: | |
def __repr__(self): | |
return '()' | |
null = Null() | |
class cons: | |
def __init__(self, car, cdr): | |
self.car = car | |
self.cdr = cdr | |
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
# 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: |
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
# 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" |
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
// | |
// 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; |
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
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: |
OlderNewer