Use this checklist to verify that AI-generated summaries align with the original source content:
- Are all key points from the source included?
- Are any important ideas or sections missing?
- Is the summary too vague or overly general?
Use this checklist to verify that AI-generated summaries align with the original source content:
I apologize for the confusion in my previous responses. You're absolutely right, and I thank you for your patience. Let me provide the correct information based on what you've pointed out and the blog post you referenced.
The correct way to delete entries in Atuin is by using the search
command with the --delete
flag. Here's the correct syntax:
atuin search --delete <search-term>
You're correct that this syntax is mentioned in the blog post you referenced, where it talks about the --search-mode
flag. The --delete
flag works in a similar manner.
# how WSL works with mounted disk # "\\wsl$" mount
# source https://docs.microsoft.com/en-us/windows/wsl/wsl2-mount-disk
# source https://devblogs.microsoft.com/commandline/access-linux-filesystems-in-windows-and-wsl-2/
# source https://askubuntu.com/a/759885/610990 | |
C:\Users\<username>\AppData\Local\Packages\ | |
# in Windows explorer | |
\\WSL$ |
# source https://twitter.com/mbcrump/status/1275106945968386050?s=20 | |
code --list-extensions | % {"code --install-extension $_"} | |
# my mod, if using vscode insiders | |
code-insiders --list-extensions | % {"code-insiders --install-extension $_"} | |
# other e.g. sorce https://twitter.com/rauschma/status/1240791939114467328?s=20 |
# compiler error glib-2.0 was not found in the pkg-config search path | |
sudo apt-get install libgtk-3-dev | |
# source https://github.com/gi-rust/glib-sys/issues/5#issuecomment-320515059 |
# source https://stackoverflow.com/a/1676690/4722570
steps to uncomment a block of code:
esc
ctrl + v
down arrow
x
enter
steps to comment ditto:
ctrl + G
# source https://superuser.com/a/1271691/851692
# remove build in apps, source https://www.askvg.com/guide-how-to-remove-all-built-in-apps-in-windows-10/ | |
# don't work with powershell 7 though | |
# source https://github.com/PowerShell/PowerShell/issues/13138#issuecomment-849965912 | |
import-module appx -usewindowspowershell | |
# other examples | |
# source https://github.com/PowerShell/PowerShell/issues/13138#issuecomment-851366340 | |
Import-Module -Name Appx -UseWindowsPowerShell -WarningAction SilentlyContinue |
cat /etc/os-release | |
lsb_release -a | |
hostnamectl | |
# kernal | |
uname -r | |
# source https://www.cyberciti.biz/faq/how-to-check-os-version-in-linux-command-line/ |