നിങ്ങൾ

15 May 2023

വൈകുന്നേരങ്ങളിൽ
രാത്രികളിൽ
ചിന്തകളിൽ
നിങ്ങളെന്നിൽ
ഇടവിടാതെ
പെയ്ത്കൊണ്ടിരിക്കുന്നു.

നക്ഷത്രങ്ങൾ

6 May 2023

നിന്റെ ചുണ്ടുകൾ
നുകരുമ്പോളെല്ലാം
നക്ഷത്രങ്ങൾ
പെയ്തിറങ്ങാറുണ്ട്.

ജീവിതം

28 April 2023

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

നീ

25 April 2023

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

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.

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.

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

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

What is Styled Components?

2 March 2023

Styled-components is a CSS-in-JS library that enables you to write regular CSS and attach it to JavaScript components. With styled-components, you can use the CSS you’re already familiar with instead of having to learn a new styling structure.

Utilising tagged template literals (a recent addition to JavaScript) and the power of CSS, styled-components allows you to write actual CSS code to style your components.

References

Styled Components Doc