Write a project description
This project requires NodeJS (version 8 or later) and NPM.
<windows> | |
<instructions> | |
You are being provided with textfield content from windows the user has asked you to focus on. | |
User-selected text is enclosed within <user__selection> tags (these tags are not part of the original content and should never be included in your response). When the user has selected text, focus your response on that text. For example, if the user asks about "this," they are likely referring to the selected text. | |
</instructions> | |
<window> | |
<title>NotesGPT — Constants.swift</title> | |
<app_name>Xcode</app_name> | |
<textfields> | |
<textfield id="0"> |
CANNY_API_KEY=<your_canny_api_key> |
addEventListener('fetch', (event) => { | |
event.respondWith(handleRequest(event.request)); | |
}); | |
async function handleRequest(request) { | |
const url = new URL(request.url); | |
const { pathname, search } = url; | |
var newPathname = pathname; | |
if (pathname.startsWith('/docs')) { | |
newPathname = pathname.replace('/docs', ''); |
const Recipient = require('mailersend').Recipient; | |
const EmailParams = require('mailersend').EmailParams; | |
const BulkEmails = require('mailersend').BulkEmails; | |
const MailerSend = require('mailersend'); | |
const users = require('./users'); | |
const MAILERSEND_API_KEY = process.env.MAILERSEND_API_KEY; | |
if (!MAILERSEND_API_KEY) { | |
console.error('MAILERSEND_API_KEY is required'); |
import { useMountDebug } from './useMountDebug'; | |
function SignInForm(props) { | |
useMountDebug('SignInForm'); | |
return (<div></div>) | |
} |
This focuses on generating the certificates for loading local virtual hosts hosted on your computer, for development only.
Do not use self-signed certificates in production ! For online certificates, use Let's Encrypt instead (tutorial).
Verifying my Blockstack ID is secured with the address 192WVK6hX8xVsFZQrB3bDU7YnR1z3VVr4i https://explorer.blockstack.org/address/192WVK6hX8xVsFZQrB3bDU7YnR1z3VVr4i |
#!/usr/bin/env bash | |
set -e | |
if [[ ! -d "${HOME}/.eh" ]]; then | |
git clone --recursive -j4 [email protected]:Thinkei/dev-env.git ${HOME}/.eh | |
else | |
(cd ${HOME}/.eh && git fetch --all && git reset --hard origin/master) | |
fi |
buck install //:antennapod -v 10 | |
Using buckd. | |
[-] PARSING BUCK FILES...FINISHED 0.2s | |
Creating a build with 10 threads. | |
rm -r -f /Users/mrnhim/Desktop/AntennaPod/buck-out/bin/__unpack_appcompat#aar_unzip__ && mkdir -p /Users/mrnhim/Desktop/AntennaPod/buck-out/bin/__unpack_appcompat#aar_unzip__ | |
unzip /Users/mrnhim/Desktop/AntennaPod/libs/appcompat-v7-19.1.0.aar -d /Users/mrnhim/Desktop/AntennaPod/buck-out/bin/__unpack_appcompat#aar_unzip__ | |
rm -r -f /Users/mrnhim/Desktop/AntennaPod/buck-out/gen/__dslv-res_text_symbols__ && mkdir -p /Users/mrnhim/Desktop/AntennaPod/buck-out/gen/__dslv-res_text_symbols__ | |
rm -r -f /Users/mrnhim/Desktop/AntennaPod/buck-out/gen/__antennapod#gen_java_android_build_config_de_danoeh_antennapod__ && mkdir -p /Users/mrnhim/Desktop/AntennaPod/buck-out/gen/__antennapod#gen_java_android_build_config_de_danoeh_antennapod__ | |
rm -r -f /Users/mrnhim/Desktop/AntennaPod/buck-out/gen/__build-config#gen_java_android_build_config__ && mkdir -p /Users/mrnhim/Desktop/AntennaPod/buck-out/gen/__build-conf |