There is a lot of services that will print public IP like ipgive.me. Using curl or wget you can easily print your current public IP on the terminal.
curl ipgive.me
wget -q -O- ipgive.me
There is a lot of services that will print public IP like ipgive.me. Using curl or wget you can easily print your current public IP on the terminal.
curl ipgive.me
wget -q -O- ipgive.me
It cannot be done directly from Synapse settings, but you can do it manually by editing Synapse configuration.
{
"ui" : {
"shortcuts" : {
"activate" : "Super_L",
...
}
}
}
There is a disadvantage of this solution. You basically can’t use any other global key combinations with Win key, because it will always trigger Synapse.
If that is a problem you can use xcape
to assign an additional one-click function to a modifier key.
xcape -e 'Super_L=Super_L|space'
There is a handy feature in Windows, when you type Win+. a selector for Emoji and other Unicode characters will appear.
You can install a similar app in Arch Linux using gnome-characters package.
sudo pacman -S gnome-characters
Now you can mimic the Windows feature and assign a global hotkey for Win+. to execute gnome-characters.
Using xinit you can start applications without even starting a window manager. There is a sample in Arch Linxux wiki, but you may notice that Chromium does not fill full screen.
With the example below a specific site is started in kiosk mode taking whole screen. Change the size based on your display.
exec chromium --app=https://example.com --kiosk --window-position=0,0 --window-size=1366,768
Android 12 dropped support for L2TP. If you are looking for alternative and OpenVPN is not possible, because it’s setup in TAP mode, which is not supported on Android nor iPhone, you may try SSTP instead. SSTP (Secure Socket Tunneling Protocol) is protocol developed by Microsoft.
There is a open source client Open SSTP available Google Play. However MikroTik’s PAP implementation does not seem to work, so your only option is to use MS-CHAPv2, but it is more secure anyway!
The drivers seems to no longer be available on the C-TECH website.
You can download them below.
Put the following code snippet into the top of your bat file. PowerShell is required.
"%SYSTEMROOT%\system32\cacls.exe" "%SYSTEMROOT%\system32\config\system"
IF %ERRORLEVEL% NEQ 0 (
powershell -Command "Start-Process -Verb RunAs -FilePath '%0' -ArgumentList '%*'"
exit /b
)
Duo Security currently supports Android 10+. If you need to install Duo Security on older Android you can download APK from their site. The latest version with 8.0 support seems to be 4.33.
Windows 7 does not come with USB 3.0 controller drivers. It will display error during installation and won’t find driver using Windows Update.
Intel USB 3.0 eXtensible Host Controller Driver needs to be installed. But it is no longer available for download. You can download it using Internet Archive or use a backup link below.
Let’s say you have a repository structure like below (eg. because previously it was SVN repository where everything was on one place).
Now you would like to move example.com to separate git repository.
First of all, you need to install git-filter-repo.
# Clone old repository to new directory
git clone OLD_REPOSITORY example.com
cd example.com/
# Remove everything else except example.com directory
git filter-repo --path example.com/
# Make example.com new root directory
git filter-repo --subdirectory-filter example.com
# Push to a new repository
git remote add origin NEW_REPOSITORY
git push -u origin master