|
Connexion
News Rss |
Blog » NG Coders
admin | 2008-08-13T00:55:56+02:00
| 3 reads
Back after a long time , have been quite busy the last few months. Also due to a screwup my old database got deleted.But i have copies of most of my stuff and will be posting it back slowly and steadily.If you missed anything while this blog was down , please let know ill put it back online.
admin | 2008-08-20T01:40:54+02:00
| 5 reads
Speed simulator is a simple throttling proxy which allows you to see how your site behaves under diffrent connection speeds. It was written by me to test AJAX/Flash loaders and see how much my time took to load.You can simulate various speeds like that of a modem or a ADSL.A pre delay function is also there to help simulate delays due to DNS , connection establishment etc.See the Demo Video to see how it works.Note: There is a file embedded within this post, please visit this post to download the file.InstallationSimply unzip from the archive and double click on it to run it.Usage Just select the Speed and the Port on which you want Speed Simulator to start on. Once this is done open your...
admin | 2008-08-14T20:11:08+02:00
| 18 reads
Recently I wanted to sell a small script for which I was getting some requests.I wanted the procedure to be as efficient as possible where the user was delivered the script though a secret link once the payment was made. After some thorough searching around the net , I found that though the Idea and procedure is so simple there exist No Free scriptsto do so ( Weired ). So in this tutorial we build a small script which can be used anywhere to sell digital goods online using Paypal IPN.They can be ebooks, shareware , software, images anything Bits and Bytes.The script has the following featuresComplete automation of your online orders.Automatically emails your customers and provides them wi...
admin | 2008-08-18T01:50:34+02:00
| 3 reads
I had been really busy lately and one of the reasons was Videoswiper , which was released last month after about 2 months of development.Videoswiper is a Mass embedding applications which allows Webmasters running video sites to embed Videos on their sites very easily and efficiently.Initial response has been good and with constantly new features being added I think it will do quite well.For more info just go and register yourself an account.I learned quite a few things while building , which i will share in some other post … so stay tuned.
admin | 2008-08-24T01:08:45+02:00
Since last year i have been working on lots of Web Application,During this time I have gone through many frameworks like Code Igniter , CakePHP , Symfony and RoR trying to find what will suit me best. RoR i learned and used a little but never got to using it in a release app , but i did learn a few of the cool stuff which RoR is famous for. CI i just found a little too simple but i still recommend it to beginners, Symfony was a configuration mess. So Cake PHP is what i was working on mostly , But when delivering Small applications to clients i found it a mess to deliver a 1 MB framework with a 30 kb of actual code. Actually coming from an embedded systems background i like my work to be ...
admin | 2008-08-24T19:32:29+02:00
| 5 reads
I have some sites which have been running for a long while, and due to not having time on my part to upgrade them they still run pretty old scripts with custom coding ( If it aint broke dont fix it ). Some time back i realized the rel=”nofollow” thing and how people posting links on those sites got Backlinks for free. After doing a little backlink checking i found that my sites were linking to competitor sites , which is totaly unacceptable.Also with so maybe free backlinks going out PR can be affected ( am not shore about that though ). So with a few lines of PHP you can kill all free back links people have been getting through ur side.So if you are stuck with the same situa...
admin | 2008-08-27T21:48:22+02:00
| 2 reads
RemitRates.com is a site to help people who wish to transfer or send money to India get the best exchange price and helps then decide which money transfer service will get them the most returns. Site compares services like Western union money transfer, XOOM , Paypal etc.It was built in my free time , just to track exchange rates so i get the best rate when i transfer money. The site is built on my new framework BaseApp, Jquery as the JS framework and BluePrint as the CSS framework.Though it was a small project its the first time i used BluePrint CSS framework properly, And it Rocks !!! . Total amount of custom css is less than a KB and yet it is a clean looking site with cross browser com...
admin | 2008-09-11T01:03:53+02:00
| 2 reads
PQuery is a set of helper classes for JQuery JavaScript library.This library allows you to easily integrate AJAX , Effects and other JQuery functionality into your PHP scripts.IT has a small foot print and is compatible with PHP4 and PHP5.Note: There is a file embedded within this post, please visit this post to download the file.Note: There is a file embedded within this post, please visit this post to download the file.PQuery Demos : PQuery Demos.Documentation : PQuery Documentation .License : MIT or GPL ( what ever you wish to use )
admin | 2008-09-18T01:37:19+02:00
| 5 reads
I was searching for a simple script which would allow me to download videos from youtube using php. I did find some implementation but only one of them worked and it used Pear. So here is a simple script to help you download videos from youtube. Allows you to download restricted videos too by logging into youtube.The script is a simple youtube class which uses CURL. Sample usage of the youtube class - include(’curl.php’); include(’youtube.php’); $tube = new youtube(); // Only required for restricted videos // $tube->username = “userid”; // $tube->password = “password”; $download_link = $tube->get($_POST['url']);Note: There is a file...
admin | 2008-09-28T15:22:55+02:00
| 10 reads
This is a pure php implementation of a php backup script. So it should work fine on windows and linux. But its not suited for takeing very large backups.I just wrote it cause most of the script i saw offered file or database backup and broke down to usage of exec and unix commands , for which i had to contact hosting.Some basic features -File and Directory backupMultiple database/table sql backupBackup emailNote: There is a file embedded within this post, please visit this post to download the file.The script is supposed to be called using automatically using CRON , and the backup folder in which backup it taken should be writable.All you have to do is run backup.php .Edit config.php bef... |