3 files changed, 7 insertions(+), 60 deletions(-)
M about.md
D firefoxaddons.md
D scan.html
M about.md => about.md +7 -10
@@ 9,18 9,16 @@ data:
I'm just a tech loving nerd. I've been working as a programmer making cloud based business management software since 2013. I'm interested in working on my own projects but never get anything done.
### What software do I use?
-* OS: Arch Linux
-* WM: i3-gaps
+* OS: [Arch Linux](https://archlinux.org) on laptop. Windows 10 LTSC on Desktop.
+* WM: i3-gaps
* Bar: polybar
-* Launcher: rofi
-* Browser: Firefox with [addons](firefoxaddons.html) and [hardened settings](https://www.privacytools.io/browsers/#about_config)
+* Browser: [ungoogled-chromium](https://ungoogled-software.github.io)
* Terminal: Alacritty
-* Editor: Vim
+* Editor: [VSCodium](https://vscodium.com) and vim
* Media Player: VLC/Plex
* Password Manager: Keepass
-* Email: [aerc](https://aerc-mail.org/)
-
-One of these days I'd like to get my dotfiles on a git repo.
+* Email: [aerc](https://aerc-mail.org/) and Thunderbird
+* Dotfiles: [https://git.sr.ht/~rleek/dotfiles](https://git.sr.ht/~rleek/dotfiles)
### What games do I play?
My all time favorite game is The Legend of Zelda Ocarina of Time. I used to stream speedruns of it a couple of years ago but haven't in a long time. I still play around offline from time to time. Lately I've been doing [randomizers](https://www.ootrandomizer.com/).
@@ 30,6 28,5 @@ I use an [EverDrive64](https://krikzz.com/store/) to play randomizer and rom hac
You can follow me on [twitch.tv/sorokya](https://twitch.tv/sorokya) but I haven't streamed in a very long time, and don't plan to for now.
These are the games I'm currently playing
-* Spider-man (PS4)
-* Mario Maker 2
+*
D firefoxaddons.md => firefoxaddons.md +0 -13
@@ 1,13 0,0 @@
----
-title: firefoxaddons
-layout: default.liquid
-data:
- keywords: Mozilla,Firefox,Addons,Add-ons,Add-on,Privacy
----
-
-## Firefox Addons
-* [uMatrix](https://addons.mozilla.org/en-US/firefox/addon/umatrix/) - Powerful add-on for blocking all kinds of requests for specific domains
-* [HTTPS Everywhere](https://addons.mozilla.org/en-US/firefox/addon/https-everywhere/) - Forced HTTPS connections for all requests if possible
-* [Decentraleyes](https://addons.mozilla.org/en-US/firefox/addon/decentraleyes/) - Intercepts requests to CDNs and serves the files locally instead
-* [KeePass Tusk](https://addons.mozilla.org/en-US/firefox/addon/keepass-tusk/) - Integrates with KeePass for auto filling passwords
-* [Invidious Redirect](https://addons.mozilla.org/en-US/firefox/addon/hooktube-redirect/) - Redirects all requests to YouTube to [invidio.us](https://invidio.us/)
D scan.html => scan.html +0 -37
@@ 1,37 0,0 @@
-<!DOCTYPE html>
-<html>
- <head>
- <title>Scan</title>
- <meta name="viewport" content="width=device-width, initial-scale=1">
- <meta charset="utf-8">
- </head>
-
- <button id="btn-open-scanner">Open Scanner!</button>
- <h3>Result</h3>
- <p id="result"></p>
-
- <script type="text/javascript">
- window.onload = function() {
- var button = document.getElementById('btn-open-scanner');
- var result = document.getElementById('result');
-
- button.addEventListener('click', openScanner);
-
- function openScanner() {
- try {
- if (typeof nativeApp !== 'undefined') {
- nativeApp.scanBarcode();
- } else {
- webkit.messageHandlers.barcodeScanner.postMessage({});
- }
- } catch (e) {
- alert(JSON.stringify(e));
- }
- }
-
- window.onBarcodeScanned = function(barcode) {
- result.innerText = barcode;
- }
- }
- </script>
-</html>