Add the git-completion feature by copying the original
.git-completion.bash
from the official Git repository to your system.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
server { | |
listen 8080; | |
server_name localhost; | |
root /var/www/MichelAnge; | |
index index.html index.html; | |
#error_page 404 /404.html; | |
# redirect server error pages to the static page /50x.html |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
*.yaml |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Mini script to synchronise JPM and Nomad remotes for ADaM project | |
# Prerequisites: | |
# * script must be in parent directory from ADaM repository | |
# * remotes must be configured as 'JPM' and 'Nomad' | |
# * branches to be synced and on local repo should be 'dev', 'staging', 'master' | |
cd ADaM | |
git pull |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/local/bin/perl | |
use strict; | |
use warnings; | |
use MIME::Base64; | |
use REST::Client; | |
use utf8; | |
use Encode qw( encode_utf8 ); | |
use JSON qw( decode_json ); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# editorconfig.org | |
root = true | |
[*] | |
indent_style = space | |
indent_size = 4 | |
end_of_line = lf | |
charset = utf-8 | |
trim_trailing_whitespace = true | |
insert_final_newline = true |
We are all adults. Capable of having adult discussions.
We should always be capable to criticize other people's work as long as the discussion is constructive.
As engineers, we know that there's always some compromises to do (time to market, urgent vs. important).
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
// Use IntelliSense to learn about possible Node.js debug attributes. | |
// Hover to view descriptions of existing attributes. | |
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | |
"version": "0.2.0", | |
"configurations": [ | |
{ | |
"type": "node", | |
"request": "launch", |
Signing commits is a way to authenticate your commits, since anybody can pretend using your email when pushing to a repository (as long as one has access to it)
First you need to create a GPG
Key Pair. Follow Github guide explaining each step: Generating a new GPG Key
Do not forget to add the passphrase to your favorite password manager (1Password for instance 🔒👌)
OlderNewer