Run two Claude Code accounts simultaneously on macOS without re-authenticating by using separate configuration directories.
- Create Separate Config Directories
mkdir ~/.claude-account1 mkdir ~/.claude-account2
| My recommended learning resources for web development. (Note this may be a little too much.) | |
| This is over 80 lines of text. | |
| This is a good video: | |
| How to Become a Master Web Developer | |
| https://www.youtube.com/watch?v=0yzRW8yqN4M | |
| 2016/2017 MUST-KNOW WEB DEVELOPMENT TECH - Watch this if you want to be a web developer | |
| https://www.youtube.com/watch?v=sBzRwzY7G-k 22:51 |
| #!/bin/bash | |
| cartella="/var/myfolder" | |
| # update the file | |
| curl -i -X PUT -H 'Authorization: token 4d013330xxxxxxxxxxxxxx' -d "{\"path\": \"mattei.csv\", \ | |
| \"message\": \"update\", \"content\": \"$(openssl base64 -A -in $cartella/mattei.csv)\", \"branch\": \"master\",\ | |
| \"sha\": $(curl -X GET https://api.github.com/repos/username/repo/contents/mattei.csv | jq .sha)}" \ | |
| https://api.github.com/repos/username/repo/contents/mattei.csv |
$ mkdir sass_gulp_workshopcd into the new directory$ npm init --yes$ npm install -D gulp gulp-sass browser-syncpackage.json's scripts section with this key-value pair: "scripts": { "dev": "gulp" }public (directory)
css (directory)index.html (file)| <?xml version="1.0"?> | |
| <!DOCTYPE fontconfig SYSTEM "fonts.dtd"> | |
| <fontconfig> | |
| <!-- | |
| Documented at | |
| http://linux.die.net/man/5/fonts-conf | |
| To check font mapping run the command at terminal | |
| $ fc-match 'helvetica Neue' |
⇐ back to the gist-blog at jrw.fi
Or, 16 cool things you may not have known your stylesheets could do. I'd rather have kept it to a nice round number like 10, but they just kept coming. Sorry.
I've been using SCSS/SASS for most of my styling work since 2009, and I'm a huge fan of Compass (by the great @chriseppstein). It really helped many of us through the darkest cross-browser crap. Even though browsers are increasingly playing nice with CSS, another problem has become very topical: managing the complexity in stylesheets as our in-browser apps get larger and larger. SCSS is an indispensable tool for dealing with this.
This isn't an introduction to the language by a long shot; many things probably won't make sense unless you have some SCSS under your belt already. That said, if you're not yet comfy with the basics, check out the aweso