It will pass transformed CSS to the linter to troll you— no matter what.
just load stylelint through a vite plugin.
| { | |
| "sentences": [ | |
| "The birch canoe slid on the smooth planks.", | |
| "Glue the sheet to the dark blue background.", | |
| "It's easy to tell the depth of a well.", | |
| "These days a chicken leg is a rare dish.", | |
| "Rice is often served in round bowls.", | |
| "The juice of lemons makes fine punch.", | |
| "The box was thrown beside the parked truck.", | |
| "The hogs were fed chopped corn and garbage.", |
It will pass transformed CSS to the linter to troll you— no matter what.
just load stylelint through a vite plugin.
| # https://jonasjacek.github.io/colors | |
| FC='38;5' # Full Color ANSI 256 Prefix | |
| declare -A colors | |
| colors=( | |
| [ejs]=149 | |
| [js]=184 | |
| [jsx]=116 | |
| [json]=251 | |
| [ts]=32 | |
| [css]=33 |
| :root { | |
| /* | |
| Swap any Base16 theme here | |
| http://terminal.sexy | |
| Defaults to Ocean Dark Extended | |
| */ | |
| --bg: #2b303b; | |
| --fg: #c0c5ce; | |
| --c0: #2b303b; | |
| /* C1 & C2 (diff highlights) might need manual darken override */ |
| # Animations | |
| # Disable animations when opening and closing windows. | |
| defaults write NSGlobalDomain NSAutomaticWindowAnimationsEnabled -bool false | |
| # Disable animations when opening a Quick Look window. | |
| defaults write -g QLPanelAnimationDuration -float 0 | |
| # Accelerated playback when adjusting the window size of Cocoa applications. | |
| defaults write NSGlobalDomain NSWindowResizeTime -float 0.001 | |
| defaults write -g NSDocumentRevisionsWindowTransformAnimation -bool false |
| 127.0.0.1 adclick.g.doublecklick.net | |
| 127.0.0.1 adeventtracker.spotify.com | |
| 127.0.0.1 ads-fa.spotify.com | |
| 127.0.0.1 analytics.spotify.com | |
| 127.0.0.1 audio2.spotify.com | |
| 127.0.0.1 b.scorecardresearch.com | |
| 127.0.0.1 bounceexchange.com | |
| 127.0.0.1 bs.serving-sys.com | |
| 127.0.0.1 content.bitsontherun.com | |
| 127.0.0.1 core.insightexpressai.com |
| #brew | |
| /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" | |
| brew tap caskroom/versions | |
| brew cask install | |
| brew install zsh git coreutils neovim | |
| brew cask install \ | |
| alfred \ | |
| bettertouchtool \ | |
| discord \ | |
| google-chrome-dev \ |
I hereby claim:
To claim this, I am signing this object:
| // Solutions in Javascript for the Chillin & Grillin | |
| // coding event @ Geekdom | |
| function numword (num) { | |
| const numwords = [ | |
| 'Zero','One','Two','Three','Four', | |
| 'Five','Six','Seven','Eight','Nine' | |
| ]; | |
| return numwords[num] | |
| } |
nnoremap ,f :find *
nnoremap ,s :sfind *
nnoremap ,v :vert sfind *
nnoremap ,t :tabfind *
nnoremap ,F :find <C-R>=fnameescape(expand('%:p:h')).'/**/*'<CR>
nnoremap ,S :sfind <C-R>=fnameescape(expand('%:p:h')).'/**/*'<CR>
nnoremap ,V :vert sfind =fnameescape(expand('%:p:h')).'/**/*'