Posts

Google Talk: Run Multiple Instances or Login as Multiple Users

If you have several google talk accounts like me :p , you may want to run multiple instances of google talk at once. Here’s how to do it. Many users, including myself, like to have several different personalities on IM–Work, play, etc. By default google talk with only allow you to run instance of the program at a time. Here’s how to get around that… Run google talk with the following switch: /nomutex If you installed google talk to the default location, you can easily create a shortcut to this setting. 1. Right-click on the desktop  2. Select New   3. Select Shortcut   4. For WindowsXP or Lower Paste this into the text box: "c:\program files\google\google talk\googletalk.exe" /nomutex   For Windows7 Paste this into the text box: "C:\Users\kaydeveloper\AppData\Roaming\Google\Google Talk\googletalk.exe" /nomutex 5. Click Next   6. Name it whatever: Google Talk Multiple, etc.  7. Click OK until you are done.

Getting Twitter Homeline using Prototype

Image
Welcome back m back with a new awesome tutorial about twitter..today in the morning one of my blogger and E-Friend asked me to create a script using which he can easily implement Twitter hometimeline in his one of website. So a hour ago i started working on it and it comes a strong and easy to implement tutorial for others too so we both decided to put it into my blog too..okay then without wasting your time i am going to show u the codes use these as it they are.. demo.php get_homeline.php $content=file_get_contents("http://search.twitter.com/search.json?q=from%3A".$_POST['twitteruser'].""); $new=json_decode($content); echo " "; foreach($new->results as $homelines) { echo " profile_image_url."'> ".$homelines->text." "; } echo " "; here we go but before this you must be having prototype.js with you any ways if you don't want to copy and paste these code you can also...

Editing XML using PHP for Project Manipulation

I had an idea about creating tutorial that will cover manipulating XML in PHP. The idea was to create some website that will use XML as a database.You can use it for password storage for your website admin and even your website configuration. In this tutorial we'll try to edit some data in XML. Our XML looks like this. Apple 10.25 15 We'll load item element and change it's content. Then we'll create new item element and append it to fruits after first item. So let's start. Loading Document And Elements First we have to create new DOMDocument class instance. We'll set XML version and encoding. Next we'll set formatOutput to true so we can have nice output. We'll also set preserveWhiteSpace to false because there is some bug in PHP that will not save nicely newly created elements. Now we just have to load our XML file. $xml = new DOMDocument('1.0', 'utf-8'); $xml->formatOutput = true; $xml->preserveWhiteSpace = fal...

Execute Simple MySql Queries in Joomla

Hi as a Joomla Developer i faced so many problems while I started working on Joomla Development and i was always in the need of developing those components and modules easily without much using Joomla Code... Now a days I am getting so much responses on my Email regarding Learning Joomla Development.. So today i have started writing this post for my friends and other E-Friends who has some problems while starting with joomla development.. see you must be known to programming in PHP and Mysql to use this post,, some times you get a project about little update in joomla project and you refuse because you don't know how to start working with it.. here's a quick tip... suppose you have a PHP code file that perform and manipulate the basic tasks about what you want to do. you can then use the include method of PHP in joomla and joomla will not dis-allow it ... eg. include("../components/com_kddemo/phpcodefile.php"); execute your any of the code in phpcodefile.ph...

Tech Blog For Developers: 100 Twitter Tools to Help You Achieve All Your Goals

Tech Blog For Developers: 100 Twitter Tools to Help You Achieve All Your Goals

100 Twitter Tools to Help You Achieve All Your Goals

Twitter has become an incredible tool not just for communication, but for improving your life. College students can use it to expand their social circle, promote their side business, keep their coursework organized, and more. Whether you want to achieve your Twitter goals, or just use it as a tool to achieve others, these tools will help you get there. Twitter Analysis If your goal is to be popular and influential on Twitter, be sure to check out these tools that will tell you how you’re doing. 1. Twitter Grader: Learn your Twitter grade, your local Twitter Elite, and find new people to follow through Twitter Grader. 2. Twitterholic: Check out the top Twitter users and find out your Twitter stats on Twitterholic. 3. TweetStats: TweetStats offers a graphical analysis of your Twitter stats. 4. Twitter Friends: Carefully measure your Twitter conversations using Twitter Friends. 5. Twinfluence: Twinfluence will measure your Twitter influence based on reach, velocity, and soc...

Most Desirable Collection Of powerful jQuery- part1

Image
jQuery is a fast and concise JavaScript Library that simplifies HTML document traversing, event handling, animating, and Ajax interactions for rapid web development. As Web developers we are always in search of new tutorials and resources, tips, tricks for our readers . Today we listed Most Desirable Collection Of powerful jQuery etc. We obviously cannot cover all the best from the web, but we have tried to cover as much as possible. I will appreciate if you can spread the word via Digg, Stumbleupon and other social media websites, Thank you. 1. NestedSortable : 2. jQuery Flick : 3. Jquery-Absolutize : 4. Greybox Redux : 5. jquery Hover Sub Tag Cloud : 6. Background Animation Plugin : 7. Justify elements using jQuery : 8. jQuery InputHintBox : 9. jQuery Form Input Plugin : 10. Jquery-Animated Hover : 11. Jquery - akModal alternative to thickbox : 12. Jquery-AIR : 13. jQuery Slider Gallery : 14. Farbtast...