dhruva-sarma.bsky.social
@dhruva-sarma.bsky.social
Reposted
OSINT: How to Find Hidden Data Leaks Using Free Tools
OSINT: How to Find Hidden Data Leaks Using Free Tools
Uncover Exposed Information with HaveIBeenPwned, DeHashed, and Google Dorking
infosecwriteups.com
July 6, 2025 at 7:23 AM
Reposted
June 12, 2025 at 11:13 PM
Reposted
Confused by what your machine learning model is doing?
Understanding its decisions is key to building trust—and making it better.

Here are 6 Python libraries that can help you make sense of it all 👇

📌 Save this post for later if you’re short on time ⏰

#MachineLearning #DataScience #AI #ML #Python
June 3, 2025 at 10:02 AM
If you work on computer vision tasks, imgaug (github.com/aleju/imgaug) is a fantastic library to augment your image datasets!

#ai #computervision #dataset
GitHub - aleju/imgaug: Image augmentation for machine learning experiments.
Image augmentation for machine learning experiments. - aleju/imgaug
github.com
January 14, 2025 at 7:09 AM
The duality of man
#programming #vscode #neovim
January 8, 2025 at 6:44 AM
Generated using Sora.
prompt: a malformed humanoid shark walking menacingly towards the camera, in a parking lot

#ai #aivideo #openai #sora
December 26, 2024 at 9:50 AM
Reposted
People sometimes make fun of science that sounds stupid and random.

Meanwhile, a study of lizard saliva turned into a peptide medication, which was turned into a diabetes medication, which was turned into a GLP1 weight loss drug, that just became the first therapy every approved for … sleep apnea
Breaking News: The FDA approved use of the weight loss drug Zepbound for a common form of sleep apnea. It is the first drug authorized to treat the disorder.
F.D.A. Approves Weight-Loss Drug to Treat Sleep Apnea
Zepbound is the first prescription drug approved specifically to treat the common condition.
www.nytimes.com
December 21, 2024 at 12:41 AM
Reposted
Weber-Fechner (or Fechner's Law) states that humans perceive brightness logarithmically.

So effectively, 200 nits is NOT 2X brighter than 100 nits to our eye but only 1.3X brighter.

You need 1000 nits for 2x perceived intensity from 100.

Something to bum you out over while shopping for that OLED.
Brooklyn99 Sad GIF
ALT: Brooklyn99 Sad GIF
media.tenor.com
December 19, 2024 at 3:06 AM
Reposted
With time to spare, I recommend following up with Sagas by Garcia-Molina and Salem.

You’ll quickly see how both build on similar mechanics, but with a key difference: Transactions operate at the platform level, while sagas operate at the application level

bsky.app/profile/did:...
November 23, 2024 at 7:33 PM
#TIL #linux `sort` on the shell has a `-R` option to shuffle items. Not to be confused with `-r` which does a reverse of the sort.
November 16, 2024 at 7:26 AM
#rust Strings are always valid UTF-8, and since UTF-8 is a variable width encoding, you cannot simply access a character by indexing like `str[8]` as you do in other languages.

You can do `str.chars().nth(8)`, but that is a O(n) operation. The best way is to use `str.as_bytes()[8]`

#programming
November 16, 2024 at 5:45 AM