Skip to content

Instantly share code, notes, and snippets.

View thomet's full-sized avatar

Thomas Metzmacher thomet

View GitHub Profile
@thomet
thomet / README.MD
Last active August 19, 2022 13:52
Docker for Mac without DockerDesktop

Mac Docker Setup

/bin/bash -c "$(curl -fsSL https://gist.githubusercontent.com/thomet/d74cc9c60a75c1ef747d63893463694e/raw/multipass-mac-docker-setup.sh)"

Note

Make sure you give multipass.app full disk access

@thomet
thomet / README.md
Last active December 20, 2021 14:55

You need to have you docker host running with docker-machine as default

Install

  1. Install mycli (https://www.mycli.net/)

brew install mycli

  1. Clone plugin
# Clone this repo into you $ZHS_CUSTOM/plguins folder and enable it as plugin in your ~/.zshrc
#
# Clone
# > git clone https://gist.github.com/729dbb4216c9461eeb77e7aa7bc3e748.git $ZSH_CUSTOM/plugins/gac_spec
#
# Enable plugin in ~/.zshrc (if you have other plugins enabled, add gac_spec to your list)
# plugins=(gac_spec)
function changed_ruby_files () {
if [ "$1" != "" ]
@thomet
thomet / progress_bar.rb
Last active August 27, 2019 09:45
A simple progress bar script to load directly in ruby
# @example Usage
# require 'open-uri'
# eval(open('https://gist.githubusercontent.com/thomet/474bd082e15705fdba2906a9f4ca360a/raw/5ed83ff172a408601232d5306cf214ba3bd75775/progress_bar.rb') {|f| f.read })
#
# progress_bar(1_000) do
# # do something
# end
#
# > Progress [======================================================== 56.90 % \ (~43 seconds)

Keybase proof

I hereby claim:

  • I am thomet on github.
  • I am thomet (https://keybase.io/thomet) on keybase.
  • I have a public key ASDpwfbPAs5cXKIzhPQKy1Lz8I_SC6dyTJbUTL9TTpZ3jgo

To claim this, I am signing this object:

@thomet
thomet / INSTALL.md
Last active September 4, 2018 09:15 — forked from skanev/rubocop.rb
A Rubocop wrapper that checks only added/modified code

Click on the Raw button for the myrubocop.rb and copy the url.

> curl <insert raw url here> > ~/.bin/myrubocop
> chmod +x ~/.bin/myrubocop
@thomet
thomet / pre-commit-combined.rb
Last active September 4, 2018 09:08
Rubocop pre commit
#!/usr/bin/env ruby
require 'rubocop'
module DirtyCop
extend self # In your face, style guide!
def bury_evidence?(file, line)
!report_offense_at?(file, line)
end
@thomet
thomet / open_squad_prs.10m.rb
Last active January 23, 2017 12:08
BitBar plugin: Not reviewed open Github PR's
#!/usr/bin/env ruby
#
# <bitbar.title>Not reviewed open Github PR's</bitbar.title>
# <bitbar.version>v1.0</bitbar.version>
# <bitbar.author>Thomas Metzmacher</bitbar.author>
# <bitbar.author.github>thomet</bitbar.author.github>
# <bitbar.desc>Shows all not from you reviewed and open Github PR's for specific users.</bitbar.desc>
# <bitbar.dependencies>ruby</bitbar.dependencies>
#
@thomet
thomet / github_count.10m.rb
Created January 23, 2017 12:08
BitBar plugin: Amount of Github PR's and Commits for a specific search term
#!/usr/bin/env ruby
#
# <bitbar.title>Amount of Github PR's and Commits for a specific search term</bitbar.title>
# <bitbar.version>v1.0</bitbar.version>
# <bitbar.author>Thomas Metzmacher</bitbar.author>
# <bitbar.author.github>thomet</bitbar.author.github>
# <bitbar.desc>Shows the count of Github PR's and Commits which matches a specifc search term.</bitbar.desc>
# <bitbar.dependencies>ruby</bitbar.dependencies>
#
@thomet
thomet / string_diff.zsh
Created January 15, 2016 11:03
Color diff of two strings in zsh
function sdiff() {
wdiff <(echo "$1") <(echo "$2") | colordiff
}