Project

General

Profile

Useful resources » History » Version 7

Alexis Jeandet, 22/09/2016 08:32 AM

1 1 Alexis Jeandet
# Useful resources
2 5 Alexis Jeandet
3
## Random Dev Blogs
4
5
[A Random Walk Through Geek-Space](http://www.sebastiansylvan.com/)
6
[I Like Big Bits](http://www.ilikebigbits.com/)
7 3 Alexis Jeandet
____
8 7 Alexis Jeandet
9 1 Alexis Jeandet
## Algorithms
10
[Log Structured Merge Trees](http://www.benstopford.com/2015/02/14/log-structured-merge-trees/)
11
[Algebraic patterns - Semigroup](http://philipnilsson.github.io/Badness10k/posts/2016-07-14-functional-patterns-semigroup.html)
12
[EXACT STRING MATCHING ALGORITHMS](http://www-igm.univ-mlv.fr/~lecroq/string/index.html)
13
[A Memory Allocator](http://g.oswego.edu/dl/html/malloc.html)
14 7 Alexis Jeandet
[LL and LR Parsing Demystified](http://blog.reverberate.org/2013/07/ll-and-lr-parsing-demystified.html)
15 3 Alexis Jeandet
____
16 7 Alexis Jeandet
17 1 Alexis Jeandet
## Tips
18
[Falsehoods programmers believe about time](http://infiniteundo.com/post/25326999628/falsehoods-programmers-believe-about-time)
19
[GCC optimizations for embedded software](http://events.linuxfoundation.org/sites/events/files/slides/elc14_raj.pdf)
20 3 Alexis Jeandet
____
21 4 Alexis Jeandet
22 1 Alexis Jeandet
## Python programming
23
[Useful libraries for data science in Python · GitHub](https://github.com/rasbt/pattern_classification/tree/master/resources)
24
[Example Google Style Python Docstrings](http://sphinxcontrib-napoleon.readthedocs.io/en/latest/example_google.html)
25
[Welcome to Bokeh](http://bokeh.pydata.org/en/latest/)
26 3 Alexis Jeandet
27 4 Alexis Jeandet
### Jupyter Notebook gallery
28
[Notebook Gallery](http://nb.bianp.net/sort/views/)
29
[A gallery of interesting IPython Notebooks](https://github.com/ipython/ipython/wiki/A-gallery-of-interesting-IPython-Notebooks)
30
31 2 Alexis Jeandet
### Videos
32
[SciPy 2016: "Data Science is Software" tutorial](http://isaacslavitt.com/2016/07/20/data-science-is-software-talk)
33 4 Alexis Jeandet
34 3 Alexis Jeandet
____
35 1 Alexis Jeandet
## C programming
36
[Bit Twiddling Hacks](https://graphics.stanford.edu/~seander/bithacks.html)
37
[The Lost Art of C Structure Packing](http://www.catb.org/esr/structure-packing/)
38
[Memory management in C programs](http://nethack4.org/blog/memory.html)
39
[Const and Optimization in C](http://nullprogram.com/blog/2016/07/25/)
40
[You Can't Always Hash Pointers in C](http://nullprogram.com/blog/2016/05/30/)
41
[Four Ways to Compile C for Windows](http://nullprogram.com/blog/2016/06/13/)