HackerTrans
TopNewTrendsCommentsPastAskShowJobs

wizofaus

no profile record

comments

wizofaus
·3 ปีที่แล้ว·discuss
I'd heard similar stories of customers buying goods they knew they only needed temporally that they simply returned afterwards and obtained a full refund for. It does surprise me a little that stores don't have mechanisms in place to prevent this being abused, it's hard to see how it couldn't be a significant financial drain for them. FWIW "no questions asked returns" aren't really a thing in Australia from what I've observed. But not having a receipt isn't usually an issue if they can find the payment on their system and it matches your CC# either.
wizofaus
·3 ปีที่แล้ว·discuss
AI-based image generation is surely already good enough that a single digital photo can't count as evidence alone. But your scenario doesn't make much sense to me - are you suggesting AI will have reached a point it's stored and trained on images of almost everyone's faces, to the point it could accurately/undetectably substitute a blurry face with the detailed version of an actual individual's face it happens to think is similar? I'd be far more worried about deliberate attempts to construct fake evidence - it seems inevitable that eventually we'll have technology to cheaply construct high-quality video and audio media that by current standards of evidence could incriminate almost anyone the framer wanted to.
wizofaus
·3 ปีที่แล้ว·discuss
Spinach is one of the most consumed veggies globally (#8 or #9) and has no emoji. And WhatsApp at least has no emoji results for "chili"/"chilli" - you have to search for "pepper". But there's no emoji for ground pepper!
wizofaus
·4 ปีที่แล้ว·discuss
Not unreasonable to argue that something like Docker or k8s is more "system software" than an application.
wizofaus
·4 ปีที่แล้ว·discuss
Can't tell if serious...
wizofaus
·4 ปีที่แล้ว·discuss
We were talking about Nim, which is language I know next to nothing about (but very familiar with C/C++, Swift - which has weak pointers, as well as GC languages like JavaScript/Java/C# etc.)
wizofaus
·4 ปีที่แล้ว·discuss
That seems a little hard to believe. I can't think of many complex pieces of software I've worked on that didn't have such cycles (e.g. any sort of tree structure where parents need to know about children and children need to know about parents - how does Nim handle that?)
wizofaus
·4 ปีที่แล้ว·discuss
It actually wouldn't surprise me that's the main reason GC often outperforms ARC in real- life software - simply because it's only necessary to actually bother doing GC once memory usage is high and there's a known need to allocate further memory. But couldn't ARC do the same thing in principle - i.e. only bother incrementing/decrementing reference counts when there's likely to be a need to reclaim memory? Even an infinitely running service can just accept it will increase its memory footprint up to a certain threshold then only bother with memory management at that point (I actually suspect SQL server works exactly like this!). For most short-running tools, no MM is required - the OS handles everything.
wizofaus
·4 ปีที่แล้ว·discuss
None of the above - I'd explain why I think the way the code was written was problematic (e.g. function logic can't easily be readily comprehended in one go, consider how you could break this down). But to a large degree my "tone" and level of detail would depend on the seniority of the author.