Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View Neonox31's full-sized avatar

WEBER Logan Neonox31

View GitHub Profile
@Neonox31
Neonox31 / install_fish_debian.sh
Created January 14, 2018 16:02 — forked from mamiu/install_fish_debian.sh
Install fish shell in Debian 8 (commands from the original fish shell website).
#!/bin/bash
echo 'deb http://download.opensuse.org/repositories/shells:/fish:/release:/2/Debian_8.0/ /' >> /etc/apt/sources.list.d/fish.list
apt-get update
wget -qO - http://download.opensuse.org/repositories/shells:fish:release:2/Debian_8.0/Release.key | apt-key add -
apt-get update
apt-get install -y fish

Keybase proof

I hereby claim:

  • I am neonox31 on github.
  • I am neonox31 (https://keybase.io/neonox31) on keybase.
  • I have a public key whose fingerprint is AAB4 DB74 203B E2BE FA50 EF18 8B8D D7F8 335F ABBF

To claim this, I am signing this object:

@Neonox31
Neonox31 / setup.sh
Last active July 22, 2020 12:14
Machine fresh install
#!/bin/sh
get_latest_gh_release() {
curl --silent "https://api.github.com/repos/$1/releases/latest" | # Get latest release from GitHub api
grep '"tag_name":' | # Get tag line
sed -E 's/.*"([^"]+)".*/\1/' # Pluck JSON value
}
wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
sudo sh -c 'echo "deb [arch=amd64] https://dl.google.com/linux/chrome/deb/ stable main" > /etc/apt/sources.list.d/google-chrome.list'
@Neonox31
Neonox31 / install-dsm-6-on-proxmox-5.md
Last active December 21, 2023 05:31
Install DSM 6.X on Proxmox 5.0.X

DRAFT

Prerequisites

Procedure

  • Create the proxmox VM as the following :
  • OS Type : Linux 4.x
@Neonox31
Neonox31 / gitflow-breakdown.md
Created February 13, 2017 13:43 — forked from JamesMGreene/gitflow-breakdown.md
A comparison of using `git flow` commands versus raw `git` commands.

Initialize

gitflow git
git flow init git init
git commit --allow-empty -m "Initial commit"
git checkout -b develop master

Connect to the remote repository