Usage: jrpc [OPTIONS]
Simple CLI tool for testing output from JSON RPC 2.0 services.
OPTIONS
-V, --version Prints the version of this script.
Usage: vs [COMMAND] [REPO] [OPTIONS]
Adds, updates or deletes git source files of third party vendors in the local source storage at $HOME/.sources/.vendor.
This tool is meant to clone third party sources to compile or use without further modification.
It will try to checkout the latest tag and fallback to the latest branch, unless a prefered branch/tag is given.
If you want to load a workspace, consider forking and cloning using the normal git utility instead.
Open regedit.exe,
go to Computer\HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Themes\Personalize and set both AppsUseLightTheme & SystemUsesLightTheme DWORDs to 0.
Alternatively, download and save the windows-dark-mode.reg file below as a .reg file and run it.
Source: https://old.reddit.com/r/Windows11/comments/o1l55u/how_do_i_enable_dark_mode_on_windows_11/h21f69b/
THIS GIST HAS MOVED TO https://github.com/khimaros/debian-hybrid
PLEASE READ THE UPDATED INSTRUCTIONS CAREFULLY.
| #!/usr/bin/env bash | |
| # | |
| # ssh-crypt | |
| # | |
| # Bash function to encrypt/decrypt with your ssh-agent private key. | |
| # Requires the commands gzip, ssh-add, ssh-keygen and openssl. | |
| # | |
| # Uses bash-specific extensions like <<<$var to securely pass data. | |
| # | |
| # Wout.Mertens@gmail.com 2021-11-11 - MIT Licensed |
| Replace all <....> parts with your specific details | |
| /network add -nick <nick> libera | |
| /server add -network libera -auto -ssl irc.libera.chat 6697 | |
| /connect libera | |
| /query NickServ | |
| register <password> <email> | |
| <copypaste line from email> | |
| /network add -autosendcmd "" -sasl_username <user> -sasl_password <pass> -sasl_mechanism PLAIN libera | |
| /channel add -auto <channel> libera |
| #!/bin/bash | |
| ## Change following to '0' for output to be like ls and '1' for eza features | |
| # Don't list implied . and .. by default with -a | |
| dot=0 | |
| # Show human readable file sizes by default | |
| hru=1 | |
| # Show file sizes in decimal (1KB=1000 bytes) as opposed to binary units (1KiB=1024 bytes) | |
| meb=0 | |
| # Don't show group column |
Document Revision 1.3 [12/24/25] Notice: This guide is officially out of date, as now the memoria mod manager and moguri mod work much better in tandum with one another.
The new recommended way to install moguri and associated mods is to follow the Memoria mod installer guide which has steam deck specific instructions. Note that FFIX needs to be installed before running the installation script.
For legacy installations, older versions of moguri or any other strange mod installation needs, the old guide could be useful for reference. As a result, I've kept this document intact for the previous revision.
DEPRECATED Document Revision 1.2 [07/15/22]
Author Notes: Thanks to everyone who has been testing or using this installation process. I've refined the instructions to try to make this installation as simple and cross platform as humanly possible. I've also updated the Steam Deck instructions now that I have had mine for a while and thoroughly tested the instal
| // Libraries | |
| import * as React from "react"; | |
| import posed, { PoseGroup } from 'react-pose'; | |
| import { Route, Switch, BrowserRouter } from "react-router-dom"; | |
| // Layout | |
| import Layout from "./Layout"; | |
| // Components | |
| import Dashboard from "./components/dashboard/Dashboard"; |
| --[[ | |
| typewriter class | |
| ]] | |
| local typewriter = {} | |
| --(metatable used for instances, don't worry about it too much | |
| -- but do read up on metatables at some point) | |
| typewriter._mt = {__index = typewriter} | |
| --create a new typewriter |