പോയകാല വസന്തങ്ങളെയും
വരുവാനുള്ള ശിശിരങ്ങളെയും
ഞാനോർക്കാറില്ല.
ഈ നിമിഷത്തിന്റെ
ആഴപ്പരപ്പുകളിൽ സ്വയമറിയാൻ
ശ്രമിക്കുന്നതിലുപരി
വേറെന്താണീ ജീവിതം.
notes
ജീവിതം
notes
Buri farm
essay
Codbix No.3
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
The New York Times best-selling manifesto for creativity in the digital age.
notes
Food festival in Bahrain
essay
The Boy, the Mole, the Fox and the Horse
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
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
notes
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} />

