Ah! Your using Kanban then!
- 0 Posts
- 33 Comments
Nighed@sffa.communityto
Programmer Humor@lemmy.ml•My debugging experience today: Quantum DebuggingEnglish
51·1 year agoSomeone has a compiler if statement left somewhere in their code (… probably)
I think you can already with web assembly?
It’s probably a single dev that made the decision, then moves onto something else. They (probably?) don’t have the ability to just raise a recurring PO etc to easily pay you and don’t care enough to worth through the paperwork.
If you had a paid licencing model they may have done it, or just found another lib/ wrote their own.
This posts entire comment chain is an interesting example of people that have extensive knowledge in completely different areas of programming to me. And have some concepts I had never heard/thought of.
I assume that if you created a Lemmy account and subscribed to all the kbin communities (magazines?) you were interested in that would mostly cover you? I think the federation works?
Does Kbin have any other functionality there that wouldn’t work?
Nighed@sffa.communityto
Programming@programming.dev•What if an SQL Statement Returned a Database?English
1·2 years agoEF can have big problems with “Cartesian explosions” if an object has two lists of sub objects to return, it will get listA length x listB length items due to how the joins work. You can see how this leads to the explosion part of the name (with more objects or lists).
Their solution is a “split query” option, that does each sub table as a separate query, then seamlessly gives you the combined result.
If a change like this let’s you get those different table lists as distinct lists with the processing and round trip time of multiple requests then it could be a game changer.
(Source - my last week 🤣😭 + lots of EF docs)
Nighed@sffa.communityto
Programming@programming.dev•What if an SQL Statement Returned a Database?English
5·2 years agoSQL returns subsets of all tables with only those tuples that would be part of the traditional (single-table) query result set
So it returns only the data that would be returned from the query, so the filtering is done.
I can see some uses of it. If you look at what something like Entity Framework does behind the scenes to return nested objects, you can see how something like this might help.
It needs to understand that that code is bad to be able to do that though
Nighed@sffa.communityto
Android@lemdro.id•Fitbit app readies Pixel 8 Pro thermometer sync integrationEnglish
1·2 years agoMost trackers will only sync with their manufacturers app (therefore giving them the data)
it might be different with a full on smart watch as I assume you can install fitness apps on it?
Nighed@sffa.communityto
Android@lemdro.id•Fitbit app readies Pixel 8 Pro thermometer sync integrationEnglish
2·2 years agoIf your happy to wear a fitness tracker there are lots of options by companies such as Garmin.
Not sure about phone only ones
Nighed@sffa.communityto
Programming@programming.dev•I'm Not Participating in This Year's Advent of Code For Very Good ReasonsEnglish
1·2 years agoI think that has been an outlier so far, its good to have one that makes you re-evaluate your solution once in a while.
Definitely a time sink though!
Nighed@sffa.communityto
Programmer Humor@programming.dev•Not mocking cobol devs but yall are severely underpaid for keeping fintech aliveEnglish
36·2 years agoThe historic high salary for COBOL Devs etc is also partially due to them mostly being old and extremely experienced senior devs
Nighed@sffa.communityto
Programming@programming.dev•I'm Not Participating in This Year's Advent of Code For Very Good ReasonsEnglish
6·2 years agoOK.
.
.
.
I’m doing them because it’s an excuse to do some interesting challenges however you want and have people to talk about them with.
Nighed@sffa.communityto
Programming@programming.dev•Advent of code starts in less than 12 hours!English
4·2 years agoThank you for this! I always find out/remember about it half way through…
First day done and work leaderboard link shared!
Nighed@sffa.communityto
Programmer Humor@lemmy.ml•A good book can change your lifeEnglish
21·2 years agoIt finished even faster when it crashes right?
Kinda acceptable if you have a slow release cadence. Everything needs to be reviewed and fixed/accepted (with defect/US raised) before production though.
Needs to be in a smaller team with decent Devs too though!
Nighed@sffa.communityto
Android@lemdro.id•It's been almost a decade: Give us more base Google One storage alreadyEnglish
5·2 years agoThey did?
Nighed@sffa.communityto
Programming@programming.dev•Why Cities: Skylines 2 performs poorlyEnglish
81·2 years agoI thought the point of a game engine was to do that stuff…

It’s the only time that tabs Vs spaces really riles me up. So annoying when everyone has different tab lengths