Skip to content

Instantly share code, notes, and snippets.

View urcades's full-sized avatar
🎡
the world

é. urcades urcades

🎡
the world
View GitHub Profile
~
urbit 0.7.3
boot: home is /home/ubuntu/Urbit/sabbus
loom: mapped 2048MB
boot: protected loom
live: loaded: MB/214.761.472
boot: installed 258 jets
arvo: time: ~2019.2.23..02.27.43..572d
rest: checkpoint at event 897
rest: old 0v1k.6b0fi, new 0v1o.4r3q7
ubuntu@ip-10-0-0-151:~/Urbit$ urbit sabbus
~
urbit 0.7.3
boot: home is /home/ubuntu/Urbit/sabbus
loom: mapped 2048MB
boot: protected loom
live: loaded: MB/214.761.472
boot: installed 258 jets
arvo: time: ~2019.3.6..19.32.14..77f4
rest: checkpoint at event 1.823
ubuntu@ip-10-0-0-151:~/Urbit$ urbit -w ~sabbus -k X.key
~
urbit 0.7.3
boot: home is /home/ubuntu/Urbit/sabbus
loom: mapped 2048MB
boot: protected loom
live: logical boot
boot: installed 258 jets
fetching https://bootstrap.urbit.org/urbit-0.7.3.pill to sabbus/.urb/urbit.pill
boot: loading sabbus/.urb/urbit.pill
@urcades
urcades / 20190422-stacktrace
Created April 22, 2019 19:38
2019 04 22 ~fabled-faster stack trace
~
urbit 0.7.4
boot: home is /Users/edouard/Documents/apps/fabled-faster
loom: mapped 2048MB
boot: protected loom
live: loaded: MB/269.402.112
boot: installed 258 jets
arvo: time: ~2019.4.22..17.57.08..6a81
rest: checkpoint at event 20.985
rest: old 0vu.1r6te, new 0vv.e5f4p
Verifying my Blockstack ID is secured with the address 1PtNVvNj8KsuvEwgpaVBPSn6CEKQa3Fc1Y https://explorer.blockstack.org/address/1PtNVvNj8KsuvEwgpaVBPSn6CEKQa3Fc1Y
@urcades
urcades / aura.hoon
Last active July 14, 2019 23:48
Hoon 101 Assignment 1
:: Assignment Reflection 20190714
::
:: I was struggling to figure out a small
:: issue I was having in the parsing of my
:: code — I realized pretty quickly after
:: re-scanning the Hoon syntax docs that
:: the problem I was having was
:: keeping the user's input typed to '*'
:: when it should have been more
:: specific/strict. Simply changing '*'
Web3 Status
Web3 Unavailable -> Unavailable
Web3 Available -> Uniswap Approved
Web3 Testnet -> Testnet
Uniswap Approved
Approved -> Connected
Not Approved Mobile -> Approve
Not Approved Desktop -> Disconnected
Not Logged In Desktop -> Logged Out
@urcades
urcades / gen2.hoon
Created July 22, 2019 16:37
Hoon 101 Assignment 2
:: Assignment Reflection 20190722
::
:: I was overthinking this assignment to a huge degree before
:: I read the type-checking docs in section 2.2 and sanity-checked
:: myself — I think I got too stuck with trying to replicate the
:: code demonstrated in the "conditionals" walkthrough
:: and added too many layers of t/f checking before
:: landing on the below solution, remembering that the assignment
:: was to produce a naked generator
@urcades
urcades / ex3b.hoon
Created July 29, 2019 17:52
Hoon 101 Assignment 3B
:: I managed to figure out how to get a simple
:: atom-only list checker running, but I struggled
:: to figure out how to get strings rendered as their
:: initial textual aura instead of @ud-type output
::
:: I was curious why I needed to use '2' as my count
:: number, as other examples I saw in the tutorial (snag.hoon)
:: allowed the user to specify their "selection point
:: and have it represented in the output just fine, i.e:
:: using an input of "3" in snag.hoon would actually get the third list item.
@urcades
urcades / ex3a.hoon
Created July 29, 2019 18:19
Hoon 101 Assignment 3A
:: Line 3: We are creating a naked generator that accepts a @ud-typed face we're naming 'n'
::
|= n=@ud
:: Line 6: Within the initial generator, we're setting a new face (with value) to be used in the recursion below — a @ud-typed face named 't'
::
=/ t=@ud 1
:: Line 9: The rune "barhep" sets our recursion point: Everything after this rune loops until a terminating clause is met
::
|-
:: Line 12: The rune 'wutcol' branches execution based on a boolean test — it is asking, "is face 'n' equivalent to the atom 1?"...