#Tails 6.15 has been released (#Debian / #Tor / #TorBrowser / #Firefox / #WebBrowser / #Thunderbird / #Onion / #Darknet / #DarkWeb / #DeepWeb) https://tails.net/
Git branch for Darknet V5 "Moonlit" has been created and tagged. This is a DEV branch. Target is to release later this summer. #Darknet #YOLO https://github.com/hank-ai/darknet#table-of-contents
Darknet/YOLO has complex code to calculate IoU and several variations on the IoU algorithm.
I'd like to remove all that code and use OpenCV cv::Rect2f instead. I ran some tests with the following:
float result = 0.0f;
const float r_intersection = (r1 & r2).area();
if (r_intersection > 0.0f)
{
const float r_union = (r1 | r2).area();
result = r_intersection / r_union;
}
return result;
Tests show this code is faster than the existing C spaghetti code. #Darknet needs unit tests. #cpp
DeepSeek Breach Opens Floodgates to Dark Web #breach #darknet #darkweb https://www.darkreading.com/cyberattacks-data-breaches/deepseek-breach-opens-floodgates-dark-web
At this point, several months into re-labeling the MSCOCO dataset, I feel like the entire thing is composed of skateboarders and surfers.
There has got to be a better modern dataset than MSCOCO... :(
Was surprised at the results of these tests. I thought they would be the same. But using range-based for() loop is much faster than std::transform().
- loop #1: 80 milliseconds
- loop #2: 120 milliseconds
I have code changes that have turned into a big mess. I cannot commit the entire thing, nor do I want to dismiss all these changes and start over. I need to pick it apart line by line and keep just portions of it.
I hate that this change turned into something more complicated than it should have. #Darknet #YOLO #cpp
Ein #Cyberangriff auf die Autovermietung #Hertz hat zur Veröffentlichung sensibler #Kundendaten geführt.
Betroffen sind u. a. #Zahlungsinformationen, #Führerscheindaten und Angaben zu #Unfallverletzungen.
Der Angriff nutzte Zero-Day-#Schwachstellen der #Datenplattform von #CleoCommunications.
Die Hackergruppe #Clop wird für den Vorfall verantwortlich gemacht.
Die Top 4 Beiträge der letzten Woche mit den meisten Boosts sind:
1. #Zugangsdaten von 241 #Landtagsabgeordneten im #Darknet gefunden.
https://mastodon.online/@tinoeberl/114323015038051251
2. #Klimakrise gefährdet laut Allianz die Grundlagen des #Finanzsystems.
https://mastodon.online/@tinoeberl/114298064522579741
3. Zwischen 2000 und 2002 verlor die Erde fast doppelt so viel #Wasser im Boden, wie #Grönland an Eis.
https://mastodon.online/@tinoeberl/114319752660402158
4. Am #Bodensee sorgt #Trockenheit für den niedrigsten #Wasserstand seit 40 Jahren.
https://mastodon.online/@tinoeberl/114311692469672912
Anonymous against pedos: Hackers hijack pedophiles' darknet image service
Anonymous has claimed responsibility for hacking the darknet upload service PedoBum. Child pornographic images were shared via PedoBum for years.
Fixed several things over the last few days related to Darknet/YOLO running on multi-GPU devices. Gained access to a 4-GPU training rig at University of Florida. Thank you for getting me access so I could debug the problem.
Among other things, people with multi-GPU training rigs no longer have to stop-and-restart training after burn-in.
Specific fix University of Florida wanted had to do with a bad learning rate modification that would corrupt the weights. #Darknet #YOLO #NVIDIA
Die News des Tages von meinem gestrigen #Mastodon-Feed – vorgelesen als #Podcast zur schnellen Übersicht.
Das #Transkript, die Links zu den #Nachrichtenmeldungen und die Karte mit den Hörerregionen findet ihr in den #Shownotes.
Schreibt mir gern Euren Hörerstandort, wenn ihr (anonym) mit auf die Karte möchtet.
https://tino-eberl.de/podcast/die-mastodon-news-des-tages-als-podcast-vom-12-04-2025/
#Atomkraftwerke #Darknet #Umwelthilfe, #Energiewende #Klimapolitik #Koalitionsvertrag #LEAG #NASA #Naturgefahrenportal #Raspberry #Security, #Stadtbäume
Passwörter deutscher Politiker im #Darknet aufgetaucht. Ist doch eigentlich schon vorauseilende Koalitionsvertragserfüllung, wir machen doch jetzt Datennutz statt #Datenschutz
https://www.zdf.de/nachrichten/panorama/kriminalitaet/passwoerter-politiker-darknet-100.html
Bei einer Analyse wurden #Zugangsdaten von 241 deutschen #Landtagsabgeordneten im #Darknet gefunden – viele davon im Klartext.
Besonders brisant: Offizielle #Mailadressen wurden auch für private Dienste wie #Pornoportale genutzt. Die #Cybersicherheit leidet unter schwachen Passwörtern und fahrlässigem Umgang mit sensiblen Informationen.
https://www.zdf.de/nachrichten/panorama/kriminalitaet/passwoerter-politiker-darknet-100.html
Dutzende deutsche Politiker sind betroffen! Passwörter wurden im Darknet gefunden. Was bedeutet das für die Cybersicherheit?
Hier gibt es alle Details: https://www.n-tv.de/politik/Im-Darknet-stehen-Passwoerter-Dutzender-deutscher-Politiker-article25694085.html #Cybersecurity #Darknet #Politik #Deutschland #Datenschutz #newz
Darknet/YOLO has a custom-written "list" structure in the old C codebase which is used in several locations. The linked lists are converted into massive linear arrays so they can be referenced in a random manner.
Tonight I *finally* started converting all that code to std::vector. I've wanted to do this for a while. Going to be much cleaner, easier to maintain, and I'll be certain we have no memory leaks. #Darknet #YOLO #c #cpp
I find it strange when a company or school won't give me access to their system so I can help them debug an issue they've discovered. The reason is always related to security.
...but they'll willingly run my 100,000+ lines of open-source code without audit or giving it a 2nd thought. #Darknet #YOLO #DarkHelp #DarkMark