G33K-TRICKS: Others
Showing posts with label Others. Show all posts
Showing posts with label Others. Show all posts

Saturday, March 26, 2016

Facebook Emoticons


Facebook Smiley


Its nice to use smiles while chatting. Usually they are called Emoticons.
Following are the few of them that you can use in Facebook.

Most of them also work while chatting too.


Saturday, March 19, 2016

How to get Nonencrypted password using Website Login Form


On Few websites you can just verify the password directly using the PHP or Java Script code.
Though not always , you can get the password with few easy steps.

1. Right-Click on the "Login Form" of the website which you want hack.
2. Select ''Inspect element''
3. Search for  ''
and then ''action=''  in the code

4. If the URL ends with  ''.js'' Bingo!!! you hit the bullseye. Just copy it and paste it in the URL bar of your browser.
And in-case if the URL ends with ''.php'', type ''view-source:'' before pasting the URL
Then search for  ''password'' in the source code.

WARNING: This method works better for .JS pages than with .PHP.
Sometimes, there is no URL after ''action='' you will find just a JS function.
Again view source and look for "password".


How to hack the Website password


Energy or Power Saving Tricks


Everyone here on Earth want to save except few. Whether its money or life or other resources.
One of them is Power / Electricity / Energy and saving it is saving for our future generation.

1. Cooling 


  • Close exterior doors and windows properly when the AC is in use.
  • Change or clean AC's air filters at least once in a month to keep your it running at optimum performance.
  • Always try to buy AC with High or Good Energy Ratings.
  • Block the sun from heating your home! Inside, use shades, blinds and drapes. Outside, use awnings, trees and shrubs.
  • If possible insulate the walls with foam insulation to so that heat is trapped 
  • Keep the door inside home open, it will allow the free flow of air through the home.
  • Plant trees to provide shade on the sunny side of your home.
  • Try using ceiling fans more rather than ACs to cool, they dont need much electric power to run.But, make sure that you turn off the fans when you are not using it.

2. Appliances 

  • Use microwaves to cook or warm leftovers. They use less energy compared to conventional ones.
  • If you are staying where temperature is already low, try to keep the refrigerator's cooling knob to low level. It will save good amount of energy.
  • Replace a refrigerator that was bought in 90s with an energy-efficient models. 
  • Try to Keep the freezer full. It uses less energy than an empty one. For maximum savings, consider filling your freezer with gallon containers of water.
  • Choose energy-efficient appliances. They don’t just save you money, but they’re good for the environment because they use less energy.
  • Wash and dry several loads at once. It saves power. You can skip drying in machine when Sun is a free dryer available at your service.
  • Always match your pot size to the burner size on your cooking stove. Good amount of heat is lost in air when small pots are used on large burners.So, always try to use smaller burner.
  • Use tight-fitting covers on pots and pans when cooking on the stove to shorten your cooking time and save energy.
  • Turn off your burners when food is almost ready and let existing heat finish the cooking for you.
  • Whenever possible wash with full loads of clothes.
  • Set your dishwashers and washing machine on economy mode, to use less water and electricity.
  • Use copper bottomed pans and pots when cooking on the stove. Copper is good conductor of heat and gets heated up easily compared to another metals.

3. Electronics

  • Plug electronics into a power strips. So when you are done with one switch you can turn off all of them at once instead of forgetting to switch of particular one.
  • Unplug battery chargers when the batteries are fully charged or the chargers are not in use. Many chargers draw power continuously, even when the device is not plugged into the charger.
  • Consider buying a laptop instead of buying a computer. Laptop uses less power. In the Same way, buying LED TVs are good option but yeah they are costly.
  • Set your computer to sleep or hibernate mode instead of using a screen saver it saves electric when not in use.
  • Replace Old CRT monitors with LCD/LED ones.

Similar post on "how to save energy and go green"

Wednesday, February 3, 2016

How to Install Numpy python module on Windows [SOLVED]


Simple, tried and tested steps to install Numpy module


Pre-requisite, would be "You are already having Python installed on your system"
Next Download the Numpy module from https://pypi.python.org/pypi/numpy
 [I downloaded the Zipped one, so can you  ;) ]

Unzip the downloaded Numpy and go to
C:\Users\<USERNAME>\Downloads\numpy-1.10.4\numpy-1.10.4
using command prompt. This is where setup.py is available.

Now type commands,
python setup.py build

If building does not throw any errors , run
python setup.py install

In-case you see some error similar to error: Unable to find vcvarsall.bat
Which implies you dont have Microsoft Visual studio to build the module.

Either you can download one or there is another way of doing it.
Download, MinGW (32/64) from http://sourceforge.net/projects/mingw/files/

Select ‘download latest repository catalogues’.
Next you select a folder (i.e. C:\MinGW) and the programming support you require: C and C++  (I kept Fortran and ObjC as deselected).
You need "MinGW Developer Toolkit" installed.
If you select this option you’ll get MSYS as well.
H
Next thing you need to do is to configure your PATH environment variable.

Right-click on My Computer and Select Properties
Go to the tab ‘Advanced’ and select ‘Environment variables’
Select ‘Path’ from the ‘System Variables’ and click the ‘Edit button’
Add the following paths to your variables: ‘C:\MinGW\bin;'  (without quotes)

Now, Edit / Create new file  "distutils.cfg" at C:\Python26\Lib\distutils\distutils.cfg with following change

[build]
compiler=mingw32

Remember, in case you created new file distutils.cfg , the file type should be CFG not TXT
To avoid this, while saving select "Save As" option and then in the "Save as Type" drop down select
"All Files" . Then in the "Filename" field type distutils.cfg and then save.

Open new command prompt and again go to  C:\Users\<USERNAME>\Downloads\numpy-1.10.4\numpy-1.10.4
Run, 
python setup.py build

And if no issues seen,
Run,
python setup.py install



And its Done!!!