jurnalanas | 1 year ago | on: Why blog if nobody reads it?
jurnalanas's comments
jurnalanas | 1 year ago | on: Llama-OCR: Document to Markdown
jurnalanas | 3 years ago | on: Notes on Saudi Arabia
No, it's not. You can even go inside any mosque if you wear the proper clothes, as how Muslims pray.
jurnalanas | 4 years ago | on: How to avoid layout shifts caused by web fonts
var html = document.documentElement;
var script = document.createElement("script");
script.src = "fontfaceobserver.js";
script.async = true;
script.onload = function () {
var roboto = new FontFaceObserver("Roboto");
var sansita = new FontFaceObserver("Sansita");
var timeout = 2000;
Promise.all([
roboto.load(null, timeout),
sansita.load(null, timeout)
]).then(function () {
html.classList.add("fonts-loaded");
}).catch(function (e) {
html.classList.add("fonts-failed");
});
};
document.head.appendChild(script);jurnalanas | 4 years ago | on: Ask HN: Who wants to be hired? (July 2021)
jurnalanas | 8 years ago | on: ReactJS based data visualization made easy
jurnalanas | 8 years ago | on: Show HN: Hacker News Classics
and I just reliazed one of the reason why classic writings are special -- especially for another writing material purpose is because it has passed the the test of time..
jurnalanas | 12 years ago | on: Poll: how many productive hours do you have in a day?
jurnalanas | 12 years ago | on: 2048 – multiplayer
And there's profound credibility in documenting our uncertainties, our revisions, our gradual approximations toward truth.