Download slt.py python script (supports multiple build) from this repository.
python slt.py <"sublime_text file path">
Download slt.py python script (supports multiple build) from this repository.
python slt.py <"sublime_text file path">
Thanks to /u/zpoo32 for reporting several issues in this list!
Every so often I have to restore my gpg keys and I'm never sure how best to do it. So, I've spent some time playing around with the various ways to export/import (backup/restore) keys.
Gotten from the RedHat GPG migration manual
## Export all public keys
gpg -a --export >mypubkeys.asc
// 2022-04-03, tested with Chrome 99.0.4844.84 on MacBook Pro m1 | |
/* | |
Open chrome://flags/ | |
F12 open developer console, swtich to tab "Console" | |
Paste below codes | |
- input backup() to download flags backup file | |
- input restore() to select one backup to restore | |
*/ | |
function saveFile(filename, data) { |
#include <Windows.h> | |
#include "../../API/RainmeterAPI.h" | |
struct ACCENTPOLICY { | |
int nAccentState; | |
int nFlags; | |
int nColor; | |
int nAnimationId; | |
}; | |
struct WINCOMPATTRDATA { |
Follow the simple steps in the order mentioned below to have your USB drive mounted on your Raspberry Pi every time you boot it.
These steps are required especially if your are setting up a Samba share, or a 24x7 torrent downloader, or alike where your Raspberry Pi must have your external storage already mounted and ready for access by the services / daemons.
Step 0. Plug in your USB HDD / Drive to Raspberry Pi If you are using a NTFS formatted drive, install the following
/*jslint browser, maxlen: 80 */ | |
/*global DOMParser, fetch */ | |
(function () { | |
"use strict"; | |
var originalSizeLink = document.querySelector(".Original > a"); | |
var canonicalUrl = document.querySelector("#canonicalurl").href; | |
var biggestSizeUrl = canonicalUrl + "/sizes/k/"; | |
var secondBiggestSizeUrl = canonicalUrl + "/sizes/h/"; |
/* | |
Serve is a very simple static file server in go | |
Usage: | |
-p="8100": port to serve on | |
-d=".": the directory of static files to host | |
Navigating to http://localhost:8100 will display the index.html or directory | |
listing file. | |
*/ | |
package main |
@echo off | |
setlocal EnableDelayedExpansion | |
set char=abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789 | |
set count=0 | |
set salt=0 | |
echo The maximum RC4 key length is 128 bits. | |
echo Default KEY length is 16 characters. |