Archive for March, 2006

Mar 23

Tricky CSS

Css can be pretty tricky. In this blog I will keep appending the quirks I notice in CSS.
:
When a Div is floated the div will cut across the containing div if the containing div is smaller than the floated div.
Fix:
Create another inner div at the end of the containing div and give the Css property clear:both. This will force the containing div to be bigger than the inner div’s.

0
comments

Mar 13

Family At Home


Family At Home
Originally uploaded by thomas_ramapuram.

Everbody together.

0
comments

Mar 13

Family in Church


Family in Church
Originally uploaded by thomas_ramapuram.

Everybody in church after the Baptism

0
comments

Mar 13

Sarah ready for School


06-02-15@080915
Originally uploaded by thomas_ramapuram.

Sarah on the Balcony before going to school.  One of the coolest pictures taken by Geeta’s cell.  It is a Benq with a 2 Mega pixel camera.  We picked it up because back then it was sub 10K.

0
comments

Mar 13

Mummy, Jay, the girls and the Baby

All the Beautiful girls with Jai , Mummy and the Baby.

0
comments

Mar 06

Setting up Subversion

Today I will go about Setting up subversion. I am not going to install subversion since it is already installed by fedora.
The version FC 4 installs is

svn, version 1.1.4 (r13838)
compiled Apr 13 2005, 12:20:50

Copyright (C) 2000-2004 CollabNet.
Subversion is open source software, see http://subversion.tigris.org/
This product includes software developed by CollabNet (http://www.Collab.Net/).

The following repository access (RA) modules are available:

* ra_dav : Module for accessing a repository via WebDAV (DeltaV) protocol.
- handles ‘http’ schema
- handles ‘https’ schema
* ra_local : Module for accessing a repository on local disk.
- handles ‘file’ schema
* ra_svn : Module for accessing a repository using the svn network protocol.
- handles ‘svn’ schema

After doing yum update subversion

svn, version 1.2.3 (r15833)
compiled Aug 26 2005, 03:42:45

Copyright (C) 2000-2005 CollabNet.
Subversion is open source software, see http://subversion.tigris.org/
This product includes software developed by CollabNet (http://www.Collab.Net/).

The following repository access (RA) modules are available:

* ra_dav : Module for accessing a repository via WebDAV (DeltaV) protocol.
- handles ‘http’ scheme
- handles ‘https’ scheme
* ra_svn : Module for accessing a repository using the svn network protocol.
- handles ‘svn’ scheme
* ra_local : Module for accessing a repository on local disk.
- handles ‘file’ scheme

  • Now what I have to do is set up repositories
  • Get a subversion dump from the old system.
  • Import the Subversion Dump

0
comments

Mar 06

Getting upto speed with GPG

For all of you conspiracy theorist and Security Freaks out there. This is what I found out today.
They are out to get you!!! So be prepared!!!!
One way to do so is to start using GPG which is an open source implementation of PGP which started off this craze of Security and Public Key Encription. This is what I found out on my journey.
( Read more )

0
comments

Mar 06

Setting up Squid

Be sure the set these variables in your squid.conf file in /etc/ directory
* httpd_accel_host virtual
* httpd_accel_port 80
* httpd_accel_with_proxy on
* httpd_accel_uses_host_header on

All the rest is pretty straight forward.
You will also have to configure your iptables to enable transparent proxy.

Check this Howto

0
comments

Mar 06

IpTable Setup for Routing Internet Traffic

# Set up IP FORWARDing and Masquerading
iptables –table nat –append POSTROUTING –out-interface eth1 -j MASQUERADE
iptables –append FORWARD –in-interface eth0 -j ACCEPT

echo 1 > /proc/sys/net/ipv4/ip_forward

This is not enough in FC4. You should also enable trusted and masquarade for the LAN interface in SELinux.

0
comments

Mar 06

Password Hashing

How it got me Started:

I was going through the Passwords in Mysql and saw that all the passwords for users was in some cryptic text. Initially I thought that there is a function which Encoded the password before storing and decoded the password before comparing. Turned out that I was totally wrong.
( Read more )

0
comments