| id | aliases | tags | |
|---|---|---|---|
arch_linux_installation_guide |
|
It explains how to install Arch:
| #!/bin/bash | |
| # Function to display usage information | |
| usage() { | |
| echo "Usage: $0 /path/to/input.mp4 [ /path/to/output_directory ]" | |
| exit 1 | |
| } | |
| # Check if at least one argument (input file) is provided | |
| if [ $# -lt 1 ]; then |
| """ | |
| An example script to fine tune stanford/BioMedLM on dummy data without trainer and accelerate | |
| """ | |
| import math | |
| import copy | |
| import datasets | |
| import torch | |
| from datasets import Dataset, load_dataset | |
| from torch.utils.data.dataloader import DataLoader | |
| from tqdm.auto import tqdm |
[1] On the CLIENT machine in BTT setup these Named triggers:
Blueman does not help when connecting the Apple Keyboard to Manjaro. In the future, follow these steps to fully configure it. This needs package bluez-utils.:
$ bluetoothctl
[bluetooth]$ power on
Changing power on succeeded
[bluetooth]$ devices
Device 00:11:22:33:44:55 Apple Wireless Keyboard| #!/usr/bin/env bash | |
| set -x | |
| PYGLOSSARY_HOME=~/projects/pyglossary | |
| usage="Convert Lingvo DSL source to AppleDict\n | |
| USAGE:\n | |
| =====\n | |
| \t${0##*/} <dictionary.dsl|dictionary.dsl.dz> \n |
NOTE, April 18, 2020: I wrote this document in February 2019 when I was actively investigating Electron. I haven't used it since then and have largely forgotten what this was for or how electron-webpack works. I vaguely remember the problem, but that's it. It would appear based on the comments below that this document is still coming up in web searches but has become out of date and parts of it don't work. If anyone has specific fixes to my instructions, please leave them in the comments and I'll happily incorporate them.
The current version (as of 2019-02-02) of electron-webpack is set up with the assumption that your BrowserWindow instance has nodeIntegration: true. However, Electron is encouraging users to set nodeIntegration: false as a security precaution, and in the future BrowserWindows will have this setting set to false by default. Doing so now with electron-webpack throws an error because the index.html template has commonjs re
| // ==UserScript== | |
| // @name EmuParadise Download Workaround | |
| // @version 1.2.3 | |
| // @description Replaces the download button link with a working one | |
| // @author infval (Eptun) | |
| // @match https://www.emuparadise.me/*/*/* | |
| // @grant none | |
| // ==/UserScript== | |
| // https://www.reddit.com/r/Piracy/comments/968sm6/a_script_for_easy_downloading_of_emuparadise_roms/ |