Commit 199cbfe0 authored by nimrod's avatar nimrod
Browse files

- Make the master branch completely generic (without my settings or resume).

parent 52a5bd3c
Loading
Loading
Loading
Loading
+10 −3
Original line number Diff line number Diff line
# Server name to upload
SERVER = hostname.tld

# Destination folder on the server
DEST = /var/www/resume

# Source resume
RESUME = resume.rst

# Output paper size
PAPERSIZE = A4
SERVER = www.shore.co.il
DEST = /var/www/htdocs/www.shore.co.il/resume

.PHONY: all clean publish test

@@ -20,7 +27,7 @@ resume.odt: $(RESUME)
all: resume.html resume.pdf resume.docx resume.odt

clean:
	rm -f resume.html resume.pdf resume.docx resume.odt
	rm -f resume.html resume.pdf resume.docx resume.odt *.log

publish: all
	rsync -az resume.html resume.pdf resume.odt resume.docx $(SERVER):$(DEST)
+9 −7
Original line number Diff line number Diff line
Nimrod Adar's resume
====================
Resume generator
================

My resume in RestructureText, make targets for generating PDF, HTML, ODT and
DOCX versions and uploading to my web server. The pre-prepared version are
available `here <https://www.shore.co.il/blog/pages/about-me.html>`_.
A (very) little framework to generate your resume from whatever markup that
suits you (and that Pandoc can read).

Dependencies
------------

Make, pandoc, rsync, pdflatex (in :code:`Debian texlive-latex-base` provides
pdflatex, also 'texlive-fonts-recommended' is needed for the fonts it provides).
Make, pandoc, rsync, pdflatex (in Debian texlive-latex-base provides pdflatex,
also texlive-fonts-recommended is needed for the fonts it provides).

Usage
-----

The various settings (input file, server name to upload, etc.) are specified in
the :code:`Makefile`, adjust according to your needs.

To build the pdf version (same for odt, html, docx)

.. code:: shell

resume.rst

deleted100644 → 0
+0 −96
Original line number Diff line number Diff line
Nimrod Adar - Resume (November 2015)
####################################

Contact information
-------------------

:Tel:
   +972-52-871-3696

:Mail:
   nimrod@shore.co.il

:Blog:
    https://www.shore.co.il/blog/

:Git repos:
    https://www.shore.co.il/cgit/

About me
--------

- Born in ’83.

- Resides in Haifa, Israel.

- German and Israeli citizenship.

- First computer - 1989, first program - 1993, first homelab - 1999.

- Python backend developer (dabbled in C, C++, Scheme, Pascal, Perl, PHP, JS,
  Ruby, currently learning Clojure and Lua).

- sh < Awk < Fabric < Ansible.

- Believe in secure by default, not implemented if not reproducable (that
  includes testing), build with failure in mind and opensource.

- Speaks Hebrew (mother tongue), English (Fluent) and some Yiddish.

- Avid sailor, used to be rank 2nd in Israel in 5.5m Catamarens.

- Likes: Python, Ansible, git, SSH, vim, local unit test, automated CI tests.

- Dislikes: Bureaucracy, knowledge silos, 

Employment
----------

:2014-2015:
  DevOps in `Wise ecommerce <https://www.wiser.com/>`_, in charge of
  reliability, automation, scaling. Helped transition the company from single
  physical server to AWS. Proudest moment: scaling a single process to 10,000s
  of requests a minute running on 10s of nodes on AWS (using Ansible and LXC).

:2013-2014:
   Sysadmin in Intel Haifa, managing a cluster of ~250 SuSE Linux servers and
   ~80 TB of EMC and NetApp NAS appliances in production and DR replicated
   environments, shell and Python scripting, automation, software deployment,
   monitoring and growth projection.

:2008-2013:
  Technical director of Haifa's cinematheque. Setup a windows based ticketing
  system with PowerShell automation, new LAMP based web site with online
  orders, new digital projection system with Linux-based players, networking
  projection rooms and self built 20TB NAS based on Debian.

:2007-2009:
   Volunteered as a tutor at Hadar Haifa learning center, teaching math and
   English.

:2007-2008:
    Jr. sysadmin and helpdesk in Haifa University' library. Assisted in
    decommissioning a Novell directory and moving to Active Directory and
    supported Windows and RHEL servers, networking, VMware ESX, backup and
    Windows Terminal Services with thin-clients.

Education
---------

:2007-2010:
   Haifa University, majoring in CS.

:2006:
   Technion, majoring in MIS

Military Service
----------------

:2002-2005:
   L.T. Of the Israeli Navy Commanding School, exemplary service.

Job expectations
----------------

Looking for a sysadmin/ devops position. Preferably in Haifa, Tel-aviv or
anywhere with a train station near, remote work is also possible.

settings.mk

0 → 100644
+11 −0
Original line number Diff line number Diff line
# Server name to upload
SERVER = hostname.tld

# Destination folder on the server
DEST = /var/www/resume

# Source resume
RESUME = resume.rst

# Output paper size
PAPERSIZE = A4