Sekitar 20 hasil (1.19 detik)
Komunitas lemmy.ml

What open source project(s) are you working on?

Not a good programmer, but I’ve been writing documentation improvements for a few projects I use in my free time. I’m doing it for kopia currently as the documentation for that project is not great at the moment. Kopia is a deduplicating backup application similar to BorgBackup and Restic, written in Golang by a former google engineer. It creates infinite incremental backups, has encryption and compression, and works with S3, B2, SSH, or a local filesystem.

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

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