The complete guide to building Skills for Claude — covers fundamentals, planning, testing, distribution, patterns, and YAML frontmatter reference (converted from Anthropic's official PDF)
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
| #!/usr/bin/env bash | |
| set -euo pipefail | |
| # Required Chrome version can be found here: | |
| # https://www.ubuntuupdates.org/package/google_chrome/stable/main/base/google-chrome-stable | |
| CHROME_VERSION="" | |
| wget --no-check-certificate \ |
for 4.2.4 or higher, 4.2.5,4.2.6,4.3.7, it's works, this is the way which makes Always in evaluation mode.
- open
Terminal, go to the dir :cd /Applications/Beyond Compare.app/Contents/MacOS - change the name
BComparetoBCompare.bak:mv BCompare BCompare.bak - touch a file name
BCompare, andchmod a+ux BCompare:touch BCompare && chmod a+ux BCompare - open
BComparewith text editor, insert the script :
#!/bin/bash
rm "/Users/$(whoami)/Library/Application Support/Beyond Compare/registry.dat"
"`dirname "$0"`"/BCompare.bak $@
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
| // Browser fingerprinting is a technique to "mark" anonymous users using JS | |
| // (or other things). To build an "identity" of sorts the browser is queried | |
| // for a list of its plugins, the screen size and several other things, then | |
| // hashes them. The idea is that these bits of information produce an unique | |
| // "fingerprint" of sorts; the more elaborate the list of data points is, the | |
| // more unique this fingerprint becomes. And you wouldn't even need to set a | |
| // cookie to recognize this user when she visits again. | |
| // | |
| // For more information on this topic consult | |
| // [Ars Technica](http://arstechnica.com/tech-policy/news/2010/05/how-your-web-browser-rats-you-out-online.ars) |