| Before | After |
|---|---|
![]() |
![]() |
Install stylebot exntension for your browser (Chrome based browser's only) https://stylebot.dev/
Go to your https://teams.microsoft.com/_#/conversations/ and click to stylebot icon
| # Interactive Claude Code Version Manager | |
| # add this to your ~/.zshrc | |
| # dont forget to run `source ~/.zshrc` or open new terminal | |
| # works with brew and npx installations | |
| ccvm() { | |
| local versions_dir="$HOME/.local/share/claude/versions" | |
| local claude_bin="$HOME/.local/bin/claude" | |
| # Check versions directory exists |
| /** | |
| * YouTube Clean Grid & De-Clutter | |
| * Description: Expands grid to 7 columns, hides Mixes, watched videos, | |
| * shorts, games, surveys, and promotional banners. | |
| */ | |
| /* Grid Layout: Expand to 7 items per row */ | |
| ytd-rich-grid-renderer { | |
| --ytd-rich-grid-items-per-row: 7 !important; | |
| } |
| Before | After |
|---|---|
![]() |
![]() |
Install stylebot exntension for your browser (Chrome based browser's only) https://stylebot.dev/
Go to your https://teams.microsoft.com/_#/conversations/ and click to stylebot icon
| #include <ArduinoJson.h> | |
| void setup() { | |
| // put your setup code here, to run once: | |
| Serial.begin(9600); | |
| Serial.println("Hello"); | |
| // {"led0":[10,20,30],"led1":[50,20,40]} // example string | |
| } | |
| void loop() { |