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
    
  
  
    
  | gnoland start | |
| gnokey maketx addpkg -pkgdir $WORK -pkgpath gno.land/r/demo/xx -gas-fee 1000000ugnot -gas-wanted 2000000 -broadcast -chainid=tendermint_test test1 | |
| stdout OK! | |
| gnokey maketx addpkg -pkgdir $WORK/other -pkgpath gno.land/r/demo/yy -gas-fee 1000000ugnot -gas-wanted 2000000 -broadcast -chainid=tendermint_test test1 | |
| stdout OK! | |
| # This will succeed but maybe we want to change it so it doesn't. | |
| gnokey maketx call -pkgpath gno.land/r/demo/yy -func SaveRef -gas-fee 1000000ugnot -gas-wanted 2000000 -broadcast -chainid=tendermint_test test1 | 
  
    
      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 deelawn on github. | |
| * I am deelawn (https://keybase.io/deelawn) on keybase. | |
| * I have a public key ASAfKXT0l4U_dpZghG4XidGS7g6Wlk7lZhLhlH-a9kDHbwo | |
| 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
    
  
  
    
  | package main | |
| import ( | |
| "fmt" | |
| qrcode "github.com/skip2/go-qrcode" | |
| ) | |
| func main() { | |
| err := qrcode.WriteFile("https://deelawn.ninja", qrcode.Medium, 256, "qr.png") | 
  
    
      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
    
  
  
    
  | # uses python 2.7 | |
| from random import randint | |
| suits = ['C', 'D', 'H', 'S'] | |
| values = ['A', '2', '3', '4', '5', '6', '7', '8', '9', '10', 'J', 'Q', 'K'] | |
| pool = [values[:], values[:], values[:], values[:]] | |
| deck = [] | |
| while len(suits) != 0: | 
  
    
      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
    
  
  
    
  | # after cloning the docs repo, run in the repo's parent directory | |
| ''' | |
| Definition of PATH_CONFIG | |
| -------------------------- | |
| [ | |
| { | |
| "path" : "docs/docs/hoon/rune/", | |
| "parse_here" : true, | |
| "recursive" : 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
    
  
  
    
  | // Doesn't work in Chrome; only confirmed for Firefox | |
| var remRef = document.createElement('meta'); | |
| remRef.name='referrer'; | |
| remRef.content='no-referrer'; | |
| document.querySelector('head').append(remRef); | 
  
    
      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
    
  
  
    
  | expect -c "spawn ssh -oStrictHostKeyChecking=no -oCheckHostIP=no usr@host \"ls;exit\"; expect \"*?assword:*\"; send \"PASSWORD_GOES_HERE\r\"; interact" | awk 'NR>2' |