Skip to content

Instantly share code, notes, and snippets.

View dm4r's full-sized avatar

Daniel Martushev dm4r

View GitHub Profile
@VarunAgw
VarunAgw / Instructions.txt
Last active April 13, 2017 18:06
How to Install GateOne on Ubuntu 14.04.3
wget https://github.com/downloads/liftoff/GateOne/gateone_1.1-1_all.deb
wget https://github.com/downloads/liftoff/GateOne/python-tornado_2.4-1_all.deb
Note: Don't use "Python-tornado 3.x" with it. It causes some error.
apt-get install python-support
dpkg -i python-tornado_2.4-1_all.deb
dpkg -i gateone_1.1-1_all.deb
service gateone start
@leonardofed
leonardofed / README.md
Last active July 19, 2024 17:51
A curated list of AWS resources to prepare for the AWS Certifications


A curated list of AWS resources to prepare for the AWS Certifications

A curated list of awesome AWS resources you need to prepare for the all 5 AWS Certifications. This gist will include: open source repos, blogs & blogposts, ebooks, PDF, whitepapers, video courses, free lecture, slides, sample test and many other resources.


@scarolan
scarolan / show_all_instances.sh
Created January 29, 2018 16:04
List all AWS instances in all regions
#!/bin/sh
getRegions() {
aws ec2 describe-regions --output text --query 'Regions[*].RegionName'
}
getInstances() {
REGION=$1
if [ "$#" -ne 1 ]; then
echo "USAGE: getInstances us-west-2"
@abbaspour
abbaspour / Guardian-Hosted-Page.html
Last active May 8, 2022 12:32
Auth0 MFA Widget i18n
<!DOCTYPE html>
<html>
<head>
<title>2nd Factor Authentication</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<style type="text/css">
html, body { padding: 0; margin: 0; }
@charlesjohnson
charlesjohnson / Brewfile
Last active March 18, 2020 19:16
Brewfile
# Taps
tap "homebrew/bundle"
tap "homebrew/cask"
tap "homebrew/cask-fonts"
tap "homebrew/core"
tap "sambadevi/powerlevel9k"
# Brew CLI apps
brew "fd"
brew "fzf"
@mattstratton
mattstratton / Brewfile
Last active April 9, 2020 18:32
Brewfile
# Taps
tap "homebrew/bundle"
tap "homebrew/cask"
tap "homebrew/cask-fonts"
tap "homebrew/core"
tap "homebrew/cask-drivers"
tap "homebrew/services"
tap "devopsdays/tap"
tap "github/gh"
tap "heroku/brew"