µ
muOption + M
Example:27 µs
°
degreeShift + Option + 8
Example:32°C
We have several resources manually created using the AWS Console. I want to manage these resources with Terraform. Originally, I had imported these resources into the Terraform state using individual files. Instead, I should have used modules. I tried moving my files into modules and then using the module to refer to the resource, but the namespace was incorrect. Applying changes at this point would have destroyed and recreated the resources, which is unnecessary.
This is how I moved the resources within the state. This should work for any resource listed in the Terraform state.
Copy over any resouces declarations to the module format. I didn't rename anything, but I think it is possible at this point.
#!/bin/bash | |
if test -z "$1"; then | |
echo "Usage: $0 <prompt>" | |
exit 1 | |
fi | |
if test -z "$OPENAI_API_KEY"; then | |
echo "OpenAI key is missing - \$OPENAI_API_KEY must be set" | |
exit 1 |
^$\n
^((?!foo).)*$
npm list
find . -type d -name "node_modules" -prune -o -name "package.json" -type f -exec grep -L '"test"' {} \;
- Create a new
aiff
audio file in GarageBand about a second long, "Share"->"Export..."->"Save as silence.aif"
- Easier, download the audio file I created: https://github.com/todgru/dotfiles/raw/master/silence.aif
- Save audio file to
~/Library/Sounds
. - Open "System Settings" application.
- In "Sounds", Select "silence" from drop down list(see screenshot).
Apple MacBook Pro M1, 32 GB, Ventura 13.2
Documentation based on comments in this Github Elasticsearch issue.
Install Homebrew