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
{ | |
"name": "our-example-backend", | |
"version": "1.0.0", | |
"main": "index.js", | |
"scripts": { | |
"test": "echo \"Error: no test specified\" && exit 1" | |
}, | |
"keywords": [], | |
"author": "", | |
"license": "ISC", |
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
function get_cached_external_json($url) { | |
$transient_key = 'our_fetched_json_' . md5($url); | |
$option_key = 'our_fetched_json_backup_' . md5($url); | |
$cached_data = get_transient($transient_key); | |
if (false !== $cached_data) { | |
return $cached_data; | |
} |
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
name: Publish Website | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
web-deploy: |
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
{ | |
"apc.sidebar.titlebar": { | |
"height": 8, | |
"fontSize": 0.000000000000000001 | |
}, | |
"apc.electron": { | |
"titleBarStyle": "hidden", | |
"frame": false | |
}, | |
//"window.titleBarStyle": "native", |
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
const sharp = require("sharp") | |
const fs = require("fs").promises | |
async function start() { | |
// create the converted-images folder if it does not exist yet | |
fs.mkdir("./converted-images", { recursive: true }) | |
// create array of all files in current directory | |
const files = await fs.readdir("./") |
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 { MongoClient } from "mongodb" | |
let client | |
let clientPromise | |
if (!process.env.CONNECTIONSTRING) { | |
throw new Error("Please add your MongoDB URI to the .env file") | |
} | |
const uri = process.env.CONNECTIONSTRING |
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
# You need to give this file permission to execute by doing the following... | |
# chmod +x f.sh | |
# Add an alias named f to your .zshrc file like this: | |
# alias f="/Users/brad/Documents/shell-scripts/f.sh" | |
code "$(find ~/Documents ~/Desktop ~/Sites ~/Local\ Sites -type d \( -name "node_modules" -o -name ".next" -o -name ".git" -o -name "vendor" -o -name "wp-includes" -o -name "wp-admin" \) -prune -o -type d | fzf)" | |
# todo someday | |
# currently it only searches for folders, but it would be nice if I could search for zshrc or specific files, but I'm not sure if that will include too many files and be slow... |
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
{ | |
"debug.javascript.codelens.npmScripts": "never", | |
"editor.fontFamily": "'Monaco', monospace", | |
"terminal.integrated.fontFamily": "'Monaco', monospace", | |
"editor.fontSize": 16, | |
"terminal.integrated.fontSize": 16, | |
"editor.minimap.enabled": false, | |
"editor.tabSize": 2, | |
"breadcrumbs.enabled": false, | |
"workbench.startupEditor": "none", |
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
/** | |
* @type {import('next').NextConfig} | |
*/ | |
const nextConfig = { | |
output: "export", | |
trailingSlash: true, | |
images: { unoptimized: true } | |
} | |
module.exports = nextConfig |
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
{ | |
"debug.javascript.codelens.npmScripts": "never", | |
"php.validate.executablePath": "/opt/homebrew/bin/php", | |
"editor.minimap.enabled": false, | |
"editor.fontSize": 14, | |
// "editor.fontSize": 22, | |
//"editor.fontFamily": "Menlo, Monaco, 'Courier New', monospace", | |
"terminal.integrated.fontSize": 16, | |
//"editor.hover.enabled": false, | |
"editor.tabSize": 2, |
NewerOlder