This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class QuickGit | |
{ | |
/** @var int */ | |
private $major = 1; | |
/** @var int */ | |
private $minor = 0; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.Pride { | |
background: linear-gradient( | |
#000000, | |
#000000 12.5%, | |
#754d15 12.5%, | |
#754d15 25%, | |
#f00000 25%, | |
#f00000 37.5%, | |
#ff8000 37.5%, | |
#ff8000 50%, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
gh alias set issueBranch --shell \ | |
'title="$(gh issue view $1 --json title --jq .title)"; \ | |
slug="$(source $HOME/.zshrc && slugify "$title")"; \ | |
git checkout -b "prefix-$1.$slug"' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1 | |
01:00:00,000 --> 01:00:03,220 | |
Yeah. As as much as it's worth celebrating | |
2 | |
01:00:04,480 --> 01:00:05,940 | |
the 1st spacewalk | |
3 | |
01:00:06,399 --> 01:00:07,859 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
WEBVTT | |
NOTE | |
Transcription provided by Deepgram | |
Request Id: 3f3e86c6-c632-4dee-a54e-76871eb49bd2 | |
Created: 2023-06-16T11:01:31.417Z | |
Duration: 25.933313 | |
Channels: 1 | |
01:00:00.000 --> 01:00:03.220 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
curl -s https://api.github.com/orgs/lukeocodes/repos\?per_page\=100 | jq '.[].html_url' | xargs -n 1 git clone |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "web", | |
"version": "0.1.0", | |
"private": true, | |
"scripts": { | |
"dev-https": "cross-env NEXT_PUBLIC_APP_URL=yourdomain.com cross-var next dev . --hostname=$NEXT_PUBLIC_APP_URL --experimental-https", | |
"dev": "next dev", | |
"build": "next build", | |
"start": "next start", | |
"lint": "next lint", |