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

notes

ജീവിതം

28 April 2023

പോയകാല വസന്തങ്ങളെയും
വരുവാനുള്ള ശിശിരങ്ങളെയും
ഞാനോർക്കാറില്ല.
ഈ നിമിഷത്തിന്റെ
ആഴപ്പരപ്പുകളിൽ സ്വയമറിയാൻ
ശ്രമിക്കുന്നതിലുപരി
വേറെന്താണീ ജീവിതം.

notes

നീ

25 April 2023

എഴുതിയതേറയും നിന്നെക്കുറിച്ചായിരുന്നു
വേദനിച്ചതേറയും നിന്നെക്കുറിച്ച്
തന്നെയായിരുന്നു.

notes

Buri farm

31 March 2023

In the early morning, my brother and me went to visit a local farm. Here are the few snaps from there.

essay

Codbix No.3

31 March 2023
Welcome to Issue #3 of The Codbix! This week: The Arc Browser, Databases Sharding Explained, The Boy, the Mole, the Fox and the Horse, and Workspaces.
essay

Steal Like an Artist and other book notes

22 March 2023
The New York Times best-selling manifesto for creativity in the digital age.
notes

Food festival in Bahrain

18 March 2023

In the evening I went Bahrin food festival with my Brother and family. The vide was good, food and music are awesome.

essay

The Boy, the Mole, the Fox and the Horse

18 March 2023
The Boy, the Mole, the Fox and the Horse by Charlie Mackesy is one of my favorite books. The brilliant book is now an Oscar-winning short film...
notes

Directory Objects in PL/SQL

2 March 2023

This view describes all directories accessible to the user.

SELECT * FROM ALL_DIRECTORIES;

This view describes all directories specified for the entire database.

SELECT * FROM DBA_DIRECTORIES;

To view all the tables details, look here.

References

Oracle Doc

notes

What is CSS Modules?

2 March 2023

In CSS modules, CSS class names and animation names are scoped locally by default. In React you can use the file naming conversion as [file name].module.css. This let the React and Webpack know that you are using CSS Modules.

Importing the CSS in the file.

import nameyoulike from './name.modules.css';

Calling the style in the file.

<button className={styles.button} />
References

Styled Components Doc