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
1password.op-vscode | |
aaron-bond.better-comments | |
adpyke.vscode-sql-formatter | |
aki77.html-erb | |
aki77.quick-open-rails | |
aki77.rails-routes | |
alefragnani.project-manager | |
andrewmcodes.rails-extension-power-pack | |
anx450z.ruby-theme | |
benspaulding.procfile |
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
1password.op-vscode | |
aaron-bond.better-comments | |
adpyke.vscode-sql-formatter | |
aki77.html-erb | |
aki77.quick-open-rails | |
aki77.rails-routes | |
alefragnani.project-manager | |
andrewmcodes.rails-extension-power-pack | |
anx450z.ruby-theme | |
benspaulding.procfile |
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
#! /usr/bin/env zsh | |
file=$(fd -e rb -H -1 | shuf -n 1) | |
line=$(shuf -i 1-$(($(wc -l < "$file") + 1)) -n 1) | |
awk -v line="$line" 'NR==line{$0="# GOOD_JOB: YOU PROBABLY FORGOT TO REMOVE THIS COMMENT DIDNT YOU\n"$0}1' "$file" > temp && mv temp "$file" |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8" /> | |
<meta http-equiv="x-ua-compatible" content="ie=edge" /> | |
<title></title> | |
<meta name="viewport" content="width=device-width, initial-scale=1" /> | |
<link rel="stylesheet" href="styles/common.css" /> | |
<link rel="stylesheet" href="styles/playlist.css" /> | |
</head> |
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
const notice = (msg) => new Notice(msg, 5000); | |
const log = (msg) => console.log(msg); | |
const RUBYGEMS_API_URL = "https://rubygems.org/api/v1/gems/"; | |
let QuickAdd; | |
module.exports = async function start(params) { | |
QuickAdd = params; |
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
. _///_, | |
. / ` ' '> | |
) o' __/_'> | |
( / _/ )_\'> | |
' "__/ /_/\_> | |
____/_/_/_/ | |
/,---, _/ / | |
"" /_/_/_/ | |
/_(_(_(_ \ | |
( \_\_\\_ )\ |
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
[{"nldates-obsidian":{"id":"nldates-obsidian","name":"Natural Language Dates","author":"Argentina Ortega Sainz","description":"Create date-links based on natural language.","repo_url":"https://github.com/argenos/nldates-obsidian","marketplace_url":"obsidian://show-plugin?id=nldates-obsidian"}},{"hotkeysplus-obsidian":{"id":"hotkeysplus-obsidian","name":"Hotkeys++","author":"Argentina Ortega Sainz","description":"Additional hotkeys to do common things in Obsidian.","repo_url":"https://github.com/argenos/hotkeysplus-obsidian","marketplace_url":"obsidian://show-plugin?id=hotkeysplus-obsidian"}},{"obsidian-git":{"id":"obsidian-git","name":"Obsidian Git","author":"Vinzent, (Denis Olehov)","description":"Backup your vault with Git","repo_url":"https://github.com/denolehov/obsidian-git","marketplace_url":"obsidian://show-plugin?id=obsidian-git"}},{"url-into-selection":{"id":"url-into-selection","name":"Paste URL into selection","author":"Denis Olehov","description":"Paste URL \"into\" selected text.","repo_url":"htt |
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
$$('*').forEach(el => el.style.outline=`1px solid hsl(${ el.tagName.split('').reduce((sum, c)=> sum+=c.charCodeAt(0), 0) % 360 },99%,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
Flipper::UI.configure do |config| | |
config.banner_text = "Production Environment" if Rails.env.production? | |
end |
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
class BoxComponent < ViewComponent::Base | |
DEFAULT_TAG = :div | |
def initialize(**opts) | |
@opts = opts | |
@tag_opts = opts.except(:as, :classes) | |
end | |
def call | |
tag.send tag_name, content, class: classes, **tag_opts |
NewerOlder