It is for getting from my personal computer to my job computer.
| <nav role="navigation"> | |
| <ul> | |
| <li><a href="#">One</a></li> | |
| <li><a href="#" aria-haspopup="true">Two</a> | |
| <ul class="dropdown" aria-label="submenu"> | |
| <li><a href="#">Sub-1</a></li> | |
| <li><a href="#">Sub-2</a></li> | |
| <li><a href="#">Sub-3</a></li> | |
| </ul> | |
| </li> |
| #!/usr/bin/env bash | |
| # Using wget to download VSCode archive file from the direct URL | |
| wget -O vscode.tar.gz 'https://code.visualstudio.com/sha/download?build=stable&os=linux-x64' | |
| # Create a directory to extract the file | |
| mkdir -p vscode | |
| # Extract the file | |
| tar -xvf vscode.tar.gz -C vscode |
| /* CSS Document */ | |
| @import url(https://fonts.googleapis.com/css?family=Open+Sans); | |
| @import url(https://fonts.googleapis.com/css?family=Bree+Serif); | |
| body { | |
| background: #212121; | |
| font-size:22px; | |
| line-height: 32px; | |
| color: #ffffff; |
| import fs from 'fs'; | |
| import path from 'path'; | |
| const sourceFolder = 'assets/css/dark/'; | |
| const destinationFolders = ['app', 'pages']; | |
| const baseDirectory = '../coverage'; | |
| function copyDirectory(source: string, destination: string) { | |
| if (!fs.existsSync(destination)) { | |
| fs.mkdirSync(destination, { recursive: true }); |
| <h2>Iframe Web Browser</h2> | |
| <div class="browser-window-osx"> | |
| <div class="header"> | |
| <div class="menu"> | |
| <span class="close"></span> | |
| <span class="minimize"></span> | |
| <span class="maximize"></span> | |
| </div> | |
| <div class="search"> | |
| <p><span>https://</span>tristanwhite.info</p> |
Hello and good evening, cryptographers, hackers and security information specialists!
I would like to hear your judgmental and sceptical feedback about the safeness of [git] cloud storage services accounts with two-factor authentication, and passwords of more than 16 special characters and case-sensitive alphanumerics, and the efficiency and usefulness of ccrypt and scrypt.
I've already been aware two-factor authentication sessions of [git] cloud storage services have already been broken, but the password of more than 20 characters (ambiguous characters, case-sensitive alphanumerics and symbols) can not be cracked because it takes 4 sextillion years to be totally deciphered.
I posted two topics Is it safe to back up the whole Firefox profile folder to my private dotfiles repository at GitHub/GitLab? And at Google Drive and Mega? on subreddit /r/firefox, and [Is it possible to use synchronously and mut
| <?xml version='1.0' encoding='UTF-8'?> | |
| <!DOCTYPE fontconfig SYSTEM 'fonts.dtd'> | |
| <fontconfig> | |
| <match target="font"> | |
| <edit mode="assign" name="antialias"> | |
| <bool>true</bool> | |
| </edit> | |
| <edit mode="assign" name="hinting"> | |
| <bool>true</bool> | |
| </edit> |