first install eza by homebrew
brew install eza
package responsetest | |
import ( | |
"context" | |
"net/http" | |
"net/http/httptest" | |
"testing" | |
"github.com/getkin/kin-openapi/openapi3" | |
"github.com/getkin/kin-openapi/openapi3filter" |
Internet connection and DNS routing are broken from WSL2 instances, when some VPNs are active.
The root cause seems to be that WSL2 and the VPN use the same IP address block, and the VPN routing clobbers WSL2's network routing.
This problem is tracked in multiple microsoft/WSL issues including, but not limited to:
# delete local tag '12345' | |
git tag -d 12345 | |
# delete remote tag '12345' (eg, GitHub version too) | |
git push origin :refs/tags/12345 | |
# alternative approach | |
git push --delete origin tagName | |
git tag -d tagName |
#!/usr/bin/env ruby | |
require 'rubygems' | |
require 'pp' | |
require 'fog' | |
credentials = { | |
:provider => "vsphere", | |
:vsphere_username => "foo", | |
:vsphere_password=> "bar", |