Showing posts with label the. Show all posts
Showing posts with label the. Show all posts

Sunday, June 26, 2016

Creating and Extracting ZIP on the fly

If you want to create  or extract zip files on-the-fly you can use pclzip class. The class can be downloaded from phpclass.org or you can download here (including an example script 33kb!!). You can change the source or destination folder.



Cropping Image On The Fly

Here is php script for cropping image on the fly:


<?php

// set width, height, source file, file type, destination file

function cropImage($nw, $nh, $source, $stype, $dest) {

$size = getimagesize($source); // get size

$w = $size[0];

$h = $size[1];



switch($stype) { // image format

case gif:

$simg = imagecreatefromgif($source);

break;

case jpg:

$simg = imagecreatefromjpeg($source);

break;

case png:

$simg = imagecreatefrompng($source);

break;

}


$dimg = imagecreatetruecolor($nw, $nh); // create new image

$wm = $w/$nw;

$hm = $h/$nh;

$h_height = $nh/2;

$w_height = $nw/2;

if($w> $h) {

$adjusted_width = $w / $hm;

$half_width = $adjusted_width / 2;

$int_width = $half_width - $w_height;

imagecopyresampled($dimg,$simg,-$int_width,0,0,0,$adjusted_width,$nh,$w,$h);

} elseif(($w <$h) || ($w == $h)) {

$adjusted_height = $h / $wm;

$half_height = $adjusted_height / 2;

$int_height = $half_height - $h_height;

imagecopyresampled($dimg,$simg,0,-$int_height,0,0,$nw,$adjusted_height,$w,$h);

} else {

imagecopyresampled($dimg,$simg,0,0,0,0,$nw,$nh,$w,$h);

}

imagejpeg($dimg,$dest,100);

}

$image_ori = "image_ori.jpg";

$image_crop = "image_crop.jpg";

// run crop function

// width, height, image_ori, image format, image_crop

cropImage(225, 165, "$image_ori", jpg, "$image_crop");



print "<h2>Image before crop : <br> <img src=$image_ori> <br><br>";

print "Image after crop : <br> <img src=$image_crop>";

?>








Saturday, June 18, 2016

Using the static Statement to Remember the Value of a Variable Between Function Calls


If you declare a variable within a function in conjunction with the static statement, the variable remains local to the function, and the function "remembers" the value of the variable from execution to execution





<?php
function numberedHeading($txt) {
static $num_of_calls = 0;
$num_of_calls++;
echo "<h1>".$num_of_calls." ". $txt."</h1>"; }
numberedHeading("Mobile Phones");
echo "<p>We build a fine range of mobile phones.</p>";
numberedHeading("Camera");
echo "<p>Also Digital Cameras..</p>";
?>

The numberedHeading() function has become entirely self-contained. When we declare the $num_of_calls variable on line 3, we assign an initial value to it. This assignment is made when the function is first called on line 7. This initial assignment is ignored when the function is called a second time on line 9. Instead, the code remembers the previous value of $num_of_calls. We can now paste the numberedHeading() function into other scripts without worrying about global variables.

Thursday, June 9, 2016

Saving State Between Function Calls with the static Statement

Local variables within functions have a short but happy life they come into being when the function is called and die when execution is finished, as they should. Occasionally, however, you may want to give a function a rudimentary memory.
Lets assume that we want a function to keep track of the number of times it has been called so that numbered headings can be created by a script. We could, of course, use the global statement to do this, as shown in Listing below:
<?php
$num_of_calls = 0;
function numberedHeading($txt) {
global $num_of_calls;
$num_of_calls++;
echo "<h1>".$num_of_calls." ".$txt."</h1>";
}
numberedHeading("Mobile Phones");
echo "<p>We build a fine range of mobile phones.</p>";
numberedHeading("Camera");
echo "<p>Also Digital Cameras.</p>";
?>


Wednesday, June 8, 2016

Thumbnail and Watermark On The Fly

Sometimes we may want to create thumbnails and/or watermark on-the-fly for images on our web sites instead of creating offline by using some tools or image editors. We want to generate it automatically from our php scripts. Thus, we can use thumbnail class made by Emilio Rodriguez  and we can download it from phpclass.org or from here (including an example file 7kb).

/**
*This is a class that can process an image on the fly by either generate a thumbnail, apply an watermark to the image, or resize it.
*
* The processed image can either be displayed in a page, saved to a file, or returned to a variable.
* It requires the PHP with support for GD library extension in either version 1 or 2. If the GD library version 2 is available it the class can manipulate the images in true color, thus providing better quality of the results of resized images.
* Features description:
* - Thumbnail: normal thumbnail generation
* - Watermark: Text or image in PNG format. Suport multiples positions.
* - Auto-fitting: adjust the dimensions so that the resized image aspect is not distorted
* - Scaling: enlarge and shrink the image
* - Format: both JPEG and PNG are supported, but the watermark image can only be in PNG format as it needs to be transparent
* - Autodetect the GD library version supported by PHP
* - Calculate quality factor for a specific file size in JPEG format.
* - Suport bicubic resample algorithm
* - Tested: PHP 4 valid
*
* @package Thumbnail and Watermark Class
* @author Emilio Rodriguez
* @version 1.48 <2005/07/18>
* @copyright GNU General Public License (GPL)
**/



Sunday, May 22, 2016

FPDF PHP Script To Create PDF On The Fly

FPDF is a PHP class which allows to generate PDF files with pure PHP, that is to say without using the PDFlib library. F from FPDF stands for Free: you may use it for any kind of usage and modify it to suit your needs.

FPDF has other advantages: high level functions. Here is a list of its main features:

  •     Choice of measure unit, page format and margins
  •     Page header and footer management
  •     Automatic page break
  •     Automatic line break and text justification
  •     Image support (JPEG, PNG and GIF)
  •     Colors
  •     Links
  •     TrueType, Type1 and encoding support
  •     Page compression
FPDF PHP Script requires no extension (except zlib to activate compression and GD for GIF support). It works with PHP 4 and PHP 5 (the latest version requires at least PHP 4.3.10).

 An Example...

Lets start with the classic example:

<?php
require(fpdf.php);

$pdf = new FPDF();
$pdf->AddPage();
$pdf->SetFont(Arial,B,16);
$pdf->Cell(40,10,Hello World!);
$pdf->Output();
?>


After including the library file, we create an FPDF object. The FPDF() constructor is used here with the default values: pages are in A4 portrait and the unit of measure is millimeter. It could have been specified explicitly with:

$pdf = new FPDF(P,mm,A4);

Its possible to use landscape (L), other page sizes (such as Letter and Legal) and units (pt, cm, in).

Theres no page at the moment, so we have to add one with AddPage(). The origin is at the upper-left corner and the current position is by default set at 1 cm from the borders; the margins can be changed with SetMargins().

Before we can print text, its mandatory to select a font with SetFont(), otherwise the document would be invalid. We choose Arial bold 16:


$pdf->SetFont(Arial,B,16);

We could have specified italics with I, underlined with U or a regular font with an empty string (or any combination). Note that the font size is given in points, not millimeters (or another user unit); its the only exception. The other standard fonts are Times, Courier, Symbol and ZapfDingbats.

We can now print a cell with Cell(). A cell is a rectangular area, possibly framed, which contains a line of text. It is output at the current position. We specify its dimensions, its text (centered or aligned), if borders should be drawn, and where the current position moves after it (to the right, below or to the beginning of the next line). To add a frame, we would do this:


$pdf->Cell(40,10,Hello World !,1);

 To add a new cell next to it with centered text and go to the next line, we would do:


$pdf->Cell(60,10,Powered by FPDF.,0,1,C);

Remark: the line break can also be done with Ln(). This method additionnaly allows to specify the height of the break.

Finally, the document is closed and sent to the browser with Output(). We could have saved it to a file by passing the desired file name.

Caution: in case when the PDF is sent to the browser, nothing else must be output by the script, neither before nor after (no HTML, not even a space or a carriage return). If you send something before, you will get the error message: "Some data has already been output, cant send PDF file". If you send something after, the document might not display.


Download PHP Script (FPDF) To Create PDF 

 If you like this script, then consider subscribing to our blog below so that we can send you all updates from our blog directly in your email.

Thanks for taking interest in our PHP blog.

Enjoy!


Friday, May 20, 2016

Accessing Variables with the global Statement

From within one function, you cannot (by default) access a variable defined in another function or elsewhere in the script. Within a function, if you attempt to use a variable with the same name, you will only set or access a local variable. Lets put this to the test :
<?php
$life = 42;
function meaningOfLife() {
echo "The meaning of life is ".$life;
}
meaningOfLife();
?>
Put these lines into a text file called scopetest2.php and place this file in your web server document root. When you access this script through your web browser, it should look like:




As you might expect, the meaningOfLife() function does not have access to the $life variable in line 2; $life is empty when the function attempts to print it. On the whole, this is a good thing because it saves us from potential clashes between identically named variables, and a function can always demand an argument if it needs information about the outside world. Occasionally, you may want to access an important variable from within a function without passing it in as an argument. This is where the global statement comes into play. Use global to restore order to the universe.
<?php
$life=42;
function meaningOfLife() {
global $life;
echo "The meaning of life is ".$life;
}
meaningOfLife();
?>
Put these lines into a text file called scopetest3.php and place this file in your web server document root. When you access this script through your web browser, it should look like:




By placing the global statement in front of the $life variable when we declare it in the meaningOfLife() function (line 4), it now refers to the $life variable declared outside the function (line 2).
You will need to use the global statement within every function that needs to access a particular named global variable. Be careful, though; if you manipulate the contents of the variable within the function, the value of the variable will be changed for the script as a whole.
You can declare more than one variable at a time with the global statement by simply separating each of the variables you want to access with commas:
global $var1, $var2, $var3;


Watch Out!
Usually, an argument is a copy of whatever value is passed by the calling code; changing it in a function has no effect beyond the function block. Changing a global variable within a function, on the other hand, changes the original and not a copy. Use the global statement carefully.


Tuesday, May 17, 2016

PHP Image Magician One Of The Best Image Manipulation PHP Script And Its FREE!

PHP Image Magician is an open source project that uses PHP GD to perform image manipulation in an easy, succinct way.
Resizing, cropping, watermarking, adding text - has it all!

Features Of PHP Image Magician script

  1. Easy resize: Resize to landscape, portrait, or auto; then crop in one fell swoop!
  2. Watermark: Add watermarks to your precious photos. Photo theft is serious. Preserves transparency.
  3. Shadows & Reflections: Add gloss and/or depth to you image. Apple would be proud.
  4. Transparency support: Supports and preserves transparency where possible.
  5. Full crop capabilites: Choose the region to crop with a shortcode (t=top, tl=top left, etc) and crop away!
  6. Text: Caption that image. Then caption it again.
  7. Borders, Rounded corners, Rotation: Add borders. Not a 1px black border, a realish border. Rotate and sand off em corners.
  8. Image type conversion: Convert from one image format to another, including BMP.
  9. BMP support: Read and write BMP support is offered for you legacy, Window loven bumpkins!
  10. EXIF metadata: Reads EXIF metadata from your digital photos.
  11. Effects & Filters: Grey scale, black & white, sepia, negative and vintage.
  12. PSD read support: Weve added a PSD reader library for PSD support. This file is not maintained by us.

Download PHP Image Magician PHP Script

If you ask me personally, this is the best PHP manipulation script.It is so powerful and does it all.So it is a must download for people dealing with Image Editing.

Besides, if you want us to deliver similar interesting PHP Scripts, as the one above, directly in your Inbox, then Subscribe below and dont forget to activate your Subscription.

Enjoy!

Monday, May 9, 2016

The continue statement

The continue statement ends the execution of th current iteration but doesnt end the loop as a whole. Instead, the next iteration begins immediately. Using the previous example as in the break statement, replacing the break statement with the continue statement, we can get rid of a divide-by-zero error without ending the loop completely. See the example below:

<?php
$i = -4;
for ($i ; $i <= 10; $i++ ) {
if ( $i == 0 )
continue;
$temp = 1000/$i;
print "1000 divided by $i is... $temp<br>";
}
?>

save it as continue.php and open it through your browser. The result should be:

1000 divided by -4 is... -250
1000 divided by -3 is... -333.33333333333
1000 divided by -2 is... -500
1000 divided by -1 is... -1000
1000 divided by 1 is... 1000
1000 divided by 2 is... 500
1000 divided by 3 is... 333.33333333333
1000 divided by 4 is... 250
1000 divided by 5 is... 200
1000 divided by 6 is... 166.66666666667
1000 divided by 7 is... 142.85714285714
1000 divided by 8 is... 125
1000 divided by 9 is... 111.11111111111
1000 divided by 10 is... 100

As the result says, we know that the iteration stop temporarily if $i equals to zero and then continue the loop until finish

Friday, April 29, 2016

Anomalies in the Aided HSS Post Creation

Update: Aided HSS-Date of appointment in additional batches 2011-12. Excemption Order Government Order G.O(Ms) No.223/2015/G.Edn dtd 24.08.2015 order published.

As per Government Order G.O(Ms) No.211/13/Gen. Edn dated 15.07.2013, teaching posts and lab assistant posts were created and teaching posts were upgraded for academic years 2011-2012 & 2012-2013 in 345 Aided Higher Secondary Schools of the State wherein additional higher secondary batches were sanctioned in the academic year 2011-2012.


Anomalies in the post creation order of Aided - Additional batches for 2011-2012 & 2012-2013 academic years now rectified.

Government have examined the matter in detail with reference to relevant rules and orders and are pleased to create Teaching posts and abolish excess posts in 74 Aided Higher Secondary Schools. The details of the Aided Higher Secondary Schools wherein posts created/upgraded/abolished are given as annexure to the Government Order G.O(Ms) No.121/2014/G.Edn dtd 03.07.2014. Click the below link for GO and Annexure.
Aided HSS-Appointment date excemption Govt Order     
Additional batches_2011-2012- Aided HSS Appointment-Date exemption G.O(Ms) No.223/2015/G.Edn dtd 24.08.2015
Additional Batch Anomaly-(2011 to 2013) Modified Govt Order     
Additional batches_2011-2012- Anomalies in the post creation order_rectified- G.O(Ms) No.202 / 2015/ G.Edn dtd 28.07.2015
Related Govt Order    
Additional batches sanctioned in the academic year 2011-12. Anomalies in the post creation order. G.O(Ms) No.121/2014/G.Edn dtd 03.07.2014 and Annexure
Aided HSS Post Creation Order for the years 2011-12 and 2012-13.Govt Order & Annexure as per GO(MS) No. 211/2013/GEdn dtd: 15.07.2013

Tuesday, April 26, 2016

Anomalies in the Aided HSS Post Creation 2011 to 2013

As per Government Order G.O(Ms) No.211/13/Gen. Edn dated 15.07.2013, teaching posts and lab assistant posts were created and teaching posts were upgraded for academic years 2011-2012 & 2012-2013 in 368 Aided Higher Secondary Schools of the State wherein additional higher secondary batches were sanctioned in the academic year 2011-2012.
As per the government Order G.O(Ms) No.121/2014/G.Edn dtd 03.07.2014 , government created and abolished teaching post in 74 Aided HSS in the state as part of anomaly rectification. Government have examined the matter in detail with reference to relevant rules and orders and are pleased to create Teaching posts and abolish excess posts in 196 Aided schools with effect from 15.07.2013.
The details of the Aided Higher Secondary Schools wherein posts created/upgraded/abolished are given as annexure to the Government Order G.O(Ms) No.202/2015/G.Edn dtd 28.07.2015. Click the below link for GO and Annexure.

Additional Batch Anomaly-(2011 to 2013) Modified Govt Order     
Hot: Aided HSS - Additional batches_2011-12 and 2012-13- Anomalies in the post creation order_rectified- G.O(Ms) No.202 / 2015/ G.Edn dtd 28.07.2015
Related Govt Order    
Additional batches sanctioned in the academic year 2011-12. Anomalies in the post creation order. G.O(Ms) No.121/2014/G.Edn dtd 03.07.2014 and Annexure
Aided HSS Post Creation Order for the years 2011-12 and 2012-13.Govt Order & Annexure as per GO(MS) No. 211/2013/GEdn dtd: 15.07.2013
Appointment of Teachers in Aided Higher Secondary Schools-Guidelines

Thursday, March 31, 2016

10 Special Tips For BCS Exam Get Ready for the Competition

Special Tips For BCS ExamBCS examination is one of the most perfect ways of getting a job in Public service commissions. Most of the Bangladeshi students allow themselves with a job of PSC. But the preparation is of the huge amount and takes a lot of time. As the number of seats is less than the number of candidates, the examination is very competitive and becomes a war field for people. Here are 10 special tips provided for BCS examination.

1. Aim to be a Cadre: Firstly a candidate must be determined to become a cadre. In general and technical examination, exams are almost the same criteria. So, the term should be used under a process.

2. Routine for BCS: A special tips on BCS is to make a unique routine. A person with proper time management can achieve even the impossible and difficult goal. There are so many competitors that a routine and time management can create the difference.

3. Books on General Knowledge: It is another special tips on BCS to collect the current news about world and Bangladesh regularly. Daily newspaper can be a great media of getting news. So keep up with current world and Bangladesh affairs.

4. Practicing Mathematics: Sometimes BCS examination seems to be tough for Mathematics. A student can collect reading materials on this particular subject and get himself aware of it. Again, there are much more chance for studying in secondary level. Because almost all the question of Mathematics is related to secondary level.

5. Writing English: The written test of BCS examination contains a whole sum of 900 marks. Here is a question about writing English with any topic. Practice can enable a person about this skill. A candidate should write and learn English for his day to day life.  It will increase the power of free hand writing.

6. Being Confident: Sometimes lack of confidence cause problems. A special tips on BCS is to consult with a successful cadre in order to get inspiration. He can show the pathway to improve the personality and create confidence in the person.

7. Learning Psychology: There are 20 marks of analytical question which are related tomake-up situation. Books can be bought in order to improve the psychological situation of a person.

8. Viva-voce Preparation: Again, there is a tips for facing the interview board. The person who sits behind the interview table are much friendlier. If the candidate can be easy with them, their selection will be more comfortable. So the preparation of viva-voce is very important.

9. Subject Knowledge: In the total result of BCS, there is a common factor. People who have more subject knowledge, gets more opportunity to become a cadre. While studying at academic level, the preparation should be started. This will help you to take far into BCS examination.

Special Tips For BCS Exam


10. Calm and Quiet: A calm and quiet mind can change any situation. So remove the stress about getting chance as a cadre. And try to give the best examination of life. Because it is the chance to show talent. This is also a very special tips on BCS.

Above tips are applicable when the applicant thinks about and dreams about becoming a BCS cadre. So, work hard and best of luck.

Saturday, March 26, 2016

MBA–Master of Business Administration–Understanding the MBA Degree

MBA
MBA or the Master of Business Administration is probably the most craved degree in the current world now but before you think of joining it, you have to learn what it is and even if you are not eager to get one, knowing one will always be beneficial.

A Short Intro of MBA: Knowing the MBA degree or understanding it will help you in many a ways such as your increment of business world and faculty, justifying if it is worth for you and whether you should ever go for it.

An MBA is a Master of Business Administration degree which provides an advanced education of and in the initial business of rehearses, of its various branches which are the accounting, the banking, including the finance system, the marketing and the management to do it.

And this is how, your post graduate study on the business faculty will not only allow you to enhance your knowledge on the current global trade state and further study but the MBA study therefore will also ensure you with a well provided job or earning opportunity.

MBA How It Emerged and Its Root: Now there might not be a university or college functioning with post graduate studies and not offering an MBA degree but this profound study has its root Back in the United States of America where it was born and nourished and then spread in the world. It was probably around exactly in the 1900th when it first saw the light and shown as well.

At first it was known as the degree of Master of Commercial Science that gradually with the evolution of the business world became one of the most and now perhaps the vital most degree Master of Business Administration.

MBA in Today’s World: MBA today as we have seen has reached its highest level possible. With its running courses it has been ruling the world with the dire economic knowledge advancement. It branches today are given beneath:

MBA Meaning

Branches of MBA Today: Coming to the branches or the studies that MBA degree provides you with are many and the most important one for the business world. Let us just name some of them which are mostly taken to study on:
  • International Business/ Global Business
  • Economics
  • Marketing
  • Business Management
  • Accounting
  • Operations Management
  • Global Management
  • Human Resources Management
  • Finance
  • Information Systems
  • E-Business/E-Commerce
  • Entrepreneurship
  • Risk Management
  • Technology Management 
Now when you see these names of these faculties/ subject you know its values without describing for beyond any doubt the business world is running today’s life and building tomorrow’s. This is the current state and the importance of MBA today, that’ll make you think twice if you should really not take this degree.

Wednesday, March 23, 2016

Bangla Anubad Book Download The Sands Of Time By Sidney Sheldon

Download Bangla translation of the popular English best seller book named The Sands Of Time written by Sidney Sheldon. In this Bangla Anubad book titled The Sands Of Time by Sidney Sheldon, you will find out a story of four women and their men.

Sidney Sheldon is a so popular American author who was born on February 11, 1917 and died on January 30, 2007.  For fiction writing, He is the number seventh fiction writer according to best selling. He has written many fictions and his many books has been gotten international best seller title.

However, If you have already tested the taste of Sidney Sheldon books, You may know well about his writings and books well. But, if you have not yet, maybe this is the opportunity to test it right now just by download Bangla Anubad book i.e. Bengali translation of The Sands Of Time by Sidney Sheldon. For both, who have already tested and who have not....Just download this Bangla Anubad book of Sidney Sheldon and start reading to enjoy. And it is a best seller book of this author. So, the test will be really cool! Right?


Book Name: The Sands Of Time
Writer: Sidney Sheldon
Book Type: Bangla Translation

To get Bangla Translation of The Sands Of Time by the international best seller author Sidney Sheldon, You are required to click here.

Friday, March 4, 2016

MBA–Master of Business Administration–Understanding the MBA Degree

MBA
MBA or the Master of Business Administration is probably the most craved degree in the current world now but before you think of joining it, you have to learn what it is and even if you are not eager to get one, knowing one will always be beneficial.

A Short Intro of MBA: Knowing the MBA degree or understanding it will help you in many a ways such as your increment of business world and faculty, justifying if it is worth for you and whether you should ever go for it.

An MBA is a Master of Business Administration degree which provides an advanced education of and in the initial business of rehearses, of its various branches which are the accounting, the banking, including the finance system, the marketing and the management to do it.

And this is how, your post graduate study on the business faculty will not only allow you to enhance your knowledge on the current global trade state and further study but the MBA study therefore will also ensure you with a well provided job or earning opportunity.

MBA How It Emerged and Its Root: Now there might not be a university or college functioning with post graduate studies and not offering an MBA degree but this profound study has its root Back in the United States of America where it was born and nourished and then spread in the world. It was probably around exactly in the 1900th when it first saw the light and shown as well.

At first it was known as the degree of Master of Commercial Science that gradually with the evolution of the business world became one of the most and now perhaps the vital most degree Master of Business Administration.

MBA in Today’s World: MBA today as we have seen has reached its highest level possible. With its running courses it has been ruling the world with the dire economic knowledge advancement. It branches today are given beneath:

MBA Meaning

Branches of MBA Today: Coming to the branches or the studies that MBA degree provides you with are many and the most important one for the business world. Let us just name some of them which are mostly taken to study on:
  • International Business/ Global Business
  • Economics
  • Marketing
  • Business Management
  • Accounting
  • Operations Management
  • Global Management
  • Human Resources Management
  • Finance
  • Information Systems
  • E-Business/E-Commerce
  • Entrepreneurship
  • Risk Management
  • Technology Management 
Now when you see these names of these faculties/ subject you know its values without describing for beyond any doubt the business world is running today’s life and building tomorrow’s. This is the current state and the importance of MBA today, that’ll make you think twice if you should really not take this degree.

Thursday, March 3, 2016

Download Bisser Sresto 100 Monishir Jiboni The Hundred A Ranking Of The Most Influential Persons In History

We know a phrase from our early days of learning in school which is "time and tide wait for none". Time goes and our activities of life takes by the time. It is the time which has eaten so many lives, so many activities, sorrow & happiness, papers & pens. But only the noble activities of human being remain in the history of the time, in other word, those have remained in the history of human being.

The book named The Hundred: A Ranking Of The Most Influential Persons In History is such a book which has contained the most famous, noble, attractive & controversial persons history over the time.

Here, you will get the Bangla translation of the very popular book titled The Hundred: A Ranking Of The Most Influential Persons In History. By reading this book, you can be able to know the most influential 100 persons activities in the world and why they are as the most influential persons over the time.

So download the Bangla translated ebook named The Hundred: A Ranking Of The Most Influential Persons In History and know about the most influential persons over the time.

Book Name: Bisser Sresto 100 Monishir Jiboni or The Hundred: A Ranking Of The Most Influential Persons In History
Writer: Michal H. Hurt
Book Type: Biographical / Translation

To get the Bangla Translated book named  
The Hundred: A Ranking Of The Most Influential Persons In History 
By 
Michal H. Hurt, you are required to click here

Monday, February 29, 2016

Download Novel Harry Potter and the Half Blood Prince Free

Download Free pdf novel ebook Harry Potter and the Half-Blood Prince by J. K. Rowling

Download-Novel-Harry-Potter-and-the-Half-Blood-Prince-free-ebook
Download Novel Harry Potter and the Half-Blood Prince Free
The war against Voldemort is not going well; even the Muggles have been affected. Dumbledore is absent from Hogwarts for long stretches of time, and the Order of the Phoenix has already suffered losses.

And yet . . . as with all wars, life goes on. Sixth-year students learn to Apparate. Teenagers flirt and fight and fall in love. Harry receives some extraordinary help in Potions from the mysterious Half-Blood Prince. And with Dumbledores guidance, he seeks out the full, complex story of the boy who became Lord Voldemort -- and thus finds what may be his only vulnerability.


Download Free pdf novel ebook Harry Potter and the Half-Blood Prince by J. K. Rowling

 




Download This Book for Free





Please Take Some Time To Share this Ebook or Like Our FB Page for more Updates
 
Report Any Broken Download Links in Comments and We will fix it for You.


Download All 6 Books of popular Harry Potter Series by J. K. Rowling below:

Novel Harry Potter and the Philosophers Stone

Harry Potter And The Chamber Of Secrets

Harry Potter and the Prisoner of Azkaban

Harry Potter And The Goblet Of Fire

Harry Potter And The Order Of The Phoenix

Harry Potter and the Half-Blood Prince

Harry Potter and the Deathly Hallows

 

Thursday, February 25, 2016

Download MetroBTK The Metro UI Blogger Templates


link

Thursday, February 18, 2016

Download Introduction to the Design and Analysis of Algorithms

Download Introduction to the Design and Analysis of Algorithms
Download Introduction to the Design and Analysis of Algorithms

Introduction to the Design and Analysis of Algorithms Download Free PDF

  • Paperback: 592 pages
  • Publisher: Pearson; 3 edition (October 9, 2011)
  • Language: English
  • ISBN-10: 0132316811
  • ISBN-13: 978-0132316811

Based on a new classification of algorithm design techniques and a clear delineation of analysis methods, Introduction to the Design and Analysis of Algorithms presents the subject in a coherent and innovative manner. Written in a student-friendly style, the book emphasizes the understanding of ideas over excessively formal treatment while thoroughly covering the material required in an introductory algorithms course. Popular puzzles are used to motivate students interest and strengthen their skills in algorithmic problem solving. Other learning-enhancement features include chapter summaries, hints to the exercises, and a detailed solution manual.

Introduction to the Design and Analysis of Algorithms Download Free PDF below:





Download This Book for Free



Please Take Some Time To Share this eBook or Like Our FB Page for more Updates

Report Any Broken Download Links in Comments and We will fix it for You. 



Tuesday, February 16, 2016

Download Free The Principles of Object Oriented JavaScript

 Download Free pdf ebook The Principles of Object-Oriented JavaScript by Nicholas C. Zakas

Download-The-Principles-of-Object-Oriented-JavaScript-free-ebook-pdf
Download  The Principles of Object-Oriented JavaScript by Nicholas C. Zakas for free in pdf

 

In The Principles of Object-Oriented JavaScript, Nicholas C. Zakas thoroughly explores JavaScripts object-oriented nature, revealing the languages unique implementation of inheritance and other key characteristics. Youll learn:
  • The difference between primitive and reference values
  • What makes JavaScript functions so unique
  • The various ways to create objects
  • How to define your own constructors
  • How to work with and understand prototypes
  • Inheritance patterns for types and objects

The Principles of Object-Oriented JavaScript will leave even experienced developers with a deeper understanding of JavaScript. Unlock the secrets behind how objects work in JavaScript so you can write clearer, more flexible, and more efficient code.

  1. Chapter 1 Primitive and Reference Types

    1. What Are Types?

    2. Primitive Types

    3. Reference Types

    4. Instantiating Built-in Types

    5. Property Access

    6. Identifying Reference Types

    7. Identifying Arrays

    8. Primitive Wrapper Types

    9. Summary

  2. Chapter 2 Functions

    1. Declarations vs. Expressions

    2. Functions as Values

    3. Parameters

    4. Overloading

    5. Object Methods

    6. Summary

  3. Chapter 3 Understanding Objects

    1. Defining Properties

    2. Detecting Properties

    3. Removing Properties

    4. Enumeration

    5. Types of Properties

    6. Property Attributes

    7. Preventing Object Modification

    8. Summary

  4. Chapter 4 Constructors and Prototypes

    1. Constructors

    2. Prototypes

    3. Summary

  5. Chapter 5 Inheritance

    1. Prototype Chaining and Object.prototype

    2. Object Inheritance

    3. Constructor Inheritance

    4. Constructor Stealing

    5. Accessing Supertype Methods

    6. Summary

  6. Chapter 6 Object Patterns

    1. Private and Privileged Members

    2. Mixins

    3. Scope-Safe Constructors

    4. Summary



Download Free pdf ebook The Principles of Object-Oriented JavaScript by Nicholas C. Zakas below:





Download This Book for Free


Please Take Some Time To Share this Ebook or Like Our FB Page for more Updates

Report Any Broken Download Links in Comments and We will fix it for You.