+Own Free Projects.
[www.jankratochvil.net.git] / resume / Resume-JanKratochvil.html.pl
1 #! /usr/bin/perl
2
3 # $Id$
4 # Resume page Perl template.
5 # Copyright (C) 2003 Jan Kratochvil <project-www.jankratochvil.net@jankratochvil.net>
6
7 # This program is free software; you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; exactly version 2 of June 1991 is required
10
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 # GNU General Public License for more details.
15
16 # You should have received a copy of the GNU General Public License
17 # along with this program; if not, write to the Free Software
18 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19
20
21 package resume::ResumeJanKratochvil;
22 require 5.6.0;  # at least 'use warnings;' but we need some 5.6.0+ modules anyway
23 use vars qw($VERSION $CVS_ID);
24 $VERSION=do { my @r=(q$Revision$=~/\d+/g); sprintf "%d.".("%03d"x$#r),@r; };
25 $CVS_ID=q$Id$;
26 use strict;
27 use warnings;
28
29 BEGIN{ open F,"Makefile"; our $top_dir=pop @{[split /\s/,(grep /^top_srcdir/,<F>)[0]]}; eval "use lib '$top_dir'"; close F; }
30 use My::Web;
31 require CGI;
32 require Crypt::Rot13;
33 Wrequire 'My::Project';
34
35
36 my $W=My::Web->init(
37                 "__PACKAGE__"=>__PACKAGE__,
38                 "title"=>"Resume",
39                 "section"=>"Resume",
40                 "heading"=>0,
41                 "footer"=>0,
42                 "head_css"=>"
43 td { vertical-align: top; }
44 table { border-collapse: collapse; border-style: solid; border-width: 1px; margin: 8px; }
45 A[href] { text-decoration: inherit; /* revoke underline */ }
46 A[href].project { text-decoration: underline; }
47 .platform { font-style: italic; white-space: nowrap; }
48 table.referees td.com { text-align: center; }
49 .techs { white-space: nowrap; }
50 caption  { caption-side: top; }
51 table.jobs td { padding: 1ex; }
52 ",
53                 "args_check"=>{
54                                 "referees"=>'', # Do not bother with '^(?:(?i)referees)?$'
55                                 "print"=>'^(?:print)?$',
56                                 },
57                 );
58 My::Web->heading();
59
60
61 my %item=( My::Project::item_hash_read() );
62 my @itemnames=sort {
63                 ($item{$b}{"priority"} <=> $item{$a}{"priority"})
64                 or (lc($item{$a}->{"name"}) cmp lc($item{$b}->{"name"}));
65                 } keys(%item);
66
67 my $projectref=sub
68 {
69 my($name)=@_;
70
71         return a_href "/project/$name/",$item{$name}{"name"},"attr"=>'class="project"';
72 };
73
74 my $project=sub
75 {
76 my($name,%args)=@_;
77
78         my $r=&{$projectref}($name);
79         if (!$args{"bare"}) {
80                 my $summary=$item{$name}{"summary"};
81                 $summary=~s#(?:<a\s[^>]*>|</a>)##gi;    # if $args{"unhref"};
82                 if (!$args{"parenthesis"}) {
83                         $r.=": $summary";
84                         }
85                 else {
86                         $r.=" ($summary)";
87                         }
88                 }
89         return $r;
90 };
91
92 my $free_projects=sub (@)
93 {
94 my(@platforms)=@_;
95
96         my $r="";
97         $r.=join ", ",map({ my $platform=$_;
98                 map({ ($item{$_}{"sponsorship"} || $item{$_}{"trivia"}
99                                 || $item{$_}{"platform"} ne $platform ? () : (&{$projectref}($_))); } @itemnames);
100                 } @platforms);
101         return $r;
102 };
103
104
105 my $reference=sub ($$)
106 {
107 my($mail,$fullname)=@_;
108
109         my $r="";
110         $r.='<td>';
111                 $r.=$fullname;
112                 if (lc($W->{"args"}{"referees"}) eq "referees") {
113                         my $rot13=Crypt::Rot13->new();
114                         $rot13->charge($mail);
115                         $mail=($rot13->rot13())[0];
116                         $r.=' &lt;'.a_href("mailto:$mail",$mail).'&gt;';
117                         }
118         $r.='</td>';
119         return $r;
120 };
121
122 sub techs ($)
123 {
124 my($arg)=@_;
125
126         return '<span class="techs">('.$arg.')</span>';
127 }
128
129
130 my $uClinux=a_href 'http://www.uclinux.com/','uClinux';
131 my $mailme=(map({ a_href("mailto:$_",$_); } 'job@jankratochvil.net'))[0];
132 my $now=(localtime())[5]+1900;
133
134 print <<"HERE";
135 <table width="100%" style="border-style: none;"><tr><td align="center"><table>
136 <tr><td rowspan="10" style="padding: 10px; vertical-align: middle;">
137                                 @{[ img "/resume/Resume-JanKratochvil","face" ]}</td>
138                 <td class="tab-head">Name    </td><td>Jan Kratochvil</td></tr>
139 <tr><td class="tab-head">English </td><td>technical: fluent, general: communicable</td></tr>
140 <tr><td class="tab-head">Born    </td><td>1979</td></tr>
141 <tr><td class="tab-head">Sex     </td><td>male</td></tr>
142 <tr><td class="tab-head">Status  </td><td>single</td></tr>
143 <tr><td class="tab-head">Licenses</td><td>motorcycle, car</td></tr>
144 <tr><td class="tab-head">eMail   </td><td>$mailme</td></tr>
145 <tr><td class="tab-head">WWW     </td><td>@{[ a_href('http://www.jankratochvil.net/') ]}</td></tr>
146 <tr><td class="tab-head">Resume  </td><td>@{[ a_href('http://www.jankratochvil.net/resume/') ]}</td></tr>
147 <tr><td class="tab-head">OpenPGP </td><td style="font-family: monospace;">@{[ a_href '/pgp-JanKratochvil.txt',''
148                 .'pub  1024D/44FC7632 2002-10-07 Jan Kratochvil &lt;pgp-44FC7632@jankratochvil.net&gt;<br />'
149                 .'sub  2048g/D9F5F44B 2002-10-07 [expires 2004-10-06]' ]}</span></td></tr>
150 </table></td></tr></table>
151
152 @{[ vskip "3ex" ]}
153
154 <p style="font-size: larger;">Looking for a fulltime job. Relocation around the world expected.</p>
155
156 @{[ vskip "3ex" ]}
157
158 <table border="1" frame="border" rules="rows" class="jobs">
159 <caption>Contractor Jobs</caption>
160 <tr><th>Date</th><th>Client</th>
161                 <th>Description</th></tr>
162 <tr><td>2002-2003</td><td class="com">- (freelance project)</td>
163                 <td>@{[ &$project('captive') ]} (14 months)<br />
164                         Project required analysing portions of 80MB+ i386 disassembly dumps of MS-Windows XP kernel and ntfs.sys
165                         to achieve the first binary compatible reimplementation of the required undocumented XP kernel subsystems.<br />
166                         Written @{[ &$project('TraceFS') ]} as native W32 kernel hooking driver for run-time analysis of the NT Cache Manager
167                         XP kernel subsystem.<br />
168                         GNU/Linux part required integration and extensions of
169                         @{[ a_href 'http://lufs.sourceforge.net/lufs/','LUFS' ]} (Linux Userland File System)
170                         to transparently connect the UNIX userland based MS-Windows kernel filesystem isolated by CORBA/ORBit interface.
171                 </td></tr>
172 <tr><td>2001-2002</td><td class="com">@{[ a_href('http://www.atspraha.cz/','Advanced Telecom Services') ]}</td>
173                 <td>Mobile technologies
174                         <ul>
175                                 <li>MMS framework client via EuroTel GSM operator
176                                                 by technologies GSM MMS, Perl, XML, SOAP (3 months, still maintained)<br />
177                                                 Project included
178                                                 @{[ a_href "/etmms/",'pilot MMS Center debugging',"attr"=>'class="project"' ]} with
179                                                 Ethereal (@{[ a_href 'http://www.ethereal.com','external link' ]}), fixes of Ethereal
180                                                 (@{[ a_href '/project/etherealmmse/','1' ]}, @{[ a_href '/project/etherealwsp/','2' ]}).
181                                                 </li>
182                                 <li>Multimedia EMS support implemented by @{[ &$project('gsmperl',"bare"=>1) ]}</li>
183                                 <li>Implementation of protocol BIP (based on Nokia CIMD2 protocol) for GSM SMS Center direct communication
184                                                 by extending gnokii (@{[ a_href 'http://www.gnokii.org/','external link' ]})
185                                                 for EuroTel GSM operator (still in use)</li>
186                         </ul>
187                 </td></tr>
188 <tr><td>1999-2000</td><td class="com">@{[ a_href('http://www.suse.com/','SuSE') ]}</td>
189                 <td>@{[ &$project('surprise') ]} (15 months)<br />
190                         Project was completed as a team work. The code is based on Gnome technologies.
191                         As one of the subtasks to keep system bootability I implemented @{[ &$project('int13sniff',"bare"=>1) ]}
192                         to ease Microsoft boot loaders disassembly across partition modifications.
193                         </td></tr>
194 <tr><td>2001-2002</td><td class="com">@{[ a_href('http://www.readynote.com/','ReadyNote') ]}</td>
195                 <td>Mobile technologies for embedded devices
196                 <ul>
197                         <li>Completed debugging of gnokii (@{[ a_href 'http://www.gnokii.org/','external link' ]}) GSM software modem
198                                         for Nokia 5190</li>
199                         <li>Port of gnokii and my @{[ &$project('mdsms',"parenthesis"=>1) ]} to embedded
200                                         uClinux (@{[ a_href 'http://www.uclinux.org/','external link' ]})</li>
201                 </ul>
202                 </td></tr>
203 <tr><td>1999-2003</td><td class="com">@{[ a_href('http://www.jklabs.cz/','JKLabs') ]}</td>
204                 <td>System administration of GNU/Linux and FreeBSD, techsupport: GuestNET,
205                                 @{[ a_href 'http://www.2m.dk/web/html_version/eclipse/eclipse.html','Eclipse' ]},
206                                 @{[ a_href 'http://www.globaloop.com/','GlobaLoop' ]},
207                                 @{[ a_href 'http://www.antlimited.com/products/fresco.htm','Fresco' ]}<br />
208                         Ad hoc technical support challenges such as i386 IRQ redirector,
209                         @{[ &$project('middleman',"parenthesis"=>1,"unhref"=>1) ]} or @{[ &$project('ssht',"parenthesis"=>1,"unhref"=>1) ]}.
210                 </td></tr>
211 <tr><td>2001     </td><td class="com">@{[ a_href('http://www.gtsgroup.cz/','GTS') ]}</td>
212                 <td>@{[ &$project('tac_plus') ]} (3 months)</td></tr>
213 <tr><td>1999     </td><td class="com">@{[ a_href('http://www.unicom-prague.cz/','Unicom') ]}</td>
214                 <td>Technical translations from English</td></tr>
215 <tr><td>1998-1999</td><td class="com">@{[ a_href('http://www.geoinvest.cz/','Geoinvest') ]}</td>
216                 <td>Mobile technologies, embedded devices
217                         <ul>
218                                 <li>@{[ &$project('332') ]}</li>
219                                 <li>Siemens M1 GSM modem daemon for GPS, client/server setup, remote GSM terminals</li>
220                         </ul>
221                 </td></tr>
222 <tr><td>1999     </td><td class="com">@{[ a_href('http://www.tencom.cz/','TENcom Trade') ]}</td>
223                 <td>Mobile technologies
224                         <ul>
225                                 <li>@{[ a_href "/project/mdsms/","MobilDock SMS Tool","attr"=>'class="project"' ]}:
226                                                 SMS communication software for Digital UNIX (2 months)</li>
227                         </ul>
228                 </td></tr>
229 <tr><td>1998     </td><td class="com">@{[ a_href('http://www.elsa-online.org/',"European Law Students' Association") ]}</td>
230                 <td>@{[ &$project('step') ]}, requirement for fixes of
231                                 @{[ a_href "/project/phphash/","PHP","attr"=>'class="project"' ]} and
232                                 @{[ a_href "/project/pgsqlsubstr/","PostgreSQL","attr"=>'class="project"' ]}</td></tr>
233 <tr><td>1993-1996</td><td class="com">Profes J&amp;K</td>
234                 <td>PC assembly and customer service</td></tr>
235 <tr><td>1993     </td><td class="com">@{[ a_href('http://www.japhila.cz/index_en.htm','Japhila') ]}</td>
236                 <td>StampMan: Database application @{[ techs 'MS-DOS: Pascal, plainTeX' ]}</td></tr>
237 </table>
238
239 @{[ vskip "1ex" ]}
240
241 <table class="referees">
242 <caption>Contractor Jobs Referees (reversed chronological order)</caption>
243 <tr><td class="com">@{[ a_href('http://www.atspraha.cz/','Advanced Telecom Services') ]}</td>
244                 @{[ &{$reference}('zvpuny.ubenx(ng)ngfcenun.pm','Michal Horak') ]}</tr>
245 <tr><td class="com">@{[ a_href('http://www.readynote.com/','ReadyNote') ]}</td>
246                 @{[ &{$reference}('wcehrgg(ng)ernqlabgr.pbz','Jim Pruett') ]}</tr>
247 <tr><td class="com">@{[ a_href('http://www.jklabs.cz/','JKLabs') ]}</td>
248                 @{[ &{$reference}('wna.xbyne(ng)wxynof.pm','Jan Kolar') ]}</tr>
249 <tr><td class="com">@{[ a_href('http://www.gtsgroup.cz/','GTS') ]}</td>
250                 @{[ &{$reference}('Zvpunry.Znprx(ng)tgftebhc.pm','Michael Macek') ]}</tr>
251 <tr><td class="com">@{[ a_href('http://www.unicom-prague.cz/','Unicom') ]}</td>
252                 @{[ &{$reference}('erprcpr(ng)havpbz-centhr.pm','Valerie Bernardova') ]}</tr>
253 <tr><td class="com">@{[ a_href('http://www.geoinvest.cz/','Geoinvest') ]}</td>
254                 @{[ &{$reference}('ohgna(ng)trbvairfg.pm','Lubor Otta') ]}</tr>
255 <tr><td class="com">@{[ a_href('http://www.tencom.cz/','TENcom Trade') ]}</td>
256                 @{[ &{$reference}('grfne(ng)grapbz.pm','Petr Tesar') ]}</tr>
257 <tr><td class="com">@{[ a_href('http://www.japhila.cz/index_en.htm','Japhila') ]}</td>
258                 @{[ &{$reference}('wnavx(ng)wncuvyn.pbz','Bretislav Janik') ]}</tr>
259 HERE
260
261 if (lc($W->{"args"}{"referees"}) ne "referees") {
262         print <<"HERE";
263                 <tr><td style="padding: 10px;" colspan="2">
264                         <hr />
265                         <form method="post" action="@{[ top_dir $W->{"resume_url"} ]}">
266                                 <p>Enter the word '<b>referees</b>' (without quotes) to disclose e-mail addresses:</p>
267                                 <input type="text" size="15" name="referees" value="@{[ CGI::escapeHTML($W->{"args"}{"referees"}) ]}" />
268                                 <input type="submit" value="Submit" />
269                                 <p>(spambot protection)</p>
270                         </form>
271                 </td></tr>
272 HERE
273         }
274
275 print <<"HERE";
276 </table>
277
278 @{[ vskip "2ex" ]}
279
280 <table>
281 <caption>Awards</caption>
282 <tr><td>1997</td><td>Bronze medal in the International Olympiad in Informatics, South Africa - Cape Town</td></tr>
283 <tr><td>1997</td><td>2nd in an MO-P national contest - mathematics Olympiad, the programming category</td></tr>
284 <tr><td>1997</td><td>1st in the International Competition in Programming</td></tr>
285 <tr><td>1996</td><td>4th in the International Competition in Programming</td></tr>
286 <tr><td>1995</td><td>7th in the Central European Olympiad in Informatics</td></tr>
287 </table>
288
289 @{[ vskip "2ex" ]}
290
291 <table>
292 <caption>Experience Summary</caption>
293 <tr><td class="tab-head">Major Areas  </td><td>mobile technologies, filesystems, embedded devices</td></tr>
294 <tr><td class="tab-head">Platforms    </td><td>GNU/Linux/i386/UNIX/FreeBSD, W32 kernel, Amiga/680x0, MS-DOS,
295                                                ZX Spectrum, handheld PC-E500S</td></tr>
296 <tr><td class="tab-head">Languages    </td><td>C (Gnome/GCC), Perl, bash/awk/sed...,
297                                                Java, C++, Pascal, Basic, REXX, S-Lang, Foxplus, Prolog</td></tr>
298 <tr><td class="tab-head">Tools/Metalanguages</td>
299                                            <td>autoconf, automake, libtool, m4, CVS, gettext, bison, flex, ld&nbsp;script,
300                                                gdb&nbsp;script, Maple&nbsp;V</td></tr>
301 <tr><td class="tab-head">Assemblers   </td><td>i386, Motorola 680x0, Zilog&nbsp;Z80, Intel 8051, MIPS R2/3000,
302                                                (Hitachi SH-8)</td></tr>
303 <tr><td class="tab-head">WWW-Related  </td><td>(X)HTML, CSS, PHP, SQL (PostgreSQL, MySQL), JavaScript, CGI</td></tr>
304 <tr><td class="tab-head">Documentation</td><td>plainTeX, LaTeX, DocBook, DocBook Lite, XML/NS/Schema,
305                                                gtk-doc, nroff, pod</td></tr>
306 <tr><td class="tab-head">Libraries    </td><td>Gnome/GTK+/GLib, POSIX/BSD/SysV/threads/sockets, X11, OpenGL, NCurses,
307                                                S-Lang, GnomeVFS, libxml, SVGALib, NIS, Qt,...</td></tr>
308 <tr><td class="tab-head">RPC          </td><td>CORBA/ORBit, SOAP, WSDL, Sun&nbsp;RPC</td></tr>
309 <tr><td class="tab-head">Protocols    </td><td>GSM SMS/PDU/Nokia&nbsp;Smart&nbsp;Messaging/EMS/MMS/SMIL/WAP/WSP/AMR/ETSI stds/3GPP stds,
310                                                IPv4, HTTP, SMTP/RFC822/MIME, FTP, SSH, DHCP, POP3, NFSv2, PPP/LCP/IPCP,...</td></tr>
311 <tr><td class="tab-head">Filesystems  </td><td>ext2, FAT, AmigaFFS, ISO-9660</td></tr>
312 </table>
313
314 @{[ vskip "2ex" ]}
315
316 <table border="1" frame="border" rules="groups">
317 <caption>Own Free Projects</caption>
318 <thead>
319         <tr><td colspan="2" style="font-size: larger;" align="center">
320                 Detailed listing available at: @{[ a_href 'http://www.jankratochvil.net/projects/' ]}
321         </td></tr>
322 </thead>
323 <tr><th>Platform</th><th>Available Free Projects</th></tr>
324 HERE
325         my @platforms=@My::Project::platforms;
326         while (@platforms) {
327                 my $platform_sym =shift @platforms;
328                 my $platform_name=shift @platforms;
329                 print "<tr>";
330                         print '<td>'.a_href('/project/#'.$platform_sym,$platform_name).'</td>';
331                         print '<td>'.&{$free_projects}($platform_sym).'</td>';
332                 print "</tr>\n";
333                 }
334 print <<"HERE";
335 </table>
336 HERE
337
338
339 My::Web->footer();