We would like a website. We want it to be green and blue.
http://twitter.com/DevonRW/statuses/8557286102
Recent Additions RSS Toggle Comment Threads | Keyboard Shortcuts
-
The SourceBench
-
The SourceBench
Experience is what you get when you don’t get what you want.
http://twitter.com/SamanthaWarren/statuses/8639725239-
sourcebench
Experience is what you get when you don’t get what you want.http://twitter.com/SamanthaWarren/statuses/8639725239… – http://bit.ly/cNbZ1w
This comment was originally posted on Twitter
-
-
The SourceBench
Simple parallel processing with Bash using “wait” and “jobs”
#!/bin/bash # this is a simple helper script that can be used when you are in need of running multiple processes at once # simply run your command with an ampersand at the end and after this # execute forky with the number of parallel processes as argument. function forky() { local num_par_procs if [[ -z $1 ]] ; then num_par_procs=3 else num_par_procs=$1 fi while [[ $(jobs | wc -l) -ge $num_par_procs ]] ; do sleep 1 done } # below is an example - make sure to change this to your needs for fname in `ls -1`; do echo "`jobs | wc -l` jobs in spool" echo -e "processing $fname\n" # below should be the command you like to execute. in this example it's a php script that would do something with a file. # important is the & at the end of the command which sends the command to the background php ~/a_script_that_does_something_with_the_file --file=$fname & # after this call the forky function with the amount of parallel processes as parameter forky 5 done wait-
sourcebench
Simple parallel processing with Bash using “wait” and “jobs” – http://bit.ly/92T7jY
This comment was originally posted on Twitter
-
-
The SourceBench
Test if a nameserver change is done right
# imagine you just updated your whois data so it will point your domain to an other nameserver and you want to know if that worked out # this little command lets you know on *nix based machines for i in a b c d e f g h i j k l; do dig +short ns domainname.com @$i.GTLD-SERVERS.NET; done
-
sourcebench
Test if a nameserver change is done right – http://bit.ly/6IIbii
This comment was originally posted on Twitter
-
-
The SourceBench
Can you scale down the US map showing our locations so doesn’t look like Seattle is so far away from our other offices?
http://clientsfromhell.tumblr.com/post/323570454/ -
The SourceBench
Client: “the associate under the trailer has white socks, they need to be dark grey.” The image is 150×90.
http://twitter.com/graphnick/statuses/7486792683-
sourcebench
Client: “the associate under the trailer has white socks, they need to be dark grey.” The image is 150×90.http://twi – http://bit.ly/62XwbX
This comment was originally posted on Twitter
-
-
The SourceBench
I prefer that you create all the designs in Microsoft Word as this is a much better program to work with.
http://clientsfromhell.tumblr.com/post/303353900/i-prefer-that-you-create-all-the-designs-in-
sourcebench
I prefer that you create all the designs in Microsoft Word as this is a much better program to work with.http://clie – http://bit.ly/4rFREw
This comment was originally posted on Twitter
-
-
The SourceBench
If you want the client to pick option 1, you must make option 2 uglier.
http://twitter.com/thewhether/statuses/7003784493-
sourcebench
If you want the client to pick option 1, you must make option 2 uglier.http://twitter.com/thewhether/statuses/700378 – http://bit.ly/6ByS3T
This comment was originally posted on Twitter
-
-
The SourceBench
“Hang on, if you erase the top of the building in Photoshop, the sky will be behind it, won’t it?”
http://twitter.com/NoBadCreative/statuses/6920154361
sourcebench 1:24 am on February 6, 2010 Permalink |
We would like a website. We want it to be green and blue.http://twitter.com/DevonRW/statuses/8557286102… – http://bit.ly/cKabh7
This comment was originally posted on Twitter