SlideNote is a simple and flexible jQuery plugin for creating sliding, informative notes. It works when a user scrolls down a specified amount (pixel) and appears automatically at that point. The plugin displays the contents of any URL and, optionally, it can display only the contents of an element inside that URL. You can select …
Open Source & Web Based IDE For JavaScript
Cloud9 IDE (Integrated Development Environment) is an web based open source application that aims to providing very powrful IDE for JavaScript coders. It is rooted by AJAX platform, HTML 5, node.js, etc. This application has a very fast text editor with built-in syntax highlighter for javascript, html and css. It also has the integrated debuggers …
Update Your Twitter Status programmatically Using Twitter Basic Authentication With PHP
It is very easy to programmatically update your twitter status using PHP. Here is the ready to use code that can be used to make auto-tweet; may be you can write the custom code that fetches random blog post from your blog and tweet it on your twitter. It is currently making use of twitter …
Easiest Way to Shorten Your Long URL Using bit.ly API Using PHP
bit.ly has become one of the largest URL shortner services out there. This will help you shortening the URL programatically using the bit.ly API. This is ready to use code. All you need is to have the valid bit.ly API which is available free on the bit.ly website. $url = urlencode($longurl); $apiuser = “your api …
Fetching the number of followers without using any Twitter API
It is very easy to fetch the number of twitter follower of any twitter username without using any kind of Twitter API. All you need to use the DOM(Document Object Model) function available in the programming languages such as PHP, ASP.NET, etc. Here is the sample PHP functions that fetches the number of follower of …
Sending email using gmail SMTP server using .NET
If you do not have an SMTP server of your own, you can still send SMTP authenticated emails from your .net application. Just sign up for a brand new gmail account or use your exisiting gmail account. SmtpClient obj = new SmtpClient(“smtp.gmail.com”,465); //465 is the TCP port for sending emails using gmail. 465 is generally …
Changing the IP address of the server using asp net
Changing the IP address of the computer automatically is very easy. Microsoft trickily stores the IP information in registry. Refer the below code that changes the IP address of the host server. This can be used in windows application or windows services to change the IP address of the local computer and can also be …
Disadvantages Of Asp.Net Full Trust Security Level
Why shouldn’t we allow any domain to run Asp.Net application under the Full Trust level? Below are the reasons: If the Asp.Net application is allowed to run under Full Trust level then it can: 1. Browse(create/edit and delete too) files in the Windows directory using the System.IO namespace. 2. Browse(create/edit and delete too) folders in …
Fetching domain whois information using asp.net
There are several domain whois checking websites available today. For example, who.is and domaintools.com are broadly used. It is very easy to develop such web application of your own. All you need to query the whois server for a domain in question. Here is the sample code, that fetches the whois information associated with the …
Dumping The MySQL database using PHP
If your web hosting provider does not keep the daily backups of your MySQL databases, then you need to think of taking the daily backups to avoid the risk of data loss. Backing up the database is very simple process if your do that using PhpMyAdmin or MYSQL administrator. However, this manual process sometimes may …


Recent Comments