Frectonz
well that was a doozy, doing the type check was difficult but finally figured it out, next step, rewriting the ast
a story in 10 commits, i am literally at the last step π
Are the local startup meetups and communities a poser fest?
Final Results
44%
Yes
14%
No
42%
I just like voting
If @yohan_nes 's arc has thought me anything it's that becoming skilled in android development inevitably leads to starting to learn ios development. π
π3
The most linked to article in Wikipedia is the article for the United States .
https://youtu.be/JheGL6uSF-4
https://youtu.be/JheGL6uSF-4
YouTube
I Made a Graph of Wikipedia... This Is What I Found
Code for all my videos: https://github.com/sponsors/adumb-codes/
Get the graph as a poster: https://adumb.store/collections/wikipedia-graph
Bluesky: https://bsky.app/profile/adumb.codes
Twitter: https://twitter.com/adumb_codes
A deep dive into the networkβ¦
Get the graph as a poster: https://adumb.store/collections/wikipedia-graph
Bluesky: https://bsky.app/profile/adumb.codes
Twitter: https://twitter.com/adumb_codes
A deep dive into the networkβ¦
π3
Frectonz
i am literally at the last step
This thing is so close to working but the typecheck is failing, after i transform the try statement to a regular if statement.
from this
to this
it's expecting content to be
from this
try c or string = ioutil.ReadFile(filename)
to this
content, err := ioutil.ReadFile(filename)
if err != nil {
var content string
return content, err
}
it's expecting content to be
SLICE-[]byte but the function returns a []byte.
Frectonz
A week is 2% of the year.
This is actually a good way to test people. How people react to this is kind of telling.
π1
Frectonz
This thing is so close to working but the typecheck is failing, after i transform the try statement to a regular if statement. from this try c or string = ioutil.ReadFile(filename) to this content, err := ioutil.ReadFile(filename) if err != nil { varβ¦
Any go devs here who know what might be going wrong with this.
Frectonz
Language I think is overrated: Go
Why am I spending all this effort to fix this overrated garbage lang. They mention that the current go compiler code was auto translated to
From all the compiler codebases I have seen I think python was the only well structured one.
go from the original c version and it shows, the codebase starting from the directory structure is just disappointing. From all the compiler codebases I have seen I think python was the only well structured one.
cloudflare just keeps winning and it's all open source.
https://blog.cloudflare.com/javascript-native-rpc
https://blog.cloudflare.com/javascript-native-rpc
The Cloudflare Blog
We've added JavaScript-native RPC to Cloudflare Workers
Cloudflare Workers now features a built-in RPC (Remote Procedure Call) system for use in Worker-to-Worker and Worker-to-Durable Object communication, with absolutely minimal boilerplate. We've designed an RPC system so expressive that calling a remote serviceβ¦
π3