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
| ─── Step 2: Request personal_sign ───────────────────────────────────── | |
| Message (UTF-8): "hello my name is dgen1 my voice is my passport verify me" | |
| Hex-encoded for WC params[0]: 0x68656c6c6f206d79206e616d65206973206467656e31206d7920766f696365206973206d792070617373706f727420766572696679206d65 | |
| Approve on the phone... | |
| ✓ Signature received (544 bytes) | |
| ─── Step 3: Signature shape ─────────────────────────────────────────── | |
| Size: 544 bytes |
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
| thurin-id=openpgp4fpr:AE3AABC506CBAAA34D744FD2886704EBB2640781 |
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
| thurin-id=openpgp4fpr:03E53D807CE38C130ED42ECECD3D0D7F0C9E5FB8 |
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/bash | |
| # Foundry Project Bootstrap Script | |
| # Usage: ./foundry-bootstrap.sh <project-name> [--with-chainlink] [--with-openzeppelin] | |
| set -e | |
| PROJECT_NAME=${1:-"my-contract"} | |
| WITH_CHAINLINK=false | |
| WITH_OPENZEPPELIN=false |
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
| ### Keybase proof | |
| I hereby claim: | |
| * I am benwoody on github. | |
| * I am benwoodall (https://keybase.io/benwoodall) on keybase. | |
| * I have a public key ASB-iJ_894UEcFlEx14XDff-wEU1ByfkX2swjBLa10ajRAo | |
| 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
| ... | |
| type MyStruct struct { | |
| MyName string `json:"name"` | |
| } | |
| func (c RenderCorrectJson) Work() revel.Result { | |
| json := MyStruct{MyName: "Ben Woodall"} | |
| return c.RenderJson(json) | |
| } |
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
| javascript:window.location.href=window.location.href.replace("https://","ioc://"); |
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
| [alias] | |
| st = status | |
| co = commit | |
| br = branch | |
| ch = checkout | |
| df = diff | |
| dc = diff --cached | |
| lg = log -p | |
| lol = log --graph --decorate --pretty=oneline --abbrev-commit | |
| lola = log --graph --decorate --pretty=oneline --abbrev-commit --all |
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
Show hidden characters
| [ | |
| { | |
| "keys": ["super+alt+left"], | |
| "command": "set_layout", | |
| "args": | |
| { | |
| "cols": [0.0, 0.33, 1.0], | |
| "rows": [0.0, 1.0], | |
| "cells": [[0, 0, 1, 1], [1, 0, 2, 1]] | |
| } |
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
| server = require('http').createServer (request, response) -> | |
| response.writeHead 200, ('ContentType': 'text/plain') | |
| response.end "Hello World" | |
| server.listen 8124 | |
| console.log 'Server running at http://0.0.0.0:8124' |
NewerOlder