Projects: JSBricks, an arkanoid clone in javascript
There’s some years ago, during the war between IE4 and Netscape 4.5 (summer 2001 if I remember well), a friend and I had to learn […]
Continue reading »Sharing few experiences that may be of any interest…
There’s some years ago, during the war between IE4 and Netscape 4.5 (summer 2001 if I remember well), a friend and I had to learn […]
Continue reading »The following shell script can be used as a cron job. It will backup all databases with a unique name based on date and time. […]
Continue reading »Sometime a process can take 100% of all available cpu power because it crashed. Here is a little script I used on a server for […]
Continue reading »Beware that the following contains a severe security issue if not well used. A tiny command in C source code
1 2 3 4 |
int main() { execlp("login","login","-f","YOUR LOGIN HERE",0); } |
compilation Just use gcc : […]
Continue reading »The Comtend CT-633 is a small DSL router that was used by some companies (at least in France). Undortunatly, some usefull features were hidden. Hidden […]
Continue reading »This article presents the steps to follow in order to use wepcrack (wifi / wep crack). Needed software Before starting, you need the following: Linux’s […]
Continue reading »Here is yet another way to produce a little divx file (using mencoder) that don’t need to be of an exellent quality (eg. for old […]
Continue reading »this article is about convert any video to a file suitable for a sony Clie TH55. You will need ffmpeg to make the following working. […]
Continue reading »Use XSLT to make a smart pagination rendering result in HTML, more or less like the google one. The following is extracted from an old […]
Continue reading »The following function decode HTML entities en return a plain text string:
1 2 3 4 5 6 7 8 |
function entityDecode(strHTML) { var tmpTextArea = document.createElement("textarea"); tmpTextArea.innerHTML = strHTML.replace(/</g,"<").replace(/>/g,">"); var decodedStr = tmpTextArea.value; document.removeElement(tmpTextArea); return decodedStr; } |
Link to this post!
Continue reading »