One day, Valve will be under different ownership, and we will regret the time we fought for their monopoly.
- 0 Posts
- 8 Comments
beefsack@lemmy.worldto Technology@lemmy.world•I have never seen an ad in the past 6 years. I use android phone, windows PC and Android TV. Keen to hear when was the last time you saw an AD ?English14·2 years agoIn some cities they are, and it’s a beautiful thing. An example is Canberra, Australia.
beefsack@lemmy.worldto Programming@programming.dev•What non-IDE tekst editor do you use?2·2 years agoIt’s such a cool editor, but after decades of Vim motor memory I just can’t seem to wrap my head around the cursor / selection changes. I really wish there was an option to just make selection work like Vim.
beefsack@lemmy.worldto Programming@programming.dev•I wish writing SQL queries was more popular than ORMs421·2 years agoBetter than an ORM is to use a query builder. You get the expressiveness of SQL with the safety and convenience of an ORM.
Most developers that use ORMs create poorly performing monstrosities, and most developers who write raw SQL create brittle, unsafe and unmaintainable software. There is a happy medium here.
Swift only treats Apple OSes as first class citizens - even though technically you can use it on other platforms it’s a painful and limited experience.
beefsack@lemmy.worldto Technology@lemmy.world•‘You’re Telling Me in 2023, You Still Have a ’Droid?’ Why Teens Hate Android Phones / A recent survey of teens found that 87% have iPhones, and don’t plan to switchEnglish48·2 years agoThis is only in the US I assume? The article isn’t very up front about it.
beefsack@lemmy.worldto Technology@lemmy.world•"X.com now points to https://twitter.com/"English1·2 years agodeleted by creator
beefsack@lemmy.worldto Programming@programming.dev•Unit testing isn't enough. You need static typing too.56·2 years agoI remember my time doing Ruby was really informative about testing and languages in general.
The Ruby community was really great at doing automated testing and it’s actually where I really cut my teeth on testing, but if you go back and look at the tests you’ll find heaps of them are testing and checking types for functions. It almost felt like people were building static typing using automated tests.
Some people bang on about static typing getting in the way of agility, but the reality is that you either end up spending the time creating extra tests, or you end up cutting corners and creating unreliable software which you’ll spend a lot of time troubleshooting down the road. You end up paying a big price to save a marginal amount of time at the start of a project.
Rust, like the majority of modern languages, has an official formatter which everyone should be using. Formatters are good enough nowadays that everyone should be using them.