-
Baseus cable 100W USB-C to USB Type C PD2.0 Fast Charger QC3.0
20V/5A – 100W high power QC3.0 quick charge PD2.0 480Mbps transmission rate Intelligent management chips Aluminium alloy + TPE + High density glossy braided wire Lenght: 2 metters USB Type C interface
-
How to Map network drive MacOS Catalina Automount
How to Map a Network Drive on Mac Launch Finder Click Go > Connect to Server (Command + K) Enter the path for the network drive you’d like to map and click Connect. (smb://192.168.222.111) If you’re prompted for a confirmation, click Connect. Once the network drive has been mapped, it will appear under your desktop as a mounted drive or under your Locations menu in any Finder window. How to Automount a Network Drive on macOS Click the Apple Logo…
-
CaTV – TV Cable – Project – Jana – Zizkova
Cable Connector F Coupler FF 13, 5pcs female/female – OK – 151 CZK – https://www.alza.cz/EN/f-coupler-ff-13-5pcs-d4784382.htm Splitter FV 1 (two-way adapter) – male connectors: 3× coaxial connector (F), straight termination – OK – 109 CZK – https://www.alza.cz/EN/fv-1-d305601.htm Adapter F/IEC Transition Adapter FF 18 – male connectors: 1× antenna connector (Belling-Lee), female connectors 1× coaxial connector (F), metal Body, straight connector ends – OK – 99 CZK – https://www.alza.cz/EN/fiec-transition-adapter-ff-18-5pcs-d4784402.htm Connector F connector FF 2 connector for a KH 4 cable – type…
-
Toshiba Exceria vs Verbatim Premium vs Toshiba 40MB/s
MacBookPro 2019 16inch i9 Ugreen USB-C adapter SD Card Formatter 5.0.1 FAT32 formated all cards using ridgecrop piece of software 8192 Fille Allocation Unit Tested using h2testw_1.4.zip Toshiba 40MB/s SDHC U1 16GB Writing speed: 12.4 MByte/s Reading speed: 39.0 MByte/s Toshiba Exceria SDHC U1 16GB Writing speed: 12.7 MByte/s Reading speed: 74.4 MByte/s Verbatim SDHC U1 16GB Writing speed: 10.2 MByte/s Reading speed: 74.1 MByte/s
-
Sony BDV-E370 3D Blu-ray Disc Player Home Theater System
Components: Speaker system, Blu-ray disc player / AV receiver Surround System Class: 5.1 channel Sound Output Mode: Surround Sound Built-in Decoders: DTS 96/24, DTS Neo:6, DTS decoder, DTS-ES decoder, DTS-HD decoder, Dolby Digital, Dolby Pro Logic II, Dolby Pro Logic IIx, Dolby TrueHD Surround Sound Effects: Virtual Surround Mode Sound Effects: D-Bass Digital Sound Processor (DSP): Yes DSP Preset Qty: 6 Output Power RMS (Total): 850 Watt Additional Features: Audio Return Channel (ARC), Midnight Mode, auto sound calibration, compressed music…
-
Migrate WordPress installation from GCP to cPanel
tutorial is based on documentation available here: https://docs.bitnami.com/general/apps/ https://docs.bitnami.com/general/apps/wordpress-pro/ Let’s first identify the version of OS running on Google Cloud virtual machine root@vm:/home# lsb_release -a No LSB modules are available. Distributor ID: Debian Description: Debian GNU/Linux 9.12 (stretch) Release: 9.12 Codename: stretch Now let’s try to find Apache Document Root in Linux Chromium OS 11.0 To identify if your Bitnami stack uses MySQL or MariaDB run this command: root@vm:/home# test -d /opt/bitnami/mariadb && echo “MariaDB” || echo “MySQL” MySQL Check…
-
Install macOS 10.15 Catalina on VirtualBox on Windows 10 PC
install Oracle VirtualBox 6.1 VirtualBox 6.1.14 Oracle VM VirtualBox Extension Pack Download macOS 10.15 Catalina VMDK File cd “C:\Program Files\Oracle\VirtualBox\” VBoxManage.exe modifyvm “macOS 10.15 Catalina” –cpuidset 00000001 000106e5 00100800 0098e3fd bfebfbff VBoxManage setextradata “macOS 10.15 Catalina” “VBoxInternal/Devices/efi/0/Config/DmiSystemProduct” “iMac11,3” VBoxManage setextradata “macOS 10.15 Catalina” “VBoxInternal/Devices/efi/0/Config/DmiSystemVersion” “1.0” VBoxManage setextradata “macOS 10.15 Catalina” “VBoxInternal/Devices/efi/0/Config/DmiBoardProduct” “Iloveapple” VBoxManage setextradata “macOS 10.15 Catalina” “VBoxInternal/Devices/smc/0/Config/DeviceKey” “ourhardworkbythesewordsguardedpleasedontsteal(c)AppleComputerInc” VBoxManage setextradata “macOS 10.15 Catalina” “VBoxInternal/Devices/smc/0/Config/GetKeyFromRealSMC” 1
-
Unlock the full potential Raspberry PiHole
As of Pi-hole V5, the file /etc/pihole/adlists.list is no longer used. As discussed in the V5 release notes, adlists, domain blocks (regex, whitelist, blacklist), group assignments and gravity are in a single database in file /etc/pihole/gravity.db If you want to add the lists you show in your post, select the lot of them (without the commented lines), copy to your clipboard. Then go to web admin GUI > Group Management > adlists and paste the lot into the entry window,…
-
Setup a Raspberry Pi Plex Server
ensure our operating system is entirely up to date: sudo apt-get update sudo apt-get upgrade This package allows the “apt” package manager to retrieve packages over the “https” protocol that the Plex repository uses. sudo apt-get install apt-transport-https add the official Plex package repository: curl https://downloads.plex.tv/plex-keys/PlexSign.key | sudo apt-key add – add the official plex repository echo deb https://downloads.plex.tv/repo/deb public main | sudo tee /etc/apt/sources.list.d/plexmediaserver.list run the “update” command again to refresh the package list sudo apt-get update install the…
-
Install Terraform 0.13.4 on Homebrew on MacOS
installing Homebrew available officially here and also here Install Terraform official instructions here 01. First, install the HashiCorp tap, a repository of all our Homebrew packages. $ brew tap hashicorp/tap 02. Now, install Terraform 0.13.4 with hashicorp/tap/terraform. $ brew install hashicorp/tap/terraform 03. Update to the latest, run: $ brew upgrade hashicorp/tap/terraform 04. Verify the installation: $ terraform -help