Skip to content

Instantly share code, notes, and snippets.

View mslattery-lilly's full-sized avatar

Michael Slattery mslattery-lilly

View GitHub Profile
@mslattery-lilly
mslattery-lilly / install-android-studio-fedora.sh
Created August 10, 2020 16:24
Install Android Studio 4 on Fedora
#!/bin/bash
# java
sudo dnf install -q -y java-1.8.0-openjdk-devel java-11-openjdk-devel maven
# KVM
sudo dnf install -q -y \
bridge-utils libvirt virt-install qemu-kvm virt-manager qemu-kvm
# adb (w/o sudo)
sudo dnf install -q -y android-tools
@mslattery-lilly
mslattery-lilly / ci.sh
Last active May 15, 2020 16:24
Build on commit.
#!/bin/bash
# A poor man's CI server for gradle jobs.
# PUt in root directory of project.
# If GIT_URL is set, it will clone for you.
# Will speak and display pop up on build status change.
set -eu
INTERVAL=60
@mslattery-lilly
mslattery-lilly / githhub-jira.userscript.js
Last active May 10, 2020 20:30
GitHub / Jira Integration
// ==UserScript==
// @name GitHub-Jira
// @version 0.1
// @description Light integration between GitHub and JIRA
// @grant none
// @include https://github.com/*
// @include <JIRA_URL>/*
// ==/UserScript==
JIRA_URL='<JIRA_URL>'