From games to reminders to drink water: The rise of 'streaks,' rewards that keep you hooked
Check out mango. Its pleasant and has a really nice interface. You can use your library card for free premium access.
Check out mango. Its pleasant and has a really nice interface. You can use your library card for free premium access.
Lihat kiriman asli pada platform media sosial terkait.
Golang outside of infrastructure What does that even mean?
Holy shit, dockerhub, golang, google, and gitlab all blocked Iranian IPs, damn. I would’ve never thought fedora would go along with that too.
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.
I’m actually really impressed with the auto complete intellij is packaged with now. It’s really good with golang (probably because golang has a ton of code duplication).
Lihat kiriman asli pada platform media sosial terkait.
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.
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
Lihat kiriman asli pada platform media sosial terkait.
Lihat kiriman asli pada platform media sosial terkait.
Lihat kiriman asli pada platform media sosial terkait.
Lihat kiriman asli pada platform media sosial terkait.
Lihat kiriman asli pada platform media sosial terkait.
Lihat kiriman asli pada platform media sosial terkait.
Comments
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)
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!
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.
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