Skip to content

Instantly share code, notes, and snippets.

View nischal-subedi's full-sized avatar
💭
I may be slow to respond.

Nischal Subedi nischal-subedi

💭
I may be slow to respond.
View GitHub Profile
@nischal-subedi
nischal-subedi / authy-fetch-extract-snap.md
Created December 14, 2023 10:42 — forked from ruario/authy-fetch-extract-snap.md
How to download and install Twilio Authy on a desktop Linux system without snap support
  • Make an install directory somewhere convenient and switch to it
mkdir -p ~/.local/share/authy
cd ~/.local/share/authy
  • Fetch the current Authy snap

Mounting VirtualBox shared folders on Ubuntu Server 18.04 LTS (Bionic Beaver)

This guide will walk you through the steps on how to setup a VirtualBox shared folder inside your Ubuntu Server guest.

Prerequisites

This guide assumes that you are using the following setup:

You could still make this guide work with other setups (possibly with some modifications to the commands and whatnot).

@nischal-subedi
nischal-subedi / readme.md
Created April 21, 2022 09:17 — forked from peterneave/readme.md
Install pgAgent on Postgres 10 (Debian Linux)

Install pgAgent on Postgres 10 (Debian Linux)

This assumes you will have pgAgent running on the same machine as your database.

Terminal

  1. Install pgAgent via package manager
sudo apt update
@nischal-subedi
nischal-subedi / hotfix.sh
Created January 7, 2022 14:29 — forked from willvincent/hotfix.sh
Cherry-pick and execute a hotfix release
#!/bin/bash
set -e
# Important note: this will add a new patch release AND deploy
if [ $# -lt 2 ]; then
git fetch --all --tags
# Interactively get info
LATEST=$(git describe --tags production)
read -e -p "Enter the version to patch, or press return for default [$LATEST]: " VERSION