Discover gists
This is a guide on how to email securely.
There are many guides on how to install and use PGP to encrypt email. This is not one of them. This is a guide on secure communication using email with PGP encryption. If you are not familiar with PGP, please read another guide first. If you are comfortable using PGP to encrypt and decrypt emails, this guide will raise your security to the next level.
A commit should be a wrapper for related changes. For example, fixing two different bugs should produce two separate commits. Small commits make it easier for other developers to understand the changes and roll them back if something went wrong. With tools like the staging area and the ability to stage only parts of a file, Git makes it easy to create very granular commits.
Committing often keeps your commits small and, again, helps you commit only related changes. Moreover, it allows you to share your code more frequently with others. That way it‘s easier for everyone to integrate changes regularly and avoid having merge conflicts. Having large commits and sharing them infrequently, in contrast, makes it hard to solve conflicts.
1 | |
1st to Die | |
A Clash of Kings | |
A Collection of Poems | |
A Court of Mist and Fury | |
A Dance With Dragons | |
A Deepness in the Sky | |
A Dictionary of the English Language | |
A Feast for Crows | |
A Fire Upon the Deep |
Works on the latest iOS versions, including iOS 26 db8.
Hello r/sideloaded!
After the mass revocation wave I decided to make this guide to help people sideload apps using an alternative method. A method that is 100% revoke free, costs nothing, and requires a computer only one time (for initial setup)!
After following this guide you will not need to worry about the 3 app limit OR refreshing every 7 days. You will be able to install as many apps as you want and they should not ever expire. This is a completely free method.
Here is what we will go over in this guide:
This documentation describes configuration and deployment steps for Nextcloud on Google Cloud Platform (GCP).
Adapted for Google Cloud Computing (GCP) based on blog post by Carsten Rieger:
https://www.c-rieger.de/nextcloud-installation-guide/
Carsten Rieger updated new instructions that can be adapted for cloud instances.
var CryptoJS = require('crypto-js') | |
var request = require('request-promise') | |
/* | |
* npm install crypto-js request-promise request | |
* node wx_t1t_hack.js | |
*/ | |
// export function testEncription(msg, fullKey) { | |
// var fullKey = fullKey.slice(0, 16) |
export default { | |
async fetch(request) { | |
const url = new URL(request.url); | |
const path = url.pathname.replace(/^\/+/, ""); | |
const parts = path.split("/"); | |
if (parts.length < 4) { | |
return new Response("Usage: /owner/repo/branch/path/to/file.ext", { status: 400 }); | |
} | |
const [owner, repo, branch, ...filePathParts] = parts; | |
const filePath = filePathParts.join("/"); |
src :
- https://joost.vunderink.net/blog/2011/12/02/irssi-tricks-navigating-around/
- https://www.linode.com/docs/applications/messaging/using-irssi-for-internet-relay-chat
Let’s start by what you can do while typing. These keystrokes change only what happens on the input line (the line where you type stuff).
arrow left/right: move one character left or right.