Skip to content

Instantly share code, notes, and snippets.

View irontoby's full-sized avatar

Tobias Johnson irontoby

  • Clarksville, IN, USA
View GitHub Profile
@dieterrosch
dieterrosch / letsencrypt-deployment.yaml
Last active November 1, 2016 02:02
LetsEncrypt Kubernetes deployment
#Once this is deployed, you need to run:
#kubectl exec -ti letsencrypt-595800129-3v7qw ./fetch_certs.sh
#and then
#kubectl exec -ti letsencrypt-595800129-3v7qw ./save_certs.sh
apiVersion: extensions/v1beta1
kind: Deployment
metadata:
name: letsencrypt
labels:
app: letsencrypt
@beardicus
beardicus / edgerouter-qos
Last active September 29, 2023 16:41
EdgeRouter Lite QOS Settings
#
# fair-queue based settings for EdgeRouter Lite traffic shaping
#
# download is typically 30 and change. everything can burst to 100%
# of bandwidth, priority rules keep the garbage in check
set traffic-policy shaper download
set traffic-policy shaper download bandwidth 30Mbit
@seyhunak
seyhunak / Gemfile
Created October 30, 2014 11:54
Rails 4 - Spring - Rspec 3 - Guard
group :development, :test do
gem "rspec-rails", "~> 3.1.0"
gem "factory_girl_rails", "~> 4.4.1"
gem "spring-commands-rspec"
gem 'guard-rspec'
gem 'rb-fsevent' if `uname` =~ /Darwin/
end
group :test do
gem "faker", "~> 1.4.3"
@pmiossec
pmiossec / Tfs2012CorrectAssemblyRegistration.reg
Created May 30, 2013 14:15
Reg file to correct assembly registration for Tfs2012. This permit to avoid an error when checkin in TFS using tfs checkin policies outside Visual Studio (git-tfs,... ). PS : Modify file path if your Visual Studio install folder is not the default one ("C:\Program Files (x86)\Microsoft Visual Studio 11.0")
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\VisualStudio\11.0\TeamFoundation\SourceControl\Checkin Policies]
"Microsoft.TeamFoundation.Build.Controls"="C:\\Program Files (x86)\\Microsoft Visual Studio 11.0\\Common7\\IDE\\PrivateAssemblies\\Microsoft.TeamFoundation.Build.Controls.dll"
"Microsoft.TeamFoundation.VersionControl.Controls"="C:\\Program Files (x86)\\Microsoft Visual Studio 11.0\\Common7\\IDE\\PrivateAssemblies\\Microsoft.TeamFoundation.VersionControl.Controls.dll"