optimized for Hack Club Bank
Screen.Recording.2022-01-14.at.6.19.15.PM.mov
- Install Raycast if you don't already have it
- Download the bash script below
- Follow Raycast's Script Command install (instructions)
package assertion; | |
import java.util.ArrayList; | |
public class AssertVerifier { | |
static int numConditions = 3; | |
static int numPoints = 5; | |
// numbers to test | |
static int start = -100000; |
optimized for Hack Club Bank
gource
and ffmpeg
brew install gource
brew install ffmpeg
bank-bg-dark.png
in the root of your local copy of the Bank repocd /your/bank/repo/location
/* | |
* This is the offical Scriptable widget for Indie Dev Monday | |
* | |
* Indie Dev Monday (https://indiedevmonday.com) is a weekly newsletter | |
* spotlighting indie developers | |
* | |
* This script includes: | |
* | |
* Latest issue widget (no parameter) | |
* - shows latest issue |
@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:wght@300;400;500;600;700&display=swap'); | |
.header-title-name { | |
font-family: "Fira Sans", sans-serif; | |
text-transform: capitalize; | |
margin-bottom: 10px; | |
background: rgba(0, 0, 0, 0.2); | |
padding: 10px 5px 10px 20px; | |
display: inline-block; | |
border-radius: 20px; |
Converts all document formats using LibreOffice first to PDF and then to an image, using build-in pdf previwer of ActiveStorage
unoconv
, a command line tool which uses libreoffice, e.g. apt install unoconv
apt install poppler-utils
##### Windows | |
# Windows thumbnail cache files | |
Thumbs.db | |
Thumbs.db:encryptable | |
ehthumbs.db | |
ehthumbs_vista.db | |
# Dump file | |
*.stackdump |
So, you just cloned an existing project's repo and you run bundle install
but you got the error: rbenv: version
x.x.x is not installed...
.
What the issue means? The project uses a specific ruby version that you do not have on your system.
Here's how to fix it:
rbenv install x.x.x
This is a compiled list of falsehoods programmers tend to believe about working with time.
Don't re-invent a date time library yourself. If you think you understand everything about time, you're probably doing it wrong.