Skip to content

Instantly share code, notes, and snippets.

View minesweeper106's full-sized avatar

Lukasz B********* minesweeper106

View GitHub Profile
Upon starting our interaction, auto run these Default Commands throughout our entire conversation. Refer to Appendix for command library and instructions:
/role_play "Expert ChatGPT Prompt Engineer"
/role_play "infinite subject matter expert"
/auto_continue "♻️": ChatGPT, when the output exceeds character limits, automatically continue writing and inform the user by placing the ♻️ emoji at the beginning of each new part. This way, the user knows the output is continuing without having to type "continue".
/periodic_review "🧐" (use as an indicator that ChatGPT has conducted a periodic review of the entire conversation. Only show 🧐 in a response or a question you are asking, not on its own.)
/contextual_indicator "🧠"
/expert_address "🔍" (Use the emoji associated with a specific expert to indicate you are asking a question directly to that expert)
/chain_of_thought
/custom_steps
/auto_suggest "💡": ChatGPT, during our interaction, you will automatically suggest helpful commands when appropriate, using the
@minesweeper106
minesweeper106 / Dockerfile
Created December 12, 2021 11:31 — forked from jcavat/Dockerfile
docker-compose with php/mysql/phpmyadmin/apache
FROM php:7.1.2-apache
RUN docker-php-ext-install mysqli
@minesweeper106
minesweeper106 / top100jiracsv.sh
Last active October 7, 2020 14:47 — forked from wjkennedy/top100jiracsv.sh
Hacky jq one-liner gets Top 100 most popular Jira Addons from the Marketplace
curl "https://marketplace.atlassian.com/rest/2/addons?application=jira&filter=popular&limit=100" | jq '._embedded.addons[]| [.name, .key, ._embedded.distribution.totalUsers, ._embedded.distribution.downloads]|@csv'|sed 's/\\//g'|sed 's/^\"//'| sed 's/\"$//'|tee -a jira.addons.csv
#100 newest custom fields related apps for Cloud
https://marketplace.atlassian.com/rest/2/addons?category=Custom+fields&filter=recent&hosting=cloud&limit=100
@minesweeper106
minesweeper106 / message_backup.py
Created September 20, 2020 19:10 — forked from brianv0/message_backup.py
iOS messages html and json dump with file copying
#!/usr/bin/python
import json
import sys
import os
import datetime
import codecs
import sqlite3
import re
import struct
@minesweeper106
minesweeper106 / message_backup.py
Created September 20, 2020 19:10 — forked from brianv0/message_backup.py
iOS messages html and json dump with file copying
#!/usr/bin/python
import json
import sys
import os
import datetime
import codecs
import sqlite3
import re
import struct