This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
use nu_plugin::{ | |
serve_plugin, EngineInterface, EvaluatedCall, MsgPackSerializer, Plugin, PluginCommand, | |
SimplePluginCommand, | |
}; | |
use nu_protocol::{CustomValue, IntoValue, LabeledError, ShellError, Signature, Span, Type, Value}; | |
use serde::{Deserialize, Serialize}; | |
fn main() { | |
serve_plugin(&BrokenValuePlugin, MsgPackSerializer) | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ARG NODE_VERSION=latest | |
FROM node:${NODE_VERSION} | |
ARG PACKAGES | |
RUN npm install -g ${PACKAGES} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#SingleInstance Force | |
#HotIf WinActive("Pal") | |
; Clone Right Modifier to Left Ones | |
RCtrl::LCtrl | |
RShift::LShift | |
; Remap Numpad Numbers (0-9) to Their Top-Row Counterparts | |
Numpad0::0 | |
Numpad1::1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Append to config.nu | |
# Config Updates | |
$env.config.buffer_editor = "micro" | |
# Aliases | |
alias clip = clip.exe | |
# Starship | |
source ~/.cache/starship/init.nu |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env nu | |
# Constants | |
const STEAM_DIR = 'steam/dir' | |
const USER_ID = 'userid' | |
const TARGET_DIR = 'target/dir' | |
# Function to get the current date | |
def get-date [] { | |
date now | format date '%Y-%m-%d' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Nexus Mods - right/left arrow pagination | |
// @match https://www.nexusmods.com/* | |
// @grant none | |
// @version 1.0 | |
// @author Tim 'Piepmatz' Hesse | |
// @description Add event listeners to the right and left buttons for the pagination to allow to page with the arrow keys | |
// ==/UserScript== | |
const ARROW_KEYS = { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"emojis": { | |
"100": "💯", | |
"1234": "🔢", | |
">:(": "😠", | |
">:-(": "😠", | |
">=(": "😠", | |
">=-(": "😠", | |
":\")": "😊", | |
":-\")": "😊", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import {createServer, AddressInfo} from "net"; | |
/** | |
* Utility function to return a free port. | |
* | |
* Uses dummy server that listens to port 0 to let the OS assign the server a | |
* port. | |
* Then the server will be closed and the now open port will be returned. | |
* | |
* @return by OS assigned, free port |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ESC = [char]27 | |
switch ($env:ComputerName) { | |
"TIMSYOGA" {$computerName = "TY"} | |
"TIMSTOWER" {$computerName = "TT"} | |
default {$computerName = $env:ComputerName} | |
} | |
function ExitCode { | |
if (-not($?)) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@-moz-document url-prefix("https://www.overleaf.com/") { | |
.pdf { | |
background-color: #151515; | |
} | |
.pdfjs-viewer { | |
filter: invert(0.89); | |
} | |
.pdf-viewer .pdfjs-viewer canvas { | |
box-shadow: 0 0 10px rgba(255,255,255,.5); | |
} |
NewerOlder