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
pragma solidity ^0.4.0; | |
import "browser/oraclizeapi.sol"; | |
contract brokenWOraclize is usingOraclize { | |
event DEBUG(uint[] a); | |
function brokenWOraclize() { | |
oraclize_setProof(proofType_TLSNotary | proofStorage_IPFS); | |
} |
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
" Specify a directory for plugins | |
" - For Neovim: stdpath('data') . '/plugged' | |
" - Avoid using standard Vim directory names like 'plugin' | |
call plug#begin('~/.vim/plugged') | |
" Make sure you use single quotes | |
" Shorthand notation; fetches https://github.com/junegunn/vim-easy-align | |
Plug 'junegunn/vim-easy-align' |
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
american fuzzy lop 2.52b (output) | |
┌─ process timing ─────────────────────────────────────┬─ overall results ─────┐ | |
│ run time : 7 days, 20 hrs, 28 min, 6 sec │ cycles done : 186 │ | |
│ last new path : 1 days, 0 hrs, 2 min, 8 sec │ total paths : 88 │ | |
│ last uniq crash : none seen yet │ uniq crashes : 0 │ | |
│ last uniq hang : none seen yet │ uniq hangs : 0 │ | |
├─ cycle progress ────────────────────┬─ map coverage ─┴───────────────────────┤ | |
│ now processing : 87 (98.86%) │ map density : 0.74% / 0.97% │ | |
│ paths timed out : 0 (0.00%) │ count coverage : 1.73 bits/tuple │ |
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
Ciphers aes192-ctr,aes256-ctr,[email protected],[email protected] | |
KexAlgorithms curve25519-sha256,[email protected],diffie-hellman-group-exchange-sha256,diffie-hellman-group18-sha512 | |
MACs [email protected],[email protected],[email protected] | |
HostKeyAlgorithms ssh-ed25519,rsa-sha2-512,rsa-sha2-256,ssh-rsa |
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
#!/bin/sh | |
verbose_echo() | |
{ | |
[ -n "${VERBOSE##[NFnf]*}" ] && \ | |
echo "$@" | |
} | |
LOGGED_USERS=$(who | awk '{print $1 " "}') | |
for user in $LOGGED_USERS; do |
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 sequtils, tables, strutils | |
const gameRange = (1..100).toSeq | |
const gameRuleTable = { | |
3: "Fizz", | |
5: "Buzz" | |
}.toOrderedTable | |
proc gameRules(x: int): string = | |
for k,v in gameRuleTable.pairs: |
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
#!/usr/bin/env bash | |
set -Eeuo pipefail | |
trap cleanup SIGINT SIGTERM ERR EXIT | |
script_dir=$(cd "$(dirname "${BASH_SOURCE[0]}")" &>/dev/null && pwd -P) | |
usage() { | |
cat <<EOF | |
Usage: $(basename "${BASH_SOURCE[0]}") [-h] [-v] [-f] -p param_value arg1 [arg2...] |
OlderNewer