Sending Resume

2003-11-30 Thread Engineer - Mgr



Hello  David

I'm looking for new project as independent CONSULTANT

Will call you tomorrow to schedule meeting as we were talking
before, possible this week or in Monday;



 
E-mail:   [EMAIL PROTECTED]

 
 
Tel. (408)  309-7006

Engineer
or Manager
or
INDEPENDENT CONSULTING
or
Engineering Manager
  
and/or
 
Senior Mechanical & Design ENGINEER,
 
Design Analyst
 
Program Manager
 
Project Manager, Product Manager
 
Product Development Specialist 
 
Manufacturing Engineering
 
Electro-Mechanical & Industrial Designer 
 
R&D, CADD Manager, SBIR
 
 
Over 20 years combine experience in 
Technical Managerial Positions 
performing Engineering & Design Service
Systems Design & System Integration, 
R&D, Product & Process Development, 
Projects & Products Engineering & Management, 
Manufacturing Operations & Preparation & 
Managing teams of Engineering Specialist;
 
 
08-1993 to present;
 
MECH-TRONIC DESIGN & MFG; SANTA CLARA, CA
Engineering Manager, Project & Product Manager,
SR. Mechanical & Design Engineer, CADD Manager. 
 
 
Duties included:
 
Preparing technical documentation, calculations, 
engineering, design, layouts, drawings, 
3D and Solid Modeling, development & propositions. 
 
Hard Drive Designing, testing, balancing, 
recalculating and redesign. 
Solid Works, Mechanical Desktop.
 
Manufacturing and Assembly Equipment design and  build. 
Hard Drive Testing Equipment design & mfg.  
 
Tooling and Operations Development, 
Implementation & Automation for mass production.   
 
Pro-E, CADD Management, Automation and Operations, 
Analyzing, AutoCAD 2000 & M D, Win 95/98/2000/NT, 
Creating, revising & implementing improvements to existing
and new manufacturing processes.  
 
Mfg & Assy Development & support. 
 
Cost study and cost reduction analyzing.  
Purchasing manufacturing equipment, 
Bill of Materials creation. 
 
Copy Machines & Color commercial Printers design & build. 
Paper path & Heads - dynamic orientation. 
 
Rapid Thermo Processing, 
Wafer 200 & 300 mm with automatic Door and manual inserting,
Scanners, Sensors & Cassette opening and rotation, 
 
LASER & Equipment & Motion Control. 
Fiber Optics equipment, enclosures, connectors, 
tools & manufacturing; assembly equipment design & build. 
 
Wafer Handling & Processing Equipment, Stages & Sliders, 
Thickness Measurement, Robotics. 
Network & Electronic / Computer Testing Equipment. 
Plastic & Enclosures Design & Build; 
 
Hard Drive, modems, ICT Equipment Des, Mfg & Assy. 
 
Teaching Mechanical Engineering and  Descriptive Geometry, CADD. 
Computer Graphics, Electro - Mechanical Engineering & Design, 
 
AutoCAD, Plotting, DOS, Lecture and practical assignment. 
Software and computer support. 
 
Electrical & Mechanical Projects,  
Production Equipment & Machinery. 
 
Designing Electric Cars, Analyzes & Calculations, 
Prototypes electronic and electrical schematic Layouts, 
mechanical detailing & body shell. 
CAD and Plotting Station Management, Lib, 
Analyzes & Calculations, Prototypes & Product Mfg.
 
Development, design & redesigning mechanical components
for manufacturing, Assembly draw, 
Customizing  Electronic, Mechanical and Electrical Equipment, 
AutoCAD,  Spreadsheet, Basic, dB; Lotus, Excel, Paradox, Quadro
 
Project Management & Production, scheduling, quality control,
controlling & production planning injection molding, 
plastic parts and elements design and manufacturing 
 
 
Manufacturing hydraulic & pneumatic equipment, 
machinery and control systems, mechanisms, robotics device,
precision machine elements. 
 
Inspecting and control manufacturing standards,
analyzing stresses and tolerances, selecting materials, 
engineering computations and technical improvements, 
documentation, projects development, supplying. 
 
Automation, Conveyors, Spiral Elevator, 
Fast Cannery Transportation, 
Electronic and Electrical Components, 
Master Control Center, 
Sheet Metal Oven Rebuilding Project.
 
LASER MEDICAL DEVICE, Lasers, Optics, Fiber Optics
3 SETS OF OPTICAL LENSES MOVE-AUTOMATON COLIMMATOR
 
Project Management, Design, Product Development
 
Manufacturing, Production, Operation Manager
 
Sales & Customer Service
 
Transportation & Shop Manager
 
Service Station Operating & Management
 
 
CREATIVE THINKING AND SOLUTION DEVELOPMENT
 
OPEN FOR TRAVEL (domestic /international)
 
US Citizen
 
Permanent preferred
 
INDEPENDENT CONSULTING 
 
TEL. (408)  309-7006 E-mail: [EMAIL PROTECTED]





failure building HEAD

2003-11-30 Thread Robert Collins
checking whether autoconf is installed... yes
checking whether autoconf works... no
configure: error: The installed version of autoconf does not work.
Please check config.log for error messages before this one.

I get the above configuring CVS automake.

from config.log:

configure:1819: eval autoconf --version
autoconf (GNU Autoconf) 2.58
Written by David J. MacKenzie and Akim Demaille.

Copyright (C) 2003 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is
NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR
PURPOSE.
configure:1822: $? = 0 
configure:1830: result: yes
configure:1840: checking whether autoconf works
configure:1847: cd conftest && eval autoconf -o /dev/null conftest.ac
autom4te: cannot open /dev/null.tmp: Permission denied

Is this a 'need to use 2.59' thing? (If so, the error is misleading).

autoconf, invoked directly on other projects, works -just fine-.

Rob

-- 
GPG key available at: .





Re: Non-recursive make & maintenance issue

2003-11-30 Thread Bob Friesenhahn
On Sun, 30 Nov 2003, Alexandre Duret-Lutz wrote:

> >>> "Bob" == Bob Friesenhahn <[EMAIL PROTECTED]> writes:
>
> [...]
>
>  Bob> In other words, dealing with junk like
>
>  Bob> apps_build_postgres_src_build_postgres_SOURCES
>
>  Bob> is very tiring and failure prone.  Is there a reason why it can't
>  Bob> simply be
>
>  Bob> apps/build-postgres/src/build-postgres_SOURCES ?
>
> Yes.  Makefile variable names can only consist of alphanumerics,
> underscores, and periods.  Use of any other character is not
> standard, and likely not portable.
>
> `/' is definitely not portable; for instance OSF1 Make has a
> special operator $(MACRO/left/right) that would conflict with
> such variable names.

Makefile.am is *not* a Makefile.  It is input to a tool which
processes it into a Makefile.  I see no reason why Makefile.am can not
incorporate features and syntax which diverge from 'make' since the
tool (Automake) transforms this into strict make syntax.  If a
Makefile.am identifier violates 'make' syntax, then it can simply be
transformed into an identifier which is compatible with 'make' syntax.
With a little care, emacs can still edit Makefile.am in Makefile
mode.

A legacy implementation simplification is causing non-recursive
Makefiles to be tremendously more difficult to develop and maintain
than need be.  Recursive makefiles only occassionally need
name-munging to comply with Automake syntax (if the author chose an
odd name for his library or program), but non-recursive makefiles need
this name-munging for each and every target definition since
subdirectory paths include '/'.

If Automake has a reliable way to tell when an identifier must be
munged, then there is no reason why it can't do this automatically
while it generates the Makefile.in files.

Bob
==
Bob Friesenhahn
[EMAIL PROTECTED]
http://www.simplesystems.org/users/bfriesen





Re: Non-recursive make & maintenance issue

2003-11-30 Thread Alexandre Duret-Lutz
>>> "Bob" == Bob Friesenhahn <[EMAIL PROTECTED]> writes:

[...]

 Bob> In other words, dealing with junk like

 Bob> apps_build_postgres_src_build_postgres_SOURCES

 Bob> is very tiring and failure prone.  Is there a reason why it can't
 Bob> simply be

 Bob> apps/build-postgres/src/build-postgres_SOURCES ?

Yes.  Makefile variable names can only consist of alphanumerics,
underscores, and periods.  Use of any other character is not
standard, and likely not portable.

`/' is definitely not portable; for instance OSF1 Make has a
special operator $(MACRO/left/right) that would conflict with
such variable names.
-- 
Alexandre Duret-Lutz





Re: SUBDIRs and slashes

2003-11-30 Thread Alexandre Duret-Lutz
>>> "Marty" == Marty Leisner <[EMAIL PROTECTED]> writes:

[...]

 Marty> common/Makefile.am:1: directory should not contain `/'

 Marty> Just wondering for some thoughts on this matter...is
 Marty> there any reason to insist on single level source
 Marty> directories in recursive make...

I can't think of any.
-- 
Alexandre Duret-Lutz