Sekitar 20 hasil (2.39 detik)
Komunitas discuss.online

Announcement of Sublinks

I referenced the Rust code to determine what was sent and received. We’re implementing better code logic; we’re not just copying their API. We want to be compatible to attract users and support all the hard work used to create Lemmy phone apps. Java is for the core Sublinks API/core. Golang is being used for the federation service that operates independently. Once it’s done, it will be platform agnostic if someone else wants to use the federation service for their fediverse project. They communicate through a message bus. Yes, we plan to do the new API correctly. We will support Lemmy’s API for as long as it is relevant, primarily for mobile apps. Multiple domains aren’t possible yet, but that doesn’t mean we cannot add it later. I’m unhappy with the Lemmy roadmap, development speed, and quality. I wanted to contribute but found it difficult to. I did the next best thing and created a somewhat drop-in replacement with a much larger community of developers who are willing to support it. You can see the complete Sublinks roadmap here: https://github.com/orgs/sublinks/projects/1. The first release of parity (v0.10) will use the existing Lemmy front-end. All releases after that will no longer support the Lemmy UI because that’s when the enhanced features start to roll in. We don’t want to support or fork the current Lemmy UI.

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 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 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 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.

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 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 hachyderm.io

*Permanently Deleted*

@CoderSupreme The founder of StackOverflow went on to work on Discourse (https://discourse.org). There’s actually an ActivityPub plugin available nowadays, so apparently people can contribute from whatever fediverse server they’re coming from. For example see Go Bridge (https://forum.golangbridge.org) @programming

Komunitas sh.itjust.works

Suggestions for first C project

As someone whose first “real” programming language was C, I recommend against writing anything new in C. There are plenty of C projects you could consider contributing to as a way to learn the language (and if you want a long and prosperous career, knowing C can only help you) but language design has come a long way since the 70s and something like Golang or Zig or Rust would get you many of the advantages of C with many fewer pitfalls.

Komunitas lemmygrad.ml

The GenZedong cause needs programmers!

I may out myself as a non zoomer but here I come Languages C, C++(12+ years), Python(10ish years), Rust (like 7 years, I had one of the first builds of rustc in my old laptop) and Golang (5 years). I did read over eloquent javascript and can hold my ground. I know enough of css, html to get around. Personally I’m more of a systems person but hey. websites Yeah, I used to maintain some bad PHP wordpress stuff. I also know obscure w3c standards because of work lol. internet ish, generally on a couple of places all the time Long being an ML I’m generally drifting around, but I am closest to ML than anything else. More than 14 years ago Marxist figure Perhaps because I’m latinx, but maybe che? I find it hard to commit to a figure as they all tend to be flawed in ways I can’t describe. I would find it easier to mention texts that marxed (haha) me Trans? yes, trans. No buts no ifs. reddit None really, I got banned and I mostly make troll throwaways nowadays

Komunitas lemm.ee

In case you forgot.

Ehhh, golang’s pretty down there for me too. Sure, you have types, but the way you “implement” an interface is the sussiest thing I’ve seen in most well-known programming languages. Not to mention all the foot guns (pointers for nullables is a common one, and oh, if you forgot that a function returns an error, and you called it for its effects, you’ve just built a possibly very silent bomb) you end up building into your programs. I use in prod, and I get scared.

Komunitas programming.dev

C++

Perfect description. It also describes why I now love GoLang so much. “How has GoLang improved on this unholy tome or horrors?” “Well, it fits in my pocket now.”