There is also Ubuntu Core [0] (my install uses 140MB on disk, 25MB RAM). It has no installer, so you have to do everything yourself — from partitioning to boot loader installation.
HN user
Lycanthrope
11 karma
Posts0
Comments6
No posts found.
Ubuntu low-memory install for VMs 13 years ago
Sweden axes new word after Google intervenes 13 years ago
Google has been taking action against this genericization since 2003.[1] They also got the German dictionary Duden to change their "to google" Definition to refer to Google only.[2]
[1] https://en.wikipedia.org/wiki/Google_%28verb%29 [2] http://www.nzz.ch/aktuell/startseite/newzzEQXM1K6L-12-1.5328... (German language)
Free Online MongoDB Training by 10gen 14 years ago
Trying to view the Terms of Service leads me to an error page. http://education.10gen.com/tos
Python iteration 14 years ago
You can use map with several iterables:
sum(map(operator.mul, [1,2,3], [3,2,1]))Python idioms 15 years ago
There is functools.partial:
from functools import partial
def add(x,y): return x+y
add3 = partial(add, 3)
add3(2) # returns 5Some article was temporarily the top Google hit when searching "facebook login". This caused some confusion among URL-unaware facebook users.
http://jonoscript.wordpress.com/2010/02/18/some-people-cant-...