Skip to content

Instantly share code, notes, and snippets.

View peterbe's full-sized avatar

Peter Bengtsson peterbe

View GitHub Profile
names = []
def print_them():
for name in names:
print("name:", name)
def add_them():
names.append("Peter")
names.append("Hasan")
import { useEffect, useState } from "react";
type Options = {
delay?: number
}
/**
* A hook that throttles the truth. Useful when you want something to be true
* only if it's been true for a certain delay in milliseconds. Example use:
*
VITE v5.4.9 ready in 156 ms
➜ Local: http://localhost:4001/
➜ Network: use --host to expose
➜ press h + enter to show help
2024-10-21T13:13:35.634Z vite:transform 7.39ms /src/routes.tsx
2024-10-21T13:13:35.636Z vite:transform 2.71ms /@react-refresh
2024-10-21T13:13:35.644Z vite:transform 6.89ms /node_modules/.vite/deps/react_jsx-dev-runtime.js?v=da4504a8
2024-10-21T13:13:35.655Z vite:transform 11.40ms /node_modules/.vite/deps/@mantine_core.js?v=da4504a8
export interface ApiV0 {
blogitems: {
id: number;
oid: string;
title: string;
pub_date: string;
categories:
| []
| [
{
const { spawn } = require("child_process");
function vite() {
const child = spawn("npm", ["run", "dev"], {
cwd: "my-vite-react-ts-app",
});
// console.log(`Spawned process PID: ${child.pid}`);
console.time("Getting 200 OK");
setInterval(() => {
function defaultTokenizer(text: string) {
//remove punctuation from text - remove anything that isn't a word char or a space
var rgxPunctuation = /[^(a-zA-ZA-Яa-я0-9_)+\s]/g;
var sanitized = text.replace(rgxPunctuation, " ");
return sanitized.split(/\s+/);
}
/**
function defaultTokenizer(text: string) {
//remove punctuation from text - remove anything that isn't a word char or a space
var rgxPunctuation = /[^(a-zA-ZA-Яa-я0-9_)+\s]/g;
var sanitized = text.replace(rgxPunctuation, " ");
return sanitized.split(/\s+/);
}
/**
# https://github.com/casey/just
# https://just.systems/
dev:
npm run dev
dev-with-languages:
NODE_ENV=development ENABLED_LANGUAGES=all nodemon src/frame/server.ts
start-fixtures-server-dev:
We can make this file beautiful and searchable if this error is corrected: Unclosed quoted field in line 9.
"context_href","count_"
"https://docs.github.com/en/rest/authentication/authenticating-to-the-rest-api#basic-authentication","730"
"https://docs.github.com/fr/copilot/using-github-copilot/getting-started-with-github-copilot?tool=vscode#prerequisites-2","219"
"https://docs.github.com/en/rest/using-the-rest-api/getting-started-with-the-rest-api#rate-limiting","178"
"https://docs.github.com/pt/copilot/using-github-copilot/getting-started-with-github-copilot?tool=vscode#prerequisites-2","178"
"https://docs.github.com/ja/copilot/using-github-copilot/getting-started-with-github-copilot?tool=vscode#prerequisites-2","175"
"https://docs.github.com/de/copilot/using-github-copilot/getting-started-with-github-copilot?tool=vscode#prerequisites-2","117"
"https://docs.github.com/en/enterprise-cloud@latest/admin/identity-and-access-management/understanding-iam-for-enterprises/about-enterprise-managed-users#authenticating-as-a-managed-user","105"
"https://docs.github.com/en/actions/using-workflows/events-that-trigger
#!/bin/bash
set -ex
# 1
pushd docs-internal.de-de
git diff --exit-code
git checkout main
git pull origin main
popd