ioc.exchange is one of the many independent Mastodon servers you can use to participate in the fediverse.
INDICATORS OF COMPROMISE (IOC) InfoSec Community within the Fediverse. Newbies, experts, gurus - Everyone is Welcome! Instance is supposed to be fast and secure.

Administered by:

Server stats:

1.3K
active users

#tips

93 posts67 participants2 posts today
I just wrote a huge entry about the Fediverse here. It is a guide with all sorts of tips and explanations, and links to many useful pages. Please feel free to share it with anyone who may be interested in joining. Note, though, that I am not the type to care if you're on a mainstream platform or not. Thi sis just meant as a guide for those who may need it, not as a way of bashing those who use non-Fediverse platforms. As a side note, Dreamwidth is one of my favourite sites on the Internet, precisely because of its wonderful accessibility.

https://dandylover1.dreamwidth.org/248988.html

If you would rather read it on Reddit, here is the same post there.

https://www.reddit.com/r/BlindAndFine/comments/1le5jqv/fediverse_explanations_and_guides/

#accessibility #Akkoma #Android #blind #Dreamwidth #Fediverse #Friendica #guide #IOS #MacOS #Mastodon #Reddit #technology #tips #TWBlue #TweeseCake #Windows
dandylover1.dreamwidth.orgCaptcha Check

I just wrote a huge entry about the Fediverse here. It is a guide with all sorts of tips and explanations, and links to many useful pages. Please feel free to share it with anyone who may be interested in joining. Note, though, that I am not the type to care if you're on a mainstream platform or not. Thi sis just meant as a guide for those who may need it, not as a way of bashing those who use non-Fediverse platforms. As a side note, Dreamwidth is one of my favourite sites on the Internet, precisely because of its wonderful accessibility.

dandylover1.dreamwidth.org/248…

If you would rather read it on Reddit, here is the same post there.

reddit.com/r/BlindAndFine/comm…

dandylover1.dreamwidth.orgCaptcha Check

New Open-Source Tool Spotlight 🚨🚨🚨

Transform any URL into an LLM-ready input with `Reader`. Just prefix the URL with `r.jina.ai/` for clean, readable content extraction. Perfect for enhancing agents & RAG pipelines. #LLM #NLP

Need web search results for your LLM? Prepend queries with `s.jina.ai/` to fetch top results—content included. E.g., `s.jina.ai/your+query` brings knowledge directly to your model. #AItools #DataEngineering

Reader API now supports images! Captions are auto-generated for images missing alt tags, giving LLMs better context for reasoning and summarizing multimedia pages. #MachineLearning #AI

🔗 Project link on #GitHub 👉 github.com/jina-ai/reader

#Infosec #Cybersecurity #Software #Technology #News #CTF #Cybersecuritycareer #hacking #redteam #blueteam #purpleteam #tips #opensource #cloudsecurity

✨
🔐 P.S. Found this helpful? Tap Follow for more cybersecurity tips and insights! I share weekly content for professionals and people who want to get into cyber. Happy hacking 💻🏴‍☠️

Handy tip for Safari screencasts: Preferences -> Websites -> Page Zoom -> (host).

When I started screen recording web apps I always hit Cmd-Plus to zoom in, but that resets on page change. I switched to adding a CSS "zoom" override, but that interfered with UI element widths.

A better approach is to override the page zoom by host in Safari's preferences. My screencasts are usually on localhost, so it doesn't interfere with my other browser tabs and windows.

Beginners tip:

Mastodon does not have an algorithm, rather you see posts on a timeline.
Which means your favourite posters can get lost downriver pretty quick.

Make a LIST and call it ‘A-List’ (or something) and add you most favourite posters to it.

Now you can easily catch up on the good stuff.

New Open-Source Tool Spotlight 🚨🚨🚨

Using Microsoft Teams as a C2 channel? Meet convoC2. It embeds commands in hidden span tags and extracts outputs from Adaptive Card image URLs. Detection is tough—Teams logs aren’t antivirus-friendly. #CyberSecurity #RedTeam

🔗 Project link on #GitHub 👉 github.com/cxnturi0n/convoC2

#Infosec #Cybersecurity #Software #Technology #News #CTF #Cybersecuritycareer #hacking #redteam #blueteam #purpleteam #tips #opensource #cloudsecurity

✨
🔐 P.S. Found this helpful? Tap Follow for more cybersecurity tips and insights! I share weekly content for professionals and people who want to get into cyber. Happy hacking 💻🏴‍☠️

The Brain Drain: Overcoming Exhaustion in Learning, Coding & Gaming

Ever found yourself staring blankly at a complex tutorial, a stubborn line of code, or even a boss fight that just won't quit?

The brain drain is real.

But here's the secret: exhaustion isn't a sign of weakness and how to effectively combat it, is a skill as vital as any coding language or game strategy.

codemodd.blogspot.com/2025/06/

Want to run the given command in the background as root or other user? Try:
```
sudo -b /path/to/job.py
sudo --background /path/to/foo.pl
sudo -u {user_name} -b /path/to/job.py
```
Please note that you can't use shell job control to manipulate background processes started by sudo which is both pro and con at a time.

#linux#unix#sudo