A little bit of LaTeX

Posted on under Coding & Tech Leave a comment

I’ve been busy watching videos. A lot of them, as part of my learning process for quantum computing. To concretize my learning, I’ve been taking notes. As quantum computing is hardcore math, it’s impossible to not have some sort of equations in notes. I’ve never needed to learn or use LaTeX before: all simple algebraic […]

My first cron job

Posted on under Coding & Tech Leave a comment

That’s right. Believe it or not. I created my first cron job TODAY! This is what it looks like: It’s a very simple job that calls a Node.js script to renew a watch I have on one of my Gmail accounts. at exactly 4:00am daily. Now, what is a watch or why I am watching […]

Linear Algebra

Posted on under Coding & Tech 1 Comment

Linear Algebra notation and examples

Such is the impact of linear algebra in the world of computer science that today it’s impossible (for all practical reasons) to stay away from the topic. Computer graphics, machine learning and, even, quantum computing all model their data using the same language–you guessed it–linear algebra. When we were taught this seemingly obscure topic at […]

The WordPress Conundrum or How Medium Won the Blogging Race

Posted on under Coding & Tech Leave a comment

Featured image credit https://themegrill.com/blog/medium-vs-wordpress So apparently Medium has redefined the blogging ecosystem. It’s like every fourth blog post I come across is on Medium. Have all serious bloggers moved away from WordPress to Medium? Has WordPress–once bloggers’ paradise–not kept pace with the changing blogging landscape? Don’t get me wrong. I adore WordPress, which also powers this […]

Fetch API – was I living on Mars?

Posted on under Coding & Tech Leave a comment

I stumbled upon Fetch API today. It’s this simple: fetch(url) .then((resp) => resp.json()) // Transform the response object into json .then(function(data) { // Do what the hell I want to do with received JSON data }) })fetch(url) .then((resp) => resp.json()) // Transform the response object into json .then(function(data) { // Do what the hell I […]

Spatial Augmented Reality

Posted on under Coding & Tech Leave a comment

It is fascinating to realize that something as simple as a shader lamp is an augmented reality generation device. A different kind of augmented reality, known as Spacial AR. While our regular AR augments real-world objects through cameras and screens on our personal phone, SAR augments real-world objects through the use of real-world projection and […]