I'm currently using Pinto at $orkplace. Pinto is becoming increasingly painful to use.
More and more often we're seeing:
The repository is currently in use -- please try again later (Timed out waiting for blocking lock)
### Keybase proof | |
I hereby claim: | |
* I am chizmw on github. | |
* I am chizcw (https://keybase.io/chizcw) on keybase. | |
* I have a public key ASBDL3L5RI2f70FJq0JrHmac2pbEVr0aktCEmPWiWh9tLgo | |
To claim this, I am signing this object: |
{ | |
"meta": { "theme": "kendall" }, | |
"basics": { | |
"name": "Chisel Malik-Wright", | |
"summary": "Developer evolved into devops, further evolved into SRE.<br/>Particularly interested in problem solving code, process and architectural challenges. Preferably with access to good, modern solutions.<br/><br/>Availability: Two calendar months.", | |
"picture": "https://pbs.twimg.com/profile_images/1296403411789844480/SAjux6GV_400x400.jpg", | |
"email": "[email protected]", | |
"phone": "+44 7966 44 67 68", | |
"website": "https://chizography.net", | |
"label": "Software, Infrastructure & Operations", |
abstract class BasePipeline { | |
abstract def releaseToProd() | |
} | |
abstract class BaseEcsPipeline extends BasePipeline { | |
final def releaseToProd() { | |
return "ECS Prod Release" | |
} | |
} |
CREATE (neo:Database {name:'Neo4j'})
CREATE (neo)-[:SUPPORTS]->(:Language {name:'Cypher'})
(function() { | |
if(!document.getElementById("botr_nrldb8_div")) { | |
document.write("<div id='botr_nrldb8_div'><iframe src=\"https://vistabee.com/popups/embed/nrldb8/DGpLK4N9\" scrolling=\"no\" style=\"width:100%;height:auto;border:none\" allowfullscreen></iframe></div>"); | |
} | |
})(); |
# remap prefix from 'C-b' to 'C-a' | |
unbind C-b | |
set-option -g prefix C-x | |
bind-key C-x send-prefix | |
# status bar at the top please | |
set-option -g status-position top | |
# reload config file (change file location to your the tmux.conf you want to use) |