In case you are in need of nerdy T-Shirt inscriptions


 
Thread Tools Search this Thread
The Lounge What is on Your Mind? In case you are in need of nerdy T-Shirt inscriptions
# 1  
Old 05-03-2011
In case you are in need of nerdy T-Shirt inscriptions

Sysadmins seem to have a universal liking for T-Shirts with some nerd-humour written on it. Here are two highlights i ran across:

Code:
/bb|[^b]\{2\}/

(Shakespeare: "2 b or NOT 2 b")

The second one is SQL, but pretty self-explanatory once you try the gesture with your own hand:

Code:
SELECT finger
FROM hand
WHERE id=3;

bakunin
These 3 Users Gave Thanks to bakunin For This Post:
# 2  
Old 05-03-2011
<nerd_mode>
That SQL is ambiguous. It can address the middle finger (assuming a 1-based index), the ring finger (assuming a little-endian (starting to count on the right) zero-based index) or the index finger (big-endian zero-based index).
</nerd_mode>

scnr

P.S: Personally, I prefer "Go 42 yourself"
# 3  
Old 05-03-2011
Quote:
Originally Posted by pludi
I prefer "Go 42 yourself"
Well, I'm probably going to look like a dweeb, but I don't get it... Smilie Smilie Smilie

Last edited by Perderabo; 05-03-2011 at 06:37 PM.. Reason: fix the quote
# 4  
Old 05-03-2011
Quote:
Originally Posted by Perderabo
Well, I'm probably going to look like a dweeb, but I don't get it... Smilie Smilie Smilie
Count to 4 using your fingers, in base 2 Smilie
# 5  
Old 05-03-2011
Quote:
Originally Posted by pludi
Count to 4 using your fingers, in base 2 Smilie
ROFL Smilie But I don't feel too bad about not getting it. It reminds me of a tee-shirt I saw though...

There are 10 kinds of people in the world... those that understand binary and those that don't.
# 6  
Old 05-03-2011
Haha... In the US "the finger" is a binary 4 ..
We don't usually give a 42... Haha
# 7  
Old 05-04-2011
Hey! As a goofy research project today, I searched the web and could not find any reference to an obscene finger gesture that is a binary 42, ROTFL. Sticking out the middle finger (the standard western "finger") would seem to be a binary 4, or a 2, depending on how you count.

42??

What am I missing? LOL
Login or Register to Ask a Question

Previous Thread | Next Thread

7 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Change first letter of a word from lower case to upper case

Hi all, I am trying to find a way to change first letter in a word from lower case to upper case. It should be done for each first word in text or in paragraph, and also for each word after punctuation like . ; : ! ?I found the following command sed -i 's/\s*./\U&\E/g' $@ filenamebut... (7 Replies)
Discussion started by: georgi58
7 Replies

2. Shell Programming and Scripting

Conversion from Upper Case to Lower Case Condition based

Hello Unix Gurus : It would be really appreciative if can find a solution for this . I have records in a file . I need to Capitalize the records based on condition . For Example i tried the following Command COMMAND --> fgrep "2000YUYU" /export/home/oracle/TST/data.dat | tr '' ''... (12 Replies)
Discussion started by: tsbiju
12 Replies

3. Shell Programming and Scripting

[Solved] Change Upper case to Lower case in C shell

Is there a command that can switch a character variable from UPPER case to lower case? like foreach AC ( ABC BCD PLL QIO) set ac `COMMAND($AC)` ... end Thanks a lot! (3 Replies)
Discussion started by: rockytodd
3 Replies

4. Shell Programming and Scripting

sed ignoring case for search but respecting case for subtitute

Hi I want to make string substitution ignoring case for search but respecting case for subtitute. Ex changing all occurences of "original" in a file to "substitute": original becomes substitute Origninal becomes Substitute ORIGINAL becomes SUBSTITUTE I know this a little special but it's not... (1 Reply)
Discussion started by: kmchen
1 Replies

5. Shell Programming and Scripting

data array needs to change upper case to lower case

Hi all, i have a data array as followes. ARRAY=DFSG345GGG ARRAY=234FDFG090 ARRAY=VDFVGBGHH so on.......... i need all english letters to be change to lower case. So i am expecting to see ARRAY=dfsg345ggg ARRAY=234fdfg090 ARRAY=vdfvgbghh so on........ If i have to copy this data in... (8 Replies)
Discussion started by: usustarr
8 Replies

6. Shell Programming and Scripting

Script needed to select and delete lower case and mixed case records

HELLO ALL, URGENTLY NEEDED A SCRIPT TO SELECT AND DELETE LOWER AND MIXED CASE RECORDS FROM A COLUMN IN A TABLE. FOR EXAMPLE : Table name is EMPLOYEE and the column name is CITY and the CITY column records will be: Newyork washington ... (1 Reply)
Discussion started by: abhilash mn
1 Replies

7. UNIX for Dummies Questions & Answers

lower case to upper case string conversion in shell script

How can convert a Lower case variable value to an upper case in the kron shell script. (3 Replies)
Discussion started by: dchalavadi
3 Replies
Login or Register to Ask a Question