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
<TranslationUnit ptr="0x7fa46282a2d0"> | |
<Typedef ptr="0x7fa46282a790" name="__int128_t" typeptr="0x0"> | |
<BuiltinType ptr="0x7fa46282a520" canonical="0x7fa46282a520"/> | |
</Typedef> | |
<Typedef ptr="0x7fa46282a7f0" name="__uint128_t" typeptr="0x0"> | |
<BuiltinType ptr="0x7fa46282a540" canonical="0x7fa46282a540"/> | |
</Typedef> | |
<Record ptr="0x7fa46282a840" name="__va_list_tag" typeptr="0x7fa46282a8c0"> | |
<Field ptr="0x7fa46282a8f0" name="gp_offset"> | |
<BuiltinType ptr="0x7fa46282a460" canonical="0x7fa46282a460"/> |
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
package main | |
import ( | |
"runtime" | |
"fmt" | |
"time" | |
) | |
const ( | |
N = 300000000 |
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
# Først må du gjøre: | |
# | |
# gem install httpclient | |
# | |
require 'httpclient' | |
require 'json' | |
class KryssordWrapper |
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 | |
def run(s) | |
puts "[#{s}]" | |
result = `#{s}` | |
unless $?.exited? and $?.exitstatus == 0 | |
abort "Failed to run: #{s}" | |
end | |
result | |
end |
NewerOlder