- Game of Thrones characters
- First generation Pokémon,
- 90s TV show characters/catch phrases/references
- Rejected Girl Scout cookie flavours
- Disney characters
- Famous dead people
- Famous living people
- Catastrophic events from history
- Things you find on instagram
- Notable tax protesters
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 main | |
import ( | |
"crypto/rand" | |
"fmt" | |
"math/big" | |
) | |
type action func(bool) |
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 main | |
import ( | |
"encoding/json" | |
"flag" | |
"fmt" | |
"io/ioutil" | |
"net/http" | |
"sort" | |
"strconv" |
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 main | |
import ( | |
"crypto/rand" | |
"flag" | |
"fmt" | |
"secondbit.org/wendy" | |
"time" | |
) |
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 main | |
import ( | |
"crypto/rand" | |
"flag" | |
"fmt" | |
"secondbit.org/wendy" | |
"time" | |
) |
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
local avg = tonumber(redis.call("get", "avg")) if avg == nil then return { err = "avg not found" } end local datapoints = tonumber(redis.call("get", "datapoints")) if datapoints == nil then return { err = "datapoints not found" } end local raw = avg * datapoints datapoints = datapoints + 1 raw = raw + ARGV[1] local newavg = raw / datapoints redis.call("set", "avg", newavg) redis.call("set", "datapoints", datapoints) return tostring(newavg) |
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 main | |
import ( | |
"crypto/rand" | |
"flag" | |
"fmt" | |
"secondbit.org/pastry" | |
"time" | |
) |
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
<?php | |
/** | |
* PHP client for IronWorker | |
* IronWorker is a massively scalable background processing system. | |
* | |
* @link https://github.com/iron-io/iron_worker_php | |
* @link http://www.iron.io/ | |
* @link http://dev.iron.io/ | |
* @version 1.2.1 | |
* @package IronWorkerPHP |
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 main | |
import ( | |
"fmt" | |
"net/http" | |
"mime/multipart" | |
"bytes" | |
"os" | |
"io" | |
"io/ioutil" |
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
--39f5903459794ad483153244cc6486ec | |
Content-Disposition: form-data; name="data" | |
Content-Type: application/json | |
{"name":"NodeWorker","file_name":"__runner__.sh","runtime":"sh"} | |
--39f5903459794ad483153244cc6486ec | |
Content-Disposition: form-data; name="file"; filename="worker.zip" | |
Content-Type: application/zip | |
__runner__.shUX |