9691fc3e17cf7558c490a6af1e0dd959974569ab
[www.jankratochvil.net.git] / resume / ResumeJanKratochvil.pm
1 # $Id$
2 # Resume page Perl template.
3 # Copyright (C) 2003-2005 Jan Kratochvil <project-www.jankratochvil.net@jankratochvil.net>
4
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; exactly version 2 of June 1991 is required
8
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 # GNU General Public License for more details.
13
14 # You should have received a copy of the GNU General Public License
15 # along with this program; if not, write to the Free Software
16 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
17
18
19 package resume::ResumeJanKratochvil;
20 require 5.6.0;  # at least 'use warnings;' but we need some 5.6.0+ modules anyway
21 use vars qw($VERSION $CVS_ID);
22 $VERSION=do { my @r=(q$Revision$=~/\d+/g); sprintf "%d.".("%03d"x$#r),@r; };
23 $CVS_ID=q$Id$;
24 use strict;
25 use warnings;
26
27 use My::Web;
28 require Crypt::Rot13;
29 Wrequire 'project::Lib';
30 Wrequire 'product::Lib';
31
32
33 sub Contact($)
34 {
35 my($self)=@_;
36
37         return (
38                 "Name"    =>"Jan Kratochvil",
39                 "English" =>"technical: fluent, general: communicable",
40                 "Born"    =>"1979",
41                 "Sex"     =>"male",
42                 "eMail"   =>a_href('mailto:web@jankratochvil.net'),
43                 "Projects"=>a_href('http://www.jankratochvil.net/project/'),
44                 "Resume"  =>a_href('http://www.jankratochvil.net/resume/')."<br />"
45                             ."[ ".join(" | ",
46                                        a_href('/resume/ResumeJanKratochvil.pdf','PDF'),
47                                        a_href('/resume/ResumeJanKratochvil.txt','text'),
48                                        )." ]",
49                 "OpenPGP" =>a_href('/pgp-JanKratochvil.txt','4D2089DB'),
50         );
51 }
52
53 sub handler
54 {
55 my $W=My::Web->init(
56                 "title"=>"Resume",
57                 "section"=>"Resume",
58                 "heading"=>0,
59                 "footer"=>0,
60                 "css_push"=>"/resume/ResumeJanKratochvil.css",
61                 "args_check"=>{
62                                 "referees"=>'', # Do not bother with '^(?:(?i)referees)?$'
63                                 "print"=>'^(?:print)?$',
64                                 },
65                 "http_safe"=>1, # For our anti-robot POST request.
66                 "no_job"=>1,
67                 );
68 $W->{"args"}{"Wabs"}=1;
69 My::Web->heading();
70
71
72 my %item=(
73         project::Lib->name_to_hashref(),
74         product::Lib->name_to_hashref(undef(),"override"=>{"platform"=>"product"}),
75         );
76 my @itemnames=sort {
77         ($item{$b}{"priority"} <=> $item{$a}{"priority"})
78         or (lc($item{$a}->{"name"}) cmp lc($item{$b}->{"name"}));
79         } keys(%item);
80
81 my $projectref=sub
82 {
83 my($name,%args)=@_;
84
85         my $project_product=($args{"product"} ? "product" : "project");
86         return a_href "/$project_product/$name/",$item{$name}{"name"},"attr"=>'class="'.$project_product.'"';
87 };
88
89 # $args{"parenthesis"}=1;
90 # $args{"product"}=1;
91 my $project=sub
92 {
93 my($name,%args)=@_;
94
95         my $r=&{$projectref}($name,%args);
96         if (!$args{"bare"}) {
97                 my $summary=$item{$name}{"summary"};
98                 $summary=~s#(?:<a\s[^>]*>|</a>)##gi;    # if $args{"unhref"};
99                 if (!$args{"parenthesis"}) {
100                         $r.=": $summary";
101                         }
102                 else {
103                         $r.=" ($summary)";
104                         }
105                 }
106         return $r;
107 };
108
109 my $free_projects=sub (@)
110 {
111 my(@platforms)=@_;
112
113         my $r="";
114         $r.=join ", ",map({ my $platform=$_;
115                 map({ (0
116                                 # || $item{$_}{"sponsorship"}
117                                 || $item{$_}{"trivia"}
118                                 || $item{$_}{"platform"} ne $platform ? () : (&{$projectref}($_))); } @itemnames);
119                 } @platforms);
120         return $r;
121 };
122
123
124 my $reference=sub ($$)
125 {
126 my($mail,$fullname)=@_;
127
128         my $r="";
129         $r.='<td>';
130                 $r.=$fullname;
131                 if (lc($W->{"args"}{"referees"}) eq "referees") {
132                         my $rot13=Crypt::Rot13->new();
133                         $rot13->charge($mail);
134                         $mail=($rot13->rot13())[0];
135                         $r.=' &lt;'.a_href("mailto:$mail").'&gt;';
136                         }
137         $r.='</td>';
138         return $r;
139 };
140
141 sub techs ($)
142 {
143 my($arg)=@_;
144
145         return '<span class="techs">('.$arg.')</span>';
146 }
147
148
149 my $uClinux=a_href 'http://www.uclinux.com/','uClinux';
150 my $now=(localtime())[5]+1900;
151
152 print <<"HERE";
153 <table border="0" class="margin-center">
154 HERE
155 my @contact=__PACKAGE__->Contact();
156 while (@contact) {
157         my $key=shift @contact;
158         my $val=shift @contact;
159         print <<"HERE";
160 <tr>
161         <td class="tab-head">$key</td>
162         <td@{[ ($key ne "OpenPGP" ? '' : ' style="font-family: monospace; text-align: left;"') ]}>$val</td>
163 </tr>
164 HERE
165         }
166 print <<"HERE";
167 </table>
168
169 @{[ vskip "2ex" ]}
170
171 <p>Not looking for a new job.</p>
172
173 @{[ vskip "2ex" ]}
174
175 <table border="1" frame="border" rules="rows" class="jobs">
176 <caption>Fulltime Jobs</caption>
177 <tr><th>Date</th><th>Company</th>
178                 <th>Description</th></tr>
179 <tr><td>2006/07-...</td><td class="com">@{[ a_href 'http://www.redhat.com/','Red Hat' ]}</td>
180                 <td>GNU Compiler Tools development: primarily @{[ a_href 'http://www.gnu.org/software/gdb/','GDB' ]}</td></tr>
181 <tr><td>2005/04-11</td><td class="com">@{[
182                                                 a_href_cc {""=>'http://www.valinux.co.jp/en/',
183                                                          "JP"=>'http://www.valinux.co.jp/'},'VA Linux Systems Japan' ]}</td>
184                 <td>@{[ a_href 'http://www.kernel.org/','Linux kernel' ]}
185                                                 based software development</td></tr>
186 <tr><td>2004/01-11</td><td class="com">@{[ a_href 'http://www.sun.com/','Sun Microsystems' ]}</td>
187                 <td>@{[ a_href 'http://www.sun.com/software/javaenterprisesystem/','Java Enterprise System' ]}
188                                                 Quality Assurance (JES&nbsp;QA), technical lead<br />
189                                 JES components compatibility analysis, automation of QA&nbsp;tasks,
190                                 JES testing, QA&nbsp;frameworks pilot deployments,
191                                 architecture and lead of the team projects, team programming guidelines
192                                 </td></tr>
193 </table>
194
195 @{[ vskip "1ex" ]}
196
197 <table border="1" frame="border" rules="rows" class="jobs">
198 <caption>Freelance Commercial Projects</caption>
199 <tr><th>Date</th>
200                 <th>Description</th></tr>
201 <tr id="mms2"><td>2005-2006</td>
202                 <td>@{[ &$project('mms2',"product"=>1) ]} (@{[ a_href_cc {""=>'http://www.mms2.org/',
203                                                                         "CZ"=>'http://www.mms2.cz/',
204                                                                         "SK"=>'http://www.mms2.cz/'},'service web' ]})<br />
205                         Web interface was outsourced.
206                         Commercial service management held together with company JK-Invent.
207                         <ul>
208                                 <li>Designed to coexist with existing GSM networks service servers</li>
209                                 <li>MMSE/WAP-Push/web/mail convergency featuring smart transformations</li>
210                                 <li>Credits charging by ISDN IVR + automatic bank transaction acceptance interface</li>
211                                 <li>Completed alpha and beta product cycle for mobile phones firmware bugs workarounds</li>
212                                 <li>Free gatewaying program for customers to avoid targetted GSM operators firewalling</li>
213                         </ul>
214                 </td></tr>
215 <tr><td>2004     </td>
216                 <td>@{[ &$project('hotelgate',"product"=>1) ]}<br />
217                         Plug&amp;Play TCP/IP for clients, selectively ticketed and/or free access,
218                         simplified interface for reception desks, easy and unified management.<br />
219                         European facility installations provided by @{[ a_href 'http://www.jklabs.cz/','JK&nbsp;Labs' ]}.
220                 </td></tr>
221 <tr id="captive"><td>2002-2003</td>
222                 <td>@{[ &$project('captive') ]}<br />
223                         Featured @{[ a_href 'http://slashdot.org/article.pl?sid=03/12/02/1536227','on slashdot' ]}.<br />
224                         Analysis of portions of 80MB+ i386 disassembly dumps of MS-Windows XP kernel and ntfs.sys
225                         for the first binary compatible reimplementation of the undocumented XP kernel subsystems.<br />
226                         Written @{[ &$project('TraceFS') ]}: MS-Windows Kernel API Tracer
227                         as native W32 kernel hooking driver for run-time analysis of the NT Cache Manager
228                         XP kernel subsystem.<br />
229                         UNIX userland of Captive provides GnomeVFS interface to the MS-Windows kernel
230                         based MS-Windows filesystem isolated by the CORBA/ORBit interface.
231                 </td></tr>
232 </table>
233
234 @{[ vskip "1ex" ]}
235
236 <table border="1" frame="border" rules="rows" class="jobs">
237 <caption>Contractor Jobs</caption>
238 <tr><th>Date</th><th>Client</th>
239                 <th>Description</th></tr>
240 <tr><td>2001-2002</td><td class="com">@{[ a_href('http://www.atspraha.cz/','Advanced Telecom Services') ]}</td>
241                 <td>Mobile technologies
242                         <ul>
243                                 <li>MMS framework client via EuroTel GSM operator
244                                                 by technologies GSM&nbsp;MMS, Perl, XML, SOAP<br />
245                                                 Project included
246                                                 @{[ a_href "/etmms/",'pilot MMS Center debugging',"attr"=>'class="project"' ]} with
247                                                 Ethereal (@{[ a_href 'http://www.ethereal.com','external link' ]}), fixes of Ethereal
248                                                 (@{[ a_href '/project/etherealmmse/','1' ]}, @{[ a_href '/project/etherealwsp/','2' ]}).
249                                                 </li>
250                                 <li>Multimedia EMS support implemented by @{[ &$project('gsmperl',"bare"=>1) ]}</li>
251                                 <li>Implementation of protocol BIP (based on Nokia CIMD2 protocol) for GSM SMS Center direct communication
252                                                 by extending gnokii (@{[ a_href 'http://www.gnokii.org/','external link' ]})
253                                                 for EuroTel GSM operator</li>
254                         </ul>
255                 </td></tr>
256 <tr><td>1999-2000</td><td class="com">@{[ a_href('http://www.suse.com/','SuSE') ]}</td>
257                 <td>@{[ &$project('surprise') ]}<br />
258                         Project was completed as a team work. The code is based on Gnome technologies.
259                         As one of the subtasks to keep system bootability I implemented @{[ &$project('int13sniff',"bare"=>1) ]}
260                         to ease Microsoft boot loaders disassembly across partition modifications.
261                         </td></tr>
262 <tr><td>2001-2002</td><td class="com">@{[ a_href('http://www.readynote.com/','ReadyNote') ]}</td>
263                 <td>Mobile technologies for embedded devices
264                 <ul>
265                         <li>Completed debugging of gnokii (@{[ a_href 'http://www.gnokii.org/','external link' ]}) GSM software modem
266                                         for Nokia 5190</li>
267                         <li>Port of gnokii and my @{[ &$project('mdsms',"parenthesis"=>1) ]} to embedded
268                                         uClinux (@{[ a_href 'http://www.uclinux.org/','external link' ]})</li>
269                 </ul>
270                 </td></tr>
271 <tr><td>1999-2003</td><td class="com">@{[ a_href('http://www.jklabs.cz/','JKLabs') ]}</td>
272                 <td>System administration of GNU/Linux and FreeBSD, techsupport: GuestNET,
273                                 @{[ a_href 'http://www.2m.dk/web/html_version/eclipse/eclipse.html','Eclipse' ]},
274                                 @{[ a_href 'http://www.globaloop.com/','GlobaLoop' ]},
275                                 @{[ a_href 'http://www.antlimited.com/products/fresco.htm','Fresco' ]}<br />
276                         Ad hoc technical support challenges such as i386 IRQ redirector,
277                         @{[ &$project('middleman',"parenthesis"=>1,"unhref"=>1) ]} or @{[ &$project('ssht',"parenthesis"=>1,"unhref"=>1) ]}.
278                 </td></tr>
279 <tr><td>2001     </td><td class="com">@{[ a_href('http://www.gtsgroup.cz/','GTS') ]}</td>
280                 <td>@{[ &$project('tac_plus') ]}</td></tr>
281 <tr><td>1999     </td><td class="com">@{[ a_href('http://www.unicom-prague.cz/','Unicom') ]}</td>
282                 <td>Technical translations from English</td></tr>
283 <tr><td>1998-1999</td><td class="com">@{[ a_href('http://www.geoinvest.cz/','Geoinvest') ]}</td>
284                 <td>Mobile technologies, embedded devices
285                         <ul>
286                                 <li>@{[ &$project('332') ]}</li>
287                                 <li>Siemens M1 GSM modem daemon for GPS, client/server setup, remote GSM terminals</li>
288                         </ul>
289                 </td></tr>
290 <tr><td>1999     </td><td class="com">@{[ a_href('http://www.tencom.cz/','TENcom Trade') ]}</td>
291                 <td>Mobile technologies
292                         <ul>
293                                 <li>@{[ a_href "/project/mdsms/","MobilDock SMS Tool","attr"=>'class="project"' ]}:
294                                                 SMS communication software for Digital UNIX</li>
295                         </ul>
296                 </td></tr>
297 <tr><td>1998     </td><td class="com">@{[ a_href('http://www.elsa-online.org/',"European Law Students' Association") ]}</td>
298                 <td>@{[ &$project('step') ]} incl. fixes of
299                                 @{[ a_href "/project/phphash/","PHP","attr"=>'class="project"' ]} and
300                                 @{[ a_href "/project/pgsqlsubstr/","PostgreSQL","attr"=>'class="project"' ]}</td></tr>
301 <tr><td>1993-1996</td><td class="com">Profes J&amp;K</td>
302                 <td>PC assembly and customer service</td></tr>
303 <tr><td>1993     </td><td class="com">@{[ a_href('http://www.japhila.cz/index_en.htm','Japhila') ]}</td>
304                 <td>StampMan: Database application @{[ techs 'MS-DOS: Pascal, plainTeX' ]}</td></tr>
305 </table>
306
307 @{[ vskip "2ex" ]}
308
309 <table>
310 <caption>Awards</caption>
311 <tr><td>1997</td><td>Bronze medal in the International Olympiad in Informatics, South Africa - Cape Town</td></tr>
312 <tr><td>1997</td><td>2nd in an MO-P national contest - mathematics Olympiad, the programming category</td></tr>
313 <tr><td>1997</td><td>1st in the International Competition in Programming</td></tr>
314 <tr><td>1996</td><td>4th in the International Competition in Programming</td></tr>
315 <tr><td>1995</td><td>7th in the Central European Olympiad in Informatics</td></tr>
316 </table>
317
318 @{[ vskip "2ex" ]}
319
320 <table>
321 <caption>Experience Summary</caption>
322 <tr><td class="tab-head">Major Areas  </td><td>mobile technologies, filesystems, embedded devices</td></tr>
323 <tr><td class="tab-head">Platforms    </td><td>GNU/Linux/i386/UNIX/FreeBSD, W32 kernel, Amiga/680x0, MS-DOS,
324                                                ZX Spectrum, handheld PC-E500S</td></tr>
325 <tr><td class="tab-head">Languages    </td><td>C (Gnome/GCC), Perl, bash/awk/sed...,
326                                                Java, C++, Pascal, Basic, REXX, S-Lang, Foxplus, Prolog</td></tr>
327 <tr><td class="tab-head">Tools/Metalanguages</td>
328                                            <td>autoconf, automake, libtool, m4, CVS, gettext, bison, flex, ld&nbsp;script,
329                                                gdb&nbsp;script, Maple&nbsp;V</td></tr>
330 <tr><td class="tab-head">Assemblers   </td><td>i386/x86_64, Motorola 680x0, Zilog&nbsp;Z80, Intel 8051, MIPS R2/3000,
331                                                (Hitachi SH-8)</td></tr>
332 <tr><td class="tab-head">WWW-Related  </td><td>HTML/XHTML, CSS, PHP, SQL (PostgreSQL, MySQL), JavaScript, CGI</td></tr>
333 <tr><td class="tab-head">Documentation</td><td>plainTeX, LaTeX, DocBook, DocBook Lite, XML/NS/Schema,
334                                                gtk-doc, nroff, pod</td></tr>
335 <tr><td class="tab-head">Libraries    </td><td>Gnome/GTK+/GLib, POSIX/BSD/SysV/threads/sockets, X11, OpenGL, NCurses,
336                                                S-Lang, GnomeVFS, libxml, libneon, SVGALib, NIS, Qt,...</td></tr>
337 <tr><td class="tab-head">RPC          </td><td>CORBA/ORBit, SOAP, WSDL, Sun&nbsp;RPC</td></tr>
338 <tr><td class="tab-head">Protocols    </td><td>GSM SMS/PDU/Nokia&nbsp;Smart&nbsp;Messaging/EMS/WAP/WTP/WSP/MMSE/SMIL/WML/AMR/ETSI stds/3GPP stds,
339                                                IPv4, HTTP, SMTP/RFC822/MIME, FTP, SSH, DHCP, POP3, IMAP4, NFS v2/v3, PPP/LCP/IPCP,...</td></tr>
340 <tr><td class="tab-head">Filesystems  </td><td>ext2, FAT, AmigaFFS, ISO-9660</td></tr>
341 <tr><td class="tab-head">Certificates </td><td>@{[ a_href('http://www.redhat.com/rhce/rhce805008572734652.html','RHCE') ]}</td></tr>
342 </table>
343
344 @{[ vskip "2ex" ]}
345
346 <table border="1" frame="border" rules="groups">
347 <caption>My Own Free Projects</caption>
348 <thead>
349         <tr><td colspan="2" style="font-size: larger;" align="center">
350                 Detailed listing available at: @{[ a_href 'http://www.jankratochvil.net/projects/' ]}
351         </td></tr>
352 </thead>
353 <tbody>
354         <tr><th>Platform</th><th>Available Free Projects</th></tr>
355 HERE
356         my @platforms=@project::Lib::platforms;
357         while (@platforms) {
358                 my $platform_sym =shift @platforms;
359                 my $platform_name=shift @platforms;
360                 print "<tr>";
361                         print '<td>'.a_href('/project/#'.$platform_sym,$platform_name).'</td>';
362                         print '<td>'.&{$free_projects}($platform_sym).'</td>';
363                 print "</tr>\n";
364                 }
365 print <<"HERE";
366 </tbody>
367 </table>
368 HERE
369
370
371 exit;
372 }
373 1;