An Arc Boost that lets you message ChatGPT from the Command Bar.
Video here: https://twitter.com/ifvictr/status/1695141929535811821
An Arc Boost that lets you message ChatGPT from the Command Bar.
Video here: https://twitter.com/ifvictr/status/1695141929535811821
0.0.0.0 a-0001.a-msedge.net | |
0.0.0.0 a-0002.a-msedge.net | |
0.0.0.0 a-0003.a-msedge.net | |
0.0.0.0 a-0004.a-msedge.net | |
0.0.0.0 a-0005.a-msedge.net | |
0.0.0.0 a-0006.a-msedge.net | |
0.0.0.0 a-0007.a-msedge.net | |
0.0.0.0 a-0008.a-msedge.net | |
0.0.0.0 a-0009.a-msedge.net | |
0.0.0.0 a-msedge.net |
#!/usr/bin/env bash | |
# References: | |
# | |
# * <https://github.com/smvarela/fedora-postinstall>. | |
# * <https://mutschler.eu/linux/install-guides/fedora-post-install/>. | |
# * <https://docs.fedoraproject.org/en-US/fedora/f34/system-administrators-guide/basic-system-configuration/System_Locale_and_Keyboard_Configuration/>. | |
# * <https://docs.fedoraproject.org/en-US/fedora/f34/system-administrators-guide/kernel-module-driver-configuration/Working_with_the_GRUB_2_Boot_Loader/>. | |
# * <https://docs.fedoraproject.org/en-US/fedora/f34/system-administrators-guide/kernel-module-driver-configuration/Working_with_Kernel_Modules/>. | |
# * <https://wiki.archlinux.org/index.php/silent_boot>. | |
# * <https://rpmfusion.org/Howto/NVIDIA>. |
#!/usr/bin/env python3 | |
''' | |
always getting the most recent frame of a camera | |
================================================ | |
Usage: | |
------ | |
freshest_camera_frame.py |
Sadly, the usual uninstallers of those programs DO NOT remove their "enforcement of pre-installing" extensions into Google Chrome web browser. ("Another program on your computer added an extension that may change the way Chrome works.") | |
This guidance only contains instructions for Google Chrome. | |
Enter about://extensions into the adress bar of Google Chrome. | |
Click on "Details" for the respective extension you want to stop from being pre-installed. | |
Copy the extension ID from the URL (the text after "id="). | |
Now remove all these in the registry existing keys at the following paths: | |
- HKEY_LOCAL_MACHINE\SOFTWARE\Google\Chrome\Extensions\<id> | |
- HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Google\Chrome\Extensions\<id> | |
- HKEY_CURRENT_USER\SOFTWARE\Google\Chrome\Extensions\<id> |
$userPath = $env:USERPROFILE | |
$pathExclusions = New-Object System.Collections.ArrayList | |
$processExclusions = New-Object System.Collections.ArrayList | |
$pathExclusions.Add('C:\Windows\Microsoft.NET') > $null | |
$pathExclusions.Add('C:\Windows\assembly') > $null | |
$pathExclusions.Add($userPath + '\AppData\Local\Microsoft\VisualStudio') > $null | |
$pathExclusions.Add('C:\ProgramData\Microsoft\VisualStudio\Packages') > $null | |
$pathExclusions.Add('C:\Program Files (x86)\MSBuild') > $null | |
$pathExclusions.Add('C:\Program Files (x86)\Microsoft Visual Studio 14.0') > $null |
####First - reset LaunchPad:
defaults write com.apple.dock ResetLaunchPad -bool true; killall Dock
####Second - rebuild the database:
rm ~/Library/Application\ Support/Dock/*.db; killall Dock
http://stackoverflow.com/questions/24380159/corebluetooth-and-wifi-interference
http://lists.apple.com/archives/bluetooth-dev/2013/Aug/msg00023.html
This is a well known issue, and it has a solution that is confirmed to work for the Mac side.
sudo defaults write /Library/Preferences/com.apple.airport.bt.plist bluetoothCoexMgmt Hybrid
After you run this script, the issue will go away and BT connections will remain stable.
# For use in Chef: | |
# Adds a command: git-pull-recursive | |
file "/usr/local/bin/git-pull-recursive" do | |
owner "root" | |
group "root" | |
mode "0755" | |
action :create | |
content 'find . -type d -name .git -exec sh -c "cd \"{}\"/../ && pwd && git pull" \;' | |
end |