Phyton

Saturday, November 29, 2008

Operations Research EBooks

Introduction to Operations Research(Authors : FREDERICK S. HILLIER & GERALD J. LIEBERMAN)

DOWNLOAD

Operations Research: An Introduction(Author : HAMDY A. TAHA)

DOWNLOAD

Operations research calculations Handbook(Author:Dennis Blumenfeld)





Thursday, November 27, 2008

Disclaimer

This blog is not responsible for any kind of copyright violation. My blog only index and link to content provided by other server/people/search engines.

If you don’t want us to publish the links of your publishers, please let us know by sending an e-mail to “statastorm@gmail.com” Within 24 hours It will be omitted from our Web-Site. (Please use the original e-mail address of your company when sending the e-mail).

None of the ebook files found here have been uploaded by myself. They have been found on public download sites. It's not my intention to support illegal downloading. This blog serves to allow people to determine which book is worth purchasing through legitimate means. The books shown here should be removed from your computer within 24 hours after downloading. The books on this blog are intended for review purposes and should not be seen as a substitute for the original, legal product.

Wednesday, November 26, 2008

Probability

---------------------------------------------------------------------------
---------------------------------------------------------------------------
NOTE:
All the books are in DJVU format.

DJVU Software:



Probability Theory and Examples second edition(Author:Durrett)

Download

Theory and problems of probability(Authors: Lipschutz, Seymour)

Download

Multivariable Bayesian Statistics (Author:D. Rowe)

Download

Schaum's Outlines - Theory and Problems of Statistics 3rd ed(Authors: M. Spiegel, L. Stephens)

Download
---------------------------------------------------------------------------------------------
-----------------------------------------------------------------------------------------------


Introduction to Probability

Introduction to Probability(Authors : Charles M. Grinstead & J. Laurie Snell)


Download:
http://aleph0.clarku.edu/~djoyce/ma217/book-5-17-03.pdf


Introduction to Probability( Authors: Dimitri P. Bertsekas and John N. Tsitsiklis)

Tuesday, November 25, 2008

Basic e-mail safety tips

Change your password often and keep it in a safe place
Don’t share the password with anyone.
Don’t open any attachments from anyone unless they are run through an anti-virus program.
Log off when done.
Don’t reply to spam, harassing, or offensive e-mail or forward chain e-mail letters.
Use common sense and keep personal information personal.
Delete all e-mails, unread, from people you don’t know
Don’t be caught by the spammers’ favorite trick, “Remember me?”

How to display your own picture with User Account?

First of all, scan your picture and save it with .bmp, .gif and .jpg format.

Click Start button, go to Settings > Control Panel and click on User Accounts option.

Under User Accounts page, click on your account name and then click on "Change my picture" option

After that click on "Browse for more pictures" and go to the folder that contains the picture that you have chosen.

Select the picture and then click on OK button, and your picture will come into view in place of existing Picture area of User Account screen. It also can be visible on your logon screen and on the start menu.

Saturday, November 22, 2008

(Author : Jun Shao) Mathematical Statistics: Exercises and Solutions

Springer | ISBN / ASIN: 0387249702 | 1st edition (June 30, 2005) | PDF | 360 pages | 2.20 MB


(Authors:Yuri Suhov & Mark Kelbert): Probability and Statistics by Example


Cambridge University Press | ISBN: 0521612330 | November 7, 2005 | 372 pages | PDF | 1.7 MB

Photofunia Gives You Cool Photo Effects In One Click

Don't want to have fun with your photos? Photofunia is an online image editing tool that gives users a fun filled experience


WEBSITE LINK: www.photofunia.com

Lock a Folder Without Any Software

First, open Notepad, and paste the code below.

Change the password in the fields where is "type your password"

Go to, File/ Save As...

Save the file as loc.bat

Starting loc.bat will automatically create folder called Locker, which later you could use for protecting your files or folders inside of this folder.

When you will open loc.bat again, it will ask you for password and if you have typed the password correctly, it will unlock your folder.

code:
---------------------------------------------------------------------------------------
cls
@ECHO OFF
title Folder Locker
if EXIST "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" goto UNLOCK
if NOT EXIST Locker goto MDLOCKER
:CONFIRM
echo Are you sure u want to Lock the folder(Y/N)
set/p "cho=>"
if %cho%==Y goto LOCK
if %cho%==y goto LOCK
if %cho%==n goto END
if %cho%==N goto END
echo Invalid choice.
goto CONFIRM
:LOCK
ren Locker "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
attrib +h +s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
echo Folder locked
goto End
:UNLOCK
echo Enter password to Unlock folder
set/p "pass=>"
if NOT %pass%==type your password here goto FAIL
attrib -h -s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
ren "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" Locker
echo Folder Unlocked successfully
goto End
:FAIL
echo Invalid password
goto end
:MDLOCKER
md Locker
echo Locker created successfully
goto End
:End
---------------------------------------------------------------------------------------