A collection of tech notes, personal reflections, and evolving thoughts about whatever’s caught my curiosity.

essay

Default Apps 2023

21 January 2024
Read the Defaults app of Chris Coyier and found interesting.
notes

Name attribute in input tag

15 January 2024

The name attribute specifies the name of an <input> element. It is used to reference elements in a JavaScript, or to reference form data after a form is submitted to the server.

Only form elements with a name attribute will have their values passed when submitting a form.

<form action="http://localhost" method="POST">
    <label for="User">User name</label>
    <input type="text" id="User" name="Name" value="bino" />
    <input type="submit" value="submit" />
</form

When you submit the above, server localhost will recive a content like below:

Name=bino
References

w3schools

notes

You are not the system; you are part of it.

12 January 2024

Life is a series of roles we play, each one precious and unique in its own way. Whether you are a son, a father, a junior engineer, a secretary, or even someone who feels like they own nothing, you have something to offer and something to enjoy. Don’t let the struggles and chaos of each role overwhelm you; one day, you might no longer have the opportunity to play that role. The saddest part is, realizing its value only after it’s gone. So, cherish your time here, have fun, and make it beautiful.

Always remember, you are not the system; you are part of it.

essay

Set up a feed/ archive page in Hugo to display all posts

7 January 2024
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

5 January 2024

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.

notes

Rare mix

3 January 2024

I don’t want to be an original,
I have learned, inspired,
and stolen from everything I have seen.
I want to be a rare mix.

notes

Welcome to the magic

1 January 2024

Welcome to the magic, to the stars, to the unknown, and to myself.

Jazaer Beach, Bahrain / Photo by Jinz moments

Jazaer Beach, Bahrain / Photo by Jinz moments

essay

Beginners notes about TypeScript: Part 2

4 December 2023
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

2 December 2023
Programming languages can generally be categorized into two types: dynamically typed and statically typed...