Be Ethical Hacker
This blog is written only for EDUCATIONAL PURPOSE whatever you do isn't my responsibility its yours I only give Information here. Do everything at your own risk :)
Friday, 3 July 2015
Tuesday, 2 June 2015
Software to Create (.exe) from Python Script
Software To Create Windows Executable (exe) from Python Script:
This a simple software created by me To Create .exe from from a .py file in the most simplest way The below Video will explain how to use the software. Just Download the py2exe.zip from below link
(Note: You must have Python installed along with py2exe library)
Video:
Monday, 1 June 2015
How to Create a Windows Executable (.exe) File of a Python Script
Hello everyone in this video Tutorial I will show you how to create windows executable of a Python Script using py2exe.
Video:
Video:
Sunday, 31 May 2015
How to Install py2exe for Python 3.4
How to Install py2exe in windows 7 :
In this tutorial we will see how to install py2exe in Python 3.4
To install py2exe for Python 3.4 in windows 7 all you need is a command prompt because all the required modules and librarys are included in Python 3.4, which means we just have to use some commands to install py2exe
Steps to Install py2exe:
1. Open command prompt
2. cd to Scripts directory of Python 3.4
cd C:\Python34\Scripts
3. When you are on the directory Scripts you only have to use one more command
pip install py2exe
The above command will install py2exe
Video :
Saturday, 3 January 2015
Sunday, 19 October 2014
PHP Basics #5 : PHP Data Types
PHP : Data Types
In this tutorial I will tell you about Data Types in PHP.
PHP : Data Types
There are mainly 7 types of data in PHP but we will cover only 5 types of data now and later on we will talk about the rest 2.
So the 5 data types which we are going to talk about now are the following..
- String
- Integers
- Float Numbers
- Boolean
- NULL
i. String
A string in php and all other programming or web developing languages are the alpha-numeric letters and sentences. In php we always have to write strings between single or double quotes.
<?php
echo "Hello I am a String";
echo "<br />";
echo 'Hello I am also a string between single quotes';
?>
echo "Hello I am a String";
echo "<br />";
echo 'Hello I am also a string between single quotes';
?>
The echo "<br />"; line in the code is an html tag for next line and this also shows us that we can also echo html tags if we want but for now dont use any other html tag except <br />.
If you output the above code in a browser the result will be this..
Hello I am a String
Hello I am also a string between single quotes
Hello I am also a string between single quotes
That was all about String you must know till now..
ii. Integers (Numbers)
Integers in php and every other computer language represents all numbers. Integers in php does not require quotes around it.
<?php
echo 1;
echo '<br />';
echo 10000;
echo '<br />';
echo 99;
?>
echo 1;
echo '<br />';
echo 10000;
echo '<br />';
echo 99;
?>
The output of the above codes in a browser will result..
1
1000
99
1000
99
iii. Float Numbers
Floats are the numbers like the decimal numbers and thats all I can say about it you will understand better in the example below..
<?php
echo 1.09;
echo '<br />';
echo 0.89;
echo '<br />';
echo 40.6;
?>
echo 1.09;
echo '<br />';
echo 0.89;
echo '<br />';
echo 40.6;
?>
If you open the above code in a browser the result will be the following..
1.09
0.89
40.6
0.89
40.6
iv. Boolean
Boolean is simply 'true' and 'false'. Boolean is mostly used in conditional coding and you will understand it when we start conditional coding in php. For now all you need to know is that boolean is either TRUE or FALSE.
<?php
//Thats how you declare them
$a = true;
$b = false;
?>
//Thats how you declare them
$a = true;
$b = false;
?>
v. NULL
The special NULL value represents that a variable has no value. NULL is the only possible value of data type NULL.
The NULL value identifies whether a variable is empty or not. Also useful to differentiate between the empty string and null values of databases.
Variables can be emptied by setting the value to NULL
<?php
$a = 'Hello World!';
$a = null;
echo $a;
?>
$a = 'Hello World!';
$a = null;
echo $a;
?>
The output of the above code will give you a blank page because $a was 'Hello World!', but after that you again declared $a to NULL so $a has no value
PHP Basics #4 : Variables
PHP Variables
A variable can have a short name (like x and y) or a more descriptive name (age, carname, total_volume).
Rules for PHP variables:
- A variable starts with the $ sign, followed by the name of the variable
- A variable name must start with a letter or the underscore character
- A variable name cannot start with a number
- A variable name can only contain alpha-numeric characters and underscores (A-z, 0-9, and _ )
- Variable names are case sensitive ($y and $Y are two different variables)
PHP Variables demonstration :
<?php
$a = "John";
$b = 'Terry';
$x = 1;
$y = 5;
$z = $x + $y ;
$float = 10.5;
echo $a;
echo '<br />';
echo $z;
echo '<br />';
echo $float;
?>
$a = "John";
$b = 'Terry';
$x = 1;
$y = 5;
$z = $x + $y ;
$float = 10.5;
echo $a;
echo '<br />';
echo $z;
echo '<br />';
echo $float;
?>
The output of the above will be:
John
6
10.5
6
10.5
Variables concept is quite easy to understand and If you have any conclusion in it please comment
PHP Basics #3 : How to get Started with PHP coding ?
How to get started with PHP Development ?
(Continue only if you Successfully Installed Apache, PHP and MySQL)
So now you know how to run a php file in browser and its time to get started in php development !!
Today we will talk about :
- How to write PHP codes
- Basic Syntax
- Echo Statement
1) How to write PHP codes ?
<?php
All codes here are PHP codes
?>
All codes here are PHP codes
?>
2) Basic Syntax of PHP
One more important thing in php to remember is that white spaces had no effect in php coding there is no indentation rules in php, which for me is quite good.
3) echo
The syntax of echo statement is
To print text in browser -> echo "Quotes if Text";
To print numbers in browser -> echo 1;
So create a new file named echo.php and inside the folder test and type the following inside the echo.php file..
<?php
echo "Hello World!!";
?>
If you open the file in browser the result will be..
Hello World!!
You can also do other things such as maths calculations..
<?php
echo 2+2;
?>
echo 2+2;
?>
Result :
4
This was some basics of php codes and in next tutorials we will learn about PHP Variables and all..Till then do some experiments with your codes and try some more examples .. If you get stuck anywhere please comment
Subscribe to:
Posts (Atom)