├── _config.yml ├── .github └── workflows │ └── main.yaml └── README.md /_config.yml: -------------------------------------------------------------------------------- 1 | theme: jekyll-theme-primer 2 | -------------------------------------------------------------------------------- /.github/workflows/main.yaml: -------------------------------------------------------------------------------- 1 | name: Markdown Link Checker 2 | 3 | on: 4 | pull_request: 5 | branches: 6 | - master 7 | push: 8 | branches: 9 | - master 10 | 11 | jobs: 12 | MarkdownLinkCheck: 13 | runs-on: ubuntu-latest 14 | steps: 15 | - uses: actions/checkout@v4 16 | - uses: yankeexe/action-link-checker@main 17 | with: 18 | file_path: "README.md" 19 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Nepali Dev Blogs 2 | 3 | Collection of blogs/publications by Nepali devs. 4 | 5 | > Open a PR to add your blog to the list. :zap: :rocket: 6 | 7 | ## Personal Blogs 8 | 9 | Name | Tags 10 | ------------ | ------------- 11 | [Ajay Gautam](https://medium.com/@evilboyajay) | cyber security 12 | [Aju Tamang](https://csaju.com) | python, system design, programming general 13 | [Amit Chaudhary](https://amitness.com/) | python, ai, ml 14 | [Ashish Jaiswal](https://jashish.com.np/blog/) | deep learning 15 | [Aneeta Sharma](https://medium.com/@anaida07) | programming general, vuejs, database 16 | [Bipin Paul](https://bipinpaul.com/) | aspnetcore, dotnet, c# 17 | [Chandan Shakya](https://chandanshakya.com.np/blog/) | devops, linux, laravel, scripts 18 | [Geshan's blog](https://geshan.com.np/posts/1/) | programming general, devops, software engineering, web development 19 | [Ishan Manandhar](https://medium.com/@ishan02016) | product design, frontend, javascript, typescript 20 | [Jagatjyoti Tuladhar](https://medium.com/@jagatjyoti.1si13cs040) | technology general, javascript 21 | [Kshitiz Rimal](https://medium.com/@kshitizrimal) | ai, ml 22 | [Milap Neupane](https://milapneupane.com.np/) | programming general, go, database, aws, node 23 | [Nikita Shrestha](https://sthaniki.medium.com/) | javascript, ai 24 | [Nirmal Dahal](https://nirmaldahal.com.np/#latestnews) | cybersecurity 25 | [Prashant Acharya](https://medium.com/@prashaantacharya) | javascript, react, node.js, programming 26 | [Rabin Gaire](https://medium.com/@rabin_gaire) | go, rust, javascript 27 | [Rajesh Khadka](https://medium.com/@rajesh_khadka) | mobile development, microservices, programming general 28 | [Raju Dawadi](https://medium.com/@dwdraju) | devops 29 | [Ramkrishna Acharya](https://q-viper.github.io) | Basic AI, ML 30 | [Robus Gauli](https://medium.com/@robusgauli) | python, metaprogramming 31 | [Roshan Parajuli](https://blogs.roshanparajuli.com.np/) | python, ml, ai, ui/ux 32 | [Sagar Giri](https://girisagar46.github.io/) | programming general, software development, aws 33 | [Samrid Pandit](https://blog.samrid.me/) | python, software development principles, rust 34 | [Samundra Shrestha](https://www.samundra.com.np/) | programming general, software development, devops 35 | [Sanjay Sanjel](https://dev.to/nepalilab) | beginner programming, javascript, nodejs 36 | [Saugat Acharya](https://theboring.dev) | tech, software engineering 37 | [Shirish Shikhrakar](https://ux360.design/) | ui, ux 38 | [Surhid Amatya](https://medium.com/@surhid.amatya) | programming general, android development 39 | [Veshraj Ghimire](https://veshraj77.medium.com/) | Web Security, Bug Bounties, Cyber Security 40 | [Yankee Maharjan](https://yankee.dev/) | programming general, python, kubernetes 41 | 42 | ## Company Blogs 43 | 44 | - [CryptoGen Nepal](https://medium.com/cryptogennepal) 45 | - [Docsumo](https://www.docsumo.com/blog) 46 | - [FuseMachines](https://insights.fusemachines.com/category/blog/) 47 | - [Leapfrog Technology](https://lftechnology.com/blog) 48 | - [Naamche](https://www.naamche.com/blog) 49 | - [Nassec](https://medium.com/nassec-cybersecurity-writeups) 50 | - [Pentester Nepal](https://medium.com/pentesternepal/) 51 | - [Programiz](https://www.programiz.com/blog/) 52 | - [Rara Labs](https://medium.com/@raralabs) 53 | - [Yarsa Labs](https://blog.yarsalabs.com/) 54 | - [Young Innovations](https://blog.yipl.com.np/) 55 | --------------------------------------------------------------------------------