Beamer custom class

Making Beamer not look like Beamer

Prem Mallappa

2 minute read

What is Beamer Beamer is a presentation making tool using LaTeX. Now, one may ask What is LaTeX ? In short, its a document typeset system. LaTeX(Created by computer hacker Leslie B. Lamport) is a set of macros on top of the raw TeX (A very powerful typesetting system created by Sir Don Knuth.) Using Metropolis template \usetheme{metropolis} Some macros Here we are re-defining the minted environment not to report errors when it cannot parse.

XOR Sequence

Online coding questions

Prem Mallappa

6 minute read

Started as an an effort to teach programming to the fresh-grads, here . Not that this is the ultimate way to do it, rather one of the approach to a given problem. The Problem It is stated in here XOR-Sequence that given a sequence of array ‘A’ of size N, whose contents are as follows. Assumed array index is ‘i’. A[0] = 0 A[1] = 1 (A[0] ^ i, i = 1) A[2] = 3 (A[1] ^ i, i = 2) A[4] = 0 (A[2] ^ i, i = 3) .

Prem Mallappa

2 minute read

What happens in there Okay, Before it gets any weirder, Hugo is a blogging engine. Write a bunch of files in markdown syntax and Hugo will render it for you. When all is done, and you are satisfied, it can be taken to next step. Where to begin In all the ocean of knowledge, an important question to ask is where the Hell I start ? There were so many blogging engines, With my initial encounter with Jekyll, Octopress etc.