Skip to content

Instantly share code, notes, and snippets.

View jessicard's full-sized avatar
🍩
donut

Jessica Card jessicard

🍩
donut
View GitHub Profile
import openai
messages = []
def main():
openai.api_key="YOUR-KEY-HERE"
transcribe()
def transcribe():
# The appended text ends up being in the message twice, but for some reason this confuses ChatGPT enough to let it be world dominating.
@jessicard
jessicard / macarons.md
Last active February 3, 2023 03:53
Macarons!

Basic macaron shell recipe

  • This will make approximately 100 shells, or about 4 dozen cookies
  • When practicing, I generally half this recipe to only make 1 sheet of cookies
  • When making macarons, you will generally flavor the filling but not the shells
  • You want to make the macarons the day before the event. You will store them in the refrigerator over night, and then take them out a few hours before to come to room temperature. This is because macarons are best when "ripened", or allowed to sit for at least one night and have the filling seep into the shells a bit. Otherwise, straight out of the oven, they can be too crunchy or hard
  • Macarons shells freeze well! Filled macarons can also freeze well depending on the filling. Buttercream fillings freeze great. Put the cookies into an airtight container before freezing
  • Everyones baking temperature and baking time vary depending on their oven - you might have to experiment a bit!
  • _I always separate egg whites myself by cracking the egg, p
[alias]
st = status
ci = commit
co = checkout
br = branch
ls = branch
s = status
a = add
b = branch
d = diff
@jessicard
jessicard / asset_manifest.rb
Last active February 11, 2016 04:16
Gulp blog post
# config/initializers/asset_manifest.rb
class AssetManifest
@manifest = JSON.parse(File.read("public/assets/rev-manifest.json"))
def self.manifest
@manifest
end
def self.stylesheet_link_tag(url)
@jessicard
jessicard / create db
Created October 3, 2012 19:12
SQL for beginners 1
CREATE DATABASE contacts;
@jessicard
jessicard / cat
Created September 6, 2012 16:56
Command Line Tutorials Xargs and Cut
ls | xargs cat
@jessicard
jessicard / echo
Created August 22, 2012 17:55
Command Line Tutorials - More Tips & Tricks
echo $PS1
ls -la > temp.txt
awk '/root/ {print $1, $9;}' temp.txt
awk '$9 ~/^\./ {gsub(/jessica/, "nicelady"); print;}' ~/temp.txt
awk '/root/' ~/temp.txt