How to send files from PC to Laptop on Home Wifi Network – Windows OpenSSH Server

How to transfer files between 2 Windows 10 PC’s. How to send files from Computer to Wifi Laptop.

—- The Powershell Commands —

Get-WindowsCapability -Online | ? Name -like ‘OpenSSH*’

Add-WindowsCapability -Online -Name OpenSSH.Server~~~~0.0.1.0

Set-Service -Name sshd -StartupType ‘Automatic’

—- Extra: Make a firewall rule —

Get-NetFirewallRule -Name *ssh*

New-NetFirewallRule -Name sshd -DisplayName ‘OpenSSH Server (sshd)’ -Enabled True -Direction Inbound -Protocol TCP -Action Allow -LocalPort 22

— Uninstall the OpenSSH Server—

Remove-WindowsCapability -Online -Name OpenSSH.Server~~~~0.0.1.0

Forgot Bitcoin Password? Find it with btcRecover | Install Guide | Force Brutally

Forgot or Lost your Bitcoin Password? Find it back with btcRecover

Part 1: Learn how to Install the program so you can do the tutorials.

Forgot Bitcoin Password? Find it with btcRecover – Force Brutally

Part 2: A short preview on getting back a password from bitcoin-core wallet.dat

To make the automatic loaded token file to force a 4 letter password: (1) Make a new text file (.txt) by right mouse clicking in folder (2) Name it exactly: btcrecover-tokens-auto.txt (3) Copy the following & make sure #–wallet wallet.dat is one first line.

#–wallet wallet.dat –enable-gpu ########################################################################### # This is a comment, btcrecover ignores everything after a # sign # # To automatically load a tokenlist save it as btcrecover-tokens-auto.txt # # We can add command-lines in the token by writing #– on the first line, # # this is the only exception on the # comment rule # # Just paste this file and your wallet.dat in btcrecover-master folder # # Run btcrecover without extra aguments (since they are in this file) # # so only write in command: C:\Python27\python btcrecover.py # ########################################################################### # (space + # = #) (%S = $) (%% = %) (%^ = ^) (%s = single space) # # The + sign = only try passwords with the following token in it. # # The ^ sign = try following token only in the begin of password # # %d = 1 digit(0-9) %2d = 2 digits(00-99) %1,3d = 1,2 or 3 digits (0-999) # # ^r1^ ^r2^ ^r3^ = Relative position of token # # The $ sign at the end of a token = token is at the end of password # # A space between tokens = OR # # (%a = a-z) (%A = A-Z) (%1,3in = 1,2 or 3 digits or a-Z) # # (%y = symbol !@#$) (%P = Anything) # ########################################################################### %P %P %P %P

Host FREE website @ Home 4 – WORDPRESS PHP MYSQL

Install and configure PHP-7.2, MySQL, PhpMyadmin on Linux Ubuntu to be used by a WordPress website.

sudo mysql
SELECT user,authentication_string,plugin,host FROM mysql.user;
ALTER USER ‘root’@’localhost’ IDENTIFIED WITH mysql_native_password BY ‘password‘;
FLUSH PRIVILEGES;
Root is now disabled

mysql -u root -p
CREATE USER ‘user‘@’localhost’ IDENTIFIED BY ‘password‘;
GRANT ALL PRIVILEGES ON . TO ‘user‘@’localhost’ WITH GRANT OPTION;

Switch Python-2.7 to 3.7 in CMD.

Learn how to be able to switch between multiple Python versions in CMD for Windows 10.
1 Go to Control Panel, System, Advanced System Settings, Environmental Variables.
2 Edit the User and System Variables of PATH, delete both python values C:\Python27 and C:\Python27\Scripts
3 Add to PATH the variables %PYTHON_HOME% and %PYTHON_HOME%\Scripts
4 Now make a new Environmental Variable named PYTHON_HOME with the value C:\Python27
Until Command Prompt is closed we can now temporarily change the Python version from Python2.7 to Python3.7 with the following:
set PYTHON_HOME=C:\Python37
set PATH=%PYTHON_HOME%;%PYTHON_HOME%\Scripts;%PATH%
You can also save the following as py37.bat and run it in CMD
@echo off
echo setting PYTHON_HOME = C:\Python37
set PYTHON_HOME=C:\Python37
echo setting PATH = %PYTHON_HOME%;%PYTHON_HOME%\Scripts;
set PATH=%PYTHON_HOME%;%PYTHON_HOME%\Scripts;%PATH%