https://stackoverflow.com/questions/3294889/iterating-over-dictionaries-using-for-loops
Author Archives: jeffrin
Lecture 1: Algorithmic Thinking, Peak Finding
https://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-006-introduction-to-algorithms-fall-2011/lecture-videos/lecture-1-algorithmic-thinking-peak-finding/
How to open a webpage and search for a word in python
https://stackoverflow.com/questions/1913871/how-to-open-a-webpage-and-search-for-a-word-in-python
How to split a string into a list?
https://stackoverflow.com/questions/743806/how-to-split-a-string-into-a-list
How to find a type of an object in Golang?
https://stackoverflow.com/questions/20170275/how-to-find-a-type-of-an-object-in-golang
Return a tuple consisting of the two numeric arguments converted to a common type
#!/usr/bin/python x = 10 y = 23.8 print coerce(x,y) $python coerce.py (10.0, 23.8) $python coerce.py (10.0, 23.8) $
Convert an integer number to a binary string
#!/usr/bin/python x = 10 print bin(x) $python bin.py 0b1010 $python bin.py 0b1010 $
Equivalent of Python’s dir in Javascript
https://stackoverflow.com/questions/5523747/equivalent-of-pythons-dir-in-javascript
stackoverflow question and answer related to javascript
https://stackoverflow.com/questions/20858048/where-is-javascript
How to contribute (was Re: Kernelnewbies Digest, Vol 77, Issue 7
https://lists.kernelnewbies.org/pipermail/kernelnewbies/2017-April/017765.html