What is the biggest challenge that VoIP faces in the market today?

Windows.  While you can QoS and filter and such, nothing will be perfect, there will always be a few seconds of issue if Data & Voice are sharing the same internet connection.  The only thing that truly works is installing a T1 line to customer premise solely for voice.

The reason this is, is that it’s a guaranteed fact that once a week someone in any office using windows will get a virus, that virus will spam or download or whatever as fast as the internet connection will allow. Thus causing havoc on VoIP quality.  *sigh* why does M$ make my life so difficult?

-S

The only reason I can’t watch the Olympics on NBC

I can’t stand the way Mary Carillo speaks.  Is her jaw wired shut? does she know that most people move their jaw when speaking not just their lips? Is she pretending she has a puppet? I just don’t get it.  Her speech is so ungodly awful and annoying it single handedly removes any sort of desire I have of watching the Olympics on NBC.

Get someone else to host for the love of god.

-S

Source Mirrors

Source Mirrors .org has gotten a slight but simple make over. We’re back up and running with a few TB of disk space and a gigabit of bandwidth available. If you have a project that needs some help in the bandwidth department please let me know and I’ll hook you up.

[email protected]

-S

Wunderground PWS

I don’t think I posted anything but I’m now reporting to wunderground using wview.

Weather Underground PWS KAZTUCSO102

Random bash scripting

Had to do this for work, couldn’t easily find a snippet on the web so here is one in case for some odd reason anyone needs it, this will create a file (t.t) that will have a list of numbers from 1000 -> 2000 adjust numbers as needed 🙂

#!/bin/sh
i=1000
while [ $i -lt 2001 ]
do
echo $i >> t.t
i=$[$i+1]
done