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