Posts

Showing posts from October, 2010

Generate WebSite Thumbnails from command line

Here's a cool Command line interface (CLI) for generating prints of a website based on the URL. And the cool thing is... it's free! http://iecapt.sourceforge.net/ Thanks to webresourcesdepot.com

PowerShell | Get Current Folder

this is great for working with absolute paths $current_folder = Get-Location -PSProvider FileSystem

PowerShell | Load URL in the back

$IE=new-object -com internetexplorer.application $IE.navigate2("http://ftduarte.blogspot.com/") while ($oIE.busy) { #give some time for page to load sleep -milliseconds 500 #or [System.Threading.Thread]::Sleep(500) } # $IE.visible=$true #optionally make browser appear #TODO: stuff $IE.Quit() #terminate COM object

html go back button

<input type="button" value="Cancelar" onClick="history.back()" /> credits http://www.comptechdoc.org/independent/web/cgi/javamanual/javahistory.html

X-Box throws "Your NAT type is Moderate"

When trying to log into X-Box Live through Internet, I get "Your NAT type is Moderate". After searching around, turns out forwarding some ports to the console solves the issue. 3074 (TCP & UDP) 53 (TCP & UDP) http://www.question-defense.com/2010/02/15/xbox-360-your-nat-type-is-moderate-configure-port-forwarding-on-your-router