Related Posts
[SOLVED] Eclipse can’t see my Android Device on Ubuntu
Are you seeing this on eclipse when you plug your Android device to your Ubuntu box? Serial Number: ?????????? AVD Name: N/A Target: unknown State: ?? Here’s the solution: 1. Create a script to fix this next time it happens, let’s call it “android_device_reset” and save it on a folder contained on your $PATH environment […]
Powr.Proccoli-Kopimi – The Pirate Bay Manifesto
100 roads to #g-d: 001. Obtain the Internet. 002. Start using IRC. 003. Group and birth a site. 004. Experiment with research chemicals. 005. Design a three-step program. 006. Take a powerful stance for something positive and essential. 007. Regulate nothing. 008. Say that you have to move in two weeks, but stay for seven […]
How to remove elements from a listbox in Javascript (IE and Firefox)
//By Gubatron, just a silly function to clear the contents of a listbox object var ua = navigator.userAgent.toLowerCase(); var Browser = new Object() Browser.isIE = window.ActiveXObject ? true : false; Browser.isFirefox = (ua.indexOf(“firefox”)!=-1); function clearListbox(listboxObject) { if (Browser.isFirefox) { //in firefox “Option” objects remove themselves. var options = listboxObject.options while (options.length > 0) { options[options.length-1].remove() […]