| name | description |
|---|---|
convex |
Use for Convex backend development - queries, mutations, actions, schemas, indexes, auth, file storage, and real-time subscriptions. |
ALWAYS fetch current docs before implementing. Convex APIs evolve.
| #!/usr/bin/env bash | |
| # Manage packages using Pacman (Arch) and Yay (AUR) repositories. | |
| # | |
| # SAVE AS: | |
| # ~/.local/bin/pkg | |
| # | |
| # SOURCE FROM: | |
| # https://github.com/nickjj/dotfiles/blob/master/.local/bin/pkg | |
| # | |
| # Examples: |
| { | |
| "rules": { | |
| "project_tracking": { | |
| "description": "Project Tracking and Goal Alignment", | |
| "enabled": true, | |
| "rules": [ | |
| { | |
| "description": "Regularly check project planning files:", | |
| "files": [ | |
| "gpt-planning.md - Project overview and requirements", |
| #!/bin/bash | |
| GLOBIGNORE="*" | |
| CHAT_INIT_PROMPT="You are ChatGPT, a Large Language Model trained by OpenAI. You will be answering questions from users. You answer as concisely as possible for each response (e.g. don’t be verbose). If you are generating a list, do not have too many items. Keep the number of items short. Before each user prompt you will be given the chat history in Q&A form. Output your answer directly, with no labels in front. Do not start your answers with A or Anwser. You were trained on data up until 2021. Today's date is $(date +%d/%m/%Y)" | |
| SYSTEM_PROMPT="You are ChatGPT, a large language model trained by OpenAI. Answer as concisely as possible. Current date: $(date +%d/%m/%Y). Knowledge cutoff: 9/1/2021." | |
| COMMAND_GENERATION_PROMPT="You are a Command Line Interface expert and your task is to provide functioning shell commands. Return a CLI command and nothing else - do not send it in a code block, quotes, or anything else, just the pure text CONTAINING ONLY THE COMMAND. If possible, return |
| #!/bin/bash | |
| # funsplash.sh | |
| funsplash() { | |
| clear | |
| printf -- "\n ========================================\n" | |
| printf -- "\n This script presents you with 2 options:\n" | |
| printf -- "\n 1. Choose the width of your pic.\n" | |
| printf -- "\n 2. Choose the height of your pic.\n" |
| #!/bin/bash | |
| # learning to version control my gists | |
| # /home/jammo/Pictures/myscrot.sh | |
| # Sun Oct 24 06:09:37 PM MDT 2021 | |
| # I recently came across a default configuration in Pop OS 21.01 that I wanted to change. | |
| # https://www.reddit.com/r/pop_os/comments/qdzj3h/how_can_i_change_the_default_screenshot_filename/ | |
| # | |
| # I was unable to successfully make any edits using 'dconf-editor' because the setting doesn't exit. |
Facebook will block this feature for you while you use it, depending on how much entities you try to unfollow. It automatically unblocks in a couple of hours and you will be able to continue.
See comments section for more up-to-date versions of the script. The original script is from 2017 and will not work as is.
| .parentDiv { | |
| align-items: center; | |
| display: flex; | |
| justify-content: center; | |
| } |
| /* ******************************************************************************************* | |
| * TAILWIND.CSS | |
| * DOCUMENTATION: https://tailwindcss.com/ | |
| * ******************************************************************************************* */ | |
| /* | |
| * Available breakpoints | |
| * -------------------- | |
| * sm: min-width: 640px; | |
| * md: min-width: 768px; |