03 Jan, 2011
Php gzdecode function
Articles related to php gzdecode function
http://digitalpbk.blogspot.com/2007/01/firefox-browser-within-browser.html
to
functionality using JavaScript. To extend the browser, we modify parts of the browser UI by adding or modifying widgets. We add widgets by inserting new XUL DOM elements into the browser window, and modify them by using script and attaching event handlers. Have fun making tabs within tabs within tabs ......Did not work? Did not work ? What happened ? Lemme know ... Feel free to leave a comment ... ...
Published 5 years ago
http://digitalpbk.com/perl/perl-script-remove-directory-and-contents-recursively
Perl script to remove a directory and contents recursively
This is the script for sandeep when he asked me how to delete a directory in perl. rmdir
function only removes empty directories. So we need to remove the contents of the directory before removing the directory. So if the directory contains more directories / folders we would have to recursively delete all the directories under the directory. Well so here is the code just to do that.
#!/usr/bin/perl
deldir("test"); ...
Published 2 years, 2 months ago
http://digitalpbk.blogspot.com/2007/06/json-javascript-object-notation.html
All object lies between the { }each of the properties has a label and an associated value or an array.It is specified as label : valuea , separates the label-value pairs.Arrays are enclosed in square brackets [ ] and comma separated.In short a JSON object looks likevar blog = {name: "the Digital Me",author : "arun prabhakar",pages : ["http://url1/","http://url2/"];complexarray: [[0,10,10],[7,5,7],[1,9,8],[7,1,4]];};JSON and PHPPHP has 2 built in
functions to help ...
Published 4 years, 7 months ago
http://digitalpbk.blogspot.com/2006/11/openingclosing-of-cd-drive-from-vb.html
Opening/Closing of CD Drive from VB
Opening and closing of the CD drive can be achieved easily in visual basic by the following codePrivate Declare
Function mciSendString Lib "winmm.dll" _Alias "mciSendStringA" (ByVal lpstrCommand As String, ByVal lpstrReturnString As String, _ByVal uReturnLength As Long, ByVal hwndCallback As Long) As LongDim strReturn As StringPublic Sub OpenCDDrive() 'Call me to open the CD Drive Call mciSendString("set CDAudio door ...
Published 5 years, 2 months ago
http://digitalpbk.com/javascript/optmizie-javascript-files-google-closure-compiler
.0 applications uses a lot of javascript usually jQuery library or the YUI (Yahoo User Interface) Library to make RIA (Rich Internet Applications), this can be a very handy tool to improve Performance.
The example code shows converting the following script from
function hello(name) {
alert('Hello, ' + name);
}
hello('New user');
to
function hello(a){alert("Hello, "+a)}hello("New user");
It removes whitespaces, and shortens the variable names.
A Few numbers ...
Published 2 years, 3 months ago
http://digitalpbk.com/javascript/adding-html-elements-dynamically-page
;
function addfield() {
var e = document.createElement("div");
e.innerHTML = 'Value '+c+' : ';
document.getElementById("extendable").appendChild(e);
c++;
}
Value 1 :
Add More
The Code to add dynamic Input Elements
The following is the simple javascript code that adds html input elements dynamically to the form. Add to the head tag within <script> tag:
var c = 0;
function addfield() {
var e = document.createElement("div"); ...
Published 2 years, 2 months ago
http://digitalpbk.blogspot.com/2007/05/ansi-escape-sequences.html
ANSI Escape Sequences
IntroANSI Escape sequences are used to perform special operations on the terminal, such as changing the output color, making it bold, printing at a specified coordinate etc.The sequencesWherever you see '#', that should be replaced by the appropriate number. ESC code sequence
Function ------------------- ---------------------------Cursor Controls: ESC[#;#H or ESC[#;#f Moves cusor to line #, column # ESC ...
Published 4 years, 9 months ago
http://digitalpbk.blogspot.com/2008/08/online-8085-assembler-and-simulator.html
Free Online 8085 Assembler and Simulator
Free Online 8085 Assembler and SimulatorI just made this long back, just put it online for anyone that might be interested in using it.Quick StartEnter the code as shown in the sample in the code view,Click Compile and Simulate.Click HexView to see the hex code of the programClick SimView and Click Step or Exec to simulate the program.There is a built in special
function call for keyboard reads : CALL KBINPUTDisplays a prompt for directly entering ...
Published 3 years, 6 months ago
http://digitalpbk.com/2009/12/making-symbolic-links-windows-xp-using-junction-sysinternals
Making symbolic links on Windows xp using junction from sysinternals
Symlinks is a utility that allows two paths to point to the same set of files and subfolders. This is a handy utility on linux which lets you point one path on linux to another path. To do achieve the same
functionality on Windows XP, software called junction can be used. provided by SysInternals.
Here is the help from the junction.exe
D:\>junction /?
Junction v1.05 - Windows junction creator and reparse point viewer ...
Published 2 years, 1 month ago
http://digitalpbk.blogspot.com/2007/01/increasing-karma-ratings-on-orkut.html
. The cat=0 in the URL specifies the fan
function. cat=1 : stands for trusty rating.cat=2 : stands for cool rating.cat=3 : stands for sexy rating.The next GET parameter val=1 has to be modified as : val = 0: for 0 ratingval = 1: for 1 val = 2: for 2val = 3: for full rating.So our final URL for full trusty rating is : "http://www.orkut.com/setKarma?cat=1&val;=3&gid;=FR[friends id here]/[your id here]"Eg: "http://www.orkut.com/setKarma? ...
Published 5 years ago
Related help topics for php gzdecode function
More keywords like php gzdecode function
More pages for php gzdecode function