http://digitalpbk.blogspot.com/2007/04/using-php-for-more-than-html.html
Using PHP for more than HTML
IntroIt is mostly thought that PHP can be used only for making dynamic web pages. No. PHP can also be used to make dynamic images (jpg,gif,bmp,png..), javascript codes (js), Style sheets (css), XML files and in the advanced cases pdf's, docs etc.So How do we know the php is a different file ?By default the php file is rendered as a HTML file. The server does not need any recognition for the format of the php file, i.e, server doesn't care
what the format is ...
Published 5 years, 1 month ago
http://digitalpbk.com/javascript/free-light-small-social-media-sharing-javascript-facebook-twitter-stumble-upon-digg-and-r
page load slow as well as bring in unintentional 3rd party javascript code ( or flash tracker ) which runs on your blog.
So it is always safe to use your own script or scripts which you can read understand and verify it just does
what it is suppose to do. :)
Javascript Object for Social Media Sharing
var share = {
fb:function(title,url) {
this.share('http://www.facebook.com/sharer.php?u=##URL##&t=##TITLE##',title,url);
},
tw ...
Published 2 years, 2 months ago
http://digitalpbk.blogspot.com/2007/03/mp3-id3-tag.html
The MP3 ID3 Tag
Intro: ID3V2? ID3 tags are blocks of data in mp3 that stores information about the song. It can be used to store anything from album names, performing artists, movie/album, genre, to jpg pictures containing the CD covers. ID3V2 is the second version of the ID3 tag on mp3. The following is about the ID3V2 structure.ID3 Tags can be found anywhere in the mp3 file and there is no typical standard for its location. So how do we find it ?ID3 Tags start with the 3 letters ID3 (
what ...
Published 5 years, 2 months ago
http://digitalpbk.blogspot.com/2008/06/free-dataone-account-usage-checker-perl.html
on windows or ignore the errorsperl data1.pl -u username -p passwordOptionsNo need any if your not good at the Command line.-v to turn on Verbose, describe
what is being done.-u username to specify username-p password to specify password...Any more doubts ?Use the link that says comment;)100thPost ...
Published 3 years, 10 months ago
http://digitalpbk.blogspot.com/2007/10/xpm-file-format.html
,Height,Number of colors, Characters Per Pixel, optional X & Y Hotspots, optional XPM Extension.The array indexes 1-> number of colors indicates the color section.The strings in these section take the following format : %s %s %sThe first contains the characters that represent the pixels. The number of characters used to represent a pixel is given by Characters Per Pixel field in array[0].The second string represents control characters that defines
what the following field is about.switch(control character ...
Published 4 years, 7 months ago
http://digitalpbk.blogspot.com/2006/12/introduction-to-xss-part-1.html
Introduction to XSS Part 1
This document is purely for illustrative purposes only. I am not responsible for any losses arising to the websites mentioned below. Webmasters please be more alert...
What is it?XSS stands for cross site scripting (CSS) Since CSS is already taken by Cascaded Style Sheets, it is named XSS X standing for a Cross. It is a kind of hacking which allows you to deface websites, loggin as another user etc. IntroductionLet us start by looking how websites work. Starting ...
Published 5 years, 5 months ago
http://digitalpbk.com/wireless-laptop-tv/connect-laptop-to-tv-wireless-intel-widi
can operate to transfer High Definition 720p and 1080p content between your laptop and television.
The requirements can be quiet long, so be patient to get wireless.
Laptop requirements for Wireless Display to TV
Laptop with Intel Wireless Adapter which is Wireless N capable. Normally you can look this up in your laptop specifications it would say IEEE 802.11 a/b/g/n etc. The n is
what we are looking for. IF you dont have wireless N capability in your wifi adapter, this is not going to work ...
Published 6 months, 3 weeks ago
http://digitalpbk.blogspot.com/2006/11/network-traffic-calculator-using-vc-6.html
= WSAIoctl(s,0x98000001,&lnInpBufr;,sizeof(long),&lnOutBufr;,sizeof(long),&retd;,NULL,NULL); if(err) { if(s>0)closesocket(s); return INVALID_SOCKET; } err = WSAAsyncSelect(s,hwnd,0x401,FD_READ); if(err) { if(s>0)closesocket(s); return INVALID_SOCKET; } return s;}Dont know
what to do with the code?Take VC++ 6,File > New, In Projects tab, new Win32 Application, give a name also like "trafficcalc",Choose empty project.Next File > New, In Files tab, take C++ source file, give filename "main.cpp"repeat the step for filename "winsocks.cpp"Copy ...
Published 5 years, 6 months ago