Need an iPad accessory? Bring $$$

I'm sure you already guessed it but take a look. Warning you may be shocked by the sheer amount of over-priced junk on the next page!

Seriously though, what a rip off! $50 for a leather case, $30 for a cable? Consumers everywhere enjoy your iPads. I have one too but don't buy this stuff. Well I guess we really don't have a choice now. Steve Jobs I hope you are enjoying this. Soon Android will take over with their open source awesomeness and tablets will be must more common and cheaper!

Google TV Coming This Fall

tv_logo.gifWow, I can't believe its actually real. A while back there was a bunch of rumors, they were silly it was fake. Now it was announced at Google's I/O 2010 that Google TV is in fact coming in Fall 2010.

Google I/O 2010 Review of Day 1

Unfortunately for me I'm unable to watch the I/O live but I am keeping up to date with their latest updates. Let's take a look at what has been announced so far.

Google Code University

code_logo.pngIf you are interesting in further your learning in web technologies there is a great website you can't miss - Google Code Univeristy. The site is designed for anyone (especially computer science people) that wants to learn more.

jarlsberg-78.pngCross-site scripting is a huge security concern nowadays. The hardest thing about XSS is that people don't really know that they're vunerable. Or they don't full understand what exactly XSS is all about. Enter Google to save the day with Jarlsberg. Jarlsberg is a part of Google's Code Univeristy.

Ubuntu 10.04 Released!

images.jpgA new Ubuntu has been released! Version 10.04 is out and its fantastic. I was previously running Linux Mint on my desktop. I downloaded and installed Ubuntu today and I gotta say its pretty great.

Facebook Privacy Scanner

logo.pngOk we all use Facebook to keep in touch with friends and family. It's a great site that binds the universe together like the force. However there is a dark side. Facebook's privacy policy has changed dramatically over the years for the worse. Make no mistake about it, your personal info is out there. Aside from deleting your Facebook account, there is a way to restrict the data that Facebook shares with the world.

Google Voice - VoIP calls soon?

Cool article here about how Google is testing Google Voice desktop application to ... wait for ... make VoIP phone calls! Finally! Google Voice is always so hard to explain to people about what it does and how it works. Everyone thinks its about making phone calls, which is kinda is? Oh well, soon we won't have to worry about explaining it because it'll be really easy.

Windows Command Prompt For Loop

Have you ever needed to do some sort of repetitive task using the Windows command prompt? This is a cool program I really wasn't aware existed. Lets first create a text file name it myfile.txt and put in the following.

a,b,c
3,2,1

Now lets use our for loop.
for /F "eol=; tokens=2,3* delims=," %i in (myfile.txt) do @echo %i %j %k
What this does is pull the 2nd and 3rd value separated by commas from the file. Then echo's them to the screen.
 
This example isn't all that helpful but imagine putting user name and passwords in the file and doing a loop to try and brute for the NET USE password?

Windows NET USE / NetBIOS commands

  • net view /domain
    Lists all domain groups
  • net view /domain:name
    Shows list of all computers within the domain
  • net session
    All systems connected to system

nbtstat - Shows a ton of information about its host, for example. nbstat -a backdesk

Will show:

Node IpAddress: [192.168.1.43] Scope Id: []

           NetBIOS Remote Machine Name Table

       Name               Type         Status
    ---------------------------------------------
    BACKDESK       <00>  UNIQUE      Registered
    WORKGROUP      <00>  GROUP       Registered
    BACKDESK       <20>  UNIQUE      Registered
    WORKGROUP      <1E>  GROUP       Registered

    MAC Address = 00-13-72-CB-1E-86

Looking at the codes provided here, shows that the computer is a workstation server registered, running file service and browser service elections.