1. 1. Profile
  2. Rust Programming
  3. 2. Parsing with XPath in Rust
  4. 3. One wallet for all your signing needs
  5. 4. Rust Workspace
  6. Leptos
  7. 5. Error handling in leptos
  8. 6. Pagination with Leptos
  9. Libp2p
  10. 7. Building Blocks of libp2p
  11. Shivarthu
  12. 8. Tyranny of the Majority, Minority, Representatives, Shareholders and Democratic trilemma
  13. 9. Simple Majority vs Super Majority
  14. 10. Rationality based Price Discovery Exchange
  15. IPFS
  16. 11. 4everland
    1. 11.1. 4ever security token
    2. 11.2. Upload files safely
    3. 11.3. Custom Policy
    4. 11.4. Rust sts
  17. Linux
  18. 12. Offline Centric Apps
    1. 12.1. Firejail
    2. 12.2. AppImage
    3. 12.3. Full Stack rust-libp2p apps, with Wasm and WebRTC
  19. 13. Helix editor
  20. 14. Helix editor commands
  21. 15. Zellij
  22. 16. Redox OS
  23. 17. Executable
  24. IPFS
  25. 18. Hard time with IPFS
  26. Hosting server
  27. 19. Podman Tutorial
  28. 20. Podman Build
  29. Shortcuts
  30. 21. Line numbers
  31. Broadband Share
  32. 22. Sharing Broadband, Mesh Network
  33. Philosophy
  34. 23. 5 stages of grief
  35. Awesome GIS
  36. 24. Awesome GIS
  37. Python
  38. 25. uv
  39. Ubuntu
  40. 26. Disk Error
  41. 27. Image Handling
  42. 28. Disk Space
  43. AI
  44. 29. Ollama
  45. 30. TTS

Iambrainstorming Blog

Find line numbers of files in a folder

https://stackoverflow.com/questions/4822471/count-number-of-lines-in-a-git-repository

find . -type f -name '*.*' -exec wc -l {} + 

Get line numbers of rust files

find . -type f -name '*.rs' -exec wc -l {} +