New 100TB Per Second Record, Now Where is Mine?

May 1st, 2011 § 1 comment § permalink

I was reading about how a new record of 100TB per second was achieved recently. Which begs the question:

Why do I not even get 10Mbps download speeds???

It seems that US data connection providers are charging a lot for the same speed I got l got last year and the year before.

Source:www.websiteoptimization.com

 

Source: www.websiteoptimization.com

 

How Management Kills Innovation

April 20th, 2011 § 0 comments § permalink

I have worked for over 15 years in the technology sector and consider myself a student of idea maturation and innovation. Mainly in terms of fostering teams to create innovative approaches to problem solving. While creating a company culture that is conducive to improving upon and generating new ideas.

 

Some of my more recent experiences in the last few years have encouraged me to sit down and write this post regarding the things I have seen that “management” does to hinder innovation and adversely impact company moral unintentionally (of course).

Negative traditional management actions:

  • Lack of communication
  • Leaving the “troops” out of decision making
  • Creating a wall between management and workers
  • Walling off project by stake holder (producer/manager)
  • Pigeon holing

 

One of the main things I have noticed is the lack of general communication with the teams that actually do the work. You have management communicating with other management. But at the same time leaving the developers or other workers in the dark as to even the most simple knowledge in regards to the business and how well (or poorly) it is doing. I have spoken with many people who have no clue how a product is doing because they are not told. So they may make the wrong assumption and be looking for another gig when where they are is actually doing well.

» Read the rest of this entry «

Where Good Ideas Come From

April 19th, 2011 § 0 comments § permalink

Looking forward to reading Steven Johnson’s book.

Also checkout his TED talk:

SlimOS How To – A Minimal Debian Desktop with Minimal Fuss (Part 1)

April 11th, 2011 § 1 comment § permalink

I have been using an Ubuntu desktop for the last few years doing the version upgrades and having no issues to speak of with it. But I also started to notice that the system was being a bit slow with larger applications like Firefox and others. Recently I have been moving back to my roots in terms of using terminal apps over pretty GUI versions. So I decided to take on the challenge of doing my once every two years complete reinstall of my home desktop with a slant on minimalism and cleanness.

I looked at various “distributions” like Crunch Bang, Dream Linux, Arch Linux, and countless others.  Yet it is somewhat of a stretch to call most of them distributions since just bundling and branding or Debian based packages. So I decided to just go to the source and roll my own. This is by far the best option for a clean minimal desktop with only what you need and will use on it.

» Read the rest of this entry «

Terminal Dreams

April 6th, 2011 § 0 comments § permalink

I have been posting *nix apps and news to a new Tumblr called Terminal Dreams for those interested in that sort of thing.

Tips: Managing Many Servers via SSH

March 31st, 2011 § 0 comments § permalink

I manage many servers in my line of work and have found a few things to make life a little easier when it comes to SSH’ing into them when I start my laptop up.The first of these is maintaining an up to date ssh config file which is kept in ~/.ssh that allows me to alias the server address and key. A basic entry in the config file would be for an Amazon Web Services EC2 instance:

Host prod-servername01
HostName ec2-184-88-888-88.compute-1.amazonaws.com
User someuser
IdentityFile /.ssh_keys/servergroup.pem

Once you have all your servers in the config file I create a very simple script to start gnome-terminal with each group of servers:

gnome-terminal --tab --title=prod-servername01 -e 'ssh prdo-servername01' --tab --title=prod-servername02 -e 'ssh prod-servername02'

From the above example you can get the idea of adding more tabs for each additional server. I then create desktop or menu shortcuts for each grouping of server to launch a terminal and ssh into all in the group.

Tips: Finding Huge Files on Linux

March 29th, 2011 § 0 comments § permalink

I tend to always need to find the huge log files that are filling up servers. One fast way is to use find and awk to list them in human readable form:

find / -type f -size +20000k -exec ls -lh {} \; | awk '{ print $8 ": " $5 }'

Int he above example I am using find / which will search entire root filesystem. You can change this to /var/log of any path you want to find the largest files. You can also change the 20000k to a smaller or larger size (20000k = 19.53 MB).

 

Using Dropbox for SSH Key and Configuration Storage

March 25th, 2011 § 3 comments § permalink

I have been using the free 2GB Dropbox account to store my SSH keys for our servers. Along with my mutt and other configuration files. The best part of Dropbox on Linux is being able to symlink things into the Dropbox directory to allow me to have the same configurations on all the various computers I use.

Basically what I do is have a .ssh_keys directory in my main computer’s home directory which I symlink in my Dropbox directory. Then on other computers I create a:

ln -s /home/myuser/Dropbox/.ssh_keys /home/myuser/.ssh_keys

I do the same with my .muttrc and any other configs I want to use. I even keep my wallpapers in the Dropbox folder where my awesome config file randomly loads one using:

awsetbg -f -r /home/myuser/Dropbox/wallpapers/

Social Media is the Largest Paradigm Shift Since the Industrial Revolution

February 4th, 2011 § 0 comments § permalink

Some statistics I have gathered for a presentation I am working on.

  • 53% of Facebook users play games
  • 19% say they are addicted
  • 69% of Facebook gamers are women
  • 20% have paid money for in-game benefits
  • 56 million people play daily (more than the population of England)
  • 290 million people play monthly (almost as many as entire US population)
  • The average time spent per month on Facebook is 421 minutes (7 hrs 1 min)
  • 50% of Facebook logins are specifically for gaming
  • Roughly 927 million hours per month are spent gaming on Facebook, which equals 105,878 man-years’ of gaming a month!
  • Facebook usage was up 40% in 2010
  • 3.5 billion pieces of content are shared each week on Facebook
  • 65 million Facebook users access via mobile devices, up 100% from last year
  • 96% of 18-35 year olds are on a social network 1 in 5 of those are on Twitter
  • 78% of of consumers trust peer recommendations with 14% trusting advertisements
  • 34% of bloggers post opinions on products and brands
  • There are 70 translations of Facebook currently
  • Twitter adds 300k users a day
  • 25% of search results are links to user generated content
  • Over 1 billion YouTube videos are served a day

Safe and Secure Browsing Through Home Computer

January 5th, 2011 § 0 comments § permalink

I have found a little OpenSSH switch to be one of my best friends. If I am at a strange client network, cafe, or conference I use “-D” to make me feel warm and fuzzy all over. In OpenSSH if you use this switch you create an SSH SOCKS proxy on the port you specify. Thus encrypting your traffic to the SSH server you specify. In my case I connect to my home computer using a free DYNDNS (http://www.dyndns.com/) dynamic DNS name mapped to my home computer that stays on.

Example:

$ssh -D 6666 username@ip-address-of–your-ssh-server

Then you simply point your browser or other programs like IM to that port (in example 6666) on localhost and you can browse from your home computer free of snooping or any potential malicious users.

Another handy tool is ProxyChains (http://proxychains.sourceforge.net/) which I know works on Linux and might compile for you Mac people too.

Rss Feed Tweeter button Technorati button Reddit button Linkedin button Delicious button