http://digitalpbk.com/drupal/remove-flash-tracking-addthis-module-drupal-5
Remove Flash Tracking on AddThis module on Drupal 5
If you
use AddThis module on drupal, you might have noticed that a 1px by 1px flash object is created which sets tracking cookies on your pages. This is transparent to the user most time and you will see it only under generated source view. The flash button is added dynamically by the addThis module on the top of the page. This sometimes can be annoying since a white bar can appear at the top of the page due to this.
In drupal 6, the flash ...
Published 2 years, 6 months ago
http://digitalpbk.com/hardware/compare-sony-vaio-cw-vpccw26fg-versus-vs-apple-macbook-white
with 256MB of DDR3 SDRAM shared with main memory
USB Ports3 High Speed USB Ports2 High Speed USB Ports
Video Output Ports1 HDMI (High Definition Multimedia Input) 1 Analogue RGB, mini D-sub 15 pin x 1 Mini DisplayPort
DVI output
using Mini DisplayPort to DVI Adapter
VGA output
using Mini DisplayPort to VGA Adapter
Dual-link DVI output
using Mini DisplayPort to Dual-Link DVI Adapter supports 30-inch Apple Cinema HD Display (optional)
Battery Life2.5 Hours7 Hours
Wireless Connectivity
Wireless LAN ...
Published 2 years, 2 months ago
http://digitalpbk.blogspot.com/2009/05/compaq-presario-v3000-wifi-problem.html
% loss),Approximate round trip times in milli-seconds: Minimum = 2ms, Maximum = 4236ms, Average = 801msApparently the connection was too poor in Compaq, I had to
use a pen drive to copy the statistics and post it here. Do you have a Compaq Presario??Do let me know ... ...
Published 3 years ago
http://digitalpbk.blogspot.com/2007/10/unix-networking-sockets-udp-transmitter.html
Reads messages from input and sends it to localhost:34000.To Setup a transmitter following must be done:1. Setup a port address and open a socket and bind to it.2. Send message to specified port and IP addresses.#include types.h>>#include socket.h>>#include in.h>>#include inet.h>>#include #include #include #include #include #include #include time.h>>#include /*Some are unused, But I read these are general headers
used in a network program:)*/int main(void){ struct sockaddr ...
Published 4 years, 6 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 5 years ago
http://digitalpbk.blogspot.com/2008/11/masm-assembly-factorial-program-big.html
34020262992581378423147276636643647155396305352541105541439434840109915068285430675068591638581980604162940383356586739198268782104924614076605793562865241982176207428620969776803149467431386807972438247689158656000000000000000000000000000000000000000000000000000000000000000for the Faint HeartedThe program calculates and computes big numbers by simulating the traditional way of multiplication and division of numbers. Hence it can do this upto any number of digits as much as the memory can hold. In this example, I have
used 512 digited numbers, which is more than enough for holding 255!.The key parts of the following program is bignum_mul and bignum_add macro which simulates the traditional method of multiplying and adding numbers (not
using any ...
Published 3 years, 6 months ago
http://digitalpbk.blogspot.com/2007/11/unix-networking-sockets-tcp-transmitter.html
address and open a socket and bind to it.2. Connect to server 3. Send messages4. Close connection when done#include types.h>>#include socket.h>>#include in.h>>#include inet.h>>#include #include #include #include #include #include #include time.h>>#include /*Some are unused, But I read these are general headers
used in a network program:)*/int main(void){ struct sockaddr_in sin; int s; s = socket(AF_INET, SOCK_STREAM, 0); if(!s) { perror("socket()"); return 1 ...
Published 4 years, 6 months ago