Skip to main content

Posts

Adversity overtaken

Two poor students fought with their adversity to crack Civil Service and ranked 45 and 47. Ravikant Sing and Keshabendra Kumar both are Indian Railway employee. One is son of an ayurvedic doctor and another is son of a milkman has done their graduation from IGNOU . Wish them all the best.

Come out to help

Donations to Ramakrishna Mission, Belur Math,(Headquarters),for Permanent Fund All donations to Ramakrishna Mission, Belur Math, are exempt from Income Tax under Section 80G of the Income Tax Act, 1961 by Order No. DIT(E)/1240/8E/109/69-70 dated 31.1.2005 issued by the Director of Income Tax (Exemptions), Kolkata, and communicated through Memo No. DIT(E)8E/109/69-70/4712-14 dated 10.2.2005 by Income Tax Officer (Exemptions)-III, Kolkata, for the Director of Income Tax (Exemptions), Kolkata . Donations to Ramakrishna Mission, Belur Math, may be sent through cheques or demand drafts. Account payee cheques / demand drafts should be drawn in favour of Ramakrishna Mission, Belur Donations to Ramakrishna Mission, Belur Math, may be sent for any of the following purposes (a) Relief and rehabilitation (b) ...

How Rural life changing by IT in India

When we reach his home in Kandukur village in Andhra Pradesh, 21-year-old Nukathoti Kondaiah serves us bottled mineral water, freshly cut fruit and cold drinks in plastic cups. That may not seem such a big deal but earlier in the day Kondaiah had trudged a couple of hours in the sweltering heat to the nearest grocery store to buy these luxuries. Next month he will begin work with Wipro as a trainee in its software department, taking his mentally-challenged mother with him for treatment. We talk under the shade of a banyan tree surrounded by a crowd of villagers who treat Kondaiah like a celebrity. An eight-year-old fidgeting with the photographer's camera says he'd like to be Kondaiah when he grows up. The odds couldn't have been less in his favour when the teenager's father died young, followed as suddenly by the deaths of his siblings. "She went mad," he says of his mother's ill-health, "I'm her only hope." Life wasn't ki...

Unfortunate

Hello friends, My 2 cell phones has been theft from my Kolkata flat at night. Cell no. were 9432472083 [Cellone Anant] and 9883222432 [Smart]. I have already informed both of the customer care to immediately block there SIMs. So please do not try to contact me on these nos. Regards.

Great Visual IDE for PHP

CALIFORNIA, USA: CodeGear, provider of developer tools, has announced Delphi for PHP 2.0. Delphi for PHP is the only PHP Integrated Development Environment (IDE) for building interactive web applications using visual drag-and-drop design capabilities and a powerful PHP component framework. The new 2.0 version focuses on making PHP web development in several key areas: HTML templates with embedded dynamic PHP, enabling PHP developers to work visually in their Web 2.0 development and to collaborate easily with HTML designers Comprehensive and seamless database support for MySQL™, CodeGear InterBase®, Microsoft® SQL Server®, Oracle®, PostgreSQL, Informix®, Sybase®, SQL Anywhere® and IBM® DB2™, plus the ability to build rich data-driven web applications without requiring database connectivity coding An expanded and faster Visual Component Library (VCL) for PHP with support for popular PHP packages and libraries including Zend Framework Productivity and performance enhancements throughout i...

Stand alone EXE from PHP Project

I was finding a tools or else to make the PHP project, standalone executable for special project. I have found a very good tools amongst a few tool available. Bambalam PHP EXE Compiler/Embedder Created by Anders Hammar © 2006 Bambalam Bug reports / feedback email: Download Bamcompile 1.21 (win32) zip Download Bamcompile 1.21 Source zip Usage: bamcompile [-options] infile.php [outfile.exe] bamcompile [-options] project_directory mainfile.php [outfile.exe] bamcompile projectfile.bcp Options: -w Hide console window for windowed applications -c Compress output exe (using UPX) -d Do not encode PHP files -e:extension.dll Embed and use PHP extension -i:icon.ico Add icon to exe Revision history: 1.21 2006-08-28: Fixed an issue with apps using extensions crashing if php4ts.dll was in the system path 1.2 2006-08-24: Added an extension loader - extension dll's can now be embedded Added a project file feature Added support for exe icons UPX is now embedded, it's no longer needed in the sys...

Create Dynamic Image with PHP

Hi friend I have created a class to create the dynamic images from a string with many options from your calling page. You need to include the class file [need a ttf file to be kept in the same folder as class. Also need to change the ttf file name in class to use.] This image string are based on a true type fonts. Class file : /*** Creator : Dhiraj Patra */ class ClGenerateImage{ public $height; public $width; public $background_color; public $text_color; public $text; public $text_s; public $img; function __construct($height="100",$width="200",$background_color=array(255,255,255),$text_color=array(0,0,0),$text="Test",$text_s=35){ //Create the image resource $image = imagecreate($width, $height); //We are making three colors, white, black and gray $back = imagecolorallocate($image, $background_color[0], $background_color[1], $background_color[2]); $front = imagecoloralloca...