E4rat Seriously Cuts Down on Linux Boot Time With a Few Simple Commands
E4rat Seriously Cuts Down on Linux Boot Time With a Few Simple Commands.
E4rat Seriously Cuts Down on Linux Boot Time With a Few Simple Commands.
PPSS is a Bash shell script that executes commands, scripts or programs in parallel. It is designed to make full use of current multi-core CPUs. It will detect the number of available CPUs and start a separate job for each CPU core. It will also use hyper threading by default. via ppss – (Distributed) Parallel …
From “man find” & stackexchange -exec command {} + This variant of the -exec action runs the specified command on the selected files, but the command line is built by appending each selected file name at the end; the total number of invocations of the command will be much less than the number of matched …
A window function performs a calculation across a set of table rows that are somehow related to the current row. This is comparable to the type of calculation that can be done with an aggregate function. But unlike regular aggregate functions, use of a window function does not cause rows to become grouped into a …
Continue reading ‘PostgreSQL: Documentation: Manuals: PostgreSQL 9.0: Window Functions’ »
I hope IPv6 never catches on via apenwarr – Business is Programming. Interesting article on how to use SRV DNS records to extend the IPv4 space.
Bill Gurley thinks that Android is an unstoppable freight train that will prevail against all its rivals. For Google, Android is not even a product with a business plan. It’s just a weapon at the service of their master domination strategy, a way to destroy any potential threats that may eventually kill their search monster. …
Continue reading ‘Android May Be the Greatest Legal Destruction of Wealth in History’ »
Did the Microsoft Stack Kill MySpace?.
Manage Your Performance with Cgroups and Projects – O’Reilly Broadcast.
If you are using mod_proxy in Apache, remember that it will “cache” errors. In certain instances you won’t want this – such as internal development. So you might want to do something like: ProxyPass / http://localhost:8888/ retry=0
Activate the autocd option (Bash 4+ only). It will let you type .. for cd .. and will actually let you use any directory as a command name and will cd to it: shopt -s autocd via bash – Any shortcut for “cd ..” ? – Super User.