SHOW ALL TAGS
  • RSS feeds for each Tags - Jekyll
    Jan 27, 2016
    blog jekyll rss
    Jekyll is a very popular and very powerful static blog generator. Out of the box it’s able to generate sophisticated site structures, and has a ton of configurability. One of the areas where I feel that Jekyll lacks some sophistication is around the handling of categories and tags; these are two data-sets that are core . . . read more

  • Elementary Contracts
    Dec 1, 2015
    blog elementary ubuntu contract
    This post contains exhaustive contracts that will be useful for elementary OS. You can use this on ubuntu also,but needs to change the exec command to open appropriate applications. . . . read more

  • Editing Jekyll Posts With Prose
    Nov 14, 2015
    blog prose jekyll automate
    Jekyll supports markdown posts.We will discuss an online Github Content Editor Prose that can be used to edit jekyll posts.It uses github authentication.Prose does not need to be specifically used for jekyll.You can edit any hosting site that has Git Hooks. . . . read more

  • Automate Jekyll Blog to Github with Travis CI
    Nov 11, 2015
    blog jekyll rake travis deploy automate
    In addition to supporting regular HTML content, GitHub Pages supports Jekyll, a simple, blog-aware static site generator. Jekyll makes it easy to create site-wide headers and footers without having to copy them across every page. It also offers some other advanced templating features. . . . read more

  • My Experience with Unity
    Mar 11, 2015
    blog unity game study
    This is the first time I have laid my hands on Unity.I got to admit that I never got my hands dirty in developing games although while working in my previous company i.e., HT Media,I have tried develop my basic skills using Cocos 2D in Lua,familiar neither in language nor the framework.That time I learner basics of lua from the Sample Project that comes with Cocos and created a box 2D game simulation which was not a pretty one but did have all the physics concepts and collision simulations done! . . . read more

  • SailsJS Pros & Cons
    Mar 11, 2015
    blog sailsjs startup study
    I have been researching on developing a web app.I have gone through various sites for the technology stack to rely on.It seems using Python Django or Flask is good to go methods since they already have large userbase,documentation and well developed frameworks. . . . read more

  • Python Snippets
    Mar 2, 2015
    blog code python snippet
    Hi there, Here is a set of small scripts, which demonstrate some features of Python programming.
    1
    2
    3
    4
    5
    6
    7
    
    # this is a comment
    
    
    #! python
    
    # integer variables
    SPAM = 1       
    . . . read more

  • Bash Snippets
    Mar 2, 2015
    blog code bash snippet
    Set of small scripts, which demonstrate some features of bash programming.
    1
    2
    3
    4
    5
    6
    7
    8
    
    //===================================================================================
    // set new prompt
    //===================================================================================
    
    PS1=">"
    PS1="[${LOGNAME}@$(hostname)] # "
    PS1="[${LOGNAME}] # "
    PS1='$PWD $ '
    . . . read more