Skip to content

Instantly share code, notes, and snippets.

View dev-xero's full-sized avatar
focused

ゼロ dev-xero

focused
View GitHub Profile
@dev-xero
dev-xero / gist:b3bea755b15f8ed797553e4e500771a2
Created December 27, 2021 18:05
GitHub Weekly Breakdown
My GitHub Weekly breakdown
@dev-xero
dev-xero / swagger.css
Created September 15, 2024 12:33
Custom dark theme for swagger documentation.
@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 {
@dev-xero
dev-xero / tsconfig.json
Created October 7, 2024 10:16
Recommended ts config following ES standards.
{
"compilerOptions": {
"target": "ES2020",
"module": "ESNext",
"moduleResolution": "node",
"lib": [
"ES2020"
],
"allowJs": true,
"outDir": "dist",
@dev-xero
dev-xero / openssl-gen
Created October 8, 2024 19:44
openssl 256-bit gen cmd
openssl rand -base64 32
@dev-xero
dev-xero / animals.js
Created October 20, 2025 14:13
Animals
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: