Sekitar 20 hasil (1.94 detik)
Komunitas lemmy.world

azorius 0.1

Just tried it there it is blazingly fast and from the stats it seems super light on resources too. It also works great without js and cookies at least to browse. Looks like it is coded in golang and is using sqlite for the back end. It has an old school web vibe to it.

Komunitas programming.dev

Dsci runner migrated to golang

Hey everyone! After week of work finally rewrote dsci runner on golang. git clone https://github.com/melezhik/dsci-runner.git cd dsci-runner go mod tidy go build -o dsci_runner main.go ./dsci_runner That means just a single binary install Check it out ! ) Forgejo integrations details are here - http://deadsimpleci.sparrowhub.io/doc/forgejo-setup

Komunitas programming.dev

I wish writing SQL queries was more popular than ORMs

I too want my query results in an object, but thankfully libraries like sqlx for golang can do this without the extra overhead of an ORM. You give them a select query and they spit out hydrated objects. As far as multiple DBs go, you can accomplish the same thing as long as you write ANSI standard SQL queries. I’ve used ORMs heavily in the past and might still for a quick project or for the “command” side of a CQRS app. But I’ve seen too much bad performance once people move away from CRUD operations to reports via an ORM.

Komunitas programming.dev

Dsci runner migrated to golang

Hey everyone! After week of work finally rewrote dsci runner on golang. git clone https://github.com/melezhik/dsci-runner.git cd dsci-runner go mod tidy go build -o dsci_runner main.go ./dsci_runner That means just a single binary install Check it out ! ) Forgejo integrations details are here - http://deadsimpleci.sparrowhub.io/doc/forgejo-setup

Komunitas sh.itjust.works

More confusion for recruiters

Make it so the capitalization affects the scope. Oh wait. (Sorry, I recently had to switch to golang for work, and I’m just not used to it yet, and I’m getting annoyed by some of these design decisions)

Komunitas lemmy.villa-straylight.social

Google Domains to shut down

Yup. I migrated everything out of Google when they killed Listen. Was on the edge after Inbox, but Listen was the last straw. They don’t know how to keep great products alive, and I’m tired of getting suckered punched by them. Exceptions are Android (because there’s no other options) and Angular/Golang, because they would survive being abandoned by Google. Hell, they’d probably improve!

Komunitas programming.dev

Should I Rust or should I Go?

I think this old article exemplify the bad design of Go, and why I think Rust is very well designed. TL;DR Go takes many shortcuts, in the name of simplicity, that ends up with pure lies. Like providing Unix like permissions for Windows and silently ignore it. https://fasterthanli.me/articles/i-want-off-mr-golangs-wild-ride

Komunitas feddit.de

Maschinelles Lernen: Nicht so brillant wie von manchen erhofft – netzpolitik.org

Puh, also ich hab ChatGPT jetzt schon öfter versucht als Hilfestellung fürs programmieren zu benutzen und es kam immer Bullshit raus. Der hat immer irgendwelche Bibliotheken und Parameter erfunden die so wirken als wären sie die genaue Wunderwaffe für mein Problem. Das Problem ist dann, dass ChatGPT diese Bibliotheken aus zB Javascript kennt, mein Problem aber zB in GoLang ist, ChatGPT “übersetzt” dann die Dokumentation von der Javascript Bibliothek so dass sie aussieht als wäre sie Go. Ich sehe großes Potenzial in ChatGPT wenn man es richtig einsetzt. Man kann es super nutzen um zB seine Texte umschreiben zu lassen. ChatGPT interpretiert dann den Text wie es ihn versteht und wenn die neue Variante von ChatGPT Fehler enthält, kann man gut daraus schließen wo der Ursprungstext Interpretationsspielraum bietet und falsch verstanden werden kann. Auch für schnelle Businessmails ist das gut. Aber in meinen Augen nicht fürs Programmieren

Komunitas lemmy.zip

'It's Possible to jailbreak F-35 like iPhone', Says Dutch State Secretary of Defense Tuinman

The future is vibe coders getting jobs creating plausible, yet fundamentally broken firmware updates to OTA brick F-35 fighter jets. Come attack us, I dare you. Jack here used his prompting skills to package some Stack Overflow RUST code into Golang binaries that another prompt converted into XHTML so another prompt could compile it into a Bash script to fix the bug in flight controls. Come within 50-nautical miles and we’ll OTA update your plane so hard you wish we fired missiles at you!

Komunitas lemmy.ca

How to learn (QC) french good?

For Canadian French content check out Mauril, it’s a platform by Radio-Canada that has compiled clips of their own content suitable for whatever level you’re at, and asks questions to gauge your comprehension. Speaking of Radio-Canada you could tune into their radio channel ICI Première, which is available in all areas in Canada. In Toronto it’s 860 AM/90.3 FM. Another resource I like to recommend for language learning in general is Mango Languages, it’s leagues ahead of Duolingo and has a Canadian French course, though it’s not as extensive as the Metropolitan French one. Plus they are partnered with most (at least North American) public libraries so if you have a library card you can register with that for free forever, normally it’s like $20/month or something.

Komunitas lemmy.world

Database hosting?

You can import CSV files directly into an SQLite database. Then you are free to do whatever sql searches or manipulations you want. Python and golang both have great SQLite libraries from personal experience, but I’d be surprised if there is any language that doesn’t have a decent one. If you are running Linux most distros have an SQLite gui browser in the repos that is pretty powerful.

Komunitas beehaw.org

Golang be like

Or a linter. Or code reviews. Or anything else. The nice thing is that if the compiler doesn’t demand something, it can be given to the engineer as an option. The compiler should have the option to do it. The option could even be defaulted on. Afaik there is no way in Golang to disable that error (this is the line that does it: https://github.com/golang/go/blob/04fb929a5b7991ed0945d05ab8015c1721958d82/src/go/types/stmt.go#L67-L69). like --no-pedantics or such. Golang’s compiler openly refuses to give engineers more choices in what they think is the best system to handle it.