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.
APT::Default-Release "testing"; |
#!/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. | |
# | |
# [email protected] 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.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 installation process.
Final Fantasy IX should be installed like any standard steam game through the steam client. Ragarding compatibility layers: it should work with a stable release of Proton 7 (7.0.X recommended) through the steam client. This also includes controller support if you are using Steam's native controller configurations. If you have any problems with a given Proton release, I would also recommend trying the latest GloriousEggroll proton builds to se
// 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 |
--MIT License | |
--Copyright (c) 2019 Arvid Gerstmann, Jake Besworth, Max Cahill, Pablo Mayobre, LÖVE Developers | |
--Original author: https://github.com/Leandros | |
--Max frame skip: https://github.com/jakebesworth | |
--Manual garbage collection: https://github.com/Geti | |
--Put it all together: https://github.com/Positive07 | |
--Original love.run: LÖVE Developers | |
local conf = { |