പ്രകാശം പെയ്തിറങ്ങുന്ന
ഇരുട്ടിന്റെ ഇടവഴികളിൽ
നിമിഷാർദ്ധത്തേക്ക് ഞാൻ
ബുദ്ധനായിത്തീരാറുണ്ട്.
ബുദ്ധൻ
നിങ്ങൾ
വൈകുന്നേരങ്ങളിൽ
രാത്രികളിൽ
ചിന്തകളിൽ
നിങ്ങളെന്നിൽ
ഇടവിടാതെ
പെയ്ത്കൊണ്ടിരിക്കുന്നു.
നക്ഷത്രങ്ങൾ
നിന്റെ ചുണ്ടുകൾ
നുകരുമ്പോളെല്ലാം
നക്ഷത്രങ്ങൾ
പെയ്തിറങ്ങാറുണ്ട്.
ജീവിതം
പോയകാല വസന്തങ്ങളെയും
വരുവാനുള്ള ശിശിരങ്ങളെയും
ഞാനോർക്കാറില്ല.
ഈ നിമിഷത്തിന്റെ
ആഴപ്പരപ്പുകളിൽ സ്വയമറിയാൻ
ശ്രമിക്കുന്നതിലുപരി
വേറെന്താണീ ജീവിതം.
നീ
എഴുതിയതേറയും നിന്നെക്കുറിച്ചായിരുന്നു
വേദനിച്ചതേറയും നിന്നെക്കുറിച്ച്
തന്നെയായിരുന്നു.
Directory Objects in PL/SQL
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
What is CSS Modules?
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} />

