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 […]