Nexus S is official, with Android 2.3 Gingerbread
Seems Google has ditched HTC and alliance with Samsung. For more details about: Android 2.3 Gingerbread Nexus S
Seems Google has ditched HTC and alliance with Samsung. For more details about: Android 2.3 Gingerbread Nexus S
Overview of Firebug 1.6 Firebug 1.6 supports Firefox 3.6 Console and Command Line Command line available on all panels New API for the console object: console.table() Console allows to filter its content Improved auto-completion now the best of all Logging of cut/copy/paste events Support for XPath console logging Descriptive background colors for console messages HTML… Read More »
A while ago I wrote some dokuwiki plugins: User Home Page Auto Include Index Table Math Modal Popup ACL Made Easy
I have a VPS (virtual private server) which is hosting quite a few services (postfix, proxy, apache and mysql etc), and it only had 256MB of RAM. Running WordPress especially the admin pages were nightmares, I guess the box ran out of RAM and constantly using SWAP, and you know the VPS IO usually pretty… Read More »
These are: Class A: 10.0.0.0 Class B: 172.16.0.0 – 172.31.0.0 Class C: 192.168.1.0 Each one of those have a subnet. Class A: 255.0.0.0 Class B: 255.255.0.0 Class C: 255.255.255.0 Click to access 501302.pdf
If you have used JQuery, you should have already used something like this Ever wonder how to implement this? Let’s start: Have parameters to pass? No problem, see this
http://stackoverflow.com/questions/42519/how-do-you-rotate-a-two-dimensional-array This is the best so far I have come up with PHP, can anyone refine this for me?? $b = array(); $a = array(array(1,2,3,4),array(5,6,7,8),array(9,0,1,2),array(3,4,5,6)); while(count($a)>0) { $b[count($a[0])-1][] = array_shift($a[0]); if (count($a[0])==0) { array_shift($a); } }
When I was writting a modal carousel album display, I was having a strange problem with JQuery scrollLeft in Chrome: I had a div with css set to overflow:hidden and using jquery’s scrollLeft function in order to scroll the thumbnails, everything works, however, if you close the modal (setting the div to display:none), the scrollLeft value change back… Read More »
Hello guys, In this blog I am going to show you step by step how to retrieve and reply tweets using a single twitter account. I was asked to write up a service to monitor tweets of a twitter account, then I went to the twitter API to read up how to get this done,… Read More »