🌺
- GitHub Staff
- https://reggi.com
- @[email protected]
- in/thomasreggi
This file contains 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
- | |
name: Delicious in Dungeon | |
date: August 2024 | |
rating: 10/10 | |
thoughts: "Really cozy vibes, love the world building and the characters. The art is also really good." | |
- | |
name: "Frieren: Beyond Journey's End" | |
date: September 2024 | |
rating: 10/10 | |
thoughts: "I view this as a retrospect on life and our life-spans, regret, death and the friends you make along the way." |
This file contains 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
#!/bin/bash | |
# Get the list of dependencies from package.json | |
DEPENDENCIES=$(jq -r '.dependencies | keys[]' package.json) | |
# Loop through each dependency | |
for DEP in $DEPENDENCIES; do | |
# Get the path to the dependency's package.json | |
DEP_PACKAGE_JSON="node_modules/$DEP/package.json" |
This file contains 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
import ts from "npm:typescript"; | |
import { readFileSync } from "node:fs"; | |
function extractExportsFromFile(filePath: string): string[] { | |
// Read the file content | |
const fileContent = readFileSync(filePath, { encoding: 'utf8' }); | |
if (!fileContent) { | |
throw new Error(`File not found or empty: ${filePath}`); | |
} | |
This file contains 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
// ==UserScript== | |
// @name GitHub Milestones Redirect | |
// @namespace http://tampermonkey.net/ | |
// @version 1.0 | |
// @description Redirects to GitHub milestones with specific parameters on link click | |
// @author You | |
// @match https://github.com/* | |
// @grant none | |
// ==/UserScript== |
This file contains 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
import { WebComponent, html } from 'web-component-base' | |
class HFrag extends WebComponent { | |
static props = { | |
as: 'h1', | |
hover: false | |
} | |
text: string | |
constructor () { |
This file contains 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
--- | |
import { createHash } from 'node:crypto'; | |
import fs from 'node:fs/promises'; | |
import path from 'node:path'; | |
type Props = { | |
src: string, | |
alt?: string, | |
class?: string, | |
} | |
const { src, alt, class: className } = Astro.props |
This file contains 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
console.log('hello world') |
This file contains 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
// ==UserScript== | |
// @name Hide LinkedIn Posts | |
// @namespace http://tampermonkey.net/ | |
// @version 1.0 | |
// @description Hide posts with MongoDB as the employer on LinkedIn | |
// @author You | |
// @match *://www.linkedin.com/* | |
// @grant none | |
// ==/UserScript== |
This file contains 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
{ | |
"$schema": "http://json-schema.org/draft-07/schema#", | |
"type": "object", | |
"properties": { | |
"name": { | |
"type": "string" | |
} | |
}, | |
"required": ["name"] | |
} |
NewerOlder