Skip to content

Latest commit

 

History

History
148 lines (84 loc) · 4.14 KB

File metadata and controls

148 lines (84 loc) · 4.14 KB

10 Javascript Must learn Concepts

Most of the time you get confused with javascript when it does something unexpected, most likely it was because of the concepts discussed here, are still not clear to you (and even to me).


You don't know JS

A very comprehensive open-sourced Book Series about Javascript discussing and demistifying what most people do not understand about Javascript.


Pygorithm

A python library containing the major algorithms. Having no Computer Science background, I didn't get to learn much about algorithms.


Afraid of Makefiles

A very simple but neat article regarding the usage of Makefiles. Not as comprehensive as everyone may want, but this is a nice article to read.


Save a file in vim when you forgot to use sudo

It's like zillion times you opened a file and started editing and realized you forgot to use sudo.


Learn X in Y Minutes

A website aiming to give just much information you need to learn a technology in a couple of minutes


Python Names and Values

A talk given at Pycon Montreal 2015 explaining how it actually works whenever we declare a Name and set a Value for it.


Hypothesis - Property Based Testing for Python

Property based testing is a type of testing that instead of feeding a predefined data to the test and asserting what the actual output from the data would be, you would rather describe what the data should look like, and figure out if the output is the desired output.


An Awk Primer

Online book to learn Unix's awk


12 Factor App

A website containing best practices gained from years of experience of developing Software-as-a-Service applications.


First timers only

Twitter account that posts open-source projects that first timers can contribute to. Although I didn't get my first contributions from here since issues posted were resolved pretty fast.


Intro to Machine Learning

An eight part series of articles that tries to explain machine learning to those who don't know where to start, just like me.


ES6 Arrow Functions Primer

Introduction and basic usage of the new arrow function (ES6). Also includes some cool tricks you can do with arrow functions that you can't do with it normal js funtions.


CEH Exam Simulation

A website containing questionnaires to test your skills before taking the CEH Exam


All the little Things

A talk from RailsConf 2014 that explains how to properly refactor code


Django Rest QL

Python library which allows you to turn your API made with Django REST Framework(DRF) into a GraphQL like API.


Health checks

Cron Monitoring Tool written in Python & Django


Delete FB

Automation script based on seletion for deleting facebook posts


Speed up data serialization

An article that shows the actual speeds of different serialization methods


[Securing Django Admin]((https://hakibenita.com/5-ways-to-make-django-admin-safer)

Ways to make your django admin console more secure


Celery execution pool

Understand workers, pools, threads, eventlets of Celery


Django Search DSL

Using PyParsing library to create DSL with Django ORM