This script contains a Javascript-embedable EVM assembler and a generic deployer written in assembly.
This file contains hidden or 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
| import java.util.Arrays; | |
| import java.util.Random; | |
| public class AAA { | |
| public static void main(String[] args) { | |
| boolean[] board = new boolean[25]; | |
| int n = 0; | |
| int N = 1000000; | |
| for (int i = 0; i < N; i++) { | |
| pick(board, 14); |
This file contains hidden or 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
| import com.jcraft.jsch.ChannelSftp; | |
| import com.jcraft.jsch.JSch; | |
| import com.jcraft.jsch.Session; | |
| import java.util.Vector; | |
| class JSCHLogger implements com.jcraft.jsch.Logger { | |
| public JSCHLogger() { | |
| } |
This file contains hidden or 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 lcamel; | |
| import java.util.LinkedHashSet; | |
| import java.util.Set; | |
| public class AA { | |
| static final int L = 1; | |
| static final int H = 100; | |
| // all possible weight combinations | |
| static int[][] wss = new int[][] { |
This file contains hidden or 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
| { | |
| "type": "record", | |
| "name": "DumpData", | |
| "namespace": "com.oath.affiliate.data_collector", | |
| "fields": [ | |
| { | |
| "name": "level1Categories", | |
| "type": [ | |
| "null", | |
| { |
This file contains hidden or 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
| // https://www.ptt.cc/bbs/Programming/M.1481568735.A.6D7.html | |
| // g++ -std=c++0x -ftemplate-depth=1001 a.cpp 2>&1 | grep -oP '(?<=Print<)\d+' | |
| template <int i> struct Print { enum : int { | |
| v = (void) i // die! | |
| };}; | |
| template <int i, bool b> struct Test { enum : int { | |
| v = 42 | |
| };}; | |
| template <int i > struct Test<i, false> { enum : int { |
This file contains hidden or 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
| var async = require('async'); | |
| (function () { | |
| var tmp; | |
| async.series( | |
| [ | |
| (cb) => { console.log("1"); tmp = "foo"; cb(null, "result1"); }, | |
| (cb) => { console.log("2"); cb(null, tmp + " result2"); }, | |
| ], | |
| (err, results) => { console.log("result: " + results); } |
This file contains hidden or 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
| function f() { return typeof null === "object"; } | |
| console.log(f()); | |
| // for (var i = 0; i < 10000; i++) f(); | |
| %OptimizeFunctionOnNextCall(f); | |
| console.log(f()); | |
| console.log(process.versions.v8) |
This file contains hidden or 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
| import java.lang.reflect.Constructor; | |
| public class AA { | |
| public static void main(String[] args) throws InterruptedException { | |
| f1(); | |
| } | |
| private static void f1() { | |
| int i = 3; | |
| String s = "foo"; | |
| Runnable r = new Runnable() { |
This file contains hidden or 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
| <html> | |
| <head> | |
| </head> | |
| <body id="body" bgcolor="black"> | |
| <div class="wrap" style="left: 500px; top: 100px"> | |
| <div class="cube"> | |
| <div class="front">🙊</div> | |
| <div class="back" style="background: #44ff44; font-size: 400%"></div> |