Updated: Just use qutebrowser (and disable javascript). The web is done for.
This file contains hidden or 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
$credentials = Get-StoredCredential -Target sshpassphrase | |
$BSTR = [System.Runtime.InteropServices.Marshal]::SecureStringToBSTR($credentials.Password) | |
$passphrase = [System.Runtime.InteropServices.Marshal]::PtrToStringAuto($BSTR) | |
C:\Windows\System32\wsl.exe -u [YOUR_WSL_USERNAME] -d [YOUR_DISTRIBUTION] /home/[YOUR_WSL_USERNAME]/wslu/keychain.sh $passphrase |
This file contains hidden or 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
%% Init | |
clear all | |
close all | |
%!cp -v ~/place/spacescience.tech/place/img/1*.png ~/place | |
%% Import data and sum | |
files = dir('1*.png'); | |
image = imread(files(1).name); | |
chnum = zeros(1e3,1e3); |