I hereby claim:
- I am scizo on github.
- I am smniel (https://keybase.io/smniel) on keybase.
- I have a public key whose fingerprint is 02E8 D67C 3587 1792 AC07 143C 2BE9 606E D120 30FE
To claim this, I am signing this object:
| ;!Execution error (ExceptionInfo) at com.wsscode.pathom3.connect.runner/check-entity-requires! (runner.cljc:941). | |
| ;!Required attributes missing at path [:legacy-registration/custom-field-instances 0]: | |
| ;!- Attribute :legacy-custom-field-instance/rich-value was expected to be returned from resolver field-example/legacy-custom-field-instance-rich-value but inputs were missing: | |
| ;! Can't find parent node that should provide attribute :legacy-custom-field-instance/custom-field, this is likely a bug in Pathom, please report it. | |
| ;==== graph-63403 - start | |
| ;={:path nil, | |
| ;= :entity {:legacy-registration/id "cmhzkhmb8zaxs089793vse8d8"}, | |
| ;= :batch-pending nil, | |
| ;= :batch-waiting nil, | |
| ;= :graph |
| {:paths ["."] | |
| :deps {com.wsscode/pathom3 {:mvn/version "2025.01.16-alpha"}}} |
I hereby claim:
To claim this, I am signing this object:
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| </head> | |
| <body> | |
| <canvas id="buddhabrot" width="1000" height="1000"></canvas> | |
| <div id="images"></div> | |
| <script type="text/javascript"> | |
| var canvas = document.getElementById('buddhabrot'), |
| function romanNumeral(n) { | |
| var result = '', | |
| thousands = integerDivision(n,1000), | |
| hundreds = integerDivision((n % 1000),100), | |
| tens = integerDivision((n % 100),10), | |
| ones = n % 10; | |
| result += stringTimes(thousands,'m'); | |
| result += romanHelper(hundreds,'c','d','m'); | |
| result += romanHelper(tens,'x','l','c'); |
| (defn factorial [n] | |
| (loop [n n | |
| tally 1] | |
| (if (< n 1) | |
| tally | |
| (recur (dec n) (* n tally))))) |
| class AppDelegate | |
| def application(application, didFinishLaunchingWithOptions:launchOptions) | |
| @window = UIWindow.alloc.initWithFrame(UIScreen.mainScreen.bounds) | |
| @window.rootViewController = ExampleViewController.alloc.init | |
| @window.makeKeyAndVisible | |
| true | |
| end | |
| end |
| require 'observer' | |
| class TestObservable | |
| include Observable | |
| def initialize(name) | |
| @name = name | |
| end | |
| def change_with(value) |
| source :rubygems | |
| gem 'bunny' | |
| gem 'json' |
| require 'eventmachine' | |
| module Liard | |
| TEST = false | |
| MINIMUM_PLAYERS = 2 | |
| HELP = <<-END | |
| -- Commands from client | |
| BID <num> <val> Creates a bid of "num vals (e.g. four 3's)" |