RapidShare download link generator

Monday, November 29, 2010

http://www.rapidfile.us/
http://www.rapidloader.info/
http://www.rapitshare.info/
http://www.rapidshare.co.in/
http://www.nbe-media.com/download/index.php
http://rapidpass.us.to/
http://www.rapidrip.info/
http://www.rsgenerator.net/
http://www.rsfox.com/generator.php
http://www.rapidunblock.com/
http://www.techspaze.com/generator/
http://www.hufk.com/rapidshare/
http://warezfly.com/
http://sxhost.info/
http://www.hellorapid.com
http://rapidsharepremiumfree.com/
http://www.rapidsharegenerator.com/
http://rapidlizard.com/
http://www.rapidshare4ever.com/download.php
http://www.rapidfile.us/index.php
http://rs.bibu2u.com/index.php
http://www.myfreers.com/download.php
http://takeabreak.uni.cc
http://rapidmon.com/rapid/
http://wallpapertrade.co.cc/
http://www.rapidshite.com/
http://www.rapidhard.glt.pl/
http://www.rapidsharegenerator.com/
http://www.xrapidshare.net/
http://www.premiumrs.co.cc/
http://1make.info/
http://download-ddl.com/Rapidshare/
http://rstiger.com/index.php
http://yourrapidsolution.com/rapid/index.php
http://rapihot.info/index.php
http://www.yourdocket.com/
http://www.premify.com/rapidshare/index.php
http://www.hufk.com/rapidshare/
http://www.premiumlinkgenerator.com/
http://hubdownload.com/rapidshare/
http://www.rapidhack.prv.pl/
http://www.rsfox.com/generator.php
http://rapidvip.com
http://2filehost.com/rapid/
http://premiumfiles.net/
http://downloadrapidshare.org
http://rapidsurfing.net
http://www.directacc.com
http://rapid-load.com/index.html
http://www.multidl.com
http://www.rapidshare4ever.com
http://www.WaNtPrEmIuM.net
http://rhost.cz
http://rapidleech.info
http://www.rapidshare.co.in/
http://www.rapidloader.info/
http://www.rapiddownloader.info/
http://www.rapidfile.us/
http://www.rapidunblock.com/
http://www.viete.info/
http://megadl.info/2008/07/09/rapidshare-premium-link-downloader/
http://rslinker.com/
http://findr.org/home.php
http://www.rapid4free.com/
http://www.rapidsharegenerator.com/
http://www.techspaze.com/
http://www.rapidsharegenerator.com/
http://multiddl.com/
http://www.rapidunblock.com/
http://www.dlvnn.com/
http://www.rapiddownloader.org/
http://www.rsfox.com/
http://www.rapidgully.dr.ag/
http://www.viete.info/
http://gen.rapid2host.com/generator.php
http://megadl.info/rs/
http://www.rsgenerator.net
http://www.riprapid.net/
http://www.rapidsir.com/
http://www.dlvnn.com/
http://rapidshare.multidl.com/
http://uploadground.com/
http://hc-security.blogspot.com/
http://yfhc.net/
http://megadl.info/
http://www.senditnow.org/
http://www.rsgenerator.net/
http://rapidsurfing.net/
http://www.techspaze.com/
http://weeload.info/
http://www.rsgenerator.net/
http://rapiddownloader.org
http://premiumdl.com
http://www.rapidsharepremium.org
http://rapidshare-premium.com
http://rapid-load.com
http://rslink.ws
http://rapidmirror.org
http://www.senditnow.org/r/index.php
http://rapidsharetools.net
http://rsgratis.com
http://rapid.gta-iv.org/
http://www.rsgenerator.net
http://www.NoPremium.org
http://www.rsfox.com/

Read more...

Kloxo error (network.c.336)

service kloxo restart
Stopping kloxo: ../bin/common/function.sh: line 28: 23988 Terminated $__path_server_exe $string >/dev/null 2>&1
Waiting for the process to die.....
Stopped kloxo

Starting kloxo: 11
2010-09-03 03:26:02: (network.c.336) SSL: error:00000000:lib(0):func(0):reason(0)
mysqld (pid 5559) is running...
Started kloxo
------
 
 
# rpm -e sendmail-cf
# yum update
# yum install lxlighttpd 
# /etc/init.d/kloxo restart

Read more...

yum error thread.error: can’t start new thread in Centos

Wednesday, November 24, 2010

untuk error kayak gitu sebenarnya ada 2 solusi. solusi sementara ma solusi selamanya. :D
untuk solusi sementara ini bro :

yum –disableplugin=fastestmirror update
itu script untuk update , jika untuk install sofware lainnya yang penting ditambahkan script “–disableplugin=fastestmirror” . itu untuk cara sementara.
untuk cara selamanya alias g sementara kayak gini ni :
vi /etc/yum/pluginconf.d/fastestmirror.conf
maka muncul config seperti ini
[main]
enabled=1
verbose=0
socket_timeout=3
hostfilepath=/var/cache/yum/timedhosts.txt
maxhostfileage=10
maxthreads=15
yang perlu dirubah adalah
enabled=1 >> enabled=0
ini digunakan untuk menonaktifkan plugins fastestmirror yang menjadi sumber masalah.
cukup itu aja share gw. moga2 bermanfaat

Read more...

Install WordPress On Centos Server

Tuesday, November 23, 2010

How to install wordpress on your centos server..?? lets do it : Before install wordpress on your vps, mysql must be installed on your sever…
Login to your root server :

mysql -u root -p
Enter Password:
mysql> create database wordpress;
mysql> GRANT ALL PRIVILEGES ON wordpress.* TO “wordpress”@”localhost” IDENTIFIED BY “password”;
mysql> FLUSH PRIVILEGES;
mysql> exit;


cd /var/www/html
wget http://wordpress.org/latest.tar.gz
tar -xzvf latest.tar.gz   atau,:    tar -xzvf wordpress-3.0.1.tar.gz


mv wordpress/* ./
rmdir wordpress/
mkdir wp-content/uploads wp-content/cache
chown apache:apache wp-content/uploads wp-content/cache
cp wp-config-sample.php wp-config.php
Go to SFTP to folder /var/www/html, please download wp-config.php and save to your local computer disk.
Edit this line data dbname and db password :
/** The name of the database for WordPress */
define(‘DB_NAME’, ‘wordpress‘);
/** MySQL database username */
define(‘DB_USER’, ‘root‘);
/** MySQL database password */
define(‘DB_PASSWORD’, ‘password‘);
Save it and then upload it again to /var/www/html directory
Now go to :
http://domainoripaddress/wp-admin/install.php

Read more...

How To Avoid / Bypass MegaVideo Time Limit Of 72 Minutes

Sunday, November 21, 2010

This post is for all the MegaVideo fans who wish to avoid / bypass MegaVideo time limit of 72 minutes. Watching videos online is so much fun but when something like this 72 min stipulation blocks the online video streaming you do get angry. So, here are some good ways to avoid / bypass this time limit.

METHOD – 1
Before you start up with anything, simply clean the all cookies and cache. Once you delete all this stuff, you are required to block the cookies from MegaVideo site. Below is the procedure to do it:
This can be performed regardless to the kind of Internet Browser you use. All you need to do is open the window of OPTIONS of your Internet browser and there you need to block the MegaVideo website, by typing www.megavideo.com in the given field.
METHOD – 2
STEP 1: Right click on the video that you want to view by avoiding or bypassing the time limit of 72 minutes.
STEP 2: Now, click on the option labeled as SETTINGS.
STEP 3: Now, go to LOCAL STORAGE and set the video to 0.
STEP 4: Next you need to clear the cookies and other temp files.
STEP 5: Now, Last Run Hot Spot Shield > Click Disconnect & connect to get a new IP address.
METHOD 3
If you want to keep yourself away from all the techie kind of stuff, then you might find this as the easiest way to avoid / bypass MegaVideo time limit of 72 minutes.
All you need to do is click on the video that you want to view. Now, you can click on the play button so that it gets loaded. Once the loading is done, make your browser go offline. If you are working on Mozilla Firefox, you can simply go to FILE > WORK OFFLINE. Now you can sit and watch the whole video completely which any time limit of 72 minutes.
There are many ways by which you can avoid / bypass MegaVideo time limit of 72 minutes. There are number of web services which help you do so. Or you can even simply download that video using any video grabber like Orbit Downloader.
If you know any other way to avoid the time limit to watch videos on MegaVideo, please share them with us.

Read more...

9 Fix For Firefox 3 Crashes & Hanging Problem

Firefox 3 is one of Best Open Source Browser and highly Secure Browser. With the Release of Firefox 3 on Download Day it has made the way to millions of users Computer. Majority of Users are happy with Firefox 3 which has improved Memory Management and Speed. Even i have felt that memory Consumption is reduced alot and WebPages loads way faster then older Firefox version. Read how you can Tweak Firefox 3 about:config to get more out of Firefox 3.
But some of users are not happy just because of some of random Crashes of Firefox 3. This is really frustrating for them. Many Users have reported that this Crashes never happened with them before. After Searching around whole day I got some of Fixes for Firefox 3 Crashes This might help some Users .
Firefox 3 Crash – Extensions & Add-on:
Most of the Firefox 3 crash and hang issue are because of incompatible Firefox 3 add-on and Extensions. You must check weather any of installed extensions are in Mozilla Problematic extensions List. Disable/Remove all Incompatible Extensions.
If you are not sure which Extensions Add-on creating problem then Perform the following steps to identify Extensions Issue
Go To Mozilla Firefox Profile Directory
Rename extensions folder to extensions1 for a time
Create Empty Extensions folder
Now check you Firefox is crashing or not. If it stops crashing then its your extensions and add-on creating Firefox 3 crash problem.
Firefox 3 Crash and RescueTime:
Their has been several report that RescueTime has been responsible to Firefox 3 crashes.
RescueTime Team is working on this and will get fixed version of RescueTime.
Firefox 3 Crashes- Vista Data Execution Prevention (DEP)
No Solution Available (Will update as soon as I get any working solution )
Firefox 3 and Gmail Loading Crash
Users have reported Crash while loading Gmail inbox. one of culprit in this case is CustomizeGoogle (Extensions) Disable This extension or disabling the hide invite box and hide quick contact box functions in CustomizeGoogle (extension) solves the problem.
Another Extension which also causes Firefox 3 to Crash when you open Gmail is FireBug. Incase if you use firebug then disable and check it’s still crashing.
Firefox 3 Crash Due to QuickTime plugin
Firefox 3 crashes due to QuickTime Plugin, Just Install the latest QuickTime plugin and it will resolve the problem.
Ubuntu Firefox 3 Flash Crash
Adobe has released latest Beta Flash Player 10 beta 2 which has fix for many bugs which also addresses Linux Flash bugs. Installing Flash Player 10 beta 2 will solve Firefox 3 Crashes due to Flash on Ubuntu.
Firefox 3 crash reported on Ubuntu due to flash content has following Fix
1) Add ‘export XLIB_SKIP_ARGB_VISUALS=1’ to /usr/bin/firefox (This is the Script which starts Firefox).
2) Turning Composite off in /etc/X11/xorg.conf
3) Switch screen depth from 16 to 24 bits. Also, edit /etc/X11/xorg.conf to do same change
Firefox 3 Crash When You Right Mouse Click
Problematic Extension in this case is ‘Free Download Manager Plugin 1.0’ which is not compatible with Firefox 3.Disabling Download Manager Plugin 1.0 will get you out of this problem.
kaspersky 2009 Causes Firefox 3 to Crash
Kaspersky Internet Security 2009 is responsible for Firefox 3 crashes for many users, this is confirmed by Kaspersky. They are testing out fixed version of Kaspersky and will soon make available for download
Mean while here is the solution to stop Firefox 3 Crash due to Kaspersky
1. Download Sysinternals AutoRuns for Windows.
2. Extract and run autoruns.exe
3. Click AppInit tab and uncheck C:\Progra~1\Kasper~1\Kasper~1\mzvkbd.dll
4. Restart your computer.
Ref:raymond.cc
Firefox 3 Crashes Whenever You download Something (Ubuntu Hardy)
This is a typical problem. Whenever you try to download from any where, Firefox 3 crashes. Culprit behind This Firefox 3 crash is Prism 0.2 Extension. Disabling This Extension will solve this issue
Firefox 3 Crashes when You Use Yahoo Mail
Exact problem for this Firefox 3 Crash is Yahoo! Application State plugin, You’ll need to disable this plugin.
  1. From the menu at the top of the Firefox window, select File and then select the Exit menu item.
  2. Open My Computer or Windows Explorer.
  3. Browse to the directory: C:\Program Files\Yahoo!\shared
  4. Delete the file npYState.dll. Now that this plugin has been removed, Firefox may stop crashing when using Yahoo! Mail.
FireBug can also cause Firefox 3 Crash either disable FireBug for Yahoo Mail or get Latest Updated FireBug Extention.
Firefox 3 Crashes when you open MSN (www.msn.com)
Some of Firefox 3 users have reported crash of Firefox 3 while opening www.msn.com, only one solution found to be solving this problem . Silverlight is culprite for this type Firefox 3 crash.Disable silverlight and then check out.
Standard Diagnostic Steps for Firefox 3 Crash Isseue
  • Exit Firefox Completely
  • Clear Cache
  • Close Firefox from File – Exit. Make sure its not running in background
  • Start Firefox in Safe Mode
  • Extension and Theme Issue Check list of Problematic Extensions
  • Profile Issue
  • Plugin Issue
  • Clean Reinstall
Read here for Firefox Hang Issue. In case none of above Solution works for you then check out Firefox 3 Top Crash page

Read more...

How To Find Drivers For Unknown Devices

These days you get drivers with any sort of hardware you purchase. What if you lose those drivers? How to find drivers for unknown devices? Is there any way to get back those drivers? You can search for the drivers on Internet if you know all the details about the hardware, what if you are hardly aware of any details.

There is an easy way to find drivers for unknown devices. There is a vendor and device ID linked with each and every device that you purchase. Here is the step by step guide:
STEP 1: Navigate to Control Panel>System>Hardware>Device Manager, this will launch the device manager.
STEP 2: Now, you would find that there is a device labeled as Unknown Device, that is the device whose drivers are not available.
STEP 3: Now, simply right click on that Unknown Device and click on the button labeled as Properties.
STEP 4: There, you will see a button labeled as Details. Here, select the Device Instance ID from the drop down box that it shows.
STEP 5: The ID that it shows would be similar as
PCI\VEN_8086&DEV_27DC&SUBSYS_30868086
&REV_01\4&1E46F438&0&40F0
STEP 6: From the above ID, you can easily extract the vendor ID and device ID. The one in RED is Vendor ID and the one in GREEN is device ID i.e. Vendor ID = 8086 and Device ID = 27DC.
STEP 7: Now, you can simply log on to PCI DATABASE, where you can enter the vendor ID or device id and get the driver details.
This is undoubtedly the best way to find the drivers for unknown devices. Now you need not stress out your brain to remember where you lost your drivers. Simply follow these steps and get the drivers.

Read more...

Files on External/Flash Drive Changed to Shortcuts Virus

Saturday, November 20, 2010

Issue
I caught a virus on my flash drive at work and it appears to have changed all my file names to short cuts. I believe I’ve cleaned the virus but how do i get my files back so that I can view them?

Solution
* If you did not format your flash drive, then check whether the files are not in hidden mode.
* Click on “Start” –>Run–>type cmd and click on OK.

* Check your external Drive letter in My Computer
* Here I assume your external drive as G:
* Enter this command.
* attrib -h -r -s /s /d g:*.*
* Delete the unnecessary shortcuts.

Read more...

4 Ways to Speed Up Your Computers Performance

Free Up Disk Space
By freeing disk space, you can improve the performance of your computer. The Disk Cleanup tool helps you free up space on your hard disk. The utility identifies files that you can safely delete, and then enables you to choose whether you want to delete some or all of the identified files.
Use Disk Cleanup to:
• Remove temporary Internet files.
• Remove downloaded program files (such as Microsoft ActiveX controls and Java applets).
• Empty the Recycle Bin.
• Remove Windows temporary files.
• Remove optional Windows components that you don’t use.

• Remove installed programs that you no longer use.
Tip: Typically, temporary Internet files take the most amount of space because the browser caches each page you visit for faster access later.
To use Disk Cleanup
1. Click Start, point to All Programs, point to Accessories, point to System Tools, and then click Disk Cleanup. If several drives are available, you might be prompted to specify which drive you want to clean.
2. In the Disk Cleanup for dialog box, scroll through the content of the Files to delete list.
3. Clear the check boxes for files that you don’t want to delete, and then click OK.
4. When prompted to confirm that you want to delete the specified files, click Yes.
After a few minutes, the process completes and the Disk Cleanup dialog box closes, leaving your computer cleaner and performing better.
Speed Up Access to Data
Disk fragmentation slows the overall performance of your system. When files are fragmented, the computer must search the hard disk when the file is opened to piece it back together. The response time can be significantly longer.
Disk Defragmenter is a Windows utility that consolidates fragmented files and folders on your computer’s hard disk so that each occupies a single space on the disk. With your files stored neatly end-to-end, without fragmentation, reading and writing to the disk speeds up.
When to Run Disk Defragmenter
In addition to running Disk Defragmenter at regular intervals, optimally monthly, certain events warrant running the utility outside of the monthly rule of thumb.
You should run Disk Defragmenter under the following circumstances:
• You add a large number of files.
• Your free disk space nears 15 percent.
• You install new programs or a new version of Windows.
To use Disk Defragmenter:
1. Click Start, point to All Programs, point to Accessories, point to System Tools, and then click Disk Defragmenter.
2. In the Disk Defragmenter dialog box, click the drives that you want to defragment, and then click the Analyze button.
After the disk is analyzed, a dialog box appears, letting you know whether you should defragment the analyzed drives.
Tip: You should analyze a volume before defragmenting it to get an estimate of how long the defragmentation process will take.
3. To defragment the selected drive or drives, click the Defragment button.
After the defragmentation is complete, Disk Defragmenter displays the results.
4. To display detailed information about the defragmented disk or partition, click View Report.
5. To close the View Report dialog box, click Close.
6. To close the Disk Defragmenter utility, click the Close button on the title bar of the window.

Read more...

Download Windows 7/Direct3D 11 (DirectX 11)

Microsoft has been continuously evolving DirectX to implement latest graphics technology features and to support wide varieties of games, Display devices. After making DirectX 10 available for windows Vista here is next version DirectX 11 with Direct3D 11 which is available for download as technical preview.
Windows 7/Direct3D 11 Technical Preview is part of DirectX SDK and contains Technical Preview of Direct2D, DirectWrite, DXGI 1.1. Good news is, it is not only available as Technical Preview but also as DirectX End-User Runtimes.
Windows 7/Direct3D 11 (DirectX 11) is supported on Windows 7 and Windows Vista only. Windows XP users cannot install DirectX 11.

Download Windows 7/Direct3D 11 (DirectX 11)

Download Windows 7/Direct3D 11 (DirectX 11) (SDK)
Download Windows 7/Direct3D 11 (DirectX 11) (Web Installer)
Source: Softpedia

Read more...

21 About:Config Hacks(Tweaks) For Firefox 3

To get the Firefox 3 configuration file type “about:config” at address bar.

Here is List of about:config hacks for Firefox 3

1) Disable Extension Compatibility Checks
extensions.checkCompatibility = False
extensions.checkUpdateSecurity = False

2) Location Bar (Set number Auto Complete URL at Address Bar)



This is a good hack to trim down that huge auto-complete list on your URL bar. By default it displays maximum 12 URL

browser.urlbar.maxRichResults = #

Enter Number at # (3,10,12 etc)

3) Stop Displaying Website Icon (Favicon) in Address bar & On Tab

browser.chrome.site_icons = False

4) Disable Prefetch (Helpful for frequent Google searcher, low-speed internet connection or low RAM)

network.prefetch-next = False

5) Extend Spell check to forms

layout.spellcheckDefault = 2
Change Value from 1 to 2

6) Disable Blinking Text

browser.blink_allowed = False

7) Speed Tweaks

network.http.pipelining false to true
network.http.pipelining.maxrequests 30 to 8
network.http.max-connections 30 to 96
network.http.max-connections-per-server 15 to 32
network.http.max-persistent-connections-per-server 6 to 8
network.http.pipelining.ssl false to true
network.http.proxy.pipelining false to true

8 ) Disable Annoying Browser Behavior

dom.disable_window_open_feature.menubar
dom.disable_window_move_resize
dom.disable_window_open_feature.titlebar
dom.disable_window_open_feature.toolbar

Set all of above to value False

9) Remove Tab Close Button from all Tab and set A single Close Button at Right

browser.tabs.closeButtons = 3

Single Close Button to control all Firefox Opened Tabs. (value should be 3 and not 2 Thanks Andreas )

10) Disabler Browser Toolbar Tip

browser.chrome.toolbar_tips = False

11) Show More Tabs on Single Firefox Window before Scrolling

browser.tabs.tabMinWidth = 75

Setting lesser value with reduce Tab width

12) Past Copy Content with Middlemouse Click

middlemouse.paste = True

13) Scroll webpage in One Go

mousewheel.withaltkey.action=1

14) Disable Delay Time While Installing Firefox Add-on

security.dialog_enable_delay = 0

(Zero is number of seconds Firefox should wait while installing Add-on)

15) Increase History Undo Close Tab Limit ( Recently Closed Tabs )

browser.sessionstore.max_tabs_undo=15

By default you can undo 10 recently closed tabs inorder to increase your history closed tabs. Change number 13 to as per your choice.

16) Open Firefox Default Search Bar Result in New Tab

browser.search.openintab=True

17) Right Click View Source in Your Favorite Editor

view_source.editor.external=True
view_source.editor.path= Path of Editor

(e.g. path C:\Program Files\npp.4.8.2.bin\notepad++.exe)

18) Enable/Disable Single Click to Select Whole URL in Address bar

To Enable Single Click Select URL of address bar use the below about:config Tweak

browser.urlbar.clickSelectsAll = True

To disable Single Click Select

browser.urlbar.clickSelectsAll = False

19) Emule/ed2k link association (Linux users)

network.protocol-handler.app.ed2k= /usr/bin/ed2k
network.protocol-handler.external.ed2k = true

20) Fast Scrolling Across Tabs

toolkit.scrollbox.scrollIncrement =75

( 75 is number of pixels to scroll at a time when scrolling the tab strip’s scrollbox. (Default: 20)

21) Auto Complete URL while You type at address Bar

browser.urlbar.autoFill=True

Many of above about:config hacks are available in Older Firefox Version, at the end if some thing goes wrong then feel free to restore your about:config to older setting see the below image of how to restore about:config

Hope you guys like this Firefox 3 hacks, If you have any tips or hacks related to Firefox 3 about:config, hacks, tweaks do let me know I will include it in above list.

Read more...

Google Chrome 7.0.517.44 Stable / 9.0.576.0 Dev – Offline Installer

Thursday, November 18, 2010

Chrome adalah sebuah browser besutan dari Google yang dirancang untuk membuka sebuah website lebih cepat dan aman. Dengan tampilannya yang minimmalis dan efisien tentu akan mempermudah para penggunanya diseluruh dunia. Chrome juga diklaim sebagai browser yang sangat ringan

Chrome Browser saat ini hadir dengan versi Google Chrome 7.0.517.44 Stable dan 9.0.576.0 Dev. Stable adalah versi Final yang sudah benar-benar stabil yang sudah melewati versi dev dan beta. Sedangkan Dev adalah sebuah rillis terbaru dari versi Chrome untuk mencoba fitur-fitur terbaru yang sedang dikembangkan oleh Google Chrome

Perbedaan versi Dev, Beta, & Stable – Sesuai urutan keluarnya :

* Dev - versi browser yang paling rentan kena bug, tapi penggunanya adalah yang paling awal bisa mencoba fitur-fitur terbaru. Versi untuk uji coba fitur2 baru di Chrome. Khusus untuk mereka yang ingin membantu Google dalam melaporkan bug2 yang ditemukan. Sama seperti versi beta, dev juga sudah bisa memakai extensions
* Beta - versi browser yang sudah melewati tahap dev, biasa setiap bulan versi dev akan dipromosikan ke versi beta ini. Klo mau coba pakai extensions minimal harus pakai versi ini.
* Stable – versi browser yang sudah melewati tahapan dev & beta, dan berarti sudah sudah bisa dikatakan benar-benar stabil & aman dipakai oleh semua orang. Dan sejak versi nomor 4.0.295.0 sudah stable, maka para pengguna versi stable ini sudah bisa menggunakan extensions seperti halnya pengguna versi Dev & Beta.

Google Chrome is a browser that combines a minimal design with sophisticated technology to make the web faster, safer, and easier. It has one box for everything: Type in the address bar and get suggestions for both search and web pages. Will give you thumbnails of your top sites; Access your favorite pages instantly with lightning speed from any new tab.

Google Chrome is an open source web browser developed by Google. Its software architecture was engineered from scratch (using components from other open source software including WebKit and Mozilla Firefox) to cater for the changing needs of users and acknowledging that today most web sites aren’t web pages but web applications. Design goals include stability, speed, security and a clean, simple and efficient user interface.

Here are some key features of Google Chrome :

* Speed: Fast to launch, fast to load web pages
* Quick to start up from your desktop
* Loads web pages in a snap
* Runs web applications faster than ever

* Simplicity: Designed for efficiency and ease of use
* Search and navigate to web pages from the same box
* Arrange and organize tabs however you wish — quickly and easily
* Get to your favorite websites with just a click, from the thumbnails of your most visited sites in the New Tab page

* Style: Themes to add delight to your browser
* Try Minimalist, Star Gazing, or Google Chrome Artist Themes.

* One box for everything
* New Tab page
* Application shortcuts
* Dynamic tabs
* Crash control
* Incognito mode
* Safe browsing
* Instant bookmarks
* Importing settings
* Simpler downloads


http://d60pc.com/redirectdownload/chrome.html

Read more...

WinUtilities 9.92 Professional Edition Portable | 8.6 MB

Wednesday, November 17, 2010

WinUtilities is a system tweaking suite that includes more than 20 tools to improve and tweak your PC's performance. It offers an attractive and easy to use interface that organizes all tasks into categories and provides graphical statistics whenever possible. The tools include Junk File Cleaner, Registry Cleaner, Memory Optimizer, System Information, Registry Backup, File Encryption, Safe Uninstaller, Duplicate File Finder, File Shredder and much more. WinUtilities also includes an Internet Tracks Eraser with Cookie Manager and Secure Deletion. Overall, a great bundle that offers a wide range of system tools with extra benefits which are not easy to find.

Features:
• Recovers deleted files on NTFS and FAT volumes
• Cleans disks from information that clogs your system and reduces the performance of your computer
• Scans the Windows registry and finds incorrect or obsolete information in the Windows Registry
• Helps you to easily manage program execution at windows startup
• Erases all traces of activity on your computer, save spaces and protect your privacy
• Splits any type of file into smaller pieces and rejoin them to the original file
• Erases files and make sure that no data thief can get his hands on your sensitive data
• Protects any Windows executable file with a secure password
• Optimizes the Memory Management of Windows
• Helps you to free disk space by finding and removing duplicate files from your system
• Provides you with an easy way to address the invalid shortcuts and reports back to you so that you can remove it from your system
• Allows you to check your system's performance and manage the running processes
• Manages the programs installed on your system and uninstall unneeded software
• Shows you the detailed information for your computer hardware and software
• Back up and restore the Windows Registry

• Searchs the Windows Registry by a specific wildcard. then you can delete or export them
• Manages the BHOs that are currently installed
• Schedules your computer for log off, stand by, hibernate, or shutdown at a specific time
• Provides you an easy way to launch the utilities build in Windows
• Organizes and manage your Windows Settings
• Configures the cleaning tasks that take place automatically

link: http://www.ziddu.com/download/12576775/WinUtilities.rar.html

Read more...

ImTOO Video to DVD Converter 6.1.4.1027

ImTOO Video to DVD Converter can quickly and easily convert video files in most formats including high-definition (HD) formats (MP4, MKV, AVI, DivX, XviD, HD camcorder videos (M2TS, MTS, TS), MPG, MPEG, QuickTime Videos (MOV, QT), DV, VOB, Real Video (RM, RMVB), WMV, H.264/AVC, ASF, DAT, FLV, 3GP) to DVD movies. ImTOO Video to DVD Converter can also help you make custom DVD movies: create personalized DVD menus; clip and crop videos; add opening film, artistic effects, watermarks, multiple subtitle and audio files to movies, plus much more. With support for multithreading and multi-core processing, you can convert any video to DVD in moments.

* Convert & burn video files (incl. MP4, MKV, AVI, DivX, Xvid, HD camcorder videos (M2TS, MTS, TS), MPG, MPEG), iPhone 4 MOV to DVD movies
* Create ISO files & DVD folders from video files
* Create personalized DVD menus

Link: http://www.ziddu.com/download/12576732/ImTOO_Video_to_DVD_Converter.rar.html

Read more...

trik internet gratis

1. UNTUK DI HP

Apn : TELKOMSELTBS1
Proxy : 192.168.16.5 / 192.168.016.005
port : 8080
username : sikompret
pasword : gratisan
homepage : http://riky.hexat.com

biar lebih ceapt konek konek dulu ke hompagenya



2 UNTUK DI PC

Apn : TELKOMSELTBS1
Proxy : 192.168.16.5
port : 8080

trik ini akan berjalan jika dapat ip sakti yang 114.124 ingat harus dapat ip tersebut kalu tidak akan bengong

SUMBER:http://rikyaja.blogspot.com/

Read more...

TRIK INTERNET GRATIS AXIS

silahkan ikuti intruksi di bawah ini


Apn : axis
proxy : 203.78.120.78
203.78.120.15
203.78.115.28
203.78.122.78
portnya : 80

silahkan pilih salasatu saja jangan semuanya di masukin he he he


trik ini ane jamin wussss untuk di pake di hp tidak perlu ada pulsanya cukup 0 perak aja atau dalam masa tenggang juga jalan .Tapi kalu mau di gunakan di PC usahakan ada pulsanya 1000 kebawah aja untuk mengatasi tendangan dari axis

SUMBER:
http://rikyaja.blogspot.com/

Read more...

Video2Webcam 3.1.9.8 download

Tuesday, November 16, 2010

Video2Webcam 3.1.9.8 | 5.2 Mb

Video2webcam enables you to show video clips as virtual webcam during video chat whether you own a real webcam or not. You could either share your home-made video clips easily with your friends while chatting on line or make fun of them by pretending to be somebody else. With it, you can play a variety of videos on messengers and switch between real & virtual webcams easily & quickly.It supports all kinds of media file formats including video formats (avi, asf, flv, mp4,mpeg, mpg, ram, rm, rmvb, wmv and etc.) and picture formats (jpg, gif, bmp, png and etc.). Besides, it works on all webcam programs such as MSN, Camfrog, Skype, ICQ, AIM, Paltalk, Yahoo Messenger, ANYwebcam, Stickam, ICUII, Ustream.tv, iSpQ, etc



DOWNLOAD


KEYGEN

Read more...

FIREFOX ULTIMATE OPTIMIZER

This is the must have tool for ANY Firefox user. Firefox is great, but with FireFox Ultimate Optimizer it’s awesome. Gone are the days when Firefox consumes huge amounts of memory, acts sluggish and totally crashes out.

This Firefox tool is not a plugin, but a stand alone application that will optimize Firefox in real time! It Keeps the resource usage very low. For example I had Firefox using 150megs of ram while running, I started up this utility and almost instantly Firefox was using less than 2 megs of ram!
This program was written by Fellipe, but it seems his site is often non-responsive & only in Spanish, therefore we are offering this package with an installer and extra language files. It’s totally free!
Very small program, super easy to install, no real setup needed, run it and it just works.
For Windows XP, 2000 and Vista

DOWNLOAD

Read more...

SEJUTA TRAFIK GRATIS: Trik Internet Gratis Telkomsel Update November 2010.

SEJUTA TRAFIK GRATIS: Trik Internet Gratis Telkomsel Update November 2010.

Read more...

trik internet gratis xl

Wednesday, November 10, 2010

1.Trik internet ala baim dengan  www .mxl. net
Setting HP apn : www.mxl.net
username & password : mxl
dns :64.10.10.50
proxy : 202.152.240.50  / 202.152.240.050
port :80
Set opmin operamini
httpserver :http:// m.xl.co.id@server4.operamini.com:80/
front query : m.xl.co.id@ host :m.xl.co.id


2.trik ngnet gratis ala ip sakti ajis
Apn : axis
proxy : 203.78.115.28 / 203.78.122.78 / 203.78.120.15 pilih salasatu aja
port : 80




catatan : jika di pc harus di pastikan dulu pulsa dalam kartu axis maksimal 1000 kebawah aja  ,karena jika tidak ada pulsa sama sekali siap2 aja kena tendangan dasyat axiss he he he

Read more...

Cheap VPS $2 monthly

Friday, November 5, 2010

1 Power Unit Server
30 GB Disk Space
200 GB Monthly Bandwidth
256 MB Dedicated RAM
0.3 Ghz CPU
1 IP Address
Linux OS
$2.99 monthly

2 Power Units Server
60 GB Disk Space
400 GB Monthly Bandwidth
384 MB Dedicated RAM
0.6 Ghz CPU
1 IP Address
Linux OS
$4.99 monthly
3 Power Units Server
90 GB Disk Space
600 GB Monthly Bandwidth
384 MB Dedicated RAM
0.9 Ghz CPU
1 IP Address
Linux OS
$9.99 monthly
4 Power Units Server
Unbeatable price and value. Great for any application. This is our most popular service.
120 GB Disk Space
800 GB Monthly Bandwidth
512 MB Dedicated RAM
1.2 Ghz CPU
1 IP Address
Linux OS
$14.99 monthly
5 Power Units Server
150 GB Disk Space
1000 GB Monthly Bandwidth
640 MB Dedicated RAM
1.5 Ghz CPU
2 IP Address
Linux OS
$19.99 monthly
6 Power Units Server
180 GB Disk Space
1200 GB Monthly Bandwidth
768 MB Dedicated RAM
1.8 Ghz CPU
2 IP Address
Linux OS
$24.99 monthly

8 Power Units Server
Eight power units rival many dedicated servers.
240 GB Disk Space
1600 GB Monthly Bandwidth
1024 MB Dedicated RAM
2.4 Ghz CPU
2 IP Address
Linux OS
$49.99 monthly

10 Power Units Server
300 GB Disk Space
2000 GB Monthly Bandwidth
1280 MB Dedicated RAM
3.0 Ghz CPU
2 IP Address
Linux OS
$69.99 monthly
12 Power Units Server
360 GB Disk Space
2400 GB Monthly Bandwidth
1536 MB Dedicated RAM
3.6 Ghz CPU
2 IP Address
Linux OS
$94.99 monthly

16 Power Units Server
Maximum space, Ram and transfer. This VPS option packs a powerful punch.
480 GB Disk Space
3200 GB Monthly Bandwidth
2048 MB Dedicated RAM
4.8 Ghz CPU
4 IP Address
Linux OS
$119.99 monthly
ORDER

Read more...

How to Install Kloxo/Lxadmin on CentOS 5.x Virtual Private Server Or Dedicated Server

Tuesday, November 2, 2010

The free version only had support to only 40 domains run on the same server and Enterprise version can run unlimited domains on one server. But now Kloxo owner LXlabs CEO  K.T Ligesh dead. And the Kloxo is become a freeware So you can now obtain Enterprise license for free.
So if you want more information or want to see demo’s about kloxo please go to their website here.
So lets start-

  • First of all you need to install PUTTY and login to your server with it by very easy steps, providing the ipaddress and password given to you buy the hosting company. The default User name is root.
  • Make sure you Install CentOS 5.x 32 Bit or you will get problem with Email when you run it on 64 Bit .
type this command to check your VPS or Dedicate Server is running on 32 or 64 Bit Kernel

# uname -m
i686 <-- it's mean 32 Bit
x86_64 <-- it's mean 64 Bit

=======
Get the Kloxo installer by type this command on you Box
# wget http://download.lxlabs.com/download/kloxo/production/kloxo-install-master.sh

Now install Kloxo
# ./kloxo-install-master.sh


This message will appear when installation is complete
Congratuations. Kloxo has been installed succesfully on your server as master
You can connect to the server at https://:7777 or http://:7778
Please note that first is secure ssl connection, while the second is normal one.
The login and password are 'admin' 'admin'. After Logging in, you will have to change your password to something more secure
We hope you will find managing your hosting with Kloxo refreshingly pleasurable, and also we wish you all the success on your hosting venture
Thanks for choosing Kloxo to manage your hosting, and allowing us to be of service

Now open your Browser and type http://:7778 and login with
Username : admin
Password : admin
Follow the messege apper when you login to change the password
Set the Lxguard protects to

Read more...

Cara Install Kloxo di VPS Centos 5, 32 & 64 bit

vps os centos 5 dan kloxo, berikut langkah langkah nya:

  1. Pastikan buka port 7778 dan 7777
  2. Masuk root ssh
  3. Ketik lalu enter: cd /
  4. Ketik lalu enter: setenforce 0
  5. Ketik lalu enter: wget http://download.lxlabs.com/download/kloxo/production/kloxo-install-master.sh
  6. Ketik lalu enter: sh ./kloxo-install-master.sh
  7. proses installisasi ….
*note: kalau pake vps lokal iix, proses agak lama, (andaikan ada mirror kloxo lokal, pasti cepat :D )
Kalau proses install sudah selesai, silahkan coba akses kloxo: http://IP-Anda:7778/
default user: admin password: admin (langsung ganti pass nya, supaya aman B-) )
Untuk demo nya sebelum menginstall silahkan coba ini: http://demo.kloxo.com:7778/

Read more...

Mengisengi warga dalam Local Area Network / shutdown pc local area network

Monday, November 1, 2010

  1. Buka Windows Command Processor anda. Klik Start -> Run lalu ketik: cmd
  2. Pada command prompt, ketik: shutdown -i lalu tekan Enter.
  3. Perintah tersebut akan memanggil kotak dialog Remote Shutdown. Perhatikan screenshoot berikut:
  4. Klik tombol Add untuk memasukkan IP Address atau nama komputer target. Anda bisa memilih aksi, Shutdown, Log Off atau Restart. Pada kolom Display warning for anda bisa menentukan berapa lama countdown yang kan ditampilkan sebelum komputer di shutdown/log off/restart. Pada Opsi planned, ada pesan otomatis yang bisa anda pilih. Pada kolom Comment, anda bisa menuliskan pesan anda untuk sang penyusup
  5. tau.. terserah anda laah.. Saya rasa anda lebih jago soal ledek-meledek hehehe… ;)
  6. Klik OK sesudahnya. Kira-kira di komputer target akan muncul seperti ini:

Hohoho… menyenangkan bukan?? Eh?? Kenapa?? Oh, anda adalah sang penyusup?? tidak ingin komputer yang anda pakai dimatikan dengan cara seperti diatas?? Tenang, saya ada sedikit tips.. ;)

  1. Saat anda melihat kotak dialog peringatan bahwa komputer anda akn segera di shutdown, secepat mungkin bukalah Notepad atau aplikasi Microsoft Word. Ketik kata-kata sakti berikut: AKU INGIN HIDUP 1000 TAHUN LAGI!!
    Hehehe.. kelamaan yach?? emang harus kata-kata itu?? Ya nggak laah.. ketik apa aja dech, terserah anda, yang penting jangan biarkan kosong. Jangan menekan tombol Save!! ;)
  2. Saat “waktu eksekusi” menunjukkan angka 00:00:00, windows akan berusaha menutup aplikasi-aplikasi yang masih terbuka. Nah, aplikasi Notepad/Microsoft word yang anda buka tadi akan meminta konfirmasi dari anda apakah anda ingin menyimpan dokumen anda. Jangan pilih apa-apa, biarkan saja kotak dialog tu bertanya-tanya ;p
  3. Beberapa saat kemudian akan muncul kotak dialog End Program, klik tanda silang yang berada pada pojok kanan atas atau pilih cancel. Kotak dialog yang muncul berbeda-beda, kurang lebih demikian:

Nah, anda akan mendapati komputer anda tetap hidup, sehat walafiat dan berdiri tegak. hehehe… ;)

Cuma itu caranya?? Ada nich yang lebih “formal” ^_^
1. Klik START -> Run
2. Secepat kilat, ketik shutdown -a
Perintah itu adalah perintah untuk melakukan Abort terhadap shutdown.

Lalu apa yang akan dilakukan sang Admin?? Tentu kondisi ini tidak bisa didiamkan. Jangan biarkan sang Penyusup senyum-senyum sendiri. Andalah sebagai admin yang harus tersenyum ) Beri serangan kedua!! Jangan dulu pakai software remot favorit anda, nggak perlu ngeluarin senjata pamungkas untuk penyusup seperti ini. Ulangi langkah awal tadi, shutdown -i, namun jangan beri centang pada opsi Warn Users Of the action dan kosongi juga opsi Planned. Jangan beri pesan apa-apa dan komputer sang penyusup akan langsung shutdown tanpa konfirmasi ;)

Sekian… and Happy SHUTTING DOWN!!! ^_^

Read more...

Net send bomber dengan batch programing

ini hasil copas dari skynibiru... siapa tau berguna... hehee
Baiklah kita mulai dengan script kecil dibawah ini ,
————————————————————————–
@echo IP target : %1
@echo Net Send Bomber siap melakukan serangan …
@pause
:serang
@net send %1 Hooiiiii %1 Jomblo_Keparat was here !!!!!!
@goto serang
————————————————————————–
simpan dengan nama serang.bat , terus cara menggunakannya di cmd DOS prompt ketik : serang [IP_TARGET]/[nama_komputer_target].
Contoh : serang 192.168.100.1
serang pc_target
serang * (bom ke semua PC yg ada di network)
untuk mengetahui IP target/nama komputer gunakan net view terlebih dahulu.
OK.terima kasih

Read more...
Powered by Blogger.

  © Blogger template The Professional Template II by Ourblogtemplates.com 2009

Back to TOP