Open chromium.
Go to https://usevia.app/
You might see the error:
Vid: 0x3434
Open chromium.
Go to https://usevia.app/
You might see the error:
Vid: 0x3434
| # To permanently cache the credentials | |
| git config --global credential.helper store | |
| # To ignore files that could cause issues across different workspaces | |
| touch .gitignore | |
| echo ".obsidian/cache | |
| .trash/ | |
| .DS_Store" > .gitignore |
| wget $( wget -qO - https://github.com/raspberrypi/firmware/tree/master/boot | perl -nE 'chomp; next unless /[.](elf|dat)/; s/.*href="([^"]+)".*/$1/; s/blob/raw/; say qq{https://github.com$_}' ) |
| (defun toggle-maximize-buffer () "Maximize buffer" | |
| (interactive) | |
| (if (= 1 (length (window-list))) | |
| (jump-to-register '_) | |
| (progn | |
| (set-register '_ (list (current-window-configuration))) | |
| (delete-other-windows)))) | |
| ;; Bind it to a key. |
| var http = require("http"), | |
| url = require("url"), | |
| path = require("path"), | |
| fs = require("fs") | |
| port = process.argv[2] || 8888; | |
| http.createServer(function(request, response) { | |
| var uri = url.parse(request.url).pathname | |
| , filename = path.join(process.cwd(), uri); |