Skip to content

Instantly share code, notes, and snippets.

View ninijay's full-sized avatar
🏠
Working from home

Zanidd ninijay

🏠
Working from home
View GitHub Profile

Navigate to: Twitter via IFTTT, Twitter via Zapier, Reddit or GitHub.

YouTube to Discord via IFTTT and webhook

You just posted a video. You want everyone in your server to know this, eh?

I'll just start from Step 3. You know where Step 1 and Step 2 is, eh?

Step 1 - Register on IFTTT

  1. Go to https://ifttt.com/ and create an account (if you don't already have one).

Step 2 - Make a Discord Webhook

@Integralist
Integralist / 01. setup.sh
Last active November 3, 2021 14:23
Kali Linux Vim + Bash setup
# use VirtualBox's device menu to insert Guest Additions CDROM
# copy VBoxLinuxAdditions.run from mounted CDROM
# then eject the CDROM, run the script and then shutdown the VM
# you'll then go into VirtualBox and setup shared directories etc
cd ~ && eject /media/cdrom0
sudo chmod 755 VBoxLinuxAdditions.run
./VBoxLinuxAdditions.run
curl https://raw.githubusercontent.com/git/git/master/contrib/completion/git-prompt.sh -o ~/.git-prompt.sh
@ryanj
ryanj / openshift.npm.md
Last active November 22, 2017 19:55
A Git-based workflow for making your existing Open Source node.js application OpenShift-compatible.

Want to deploy an existing node.js Github project on OpenShift?

Give this recipe a try:

Add our OpenShift starter-code to your existing GitHub-hosted node.js application code:

cd $YOUR_PROJECT_FOLDER # This script assumes that your project is a git repo, with a git remote hosted on github.com
git remote add upstream -m master git@github.com:ryanj/nodejs-custom-version-openshift.git
git pull -s recursive upstream master # merge in a basic OpenShift skeleton