create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
{ | |
"tools": [ | |
{ | |
"type": "function", | |
"function": { | |
"name": "codebase_search", | |
"description": "Find snippets of code from the codebase most relevant to the search query.\nThis is a semantic search tool, so the query should ask for something semantically matching what is needed.\nIf it makes sense to only search in particular directories, please specify them in the target_directories field.\nUnless there is a clear reason to use your own search query, please just reuse the user's exact query with their wording.\nTheir exact wording/phrasing can often be helpful for the semantic search query. Keeping the same exact question format can also be helpful.", | |
"parameters": { | |
"type": "object", | |
"properties": { |
create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
# https://yurisk.info/2023/03/28/mdfind-macos-examples-cheat-sheet
# Find files where filename includes string (case-insensitive)
mdfind -name ...
# Find folders where name includes string (case-insensitive)
mdfind -name ... kind:folder
# See where an alias was defined
export default [ | |
"Reticulating splines...", | |
"Generating witty dialog...", | |
"Swapping time and space...", | |
"Spinning violently around the y-axis...", | |
"Tokenizing real life...", | |
"Bending the spoon...", | |
"Filtering morale...", | |
"Don't think of purple hippos...", | |
"We need a new fuse...", |
function prettyFormat(str) { | |
return str.split(/(?=[A-Z])/) | |
.map(function(word) { | |
return word.charAt(0).toUpperCase() + word.slice(1); | |
}) | |
.join(' '); | |
} |
import { cache } from 'react'; | |
export const getBaseUrl = cache(() => | |
process.env.VERCEL_URL | |
? `https://app-dir.vercel.app` | |
: `http://localhost:${process.env.PORT ?? 3000}`, | |
); |
import { cache } from 'react'; | |
export const getBaseUrl = cache(() => | |
process.env.VERCEL_URL | |
? `https://app-dir.vercel.app` | |
: `http://localhost:${process.env.PORT ?? 3000}`, | |
); |
Windows 10 | |
Select the Start button and scroll to find the app you want to run at startup. | |
Right-click the app, select More, and then select Open file location. This opens the location where the shortcut to the app is saved. If there isn't an option for Open file location, it means the app can't run at startup. | |
With the file location open, press the Windows logo key + R, type shell:startup, then select OK. This opens the Startup folder. | |
Copy and paste the shortcut to the app from the file location to the Startup folder. |
<?php | |
// Copyright (c) 2005, Lacy Morrow | |
// All rights reserved. | |
// ******************Text-Image PHP Script*********************** | |
// Uses an uploaded font to change text into an image. Multiple options. | |
// USE: | |
// ONLY SUPPORTS .ttf fonts | |
// Use the format "http://www.yourdomain.com/text.php?s=11&text=hello&font=TIMES" |