| Name | Shortcuts |
|---|---|
angry |
>:(, >:-(, >=(, >=-( |
blush |
:"), :-"), ="), =-") |
broken_heart |
</3, <\3 |
confused |
:-, :-/, =-\, =-/ |
cry |
:'(, :'-(, :,(, :,-(, ='(, ='-(, =,(, =,-( |
frowning |
:(, :-(, =(, =-( |
heart |
<3, ♡ |
imp |
]:(, ]:-(, ]=(, ]=-( |
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
| traceroute to bad.horse (162.252.205.157), 30 hops max, 60 byte packets | |
| 1 bad.horse [162.252.205.130] | |
| 2 bad.horse [162.252.205.131] | |
| 3 bad.horse [162.252.205.132] | |
| 4 bad.horse [162.252.205.133] | |
| 5 he.rides.across.the.nation [162.252.205.134] | |
| 6 the.thoroughbred.of.sin [162.252.205.135] | |
| 7 he.got.the.application [162.252.205.136] | |
| 8 that.you.just.sent.in [162.252.205.137] |
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
| #include <LiquidCrystal.h> | |
| LiquidCrystal lcd(10, 11, 2, 3, 4, 5); | |
| String inputString = ""; | |
| boolean stringComplete = false; | |
| void setup() { | |
| Serial.begin(9600); | |
| lcd.begin(16, 2); | |
| inputString.reserve(128); //allocate 128 bytes RAM geheugen voor de string |
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
| Homebrew build logs for homebrew/php/php70-mongodb on macOS 10.11.6 | |
| Build date: 2016-11-22 12:52:03 |
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
| { | |
| "name": "squadbot-demo", | |
| "commands": { | |
| "demo": "replies \"Yoooo\"" | |
| }, | |
| "protocols": [ | |
| "*" | |
| ] | |
| } |
I hereby claim:
- I am nickforall on github.
- I am nickforall (https://keybase.io/nickforall) on keybase.
- I have a public key whose fingerprint is 421D 6900 A5FF 2F6F 59CC 3549 03D5 2213 0900 BDF2
To claim this, I am signing this object:
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
| global start | |
| section .multiboot_header | |
| header_start: | |
| dd 0xe85250d6 ; magic number (multiboot 2 spec) | |
| dd 0 ; architecture 0 | |
| dd header_end - header_start ; header length | |
| ; checksum | |
| dd 0x100000000 - (0xe85250d6 + 0 + (header_end - header_start)) |
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
| defmodule MyProject.Ethereum.Multicall do | |
| @multicall_addr "0xeefBa1e63905eF1D7ACbA5a8513c70307C1cE441" | |
| @doc """ | |
| Takes a list of {address, call} tuples, returns an ok tuple with block number and data in same order as list of calls | |
| iex> MyProject.Ethereum.Multicall.multicall({"0x000", ABI.encode("tokenURI(uint256)", [token_id])}) | |
| {:ok, 0x000} | |
| """ | |
| def multicall(list) 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
| defmodule MyProject.Ethereum.AwsNode do | |
| use Ethereumex.Client.BaseClient | |
| alias Ethereumex.Config | |
| @type opt :: {:url, String.t()} | |
| @type empty_response :: :empty_response | |
| @type invalid_json :: {:invalid_json, any()} | |
| @type http_client_error :: {:error, empty_response() | invalid_json() | any()} | |
| @spec post_request(binary(), [opt()]) :: {:ok, any()} | http_client_error() |
OlderNewer