HackerTrans
TopNewTrendsCommentsPastAskShowJobs

denistaran

no profile record

Submissions

New Features in React v19

freecodecamp.org
3 points·by denistaran·2 ปีที่แล้ว·0 comments

Microsoft Launches Surface Laptop 6 for Business and Surface Pro 10

blogs.windows.com
72 points·by denistaran·2 ปีที่แล้ว·157 comments

comments

denistaran
·ปีที่แล้ว·discuss
One of the nice things about Firefox on mobile is that you can install extensions like uBlock Origin to block ads. Mobile Chrome doesn’t let you do that.
denistaran
·2 ปีที่แล้ว·discuss
If you’re scripting on Windows, it’s better to use PowerShell instead of batch. Compared to Bash, PowerShell is also better suited for large scripts because it works with objects rather than plain text. This makes handling structured data like JSON, XML, or command outputs much easier, avoiding the need for error-prone text parsing.
denistaran
·2 ปีที่แล้ว·discuss
Based on a blog I read, Microsoft intends to launch these laptops for consumers at a later date, post their initial business-focused release.
denistaran
·2 ปีที่แล้ว·discuss
Say you're running a SQL transaction and queue a message in SQS. The problem is, this message isn't part of your SQL transaction. So if your transaction fails, the SQS message won't roll back with it, potentially leading to inconsistencies. That's why sometimes it's better to use a queue inside an SQL database, to ensure both your transactions and queue messages are always in sync, and as a bonus, it simplifies the overall architecture and you will have fewer potential points of failure.