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