Skip to content

Instantly share code, notes, and snippets.

View drewbitt's full-sized avatar

Andrew drewbitt

  • United States
  • 10:31 (UTC -04:00)
View GitHub Profile
@taskylizard
taskylizard / fmhy.md
Last active July 22, 2024 11:24
/r/freemediaheckyeah, in one single file (view raw)
@joshbuchea
joshbuchea / semantic-commit-messages.md
Last active July 22, 2024 06:03
Semantic Commit Messages

Semantic Commit Messages

See how a minor change to your commit message style can make you a better programmer.

Format: <type>(<scope>): <subject>

<scope> is optional

Example

@silo
silo / babun-Hyper-Win.md
Last active May 24, 2023 02:20
Babun + Hyper + Windows - Setup
@nosmokingbandit
nosmokingbandit / rtorrent_xmlrpc.py
Created April 18, 2017 23:24 — forked from query/rtorrent_xmlrpc.py
Python module for interacting with rtorrent's XML-RPC interface directly over SCGI.
#!/usr/bin/python
# rtorrent_xmlrpc
# (c) 2011 Roger Que <alerante@bellsouth.net>
#
# Python module for interacting with rtorrent's XML-RPC interface
# directly over SCGI, instead of through an HTTP server intermediary.
# Inspired by Glenn Washburn's xmlrpc2scgi.py [1], but subclasses the
# built-in xmlrpclib classes so that it is compatible with features
# such as MultiCall objects.
@patik
patik / git-setup.sh
Created November 13, 2015 13:24
Git and Node with Zscaler proxy
#!/bin/sh
# Git proxy settings
echo "Configuring Git..."
git config --global http.proxy http://gateway.zscaler.net:80/
git config --system http.proxy http://gateway.zscaler.net:80/
git config --global http.sslVerify false
git config --system http.sslVerify false
git config --global --unset http.sslcainfo
git config --system --unset http.sslcainfo