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
#!/usr/bin/env bash | |
# Inspired from: | |
# - https://blog.wesleyac.com/posts/simple-deploy-script | |
# - https://gist.github.com/WesleyAC/b3aaa0292579158ad566c140415c875d | |
# - https://caddyserver.com/docs/running#using-the-service | |
set -e | |
# cd $(dirname $0) |
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
CULTURE SPEC.CULTURE ENGLISH NAME | |
-------------------------------------------------------------- | |
Invariant Language (Invariant Country) | |
af af-ZA Afrikaans | |
af-ZA af-ZA Afrikaans (South Africa) | |
ar ar-SA Arabic | |
ar-AE ar-AE Arabic (U.A.E.) | |
ar-BH ar-BH Arabic (Bahrain) | |
ar-DZ ar-DZ Arabic (Algeria) | |
ar-EG ar-EG Arabic (Egypt) |
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
# save this file in ~/.gitignore_global | |
# set this file as the global .gitignore | |
# > git config --global core.excludesFile ~/.gitignore_global | |
# verify by running | |
# > git config --global core.excludesfile | |
.DS_Store | |
._.DS_Store | |
**/.DS_Store | |
**/._.DS_Store |
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
// Lists of countries with ISO 3166 codes, presented in various formats. | |
// Last Updated: July 30, 2020 | |
// If you're using PHP, I suggest checking out: | |
// https://github.com/thephpleague/iso3166 | |
// or Laravel: https://github.com/squirephp/squire | |
// | |
// JS developers can check out: | |
// https://www.npmjs.com/package/iso3166-2-db | |
// |
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 { component$, useStore, useSignal, useTask$ } from '@builder.io/qwik'; | |
// Define the Node type | |
type Node = { | |
id: string; | |
name: string; | |
type: string; | |
tags: string[]; | |
children?: Node[]; | |
attributes?: Record<string, unknown>; |
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 { component$, useSignal, useVisibleTask$ } from '@builder.io/qwik'; | |
export const ResumeBrowser = component$(() => { | |
const csr = useSignal(false); | |
// eslint-disable-next-line qwik/no-use-visible-task | |
useVisibleTask$(() => { | |
csr.value = true; | |
}); | |
return csr.value ? <Slot /> : null; | |
}); |
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
/* Features */ | |
// - remove cache headers for /q-data.json | |
export const handler = async (event, context) => { | |
try { | |
const [req, res, ctx, target] = eventNormalize(event, context); // 'ctx' is the context object | |
// Your business logic here | |
// Example of modifying the response based on URI | |
if (req.uri.endsWith('/q-data.json')) { | |
res.headers['cache-control'] = 'no-cache'; |
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
const { readable, writable } = new TransformStream(); | |
fetch('/send?channel=123', method: 'POST', | |
headers: { 'Content-Type': 'text/plain' }, | |
body: readable, | |
}); | |
const response = await fetch('/receive?channel=123'); | |
const response_readable = response.body; |
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
const machine = useConst(() => { | |
return { | |
state: 'off', | |
_machine: undefined, | |
send: $((newState) => { | |
return this._machine ||= noSerialize(createMachine(this))).send(newState) | |
) | |
}; | |
}) |
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 type { HTMLAttributes, JSXOutput, Signal } from '@builder.io/qwik'; | |
import { | |
Slot, | |
component$ | |
} from '@builder.io/qwik'; | |
import { | |
Link as QwikLink | |
} from '@builder.io/qwik-city'; | |
export function getBaseUrl(base?: string) { |
NewerOlder