Nighed

joined 2 years ago
[–] Nighed@sffa.community 7 points 1 year ago (8 children)

Art station, Instagram and deviantart are all selling data or doing iffy AI stuff as far as I can tell.

[–] Nighed@sffa.community 2 points 1 year ago

They wouldn't though, even if 5% of their missiles/nukes work, millions would die.

[–] Nighed@sffa.community 5 points 1 year ago (2 children)

thats a hell of a risk to take though, and he knows no-one can take it

[–] Nighed@sffa.community 1 points 1 year ago

For PC, get a usbC pcie card. Lots of choice there. Possible issues with GPU clearance/ heat though.

[–] Nighed@sffa.community -4 points 1 year ago

That's when Google's browser DRM thing starts sounding like a good idea 😭

[–] Nighed@sffa.community 12 points 1 year ago (2 children)

but with all of the cloud resources now, you can switch through IP addresses without any trouble. hell, you could just browse by IP6 and not even worry with how cheap those are!

[–] Nighed@sffa.community 1 points 1 year ago

He gets it right everywhere else, no idea why he gets it wrong there

[–] Nighed@sffa.community 2 points 1 year ago (3 children)

its in the syndicate side story - when they are doing their (first?) expedition outside of their home system (Midway?) they react to a reaction before the light of what they are reacting to arrives - or something like that.

[–] Nighed@sffa.community 1 points 1 year ago (1 children)

I didn't see Pratchett on the list, even if you have been through the Diskworld before, the re-reads often reveal things you missed.

I'm not as well read as you, so have no idea if that actually matches your taste.

Another (older though) lesser known series is the Dragonriders of Pern. Great if you like to follow a lot of characters (in their own mini series) that interact over an 80 year main series. Starts as fantasy, becomes sci-fi (With dragons!)

[–] Nighed@sffa.community 4 points 1 year ago (6 children)

They are made/broken by if you like how he describes space battles though. A number of people I have suggested them to hated them, while others liked it.

There is also at least one place where he breaks the in universe rules of physics that really annoys me. (Information travelled in system faster than light)

[–] Nighed@sffa.community 1 points 1 year ago

EF 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.community 5 points 1 year ago (2 children)

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

view more: ‹ prev next ›