Viewing profile — fyzix
fyzix
HN member- Joined
- Sat, Mar 13, 2021, 9:08 AM UTC
- HN karma
- 282
- Public activity
- 120 items
- HN profile
- View on Hacker News ↗
About fyzix
No profile information was provided.
Recent public activity
-
comment
Comment #48009007
They were forced to switch when the dominant military power decided to rugpull on August 15, 1971.
-
comment
Comment #45656141
This is closed source software and the github[1] indicates that it will be open in the future so why are you marketing it as opensource in the present? [1]: https://github.com/apic…
-
comment
Comment #45484194
28% of new iOS apps are made with flutter and it's the #1 cross platform framework on stack overflow 2024 survey so I highly doubt it has flatlined. https://flutter.dev/multi-platf…
-
comment
Comment #42081032
What’s the file size limit for wasm modules? Do you get charged for cpu while awaiting I/O? Do edge apps run before or after cdn caching?
-
comment
Comment #39224367
> https://blog.jetbrains.com/kotlin/2023/05/compose-multiplatf... > > "On iOS, Compose Multiplatform user interfaces are rendered via a canvas implementation based on the graphics …
-
comment
Comment #38963328
A list of features would be nice.
-
comment
Comment #38847239
It sacrifices maintainability and robustness to save a measly 80 bytes (I counted).
-
comment
Comment #38836654
Is there any particular reason why you didn't add types to the params? I'm just curious why python devs don't embrace typing more.
-
comment
Comment #38819377
Flutter if you don't need multi-window support. Examples: Ubuntu AppCenter: https://github.com/ubuntu/app-center Android Nearby Share (Windows): https://www.android.com/better-toge…
-
comment
Comment #38808600
Looks promising, this would be awesome for flutter.
-
comment
Comment #38766721
Is it ready for benchmarking? D currently sits at the top of https://github.com/jinyus/related_post_gen and it would be interesting to see how neat stacks up.
-
comment
Comment #38764009
> Zotero is a free, easy-to-use research tool that helps you collect, organize, annotate, cite, and share your work.
-
comment
Comment #38713935
The author seems to be chasing the small size trophy at any cost...to the point where he's using "var" instead of "const" because it saves a few bytes. Not indicative of someone se…
-
comment
Comment #38462876
I think my benchmark[1] would be a great test for this. The jq[2] version takes 50s on my machine. [1] : https://github.com/jinyus/related_post_gen [2]: https://github.com/jinyus/r…
-
comment
Comment #38453981
Thanks, should've grepped for "max". But the amount of keys wasn't mentioned.
-
comment
Comment #38372646
What are the limits regarding the max size of value and number of keys? Docs doesn't mention...
-
comment
Comment #38234840
What happens if 'find()' returns a list and you call '.text()'. Intuition tells me it should fail but maybe it implicitly gets the text from the first item if it exists. Either way…
-
comment
Comment #38162664
I'm very new to this kind of service, but do you have to write your own rulesets for each site you want to bypass? The repo doesn't seem to include much...
-
comment
Comment #38155904
I primarily use F# on linux and the experience is very smooth. editor: VSCode + ionide extension stdlib: F# has its own stdlib but it can also access all of dotnet's stdlib seemles…
-
comment
Comment #38155366
I'm usually a crypto sceptic but your story scares me, because it'll only get worse with time.
-
comment
Comment #38122771
The videos were working earlier in the week...they're returning a 403 now. Repo with slides: https://github.com/jinyus/Fsharp-Teaching
-
comment
Comment #38116020
Flutter apps are written in dart which compiles to native code or js/wasm on web. Dart can interop with swift/obj-C/Java/Kotlin through the use of channels. Dart can interop with C…
-
comment
Comment #37877171
Any eta on a json module?
-
comment
Comment #37864606
Fast compilation, Fast runtime, Easy to learn, Easy to distribute, Easy concurrency. ps: I wrote a data processing benchmark[1] and go is currently leading the charts. I ported it …
-
comment
Comment #37850732
Because it uses the same object for all items in the array. Luckily, they are just placeholders and aren't being mutated.