RE: [website] Incomplete information on the /about/license.html page

2009-06-29 Thread Srinivas Gadde




Will work for $69 per hour in California, and NYC, USA on W2. Austin $45, Rest 
of USA 60


Applying for any new positions that you may have! My resumes are online 
http://www.gecpvt.com/IpResume55.docx, http://www.gecpvt.com/IpResume55.docx. I 
am now in Del Valle (Near Austin), Texas, USA. I am a US Citizen.

I have 20 Years of professional experience with MSEE degreee with in depth 
Software, Hardware, and managerial Skills.


Will work for $40 per hour. I will relocate within USA, for other places please 
contact me first. I am a US Citizen. I also have work permit for India
and can get work permit for Australia.

Software, FPGA, VLSI, ASIC, DFT, RFIC, Databases, Internet,Networks, TCPIP, 
Embedded, Firmware, Bios, SS7, and many more ..
Please do not apply on my behalf for any position without contacting me.

To save Computer disk space, performance, and network bandwidth, I placed my 
resume files to

Resumes are at

http://www.gecpvt.com/IpResume55.docx
http://www.gecpvt.com/IpResume55.ppdf
http://www.gecpvt.com/IpResume56.docx (Management and India and USA).

All my 72 patents soft copies are at
http://www.gecpvt.com/future_patents/filed



I am hoping you can help me find another position!. I am qualified  for lot of  
positions.

I put usual detail below.



Austin, Texas 45 an hour on w2

Resume is at 

http://www.gecpvt.com/IpResume56.docx


San Antonio, Temple, Waco, texas 50 an hour on w2
Texas 55 an hour on w2.

California 72 an hour on w2.
NYC 78 an hour on w2.

Every where else. 66 an hour w2.


I have strong Communications, Electronics, Electrical, Software, DBMS, VLDB, 
SQL, Database,

Firmware,BIOS, embedded, ASIC, DFT, Allegro, VHDL, Verilog, Cadence, and 
AutoMobile. Heat Transfer, EMI,High End Electronics Manufacturing Management, 
Process Control,  and Mechanical background with lot of management expeience 
also.I  have 72 patents files and one granted and 4 of  therm about to 
begranted and many  trade secrest also.

http://www.gecpvt.com/IpResume56.docx.


I have MSEE and 2 year phd in Computer Science and Engineering.

I am gong to become automobile engineer also. Just not to sit around, I am 
working towards Auto ASE cetrificed Master Mechanic and I am fullyback into 
Electronic CAD, CAM. I am fully learning Mechanical, Cvilland Architectural CAD 
also.

I will be doing BIOSInstrumentation, Industrial Controls, 
Robotics,Semiconductor Manufacturing equipment process and 
software,PhotoVoltiaics, DSP, Medical Imaging, and Wind, Solar  alternatepower 
and machines.

I am very talented and I am very accomplished.

*
My resume copies are at 

http://www.gecpvt.com/IpResume55.pdf
http://www.gecpvt.com/IpResume55.docx
http://www.gecpvt.com/IppResume56.docx  latest for People and 
Project management.


Phone numbers are

408-329-7307,212-203-0684,512-524-3905. (CELL) 512-773-8922

srinivas


This electronic mail (including any attachments) may contain information that 
is privileged, confidential, and/or otherwise protected from disclosure to 
anyone other than its intended recipient(s). Any dissemination or use of this 
electronic email or its contents (including any attachments) by persons other 
than the intended recipient(s) is strictly prohibited. If you have received 
this message in error, please notify us immediately by reply email so that we 
may correct our internal records. Please then delete the original message 
(including any attachments) in its entirety. Thank you.



 
 From: mark.hind...@googlemail.com
 To: modperl@perl.apache.org
 Subject: [website] Incomplete information on the /about/license.html page
 Date: Tue, 9 Oct 2007 13:05:27 +0100
 
 
 The web page at:
 
 http://perl.apache.org/about/license.html
 
 only mentions the Apache Software License, Version 1.1 but mod_perl
 2.0 is licensed under the Apache License, Version 2.0.
 
 Perhaps this page should be update to include the new license (as well)?
 
 Regards,
 -Mark.
 
 

_
Windows Liveā„¢: Keep your life in sync. 
http://windowslive.com/explore?ocid=TXT_TAGLM_WL_BR_life_in_synch_062009

trying to add header field using PerlInputFilterHandler to proxy packets

2009-06-29 Thread Brandon Allgood
I am running an apache server 2.2.3 on CentOS 5.2.  I have turned on the
proxy with the following lines from my apache.conf:
 
IfModule mod_proxy.c
ProxyRequests On
Proxy *
Order deny,allow
Deny from all
Allow from all
/Proxy
/IfModule
 
I would like to add a header field to all requests going through the
proxy.  After doing a bunch of reading it seemed that setting up a
PerlInputFilterHandler was the right thing to do.  I added the following
lines to the apache.conf
 
PerlModule company::AddHeader
PerlInputFilterHandler company::AddHeader 
 
and I wrote the following example handler
 
package company::AddHeader;
 
use strict;
use warnings;
 
use Apache2::Filter ();
use Apache2::RequestRec ();
use APR::Table ();
 
use Apache2::Const -compile = qw(OK DECLINED);
 
my $debug = 1;
 
sub handler {
  my $f = shift;
 
  # if we have already seen this do nothing
  return Apache2::Const::DECLINED if $f-ctx;
 
  # get headers
  my $headers_in = $f-r-headers_in();
 
  # add header field
  $headers_in-set(Message,Hi Mom);
  $f-r-headers_in($headers_in);
 
  if($debug)
  {
open FILE, /tmp/out.log or die $!;
foreach my $key (keys %{$headers_in})
{
  print FILE $key = $headers_in-{$key}\n;
}
close FILE;
  }
 
  $f-ctx(1);
 
  return Apache2::Const::OK;
}
1;

As you can see, if debugging is turned on the headers are written to the
file /tmp/out.log.  The contents of out.log contains the new header, but
the requests being forwarded by the proxy don't seem to be altered.  Why
is the new header not being sent?
 
I am pretty sure I am missing something very simple, but have spent a
day trying to figure out what it is.  Any ideas?
 
cheers,
Brandon