Skip to content

Instantly share code, notes, and snippets.

View thegreyd's full-sized avatar
:shipit:
Working from home

Siddharth Sharma thegreyd

:shipit:
Working from home
  • Red Hat @openshift
  • Toronto, Canada
  • 01:23 (UTC -04:00)
View GitHub Profile
@thegreyd
thegreyd / review-release-config
Created April 17, 2023 15:57 — forked from joepvd/review-release-config
Review release configuration
#!/usr/bin/env python
import requests
from ruamel import yaml
import sys
versions = ["4.10", "4.11", "4.12", "4.13", "4.14"]
def get_data():
@thegreyd
thegreyd / rvm.fish
Created July 10, 2017 00:17 — forked from itay-grudev/rvm.fish
Using RVM with Fish Shell in just 6 lines of code
# ~/.config/fish/functions/rvm.fish
function rvm --description "Ruby Version Manager"
exec bash --login -c "rvm $argv; exec fish" ^&1
end
@thegreyd
thegreyd / gitable_3.py
Last active April 11, 2017 22:42 — forked from timm/gitable.py
Python3 version - Extracting info from github
# gitabel Python3 version
# the world's smallest project management tool
# reports relabelling times in github (time in seconds since epoch)
# thanks to dr parnin
# todo:
# - ensure events sorted by time
# - add issue id
# - add person handle
"""
@thegreyd
thegreyd / latest_keepassXC.sh
Last active April 20, 2017 16:05 — forked from rossant/latest_pandoc.sh
Install latest .deb KeepassXC, using the GitHub release page
#!/bin/bash
#bash script to install latest keepassxc release
#fetch the stable deb package from github release page
#Requires superuser permission
#page is not guaranteed to update with latest release
#verify for latest releases here: https://github.com/keepassxreboot/keepassxc/releases
URL="https://github.com/magkopian/keepassxc-debian/releases/latest"
RELEASEPAGE="$(wget $URL -q -O -)"
DEBURL="$(echo $RELEASEPAGE | grep -oP '"([^"]+_stable.deb)"')"