A threat actor going by the name irleak is selling a massive database containing over 107 million personal records from more than 20 Iranian travel agencies. The post appeared on a dark web forum yesterday, June 17.
The compromised data is highly sensitive. It includes complete customer profiles with national IDs, passport numbers, and contact details, as well as extensive travel itineraries covering flights, trains, buses, and hotel accommodations.
Some of the most impacted agencies include Haftorang with 47.7 million records and Tikban with 23.6 million. The asking price for this immense trove of data is $60,000 in Bitcoin.
UE wants to remove blueprint (its visual graph-like language)
(due to AIs probably)
https://x.com/i/status/2067690324827484221
(due to AIs probably)
https://x.com/i/status/2067690324827484221
Do It by Code pinned «go 1.27's method generics https://go.dev/doc/go1.27#language https://github.com/golang/go/issues/77273»
This media is not supported in your browser
VIEW IN TELEGRAM
The new HTTP QUERY method explained
🔸A new HTTP method, QUERY, has been introduced to handle complex search queries with a request body, replacing the need for POST in read-only requests. QUERY is similar to GET but with a body, intended to be safe and idempotent, allowing for caching and retrying failed requests.
23 Jun 2026
💬 comments
🔸A new HTTP method, QUERY, has been introduced to handle complex search queries with a request body, replacing the need for POST in read-only requests. QUERY is similar to GET but with a body, intended to be safe and idempotent, allowing for caching and retrying failed requests.
23 Jun 2026
💬 comments
The Steam Machine literally gets beaten by 8 year old GPUs in terms of gaming performance
This is geniuenly embarassing for Valve
Posted by Rock Solid, 11 hours ago
This is geniuenly embarassing for Valve
Posted by Rock Solid, 11 hours ago
Re: Fired by Google for creating the Google workspace CLI
Interesting that people here seem so sympathetic to the fired guy. Wouldn’t you kind of expect to be fired if you release a project under your employers name that’s not even associated with them and hasn’t been cleared? Working for them actually makes it worse because people could look up your name and would see that you actually work for google. It’s kind of obvious that this is a bad idea, right?
echoangle, 23 hours ago
Interesting that people here seem so sympathetic to the fired guy. Wouldn’t you kind of expect to be fired if you release a project under your employers name that’s not even associated with them and hasn’t been cleared? Working for them actually makes it worse because people could look up your name and would see that you actually work for google. It’s kind of obvious that this is a bad idea, right?
echoangle, 23 hours ago
i was reading the CPython source and found that the bytecode interpreter usually does not dispatch opcodes with a giant switch statement
instead it uses computed goto, a GCC extension outside the C standard
the dispatch table stores addresses of labels and jumps directly between them
the only reason it exists is performance
CPython developers measured it and found it faster than the traditional switch based interpreter
Posted by trish, 1 hour ago