This updates claude with customized spinner words, available in claude code 2.1.23+ (tweet)
On line installer:
curl -sL "https://gist.githubusercontent.com/pi0/7bcc61a0bc3944908f9d1471ddb3796f/raw" | claude -p --allowedTools "Edit,Read,Write"This updates claude with customized spinner words, available in claude code 2.1.23+ (tweet)
On line installer:
curl -sL "https://gist.githubusercontent.com/pi0/7bcc61a0bc3944908f9d1471ddb3796f/raw" | claude -p --allowedTools "Edit,Read,Write"The package that linked you here is now pure ESM. It cannot be require()'d from CommonJS.
This means you have the following choices:
import foo from 'foo' instead of const foo = require('foo') to import the package. You also need to put "type": "module" in your package.json and more. Follow the below guide.await import(…) from CommonJS instead of require(…).| // www.featherattribution.com. Brought to you by www.scrapingbee.com and www.freddyfeedback.com | |
| class FeatherAttribution { | |
| constructor(options) { | |
| this.storageItems = ['feather_utm_source', 'feather_utm_medium', 'feather_utm_campaign', 'feather_utm_content', 'feather_ref', 'feather_referrer']; | |
| this.checkExpiryDates(); | |
| this.setOptions(options); | |
| this.referrer = document.referrer; | |
| this.ref = this.getParameterByName('ref'); |
| #!/bin/bash | |
| sudo apt update -y \ | |
| && sudo apt upgrade -y | |
| sudo apt install \ | |
| wget \ | |
| screen \ | |
| default-jdk \ | |
| nmap |
| 0-mail.com | |
| 007addict.com | |
| 020.co.uk | |
| 027168.com | |
| 0815.ru | |
| 0815.su | |
| 0clickemail.com | |
| 0sg.net | |
| 0wnd.net | |
| 0wnd.org |
Sometimes you may want to undo a whole commit with all changes. Instead of going through all the changes manually, you can simply tell git to revert a commit, which does not even have to be the last one. Reverting a commit means to create a new commit that undoes all changes that were made in the bad commit. Just like above, the bad commit remains there, but it no longer affects the the current master and any future commits on top of it.
git revert {commit_id}
Deleting the last commit is the easiest case. Let's say we have a remote origin with branch master that currently points to commit dd61ab32. We want to remove the top commit. Translated to git terminology, we want to force the master branch of the origin remote repository to the parent of dd61ab32: