03 Jan, 2011

Dell inspiron 15 review linux compatible

Articles related to dell inspiron 15 review linux compatible

How to make more fans on orkut?

http://digitalpbk.blogspot.com/2006/11/how-to-make-more-fans-on-orkut.html src="http://images3.orkut.com/img/ok_0.gif" width="15" height="15">Note the first argument 'FRUS0012345678/US00987654321'. This argument denotes unique code to each user on orkut. Your code is denoted by 'US0012345678' and your friends code is 'US00987654321'. The next argument is used to denote the function.0 is used for the fan function1 is used for the trusty karma2 is used for the cooool karma3 is used for the sexy karmaThe next argument denotes the new value of the karma and the last ...
Published 5 years, 2 months ago

T9 Dictionary Implementation in C, BASH

http://digitalpbk.blogspot.com/2008/07/trie-data-structure-c-t9.html ; printf("%s\n",pre); }}int in_mob_ks(struct t9 * root,char val,int o){ int a[]={0,3,6,9,12,15,19,22,26}; /* 2=>0 1 2 3=>3 4 5 4=>6 7 8 5=>9 10 11 6=>12 13 14 7=>15 16 17 18 8=>19 20 21 9=>22 23 24 25 */ if(o && o>=a[val+1]) return -1; int s=o?o:a[val]; int e=a[val+1]; //printf("From %d-%d",s,e); for(;s if(root->node[s]) return s; return -1;}void t9_search_mob(char *pre, struct t9 * root,int depth,char *val){ if(*(val+depth)==0) { pre ...
Published 3 years, 6 months ago

amvo.exe Virus Manual Removal Steps

http://digitalpbk.blogspot.com/2008/02/amvoexe-virus-usb-memory-stick.html \Microsoft\Windows\CurrentVersion\Explorer\Advanced\Folder\Hidden\SHOWALL CheckedValue 1HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced\Folder\Hidden\SHOWALL DefaultValue 1HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer NoDriveTypeAutoRun 0x00000091 (145)-- OR --Reboot into a different OS and do the followingStep 3From all the drives delete the autorun.inf using command line (if on windows) or from a linux OS. Do not open the drive from the explorer as it would spread the virus again to this OS. If you have linux ...
Published 4 years ago

UNIX Networking : Sockets UDP Transmitter and Reciever

http://digitalpbk.blogspot.com/2007/10/unix-networking-sockets-udp-transmitter.html UNIX Networking : Sockets UDP Transmitter and Reciever IntroNetworking in UNIX or Linux is done with sockets. The following are 2 programs I made up. 1. Sends messages in UDP.2. Listens and Recieves messages from UDP.User Datagram Protocol or in short UDP is like a letter or telegram, its arrival is not anticipated and there is no connect and disconnect procedures to send and recieve UDP messages unlike TCP/IP. So the program is a little more easier and simpler to understand.The Transmitter ...
Published 4 years, 3 months ago

ANSI Escape Sequences

http://digitalpbk.blogspot.com/2007/05/ansi-escape-sequences.html to a DIR command. ESC [0;68;"dir";13p The 0;68 is the extended ASCII code for the F10 key and 13 is the ASCII code for a carriage return. Other function key codes F1=59,F2=60,F3=61,F4=62,F5=63 F6=64,F7=65,F8=66,F9=67,F10=68Source : The InternetESCThe Escape sequence on Linux is \e. Replace the ESC by \e on linux to make it work.For example,\e[31;1m Prints ...
Published 4 years, 9 months ago

Which is better - Intel core 2 duo or dual core?

http://digitalpbk.com/intel-core/intel-core-2-duo-vs-dual-core-which-better Which is better - Intel core 2 duo or dual core? energy efficient TDP of 65Watts max. Dual Core is a high efficiency with a maximum TDP of 15Watts. Dual Core has a low energy consumption. Clock Core 2 Duo, clock speed higher than 3.33 GHz until it is available. (Model # E8600) Dual Core: Clock speed is not as high available. Max of 2.33 GHz is available for the model. T2700. Core 2 Duo models are available with higher clock speeds. Price Core 2 Duo processors: These processors are priced from $ 120 to $ 270 for different versions ...
Published 1 year, 5 months ago

Server Not Found, Fix DNS Problems.

http://digitalpbk.blogspot.com/2008/07/fix-server-not-found-dns-problem.html and Secondary DNS Servers.Linux:Add the lines to /etc/resolv.confnameserver IP.ADD.RES.SSSnameserver 67.138.54.100Any more ideas ? ...
Published 3 years, 6 months ago

Making Sony Ericsson Mobile Themes

http://digitalpbk.blogspot.com/2007/04/making-sony-ericsson-mobile-themes.html Making Sony Ericsson Mobile Themes IntroSony Ericsson mobile themes (.thm files) is simply a collection of a lot of images and an xml file that specifies the colour codes. Take a theme file rename it to .tar (use archive manager on linux or any standard compresssing utility) and unzip it using any standard unzipping utility. Just play with the files and images and you can make your self a new theme. Be it for W550i, W800i, W880i, K310i, K750i, K700i, etc ... Re-zip the contents and rename ...
Published 4 years, 10 months ago

Opening/Closing of CD Drive from VB

http://digitalpbk.blogspot.com/2006/11/openingclosing-of-cd-drive-from-vb.html open", strReturn, 127, 0)End SubPublic Sub CloseCDDrive() 'Call me to close the CD Drive Call mciSendString("set CDAudio door closed", strReturn, 127, 0)End SubmciSendString is an alias of function mciSendStringA in winmm.dllI guess the code speaks for itself. (Tested on XP, VB6).Related: In Linux, from the command line:To open the drive:eject DriveNameHereTo close the drive:eject -t DriveNameHereIf your not sure what the drive name is, just look in /etc/fstab:cat /etc/fstabIn my ...
Published 5 years, 2 months ago

Perl Script to Login to Orkut

http://digitalpbk.blogspot.com/2007/05/perl-script-to-login-to-orkut.html and GET the redirect page URLGoto the redirect pageGoto Orkut.com/home.aspxYour done.Note:Tested on Linux (FC6, Perl 5.8.8)The following script is for linux, Will run on Windows too but the ANSI coloring may not work...Windows Program is given below the program for Linux (without ANSI coloring).For Linux (with ANSI coloring)use WWW::Mechanize;use HTTP::Cookies;use HTTP::Request::Common;$cj=HTTP::Cookies->new(file => "cookie.jar",autosave=>1,ignore_discard=>1);$mech ...
Published 4 years, 9 months ago

Related help topics for dell inspiron 15 review linux compatible More keywords like dell inspiron 15 review linux compatible
More pages for dell inspiron 15 review linux compatible


Email Newsletter
Email:
Popular Posts
Recent Posts
Tags
Random photo
Beach is this way Beach is this way in Havelock Island Andaman
On Facebook
Recent Comments


digitalpbk