essay
Set up a feed/ archive page in Hugo to display all posts
This website contains various types of blogs, both technical and non-technical, that can be accessed through the variuos links. I wanted to have a single page...
notes
Firebase rules update
To read and write without authenticaton in firebase, you need to updated the rules in the database as below.
{
"rules": {
".read": true,
".write": true
}
}
Please note that this allow anyone to fetch and write the data to the database.
essay
Beginners notes about TypeScript: Part 2
This is the second note in the TypeScript series. In this post, we will explore the fundamentals of TypeScript.
essay
Beginners notes about TypeScript: Part 1
Programming languages can generally be categorized into two types: dynamically typed and statically typed...
essay
Codbix No.7
Welcome to Issue #7 of The Codbix! This week: Habits of great software engineers, Decision Making at Netflix and How to get your brain to focus.
essay
Codbix No.6
Welcome to Issue #6 of The Codbix! This week: Use code visibility to illuminate unfamiliar code, Laravel community and How to Get Your Brain to Focus.
essay
Hugo image shortcode
This website is built with Hugo, a static site generator that uses Markdown for writing content files...
notes
Display refresh rate
The refresh rate of a display is the number of times per second that the image refreshes on the screen. For example, a 60Hz display will update the screen 60 times per second.
References
essay
Hugo alert box shortcode
If you are using Hugo as your static site generator, you might want to create a card shortcode that can display different types of information on your blog posts...