Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
| # -*- coding: utf-8 -*- | |
| """ | |
| Builds epub book out of Paul Graham's essays: http://paulgraham.com/articles.html | |
| Author: Ola Sitarska <ola@sitarska.com> | |
| Copyright: Licensed under the GPL-3 (http://www.gnu.org/licenses/gpl-3.0.html) | |
| This script requires python-epub-library: http://code.google.com/p/python-epub-builder/ | |
| """ |
| \definecolor{blueblack}{rgb}{0.0,0.0,0.3} | |
| \hypersetup{colorlinks,breaklinks,linkcolor=blueblack,urlcolor=blueblack,anchorcolor=blueblack,citecolor=blueblack} |
| Finding solace in words, in hope tailored. | |
| Seeking faith in ability, in searching for a shroud, | |
| to veil over what the eyes can see. | |
| A guise to calm the restless mind, to soothe ego. | |
| A mask over a white face, a scared soul. | |
| Confidence shattered, finding solace in unreal pleasures. | |
| A mind wasted, a heart lost. | |
| Permanent waves, soon forgotten. | |
| The elements come together and then vanish, | |
| for progress is what mattered, |
| public class AsyncHelloWorld { | |
| public static void main(String[] args) { | |
| Thread InterfaceExample = new Thread(new PrintString("Thread 1")); | |
| Thread ThreadExample = new PrintStringThread("Thread 2"); | |
| InterfaceExample.start(); |
| class IntWrapper(int): | |
| ''' int wrapper class. Example for use of __new__().''' | |
| _valmod5 = None | |
| def __new__(cls, value): | |
| ''' Do something to differentiate from int.''' | |
| self = int.__new__(cls, value) # create an immutable | |
| return self |
| #include "iostream" | |
| #include "vector" | |
| #include "math.h" | |
| using namespace::std; | |
| inline void generate_sieve(vector<int> &sieve) { | |
| long long int top = 1000000000; |
| #include <stdio.h> | |
| int main() { | |
| int i, j; | |
| for (i = 1; i <= 100; i++) { | |
| j = 0; |
| I have driven myself mad over my marks. | |
| When I was in high school, I deluded myself into believing that although I was doing poorly in most subjects, I was among the better students in my class. I believed that my low marks could be explained away by my lack of interest in my studies, and that I could reach the top at any moment just by beginning to exert the smallest amount of effort. The rest of the students in the class were easy enough to group into try-hards who cared too much and losers who cared too little. | |
| This worked well enough for me back then, and although I did not get into the university that I had always dreamed of, I was accepted into one that was good enough for my standards at the time. I heard time and time again that the school was a competitive one, but strongly believed due to my self-confidence that I could keep up my same work ethic and still succeed, as I had before. | |
| I did not. I failed an enriched theory of computation course despite mighty boasts to the teacher about how inter |
| #!/bin/bash | |
| # | |
| # JAKE EXTERNALS INSTALLATION | |
| # Similar to the Darwin install script. | |
| # Stuff gets put in the external folder within Jake. | |
| # | |
| # Check that you have gcc-4.6.3. Managing mutiple gcc build | |
| # is a personal thing, | |
| # http://askubuntu.com/questions/211106/how-to-install-gcc-4-6-3-on-12-10 | |
| # |
Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.