Goal is to compile some brief notes to feed into an LLM at the end of the year.
- blah
- blah
To be cut and paste from substack threads
| html { | |
| --editor-font: "Inter"; | |
| } | |
| .cm-line { | |
| font-size: 12pt; | |
| } | |
| /* Code blocks */ | |
| .sb-line-fenced-code { |
Do I want to die on this hill?
Am I including everyone?
| <style> | |
| #container { | |
| margin-top: -45px; | |
| width: 100%; | |
| height: 8px; | |
| position: relative; | |
| } | |
| .lp-form-errors{ | |
| display: none !important; | |
| } |
| #!/usr/bin/env ruby | |
| # Author : Emad Elsaid (https://github.com/blazeeboy) | |
| FILENAME = 'db.txt' | |
| OPEN, CLOSE = 1 , 0 | |
| file = File.open(FILENAME, 'a') | |
| file.write "#{OPEN} : #{Time.new}\n" | |
| file.flush | |
| begin |
This simple script will take a picture of a whiteboard and use parts of the ImageMagick library with sane defaults to clean it up tremendously.
The script is here:
#!/bin/bash
convert "$1" -morphology Convolve DoG:15,100,0 -negate -normalize -blur 0x1 -channel RBG -level 60%,91%,0.1 "$2"
A list of Sketch plugins hosted at GitHub, in no particular order.
| require 'rubygems' | |
| require 'mechanize' | |
| FIRST_NAME = 'FIRST_NAME' | |
| LAST_NAME = 'LAST_NAME' | |
| PHONE = 'PHONE' | |
| EMAIL = 'EMAIL@provider.com' | |
| PARTY_SIZE = 2 | |
| SCHEDULE_RANGE = { :start_time => '19:00', :end_time => '20:30' } |
| data:text/html, <style type="text/css">#e{position:absolute;top:0;right:0;bottom:0;left:0;}</style><div id="e"></div><script src="http://d1n0x3qji82z53.cloudfront.net/src-min-noconflict/ace.js" type="text/javascript" charset="utf-8"></script><script>var e=ace.edit("e");e.setTheme("ace/theme/monokai");e.getSession().setMode("ace/mode/ruby");</script> |