Skip to content

Vamsi Pavan's Home

When curiosity outbursts …!!!

Main Navigation

  • Home
  • About
  • Contact Me

Category: Programming

Evaluation of if statements

vamsipavan October 6, 2006 Leave a Comment on Evaluation of if statements

#!/usr/bin/perl my ($x,$a)=(0,1); if ($a || $x++) { print “foon”; } print “$x”; At last, it will print 0 because, during the evaluation of if statement, since $a = 1, the next part of ‘or’ wont be evaluated. So $xContinue reading… Evaluation of if statements

$_ will hold the reference, not the copy of variable

vamsipavan October 6, 2006 Leave a Comment on $_ will hold the reference, not the copy of variable

#!/usr/bin/perl @list=qw(one two three); foreach(reverse @list) { print “$_n”; $_=”foo”; } print “$list[0]n”; Finally it will pring ‘foo’ not ‘one’. Because $_ isn’t a copy of the list element, it’s a reference. Modifying it will change the list.

Disable wildcard epansion in Bash shell

vamsipavan October 6, 2006 Leave a Comment on Disable wildcard epansion in Bash shell

set -f This disables the wildcard expansion in bash shell. Example: $ ksh $ ls -c Tom t tt ufaq $ set -f $ echo t* will output t*

Posts navigation

Previous Page 1 … Page 8 Page 9

Primary Sidebar

About Me

About me

Recent Comments

  • vicky on java.sql.SQLException: Io exception: Invalid Packet Lenght
  • Vamsi Pavan on ORA-01658: unable to create INITIAL extent for segment in tablespace SYSTEM
  • Harpreet on ORA-01658: unable to create INITIAL extent for segment in tablespace SYSTEM
  • Solve Captchas on Bit wise operators
  • what is debt consolidation on Give a fast way to multiply a number by 7

Recent Posts

  • Core Java: Programming code snippets frequently used
  • Core Java: ConcurrentModificationException while removing items from LinkedHashMap
  • Gas Station Problem
  • HTTP methods (verbs)
  • Concurrency Vs Parallelism

Archives

open all | close all
2021 (6)
July 2021 (1)
Core Java: Programming code snippets frequently used
June 2021 (5)
Core Java: ConcurrentModificationException while removing items from LinkedHashMap
Gas Station Problem
HTTP methods (verbs)
Concurrency Vs Parallelism
Core Java: Type Erasure
2019 (1)
February 2019 (1)
MySQL error – has exceeded the ‘max_questions’ resource in database
2018 (2)
September 2018 (1)
ORA-01194: file 1 needs more recovery to be consistent
May 2018 (1)
Hanging issue in MI redmi Note 4
2017 (4)
December 2017 (2)
java URL using relative path
My financial investment learnings
May 2017 (1)
MySQL error – has exceeded the ‘max_questions’ resource in database
February 2017 (1)
Should I Invest in NPS to claim tax benefit on extra Rs 50,000
2016 (4)
August 2016 (3)
"Unlicensed Product" error when you open an Office Professional Plus 2010 application
JDBC programming inputs
Introduction to basic ODBC programming
January 2016 (1)
TCPDUMP – Packet size limited during capture HTTP truncated
2015 (5)
August 2015 (1)
Force a windows desktop application to run in 32bit process on 64bit OS
May 2015 (1)
Monty Hall Puzzle
April 2015 (2)
Linux: Awesome Commands
ORA-01658: unable to create INITIAL extent for segment in tablespace SYSTEM
January 2015 (1)
Number of comparisons to find second minimum element in an Array
2014 (1)
November 2014 (1)
Poodle fix for all the users of libcurl
2013 (3)
June 2013 (1)
Subjects to discuss with your manager in one-on-one
March 2013 (2)
Vim: Reverse all lines
Base64 Encoding and Decoding in C
2011 (10)
September 2011 (3)
SSL Authentication in HTTP : Using cURL – Part 3
SSL Authentication in HTTP : Basics – Part 2
SSL Authentication in HTTP : Basics – Part 1
July 2011 (2)
Bangalore – story behind the name
xerces-c: C++ SAX2 Parser
May 2011 (3)
Donkey Story 3
Donkey story 2
Donkey Story 1
January 2011 (2)
Eclipse: resource is outof sync with the file system – permanent solution
xerces-c: C++ SAX2 Parser
2010 (3)
June 2010 (1)
J2EE Basics: JDBC Driver Connections
February 2010 (1)
Paths of Glory by Jeffrey Archer
January 2010 (1)
Vim: visual block mode commands
2009 (17)
December 2009 (2)
svn proxy settings
Sandisk Sansa e240 Rhapsody – FAQ
August 2009 (1)
Trip to YadagiriGutta from Hyderabad
June 2009 (6)
SQL Loader: Import CSV to Oracle table
Setup SVN Local Repository
The Greedy Pirates! (Solution)
The Greedy Pirates!
5 cards game … (Solution)
5 cards game …
April 2009 (1)
Microsoft Word has encountered a problem and needs to close error
March 2009 (5)
MySQL Error Number 1005 Can’t create table ‘.mydb#sql-328_45.frm’ (errno: 150)
Ubuntu: firefox always starts in offline in hardy
Linux : Awesome commands – find
java.sql.SQLException: Io exception: Invalid Packet Lenght
java.io.UTFDataFormatException: 5-byte UTF8 encoding not supported.
January 2009 (2)
International Time Conversions
Dealing with newline, n or even r in PL/SQL
2008 (22)
November 2008 (1)
Good Bye ‘JUMBO’
October 2008 (3)
Real Estate Bubble 2008 : Part 2 (Indian context)
Real Estate Bubble 2008 : Part 1
Memory efficient doubly linked list
July 2008 (2)
Creating own firefox search-plugin
java.sql.SQLException: Non supported SQL92 token at position: 1
June 2008 (12)
She-Ra and He-Man are twins; She-Ra is the OLDER twin. Assume they were born immediately after each other, an infinitesimally small – but nonzero – amount of time apart. During one year in the course of their lives, She-Ra celebrates her birthday two days AFTER He-Man does. How is this possible?
There is an array A[N] of N numbers. You have to compose an array Output[N] such that Output[i] will be equal to multiplication of all the elements of A[N] except A[i]. For example Output[0] will be multiplication of A[1] to A[N-1] and Output[1] will be multiplication of A[0] and from A[2] to A[N-1].
You have 1000 integers. All are less than 1000 and greater or equal to 1. Among them, 999 are distinct and there is one that is found twice. How can you find the duplicate?
if I had to find duplicates in book catalogs with entries with different titles but with the same content..
If we would like to index the entire earth population, how long should the index size be?
3 black hats and 2 white hats
Create a function, called findZeros(), that will compute the number of zeros in the decimal representation of n!
Create a function, called powerSet(), that will output the power set of the input set.
Coin weighing and finding defective
Common BPEL Errors
Adding new responsibility to an user
Typical Unix/Linux recursive search commands
May 2008 (4)
Empty links in javascript
Setup TortoiseSVN & Subversion on local windows
Core Java: StringBuffer and StringBuilder
Core Java: marker interface
2007 (49)
December 2007 (2)
Building DOM tree by reading an xml file in Java
MySQL error 1067 (42000): Invalid default value for ‘ban_id’
October 2007 (1)
Hi Bloggy …. after long time ….
July 2007 (4)
Cross Browser Compatability – Web Resources
Oracle Specific SQL Concepts – Part 1
I DNT HATE MOZILLA BUT USE IE OR ELSE…
Introduction to PHP’s PEAR classes : Comparing normal Database connections with PEAR classes.
May 2007 (24)
Difference between String str=”abc” and str=new String(”abc”)?
Difference between require and use ?
Logic Puzzles : (stamps)
Logic Puzzles : (hats)
Logic Puzzles : (dots)
Man in the Elevator
Seven Points
The defective machine
The Son
Three Light Bulbs
The Two Robots
Two Fuses
The Bridge
Probably difficult
The blind man
Three Gentlemen
Place the coins
Hundred prisoners
An Intellegent Escape
Blue eyed people
Paratroopers
The Rose Garden
Thousand poison bottles
Finding defective coin using old weighing machine …
April 2007 (13)
Twelve Ancestors [clues:trails] — Solution
Twelve Ancestors [clues:trails]
Sockets for interprocess communication
Bubble Sort
Shell Sort
Insertion Sort
Selection Sort
File upload code in Jsp : using apache’s commons-upload.jar
File upload code in Jsp : other methods ….
Reading and Writing Excel Files with POI
When itz come to Programming…!
Letz start with Research …
How to pass a list of values or array to SQL Server stored procedure?
March 2007 (1)
Interviewing Skills for Candidates
February 2007 (4)
When you mix Tollywood with IT Industry ….
Java Common Utils: Creating a stored procedure or function in an Oracle Database
Java Common Utils: Calling a Stored Procedure in a Database (Oracle)
Java Common Utils: Reading and writing text files
2006 (90)
December 2006 (2)
Hiding Javascript Source
Recursive execusion of commands in Linux command prompt
October 2006 (80)
Fast Bit Counting Routines
ActiveX Data Objects
How to Write a Killer Resume (for Software Engineers)
Preparing For a Software Engineering Interview
A program to draw a circle
Some routine interview questions
Nice link to OS concepts
Python tips
Links to puzzles
Polynomial evaluation
Virtual Functions (C++ Concepts)
Sum two numbers using bits
Networks Concepts
OS concepts
Avoid multiple inclusion of header file
Floating point representation, IEEE standard
Fibonacci numbers
Interview questions
Online links for eBooks
Bit wise operators
English corpus
conditional compilation, preprocessor expression
Lifetime and visibility of a variable
General C points
Limit robots action on a specific page
Similarity measures, text clustering or text classification
default function prototype
scope of variables
printf formats in C and scanf
ascii codes
Precedence in C
Representation of negative numbers
extern, static variables, enum, register
Computer Organization
Complete binary tree and Full binary tree
Heterogenious linked list
Sort linked list
Redefining inbuilt data types
Repeating characters
Draw circle, using integer operations
Give a fast way to multiply a number by 7
Check whether a number is power of 2
In array of n numbers one numer repeating, detect it in one pass
print integer using putchar, in same order
Graph problems
NQueens
Detect a cycle in a tree with only one pointer
Left and Right justification of text
Longest monotone increasing subsequence
Finding the kth smallest element in an array
Permutations and Combinations of a string
Removing duplicates in an array in one pass
Prime number verification efficient way
Raising a number to a larger power ( power calculation)
pseudo random number generator
sizeof operator
Index into arrays
Function pointers, static char
Delete a node from a Double Linked list, with out using any extra variables
Reverse a Double Linked list
Macros
String initialization
Swap two variables in one line with out using temporary variable
More on structures and unions
Operator Precedence Chart for referance
precidence of , and =
precidence of * and ++
Order of arguments passed to a function
Evaluation of If statement
Some Nice Perl Tips
Evaluation sequency of print statement
Evaluation of if statements
$_ will hold the reference, not the copy of variable
Disable wildcard epansion in Bash shell
Detect cycle in a linked list
How to Delete the Windows 2000 and XP Pagefile
Managing disk quotas in Linux
Creating partitions and file systems in Linux
The role of partitions in a Linux file system
Let me start with Hello World of Blogging!
September 2006 (1)
GOOGLE PAPER – Sept, 2006 – CHENNAI
August 2006 (1)
Programming puzzles – 1
June 2006 (6)
Programming puzzles – 2
Riddles
Problmes on Bit Manipulations
Problmes on Linked List
Programming puzzles 1
Count down started !!
2005 (14)
August 2005 (12)
When things achieve perfection ….
Visual Intelligence …
Some resources for Fedora Installations …..
Write permissions to vfat filesystems for normal users
Fetchmail usage
Messenger problem
Copying Files
Using ‘export’ for Sound
CGI errors
Apache configuration
Netsend using samba
Default desktop problem
May 2005 (2)
A black day to remember ….
The Bus with the drunker …..

Categories

open all | close all
Articles (22)
HTTP methods (verbs)
ORA-01194: file 1 needs more recovery to be consistent
Hanging issue in MI redmi Note 4
java URL using relative path
My financial investment learnings
Should I Invest in NPS to claim tax benefit on extra Rs 50,000
"Unlicensed Product" error when you open an Office Professional Plus 2010 application
JDBC programming inputs
TCPDUMP – Packet size limited during capture HTTP truncated
Poodle fix for all the users of libcurl
Subjects to discuss with your manager in one-on-one
Vim: Reverse all lines
Base64 Encoding and Decoding in C
SSL Authentication in HTTP : Using cURL – Part 3
SSL Authentication in HTTP : Basics – Part 2
SSL Authentication in HTTP : Basics – Part 1
Bangalore – story behind the name
xerces-c: C++ SAX2 Parser
Donkey Story 3
Donkey story 2
Donkey Story 1
Memory efficient doubly linked list
Companies (7)
Google (7)
There is an array A[N] of N numbers. You have to compose an array Output[N] such that Output[i] will be equal to multiplication of all the elements of A[N] except A[i]. For example Output[0] will be multiplication of A[1] to A[N-1] and Output[1] will be multiplication of A[0] and from A[2] to A[N-1].
You have 1000 integers. All are less than 1000 and greater or equal to 1. Among them, 999 are distinct and there is one that is found twice. How can you find the duplicate?
if I had to find duplicates in book catalogs with entries with different titles but with the same content..
If we would like to index the entire earth population, how long should the index size be?
Create a function, called findZeros(), that will compute the number of zeros in the decimal representation of n!
Create a function, called powerSet(), that will output the power set of the input set.
GOOGLE PAPER – Sept, 2006 – CHENNAI
Current Affairs (1)
Good Bye ‘JUMBO’
Economy (2)
Real Estate Bubble 2008 : Part 2 (Indian context)
Real Estate Bubble 2008 : Part 1
Fun (5)
Bangalore – story behind the name
Donkey Story 3
Donkey story 2
Donkey Story 1
When you mix Tollywood with IT Industry ….
Gen (17)
My Crap (1)
Let me start with Hello World of Blogging!
My Dairy (3)
Count down started !!
A black day to remember ….
The Bus with the drunker …..
My Thoughts (2)
When things achieve perfection ….
Visual Intelligence …
Hanging issue in MI redmi Note 4
SSL Authentication in HTTP : Using cURL – Part 3
SSL Authentication in HTTP : Basics – Part 2
SSL Authentication in HTTP : Basics – Part 1
Bangalore – story behind the name
Paths of Glory by Jeffrey Archer
Sandisk Sansa e240 Rhapsody – FAQ
International Time Conversions
Creating own firefox search-plugin
Hi Bloggy …. after long time ….
Online links for eBooks
Novels (1)
Paths of Glory by Jeffrey Archer
Operating Systems (31)
Linux (20)
TCPDUMP – Packet size limited during capture HTTP truncated
Linux: Awesome Commands
Vim: visual block mode commands
Ubuntu: firefox always starts in offline in hardy
Linux : Awesome commands – find
Typical Unix/Linux recursive search commands
Recursive execusion of commands in Linux command prompt
Managing disk quotas in Linux
Creating partitions and file systems in Linux
The role of partitions in a Linux file system
Some resources for Fedora Installations …..
Write permissions to vfat filesystems for normal users
Fetchmail usage
Messenger problem
Copying Files
Using ‘export’ for Sound
CGI errors
Apache configuration
Netsend using samba
Default desktop problem
Windows (7)
"Unlicensed Product" error when you open an Office Professional Plus 2010 application
Force a windows desktop application to run in 32bit process on 64bit OS
Eclipse: resource is outof sync with the file system – permanent solution
Setup SVN Local Repository
Microsoft Word has encountered a problem and needs to close error
I DNT HATE MOZILLA BUT USE IE OR ELSE…
How to Delete the Windows 2000 and XP Pagefile
Concurrency Vs Parallelism
Force a windows desktop application to run in 32bit process on 64bit OS
Sockets for interprocess communication
Nice link to OS concepts
OS concepts
Oracle Tech (6)
Oracle Apps (1)
Adding new responsibility to an user
Oracle SOA Suite (1)
Common BPEL Errors
ORA-01194: file 1 needs more recovery to be consistent
ORA-01658: unable to create INITIAL extent for segment in tablespace SYSTEM
SQL Loader: Import CSV to Oracle table
java.sql.SQLException: Non supported SQL92 token at position: 1
Common BPEL Errors
Personal Finance (2)
Tax (1)
Should I Invest in NPS to claim tax benefit on extra Rs 50,000
My financial investment learnings
Should I Invest in NPS to claim tax benefit on extra Rs 50,000
Placements (102)
Algorithms (42)
Gas Station Problem
Number of comparisons to find second minimum element in an Array
Base64 Encoding and Decoding in C
Memory efficient doubly linked list
There is an array A[N] of N numbers. You have to compose an array Output[N] such that Output[i] will be equal to multiplication of all the elements of A[N] except A[i]. For example Output[0] will be multiplication of A[1] to A[N-1] and Output[1] will be multiplication of A[0] and from A[2] to A[N-1].
You have 1000 integers. All are less than 1000 and greater or equal to 1. Among them, 999 are distinct and there is one that is found twice. How can you find the duplicate?
if I had to find duplicates in book catalogs with entries with different titles but with the same content..
Create a function, called findZeros(), that will compute the number of zeros in the decimal representation of n!
Create a function, called powerSet(), that will output the power set of the input set.
Typical Unix/Linux recursive search commands
Bubble Sort
Shell Sort
Insertion Sort
Selection Sort
Fast Bit Counting Routines
A program to draw a circle
Polynomial evaluation
Sum two numbers using bits
Fibonacci numbers
Heterogenious linked list
Sort linked list
Repeating characters
Draw circle, using integer operations
Give a fast way to multiply a number by 7
Check whether a number is power of 2
In array of n numbers one numer repeating, detect it in one pass
print integer using putchar, in same order
Graph problems
NQueens
Detect a cycle in a tree with only one pointer
Left and Right justification of text
Longest monotone increasing subsequence
Finding the kth smallest element in an array
Permutations and Combinations of a string
Removing duplicates in an array in one pass
Prime number verification efficient way
Raising a number to a larger power ( power calculation)
pseudo random number generator
Delete a node from a Double Linked list, with out using any extra variables
Reverse a Double Linked list
Swap two variables in one line with out using temporary variable
Detect cycle in a linked list
Data Structures (1)
Memory efficient doubly linked list
Networks (1)
Sockets for interprocess communication
Non-technical (1)
Interviewing Skills for Candidates
Puzzles (33)
Monty Hall Puzzle
The Greedy Pirates! (Solution)
The Greedy Pirates!
5 cards game … (Solution)
5 cards game …
She-Ra and He-Man are twins; She-Ra is the OLDER twin. Assume they were born immediately after each other, an infinitesimally small – but nonzero – amount of time apart. During one year in the course of their lives, She-Ra celebrates her birthday two days AFTER He-Man does. How is this possible?
3 black hats and 2 white hats
Coin weighing and finding defective
Logic Puzzles : (stamps)
Logic Puzzles : (hats)
Logic Puzzles : (dots)
Man in the Elevator
Seven Points
The defective machine
The Son
Three Light Bulbs
The Two Robots
Two Fuses
The Bridge
Probably difficult
The blind man
Three Gentlemen
Place the coins
Hundred prisoners
An Intellegent Escape
Blue eyed people
Paratroopers
The Rose Garden
Thousand poison bottles
Finding defective coin using old weighing machine …
Twelve Ancestors [clues:trails] — Solution
Twelve Ancestors [clues:trails]
Links to puzzles
She-Ra and He-Man are twins; She-Ra is the OLDER twin. Assume they were born immediately after each other, an infinitesimally small – but nonzero – amount of time apart. During one year in the course of their lives, She-Ra celebrates her birthday two days AFTER He-Man does. How is this possible?
if I had to find duplicates in book catalogs with entries with different titles but with the same content..
If we would like to index the entire earth population, how long should the index size be?
3 black hats and 2 white hats
Coin weighing and finding defective
Difference between String str=”abc” and str=new String(”abc”)?
Sockets for interprocess communication
Fast Bit Counting Routines
How to Write a Killer Resume (for Software Engineers)
Preparing For a Software Engineering Interview
A program to draw a circle
Some routine interview questions
Nice link to OS concepts
Links to puzzles
Virtual Functions (C++ Concepts)
Networks Concepts
OS concepts
Avoid multiple inclusion of header file
Floating point representation, IEEE standard
Interview questions
Bit wise operators
General C points
scope of variables
Representation of negative numbers
extern, static variables, enum, register
Computer Organization
GOOGLE PAPER – Sept, 2006 – CHENNAI
Programming puzzles – 1
Programming puzzles – 2
Riddles
Problmes on Bit Manipulations
Problmes on Linked List
Programming puzzles 1
Programming (83)
C/C++ (38)
Introduction to basic ODBC programming
Poodle fix for all the users of libcurl
Base64 Encoding and Decoding in C
xerces-c: C++ SAX2 Parser
xerces-c: C++ SAX2 Parser
Bubble Sort
Shell Sort
Insertion Sort
Selection Sort
Fast Bit Counting Routines
Virtual Functions (C++ Concepts)
Sum two numbers using bits
Avoid multiple inclusion of header file
Interview questions
Bit wise operators
conditional compilation, preprocessor expression
Lifetime and visibility of a variable
General C points
default function prototype
scope of variables
printf formats in C and scanf
ascii codes
Precedence in C
Representation of negative numbers
extern, static variables, enum, register
Complete binary tree and Full binary tree
Redefining inbuilt data types
sizeof operator
Index into arrays
Function pointers, static char
Macros
String initialization
More on structures and unions
Operator Precedence Chart for referance
precidence of , and =
precidence of * and ++
Order of arguments passed to a function
Evaluation of If statement
Java (17)
Core Java: Programming code snippets frequently used
Core Java: ConcurrentModificationException while removing items from LinkedHashMap
Core Java: Type Erasure
java URL using relative path
JDBC programming inputs
Eclipse: resource is outof sync with the file system – permanent solution
J2EE Basics: JDBC Driver Connections
java.sql.SQLException: Io exception: Invalid Packet Lenght
java.io.UTFDataFormatException: 5-byte UTF8 encoding not supported.
Core Java: StringBuffer and StringBuilder
Core Java: marker interface
Building DOM tree by reading an xml file in Java
Difference between String str=”abc” and str=new String(”abc”)?
Reading and Writing Excel Files with POI
Java Common Utils: Creating a stored procedure or function in an Oracle Database
Java Common Utils: Calling a Stored Procedure in a Database (Oracle)
Java Common Utils: Reading and writing text files
Java Script (3)
Empty links in javascript
Cross Browser Compatability – Web Resources
Hiding Javascript Source
JDBC (1)
JDBC programming inputs
Jsp/servlets (4)
java.sql.SQLException: Io exception: Invalid Packet Lenght
java.io.UTFDataFormatException: 5-byte UTF8 encoding not supported.
File upload code in Jsp : using apache’s commons-upload.jar
File upload code in Jsp : other methods ….
ODBC (1)
Introduction to basic ODBC programming
Perl (5)
Difference between require and use ?
Some Nice Perl Tips
Evaluation sequency of print statement
Evaluation of if statements
$_ will hold the reference, not the copy of variable
PHP (2)
MySQL error – has exceeded the ‘max_questions’ resource in database
Introduction to PHP’s PEAR classes : Comparing normal Database connections with PEAR classes.
Pl/SQL (12)
MySQL error – has exceeded the ‘max_questions’ resource in database
ORA-01194: file 1 needs more recovery to be consistent
MySQL error – has exceeded the ‘max_questions’ resource in database
SQL Loader: Import CSV to Oracle table
MySQL Error Number 1005 Can’t create table ‘.mydb#sql-328_45.frm’ (errno: 150)
Dealing with newline, n or even r in PL/SQL
java.sql.SQLException: Non supported SQL92 token at position: 1
MySQL error 1067 (42000): Invalid default value for ‘ban_id’
Oracle Specific SQL Concepts – Part 1
How to pass a list of values or array to SQL Server stored procedure?
Java Common Utils: Creating a stored procedure or function in an Oracle Database
Java Common Utils: Calling a Stored Procedure in a Database (Oracle)
Python (1)
Python tips
Shell (3)
TCPDUMP – Packet size limited during capture HTTP truncated
Recursive execusion of commands in Linux command prompt
Disable wildcard epansion in Bash shell
Visual Basic (1)
ActiveX Data Objects
Concurrency Vs Parallelism
java URL using relative path
java.sql.SQLException: Io exception: Invalid Packet Lenght
java.io.UTFDataFormatException: 5-byte UTF8 encoding not supported.
Dealing with newline, n or even r in PL/SQL
Introduction to PHP’s PEAR classes : Comparing normal Database connections with PEAR classes.
When itz come to Programming…!
Research (5)
IR/Data Mining (4)
Online links for eBooks
English corpus
Limit robots action on a specific page
Similarity measures, text clustering or text classification
Letz start with Research …
Source Code (11)
Introduction to basic ODBC programming
Base64 Encoding and Decoding in C
SSL Authentication in HTTP : Using cURL – Part 3
xerces-c: C++ SAX2 Parser
xerces-c: C++ SAX2 Parser
Building DOM tree by reading an xml file in Java
Bubble Sort
Shell Sort
Insertion Sort
Selection Sort
File upload code in Jsp : using apache’s commons-upload.jar
Tools (16)
HTTP methods (verbs)
TCPDUMP – Packet size limited during capture HTTP truncated
Force a windows desktop application to run in 32bit process on 64bit OS
Poodle fix for all the users of libcurl
Vim: Reverse all lines
Base64 Encoding and Decoding in C
SSL Authentication in HTTP : Using cURL – Part 3
SSL Authentication in HTTP : Basics – Part 2
SSL Authentication in HTTP : Basics – Part 1
Eclipse: resource is outof sync with the file system – permanent solution
Vim: visual block mode commands
svn proxy settings
Setup SVN Local Repository
Linux : Awesome commands – find
Creating own firefox search-plugin
Setup TortoiseSVN & Subversion on local windows
Travel (1)
Trip to YadagiriGutta from Hyderabad

Copyright © Vamsi Pavan's Place 2021. All rights reserved.