summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--content/pages/about.rst25
-rw-r--r--content/pages/contact.rst2
-rw-r--r--pelicanconf.py9
3 files changed, 20 insertions, 16 deletions
diff --git a/content/pages/about.rst b/content/pages/about.rst
index b83141c..2c0111c 100644
--- a/content/pages/about.rst
+++ b/content/pages/about.rst
@@ -5,30 +5,25 @@ About
:author: Vasudeva Kamath
I'm Vasudeva Kamath pronounced as *Vāsudēva Kāmat* , a Software
-Engineer from India. I hold a dayjob at a MNC in day and night time
-hack on free software project which interests me.
+Engineer from India. I work in Bangalore.
I grew up and studied in city of `Karkala
<http://en.wikipedia.org/wiki/Karkala>`_ which is in State of
-Karnataka in South India (West Coast). Currently I live in Bangalore
-where I do my day job.
+Karnataka in South India (West Coast).
Free and Open Source software has been my area of interest from long
-time and I've been contributing to various FLOSS project in my free
+time and I've been contributing to various `FLOSS project
+<https://www.openhub.net/profile/copyninja>`_ in my free
time, of which most notable is `Debian Project
-<http://www.debian.org>`_.
+<https://www.debian.org>`_.
At work I code mainly in *C* and as hobby I code in *Python*. I also
-know languages like *Java, PHP, a bit of Perl, Go* syntactically. What
-I mean by syntactically is that give any projects in these languages
-and the problem statement I can hack on it and solve the problems.
+know languages like *Java, PHP, a bit of Perl, Go* syntactically.¹
I use a lot of *Shell scripting* and GNU Make in both official and
FOSS work. Git is my choice for VCS, I do know bit of Mercurial
-too. I've worked with SVN also. I use Apache as web browser, started
-using Nginx these days. I use uWSGI as application server for Python
-and PHP services. Emacs is my choice for editor and *openbsd-cwm* is
-my choice of desktop (window manager).
+too. I've worked with SVN also. Emacs is my choice for editor and
+*openbsd-cwm* is my choice of desktop (window manager).
Besides coding I also hold Vidwat degree in `Hindustani Tabla
<http://en.wikipedia.org/wiki/Tabla>`_ and I've been teaching it for 5
@@ -37,3 +32,7 @@ years (not at the moment though).
Finally this site doesn't track you using any sort of analytics nor
provides any way to comment if you have comments consider sending me
it over mail, for the details check Contacts page.
+
+¹ *(What I mean by syntactically is that give any projects in these
+languages and the problem statement I can hack on it and solve the
+problems.)*
diff --git a/content/pages/contact.rst b/content/pages/contact.rst
index ec5e4dc..224218b 100644
--- a/content/pages/contact.rst
+++ b/content/pages/contact.rst
@@ -6,7 +6,7 @@ encrypted email using `GPG <http://gnupg.org/>`_. My `GPG key
<http://keyserver.kjsl.org:11371/pks/lookup?op=get&search=0x6C8F74AE87700B7E>`_.
* mail: `Get my email from here <http://scr.im/copyninja>`_
-* twitter handle can be seen on the sidebar. (inactive)
+* twitter handle: *copyninja_* (inactive)
* irc: copyninja/vasudev on irc.oftc.net/irc.freenode.net
I don't have a Facebook account as I belive in decentralized way of
diff --git a/pelicanconf.py b/pelicanconf.py
index 80cad81..2a1df29 100644
--- a/pelicanconf.py
+++ b/pelicanconf.py
@@ -14,7 +14,7 @@ DEFAULT_LANG = u'en'
# Theme
THEME = os.path.join(os.environ.get('HOME'),
- 'Public/pelican-themes/elegant')
+ 'Public/pelican-simple/')
# Feed generation is usually not desired when developing
@@ -24,7 +24,7 @@ TRANSLATION_FEED_ATOM = None
# Display pages in Menu
DISPLAY_PAGES_ON_MENU = True
-DEFAULT_PAGINATION = 5
+DEFAULT_PAGINATION = 20
TAG_CLOUD_MAX_ITEMS = 10
DISPLAY_CATEGORIES_ON_MENU = False
DISPLAY_TAGS_ON_SIDEBAR = True
@@ -64,3 +64,8 @@ PAGE_URL = '{slug}'
PAGE_SAVE_AS = '{slug}.html'
TAG_URL = 'tags/{slug}.html'
TAG_SAVE_AS = 'tags/{slug}.html'
+
+# Save index
+#INDEX_SAVE_AS = 'archive.html'
+
+PYGMENTS_RST_OPTIONS = {'linenos': 'none',}