Archive for category tips & tricks
Intel WiDi beams your laptop screen to your TV wirelessly
Posted by thumpad.com in General, tips & tricks on January 15, 2010
Amidst all the 3DTVs and ereaders Intel unveiled some brand spanking technology at CES, which will see you being able to beam your laptop display on to your TV wirelessly.Called Intel Wireless HD technology (or WiDi – short for wireless display), you'll simply need to press a button on your laptop to have your screen sent over to your TV in 720p HD, regardless of its original resolution.Your TV will need a small re……
Reggie Fils-Aime: Wii users don't care for Netflix HD
Posted by thumpad.com in General, tips & tricks on January 15, 2010
We seriously have to question the sanity of some of these high-ranking corporate types. Reggie Fils-Aime, Nintendo of America boss and fearless orator, has joined Andy Rubin of Google in claiming that his customers do not require a feature so prevalent nowadays that it has become close to a basic standard. While the Xbox 360 and PS3 are capable of streaming full HD movies from Netflix at no extra cost, Reggie has stated his belief that “there really is no loss for the Wii consumer” because “the ……
For full content click here
Audio and video on Large iTunes Podcasts Over 3G or EDGE
Posted by thumpad.com in tips & tricks on November 18, 2009
Tto download anything over 10MB requires that you be connected to WiFi. However, it’s incredibly easy to get around this arbitrary limit.
Simply tap the episode. Your iPhone will begin playing it right away, completely ignoring the limit. If you’re streaming audio, you can continue listening even if you exit the iTunes app.
Enjoy!
How to redirect static pages to xhtml pages using htaccess
Posted by thumpad.com in tips & tricks on November 7, 2009
If you want to redirect your .htm pages to .php pages
and you’ve got mod_rewrite enabled on your server you can put this in your .htaccess file:
### htaccess coment
RewriteEngine on
RewriteBase /
RewriteRule (.*).htm$ /$1.php
### htaccess comment
where php is the file extention of the xhtml page you want to redirect to. The above example will redirect all htm files (static pages) to php (xhtml or dynamic pages) files.
job done…….
Recover root password under linux with single user mode
Posted by thumpad.com in linux on October 31, 2009
1. Enter runlevel 1
Some Linux distribution, such as Ubuntu for instance, offer a specific boot menu entry where it is stated “Recovery Mode” or “Single-User Mode”. If this is your case, selecting this menu entry will boot your machine into single user mode, you can carry on with the next part. If not, you might want to read this part.
Using GRUB, you can manually edit the proposed menu entry at boot time. To do so, when GRUB is presenting the menu list (you might need to press ESC first), follow those instructions:
* use the arrows to select the boot entry you want to modify.
* press e to edit the entry
* use the arrows to go to kernel line
* press e to edit this entry
* at the end of the line add the word single
* press ESC to go back to the parent menu
* press b to boot this kernel
The kernel should be booting as usual (except for the graphical splash screen you might be used to), and you will finally get a root prompt (sh#).
2. Changing root password
As root, changing password does not ask for your old password, therefore running this command:
passwd
will prompt you for your new password and will ask you to confirm it to make sure there is no typo.
That’s it, you can now reboot your box and gain root access again
How to create subdomain automatically….
Posted by thumpad.com in tips & tricks on October 11, 2009
The easiest and most reliable way of doing this would be to use the XML API over port 2082 (port 2083 if using SSL).
The actual function for creating a subdomain in cPanel is an API1 function:
domain = subdomain to create
rootdomain = the domain under which to create the subdomain
dir = path beginning at the user’s home directory where pages for this subdomain will be stored
So if I wanted to create the subdomain something.example.com that points to ~/subdomains/something, I would have:
As for translating this all into PHP, PHP 5 class in the developer section of the cPanel Community Forums is
vailable for download to handle all of that for you.


Recent Comments