Wednesday, June 3, 2009

Twitter Blog: Twitter Web Traffic Around the World

Twitter Blog: Twitter Web Traffic Around the World

Friday, April 10, 2009

Official Google Blog: Supporting students in open source software development

Official Google Blog: Supporting students in open source software development

Official Google Blog: Send a video message with Google Latitude

Official Google Blog: Send a video message with Google Latitude

Thursday, April 9, 2009

Official Google Blog: Enhanced Gmail and Calendar web app for iPhone and Android

Official Google Blog: Enhanced Gmail and Calendar web app for iPhone and Android

Thursday, February 26, 2009

Florida Linux Show 2009

The Florida Linux show is here again.
I didn’t make it last year I am hoping to make it this year.

http://www.floridalinuxshow.com/

Florida Linux Show 2009 JACKSONVILLE
March 9, 2009
UNF University Center
8:00 AM - 5:00 PM

and

Florida Linux Show 2009 ORLANDO
October 26, 2009
8:00 AM - 5:00 PM

Anyone in the Central Florida area attenting?

http://blog.biggsk.net/?p=154

Monday, February 23, 2009

Linux command of the week

Check out my new blog where I will be posting, http://blog.biggsk.net.

http://blog.biggsk.net/?p=160

wc

wc - print newline, word, and byte counts for each file

Which is useful for comparing line, word, and character count of files

[kpb@localhost ~]$ wc *.txt
3 6 29 test1.txt
5 10 49 test.txt
8 16 78 total

The first column is line count
The second column is word count
The third line is character count

You can also use it to get a byte count of a file:

[kpb@localhost ~]$ wc -c test.txt
49 test.txt

See the man pages for more info

Previous commands of the week:
http://blog.biggsk.net/?p=114

Wednesday, February 18, 2009

Stuff on new on new blog

Linux command of the week:
http://blog.biggsk.net/?p=132