sudo kextcache -v 1 -a i386 -a x86_64 -m /System/Library/Caches/com.apple.kext.caches/Startup/Extensions.mkext /System/Library/Extensions
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Windows Registry Editor Version 5.00 | |
[HKEY_CLASSES_ROOT\Directory\Background\shell\Mingw64] | |
@="Open Mingw64 here" | |
"Icon"="C:\\msys64\\mingw64.ico" | |
[HKEY_CLASSES_ROOT\Directory\Background\shell\Mingw64\command] | |
@="C:\\msys64\\mingw64.exe bash" |
- Intel Processors extracted from the Microcode repository of "UEFI BIOS Updater" and sorted by Architecture
- 906EA
- 906EB
- 906EC
- 906ED
[Socket 1200]
- A0650
(Deny write access to removable drives not protected by BitLocker) HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Policies\Microsoft\FVE
RDVDenyWriteAccess DWORD
(delete) = Allow (default)
1 = Deny
0 = Allow
robocopy "C:\your source folder" "F:\your destination folder" /e /dcopy:DAT /MT /z
Enable Vmware shared folders in PowerShell context:
net use Z: "\\vmware-host\Shared Folders"
Copy options
git show-ref
git remote add <remote_Branch> <remote_repo>
git fetch
git add .
git commit -m 'reinitialized files'
git push -f --no-thin https:<your repo> HEAD:refs/heads/<remote branch>
https://github.com/git-for-windows/git/wiki/Install-inside-MSYS2-proper
- Open a PowerShell as administrator, and enter the following command:
New-Item -ItemType SymbolicLink -Path 'C:\msys64\opt\git-for-windows-mingw64-bin' -Target 'C:\Program Files\Git\mingw64\bin'
This asumes that both paths exist and you have both Git for Windows and MSYS2 installed on those default locations, change them according to your needs.
- Next, add the following 2 lines to your .gitconfig file in you MSYS2 homefolder:
[credential]
- How to add your terminal to Developer Tools:
- Run
sudo spctl developer-mode enable-terminal
in your terminal. - Go to System Preferences, and then to Security & Privacy.
- Under the Privacy tab, an item called
Developer Tools
should be present. Navigate to it. - Ensure that your terminal is listed and enabled. If you're using a third-party terminal like iTerm, be sure to add it to the list. (You may have to click the lock in the bottom-left corner and authenticate.)
- Restart your terminal.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
namespace CPUID | |
{ | |
using System; | |
using System.Globalization; | |
using System.Linq; | |
using System.Reflection; | |
using System.Runtime.InteropServices; | |
using System.Text; |
NewerOlder