This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
My GitHub Weekly breakdown |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@media only screen and (prefers-color-scheme: dark) { | |
a { | |
color: #8c8cfa; | |
} | |
::-webkit-scrollbar-track-piece { | |
background-color: rgba(255, 255, 255, 0.2) !important; | |
} | |
::-webkit-scrollbar-track { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
{ | |
"compilerOptions": { | |
"target": "ES2020", | |
"module": "ESNext", | |
"moduleResolution": "node", | |
"lib": [ | |
"ES2020" | |
], | |
"allowJs": true, | |
"outDir": "dist", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
openssl rand -base64 32 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export const animals = [ | |
{ | |
id: 1, | |
name: 'Blue Whale', | |
scientificName: 'Balaenoptera musculus', | |
category: 'sea creature', | |
weight: '150000 kg', | |
habitat: 'Ocean', | |
funFact: 'The largest animal to have ever existed on Earth', | |
imageUrl: |