Skip to content

Articles

  • My Github Pages

    Just released a new version of Github pages which you can find atĀ fahdi.github.io. Github pages are an interesting feature of github to update a personal portfolio or a project page or any static (or dynamic: look at PakistanJS). You push your code as a static html, css and javascript files or in this case I… Read More »My Github Pages

  • Releasing first version of my postman collection for Teamwork API

    Teamwork API is great but while while working on it, I badly felt the need of being able to test different end points before putting them into my app. Naturally, I tried looking for it on the web and didn’t find anything, so I finally created my own collection and here it is, for you… Read More »Releasing first version of my postman collection for Teamwork API

  • Python Solution: Could not find a version that satisfies the requirement requirements.txt

    So I recently upgraded a project to python3 and installing via pip was giving me this message Could not find a version that satisfies the requirement requirements.txt (from versions: ) No matching distribution found for requirements.txt The solution was to do this pip install –upgrade -r requirements.txt