Bruh... Creating beautiful software architecture diagrams has never been easier. 🤯
FossFLOW is a free, open-source tool that lets you create professional-looking 3D software and engineering diagrams with hundreds of built-in icons and symbols.
Perfect for:
→ Presentations
→ Documentation
→ Tutorials
→ System design interviews
→ Content creation
If you regularly explain software architecture, this is one of those tools you'll keep coming back to :)
Source 🔗: github(DOT)com/stan-smith/FossFLOW
Follow me for more amazing AI, Coding & Web Dev insights 💎
OpenC6 BIOS is an open-source project that adds a BIOS-like system to the ESP32-C6.
This way, the system part and application code can run separately rather than being combined into a single firmware image.
Quick Linux tip:
Most people use tree to visualize a directory structure.
What many don't know is that it can also display file permissions, owners, groups, and sizes.
$ tree -pugh -L 3
Here is what each option mean:
-p - file permissions
-u - owner
-g - group
-h - human-readable sizes
-L - limit the depth of the directory tree
This is especially useful when auditing file permissions, troubleshooting access issues, or documenting a project's directory structure.