- Frontend:
- Technology: NuxtJS
- URL: http://example.com
- Backend API:
- Technology: Laravel
- URL: http://example.com/api
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
DB_HOST= | |
DB_DATABASE= | |
DB_USERNAME= | |
DB_PASSWORD= |
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
<template> | |
<component-001 | |
v-slot="{ prop1, prop2 }" | |
> | |
<slot name="slot1" :slot-prop-1="prop1" /> | |
<slot name="slot2" :slot-prop-2="prop2" /> | |
</component-001> | |
</template> | |
<script> |
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
// src/builders/toc-builder.ts | |
import { createBuilder, PipelineStage } from "@yankeeinlondon/builder-api" | |
import Toc from 'markdown-it-toc-done-right' | |
const tocBuilder = createBuilder('toc', PipelineStage.parser) | |
.options() | |
.initializer() | |
.handler( | |
async (payload, _) => { |
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
generate: | |
delay: 5 | |
landscape: false | |
displayHeaderFooter: false | |
printBackground: false | |
scale: 1 | |
paperWidth: 8.3 | |
paperHeight: 11.7 | |
marginTop: 0 | |
marginBottom: 0 |
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
--- | |
import bi from "@iconify-json/bi/icons.json" | |
import Icon from "@/components/Icon.astro" | |
type ThemeType = "dark" | "light" | |
const THEME_DARK: ThemeType = "dark" | |
const THEME_LIGHT: ThemeType = "light" | |
const STORAGE_KEY_THEME: string = "theme" | |
let defaultTheme: ThemeType = THEME_DARK |

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
#!/usr/bin/env -S PATH="${PATH}:/opt/homebrew/bin:/usr/local/bin" python3 | |
# Key Binding plugin | |
# | |
# by ansidev ([email protected]) | |
# | |
# metadata | |
# <xbar.title>Key binding plugin</xbar.title> | |
# <xbar.version>v1.0</xbar.version> | |
# <xbar.author>Le Minh Tri</xbar.author> |
OlderNewer