This file contains hidden or 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
| {"Key Mappings":{"0x7f-0x80000":{"Text":"\"0x1b 0x7f\"","Action":11},"0xf702-0x280000":{"Text":"b","Action":10},"0xf702-0x300000":{"Text":"0x1","Action":11},"0x71-0x1c0000-0xc":{"Version":2,"Apply Mode":0,"Action":66,"Text":"[{\"Version\":2,\"Apply Mode\":0,\"Action\":11,\"Text\":\"0x5 0x15\",\"Escaping\":2},{\"Version\":2,\"Apply Mode\":0,\"Action\":12,\"Text\":\"exit 0;\",\"Escaping\":2},{\"Version\":2,\"Apply Mode\":0,\"Action\":11,\"Text\":\"0x0d\",\"Escaping\":2}]","Escaping":2},"0xf728-0x80000":{"Text":"d","Action":10},"0x7f-0x100000":{"Text":"0x15","Action":11},"0xf703-0x300000":{"Text":"0x5","Action":11},"0xf703-0x280000":{"Text":"f","Action":10},"0xf728-0x0":{"Text":"0x4","Action":11}},"Touch Bar Items":[]} |
This file contains hidden or 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
| (()=>{ /* recursive expansion dd() */ | |
| document.querySelectorAll('.sf-dump span:first-child').forEach(el=>/^[▶▸]$/.test(el.textContent.trim()) && | |
| el.getBoundingClientRect().width && el.closest('.sf-dump-toggle, a, [role="button"], button')?.click()) | |
| })();'ᕕ( ᐛ )ᕗ' |
This file contains hidden or 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
| #!/bin/bash | |
| images=$(ls -1 *.jpg) | |
| for image in $images ; do | |
| if [ $((RANDOM % 2)) -eq 0 ]; then | |
| # Crop the first half | |
| convert "$image" -crop 600x1800+0+0 ./prints/"$image" | |
| else | |
| # Crop the second half | |
| convert "$image" -crop 600x1800+600+0 ./prints/"$image" | |
| fi |
This file contains hidden or 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
| <script> | |
| const user = @json($user); | |
| console.log(user); | |
| </script> | |
| <script> | |
| const user = {!! json_encode($user ?? []) !!} | |
| console.log(user) | |
| <script> |
This file contains hidden or 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 lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>localhost</title> | |
| <style> |
This file contains hidden or 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 lang="en"> | |
| <head> | |
| <style> | |
| body { | |
| background: #121212 | |
| } |
This file contains hidden or 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
| #!/bin/bash | |
| # Required parameters: | |
| # @raycast.schemaVersion 1 | |
| # @raycast.title Mamp SQL Server | |
| # @raycast.mode compact | |
| # @raycast.argument1 { "type": "dropdown", "placeholder": "Start/Stop/Status", "data": [{"title": "Start", "value": "start"}, {"title": "Stop", "value": "stop"}, {"title": "Status", "value": "status"}] } | |
| # Optional parameters: | |
| # @raycast.icon 🐘 |
This file contains hidden or 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
| /* | |
| <input type="file" multiple class="my-image-field" /> | |
| <div class="row"> | |
| <div class="col-md-6"> | |
| <h2>Before</h2> | |
| <img src="" id="before" alt="Before" /> | |
| </div> | |
| <div class="col-md-6"> | |
| <h2>After</h2> | |
| <img src="" id="after" alt="After" /> |
This file contains hidden or 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
| #!/bin/zsh | |
| killall Safari && /System/Library/Frameworks/CoreServices.framework/Frameworks/LaunchServices.framework/Support/lsregister -f -R /Applications/Safari.app; |
This file contains hidden or 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
| var odmcss = ` | |
| :root { | |
| filter: invert(90%) hue-rotate(180deg) brightness(100%) contrast(100%); | |
| background: #fff; | |
| } | |
| iframe, img, image, video, [style*="background-image"] { | |
| filter: invert() hue-rotate(180deg) brightness(105%) contrast(105%); | |
| } | |
| `; |
NewerOlder