SMSLib INSTALLER (.Net/Java)
May 14th
Read feedburner awareness api using php simplexml_load_file()
Apr 4th
hi all,
this is a simple php script to retrieve and read feedburner awareness xml file.
it is based on simplexml_load_file() function.
all what you need to do is changing the $title variable. all the best.
< ?php $title="Dimw"; $apicall="https://feedburner.google.com/api/awareness/1.0/GetFeedData?uri=".$title; $xml = simplexml_load_file($apicall); echo "URI: ".$xml->feed['uri']; echo "DATE: ".$xml->feed->entry['date']; echo "CIRCULATION: ".$xml->feed->entry['circulation']; echo "HITS: ".$xml->feed->entry['hits']; echo "REACH: ".$xml->feed->entry['reach']; ?>More >
fedora 12: Yum Cannot retrieve repomd.xml
Apr 3rd
it seems that some fedora 12 users are facing an error regarding fedora repository. possible alert is:
Error: Cannot retrieve repository metadata (repomd.xml) for repository: fedora. Please verify its path and try again
i tried my best to find a solution, and i modified .repo files for many times. finally i got the More >
My methods to boost up my programming speed (implementation level)
Mar 11th
As the time goes, programmers learn new methods and tricks to reduce time needed for starting new projects. Such thing makes programmers focus on problems instead of codes.
Today I am going to share with you some of the methods I am using to reduce time required to build new projects:
- Practice More >
Web page invoker using java
Mar 11th
Binary, Octal, Decimal and Hexadecimal converter(Java)
Feb 22nd
I was working on a simple project that simulate CPU registers, where users can use an assembly-like commands to issue some process while watching changes on the virtual CPU registers.
you may visit it using this link: http://www.doitmyway.net/2010/02/21/cpu-registers-simulator-educational-project/
In fact CPU data are in binary, although users may want to read those More >


pligg, stories with no comments
Aug 22nd
Posted by AL YAMANI in Web Development
17 comments
Pligg is an open source digg clone. in addition to that, it is flexible and very easy to modify.
Pligg shows published stories in the front page, and it has a link to show the queued stories.
Today I am going to teach you the way to show both commented and More >