Tuesday 29 November 2016

The Blog has been shifted

I have shifted here.

c0dehouse shall now be maintained at http://n0tty.github.io from now on.
Please continue visiting! :)

Wednesday 11 May 2016

[Tip] Highlighting Code snippets

The below is a nice code for highlighting code snippets.

<style>
pre code {
  display: block; 
  overflow: scroll; 
  -webkit-overflow-scrolling: touch;
  padding: 0 0.5em 1em;
  border-radius: 0.5em;
  background-color: #1b2426;
  color: #4CAF50;
}
</style>