❗ on git bash on windows you may need to turn off path conversion. |
---|
You can do so with export MSYS_NO_PATHCONV=1 |
First of all you need to have a Root Certificate to sign your issued certificates with
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
# All Vagrant configuration is done below. The "2" in Vagrant.configure | |
# configures the configuration version (we support older styles for | |
# backwards compatibility). Please don't change it unless you know what | |
# you're doing. | |
Vagrant.configure("2") do |config| | |
# Every Vagrant development environment requires a box. You can search for |
([a-z0-9_\*]*)\t([a-zA-Z\/°²\-\%]*)\t(.+)\t(.+)\t[X]{0,1}\t[X]{0,1}
If testing at https://regexr.com/ use /gm
/^([a-z0-9_\*]*)\t([a-zA-Z\/°²\-\%]*)\t(.+)\t(.+)\t[X]{0,1}\t[X]{0,1}$/gm
When you have merged a branch into another and deleted it on bitbucket, it may still exist on your PC. if you experience that there are too many of these, this command will remove them. Consider cleaning up your local branches first.
git remote update origin --prune
import java.util.ArrayList | |
import hudson.model.*; | |
def ArrayList<String> getJobList(String pipelineName) { | |
def hi = hudson.model.Hudson.instance; | |
def item = hi.getItemByFullName(pipelineName); | |
def jobs = item.getAllJobs(); | |
def arr = new ArrayList<String>(); |
Sometimes it is useful to have multiple IP addresses on the same network interface. This is a note to myself on how to do it. The Distribution in the comments is the dist that I have verified the command on. This does not mean that it is the only way to do the application of the changes.
# This file describes the network interfaces available on your system
import os | |
import shutil | |
from pathlib import Path | |
# Script to clean up caches prior to backing up, copying or moving development folder. | |
# shows sizes and asks for confirmation prior to deleting. | |
TARGET_DIR_NAMES = { | |
"vendor" | |
#, "cache" |