Posts

Affiliates


Fixed by using cmd: USB drive unusable, unformattable, and reporting 0 bytes capacity

Image
Tutorial on Flash Drive repair by using command prompt. This tutorial are works at win7 and win8 1. open cmd in administrator 2. type  diskpart 3. make sure you select the disk # of the usb stick/flash drive      3.a.  list disk "to list all disk mounted"     3.b. select disk #   "select the flash drive disk" 4 type  list volume "to view the volume of the selected disk"     4.a type  select volume # 5. type list partition "if partition is not available type the code below " 6. type create partition primary 7. type format fs=(format_type) quick label="Flashdrivename"       e.g format fs=ntfs quick label="Flash"       (format_type) may be equal to = ntfs or fat32 8. done you may now use your flash drive you may also do a partition of your drive..

Proper way of using a cooling pad on laptop computers

Image
Electronic devices produces heat... without further a due what is the proper way of choosing a cooling pad for your laptop? I investigate, search and test, I notice this problems and outcome: 1. Heat is retained if the fan is directed on the computer. 2. If fan is directed on your computer the dust might give you another problem.    -a dust may retain on your laptop fan and it may reduce your laptop cooling system 3. A opposite air flow also bounces air.    -lessen if the circle edge is blocked and with a higher stand. 4. Make sure enough space at the bottom for air to pass. 5. Wipe/clean the cooling pad floor at least once a week. 6. Lastly close unused applications.    -Increasing the operation of a component will usually increase its thermal output

Increased Your Mango production

Image
Before Ramon Barba discovered the value of potassium nitrate on mangoes, mango trees producing fruits only once a year. Ramon Barba, a professor at the institute of Biological Science at UP Los BaƱos, found that mangoes can be induced to flower all year round by spraying mango trees with Potassium nitrate, the Philippines became a leading exporter of mangoes and mango products. Barba first experimented on a single hand-sprayed application of potassium nitrate in the '70s. In the first week of his experiment, buds emerged, then flowers in the second week. Fruits came out within four months. For the experiment, Barba spent less than P500. Barba's research showed that if one percent of potassium nitrate solution is applied on mango trees for 5 years, new shoot production and leaf sizes would be significantly reduced. The normal recommendation is one percent potassium nitrate solution. Barba pointed out that if the tree does not flower after potassium nitrate application,...

[Tutorial] Force Print queue purge if get stuck

Have you encounter print queue for at least 5 to 10 mins but it doesn't print you may use this on your command prompt. START>CMD administrator> type this code net stop spooler del “%systemroot%\system32\spool\printers\*.shd” del “%systemroot%\system32\spool\printers\*.spl” net start spooler or you may use at batch file by opening a notepad type bellow code then save it to print.bat @echo off echo Stopping Spooler echo. net stop spooler echo Deleting jobs in print queue... echo. del “%systemroot%\system32\spool\printers\*.shd” del “%systemroot%\system32\spool\printers\*.spl” echo Restarting Spooler. echo. net start spooler then your done.

Detect if page is on iframe and direct it on your page.

Image
Detect if webpage is on iframe and redirect it on your page. this prevent viewing your site on proxies that sometimes steals data from your users. the code informs that parent web if on iframe results to replace the location page toString which is the main web on iframe. pop-up text < script > parent . frames . length && top . location . replace ( document . location . toString ()); </ script > <script> parent.frames.length&&top.location.replace(document.location.toString()); </script>

Emergency Survival Kit

Image
A Perfect tools needed for emergency situation on an environmental catastrophe.

PHP Chat with AJAX

Image
PHP chat is a most common as these days with the help of AJAX  I share to you my basic scripts with autorefresh at first you need to have localhost server or any web site hosting that supports php. these are my scripts Create file for your chat display ex. response.php code: put inside the data to be displayed second file index.php code: pop-up text < html > < head > < script src = "http://code.jquery.com/jquery-latest.js" ></ script > < script > $ ( document ). ready ( function () { $ ( "#responsecontainer" ). load ( "response.php" ); var refreshId = setInterval ( function () { $ ( "#responsecontainer" ). load ( 'response.php?randval=' + Math . random ()); } , 1000 ); $ . ajaxSetup ( { cache : false } ); } ); </ script > </ head > < body > < iframe src = "main.php" width = "100%" height = "25%" ...