Eotena in the 90’s –extended (by rafalopaka)
Apple is having their WWDC in a few days. I remember a time when I was like OH SHIT POWERBOOK G4 12!!!!! Now I care more about the phone book that’s been sitting on my steps for 3 weeks than what Apple will tell me I need next. iPhone nano, iPad Macro, iWatch. Update the stupid MacPro. You are still a computer company right?
http://www.youtube.com/watch?v=OnAAqz0UX4Q
The Colbert Report 05/09/13 Carey Mulligan with LeVar Burton ABSOLUTELY HILLARIOUS (by TheUSComedy)
Guys, one of my friends on Facebook was so excited that Taco Bell was bringing back the Beefy Crunch Burrito that she posted a message on their Facebook wall and asked them if they had a poster that she could get and hang up in her room. And Taco Bell legit sent her a giant-ass poster. I am laughing so hard right now.
l
what
You should have heard by now from the news and at twitter about recently what is happening in my country…
Map networked drive based on location
Set objNetwork = CreateObject("Wscript.Network") strComputer = "." Set objWMIService = GetObject("winmgmts:\" & strComputer & "rootcimv2") Set colAdapters = objWMIService.ExecQuery _ ("Select * From Win32_NetworkAdapterConfiguration Where IPEnabled=True") For Each objAdapter in colAdapters For Each strAddress in objAdapter.IPAddress arrOctets = Split(strAddress, ".") If arrOctets(0) <> "" Then strSubnet = arrOctets(0) & "." & arrOctets(1) & "." & arrOctets(2) x = 1 Exit For End If If x = 1 Then Exit For End If Next Next Set colItems = objWMIService.ExecQuery _ ("Select * From Win32_LogicalDisk Where DeviceID = 'O:'") If colItems.Count = 0 Then Select Case strSubnet Case "172.28.8" objNetwork.MapNetworkDrive "O:", "\persei8Omicron" Case "172.16.3" objNetwork.MapNetworkDrive "O:", "\persei3Omicron" Case "172.20.5" objNetwork.MapNetworkDrive "O:", "\persei5Omicron" End Select End If