VirtualTam's bookmarks
1834 bookmarks found
-
scikit-learn - Machine Learning in Python
2015-04-26 -
Twisted
2015-04-24 Twisted implements a variety of networking and communication protocols and exposes them all as method-calls on your Python objects. Client and server implementations are provided for various standard protocols, including:
- HTTP (twisted.web)
- IMAP, POP, SMTP (twisted.mail)
- DNS (twisted.names)
- TLS (core)
- SSH, Telnet (twisted.conch)
- IRC, XMPP, OSCAR (twisted.words)
- Ethernet, IP, TUN/TAP (twisted.pair)
- NMEA (twisted.positioning)
-
w3c-markup-validator
2015-04-13 Mercurial repository for the W3C Validator :-)
-
User style - GitHub Dark
2015-03-19 -
Let Over Lambda
2015-03-18 This book is about macros, that is programs that write programs.
-
PHP - Testing your privates
2015-03-17 How to test a private or protected method with PHPUnit?
see also: https://sebastian-bergmann.de/archives/881-Testing-Your-Privates.html
-
Bigger than my head
2015-03-17 A friend of mine was once interviewing an engineer for a programming job and asked him a typical interview question:
- How do you know when a function or method is too big?
- Well, said the candidate, I don't like any method to be bigger than my head.
- You mean you can't keep all the details in your head?
- No, I mean I put my head up against my monitor, and the code shouldn't be bigger than my head.
~ from http://www.gigamonkeys.com/book/practical-a-simple-database.html
-
The IPython Notebook - IPython
2015-03-16 Jupyter Notebook viewer: https://github.com/jupyter/nbviewer
-
mkzombie
2015-03-15 This program creates one or more zombies and a daemon their leader. It can be used to replenish system zombies, or to feed the init monster.
-
Generate Audio with Python - Zach Denton
2015-03-15 -
jvm.go - GitHub
2015-03-15 -
SQLite Memo
2015-03-14 Common ops & clauses:
- CREATE TABLE - https://www.sqlite.org/lang_createtable.html
- ALTER TABLE - https://www.sqlite.org/lang_altertable.html
- UPDATE - https://www.sqlite.org/lang_update.html