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

essay

Nights in Bahrain

1 February 2024
I'm a night owl who loves the dark hours. I often go for walks at night, enjoying the city lights, the yellow glow, and the people around me.
essay

As you start to walk on the way, the way appears

31 January 2024
I would like to share a short story from my college days. As part of our college tech festival,
notes

Export your Kindle book highlights

24 January 2024

If you want to export your Kindle book highlights without the page location and color information, you can follow these steps:

  • Export the content in any format you prefer.
  • Paste the content in Visual Studio Code or any other text editor that supports regular expressions.
  • Use the regular expression Highlight \(yellow\) - Location [0-9]+ in the Find and Replace tool to replace Highlight (yellow) - Location 01.
  • Replace all the matches with an empty string.

This will remove the unwanted details from your highlights and leave only the text you want to keep.

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.