Generating a new SSH key and adding it to the ssh-agent
https://help.github.com/en/articles/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent
export const pagination = (paginationParams = {}) => ({ | |
...paginationParams, | |
limit: paginationParams.limit || 20, | |
offset: paginationParams.offset || 0, | |
totalCount: paginationParams.totalCount || 0, | |
get currentPage() { | |
return Math.floor(this.offset / this.limit) + 1; | |
}, | |
get hasNext() { | |
return this.currentPage * this.limit < this.totalCount; |
rpad# Remove the line below if you want to inherit .editorconfig settings from higher directories | |
root = true | |
# C# files | |
[*.cs] | |
#### Core EditorConfig Options #### | |
# Indentation and spacing |
def validate(num, name): | |
if not num.isnumeric(): | |
raise ValueError(f'Le format de {name} n\'est pas valide') | |
output = int(num) | |
if output < 0 or 100 < output: | |
raise ValueError( | |
f'La veleur de {name} doit être comprise entre 0 et 100') | |
return output | |
a = input('Entrez la valeur de A: ') |
wget -r -p -U Mozilla --wait=10 www.website.com |
import bisect | |
class SortedArray: | |
def __init__(self, array): | |
self.array = sorted(array) | |
self.d = len(array) | |
def add(self, x): | |
bisect.insort(self.array, x) | |
def remove(self, x): | |
del self.array[bisect.bisect_left(self.array, x)] | |
def median(self): |
language: node_js | |
node_js: | |
- "12" | |
addons: | |
chrome: stable | |
env: | |
global: | |
CODECOV_TOKEN=$CODECOV_TOKEN | |
before_script: | |
- yarn install |
module.exports = function (config) { | |
config.set({ | |
... | |
browsers: ['Chrome', 'ChromeHeadlessNoSandbox'], | |
customLaunchers: { | |
ChromeHeadlessNoSandbox: { | |
base: 'ChromeHeadless', | |
flags: ['--no-sandbox'] | |
} | |
} |
let array_1 = [1,2,3,4]; | |
let array_2 = [1,2,3,4]; | |
let array_3 = [1,2,3,4]; | |
array_1.splice(-1,1) // output --> [4] array_1 = [1,2,3] | |
array_2.slice(0,-1); // output --> [1,2,3] array_2 = [1,2,3,4] | |
array_3.pop(); // output --> 4 array_3 = [1,2,3] |
https://help.github.com/en/articles/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent
<type>/<name>
<type>
fix - Code changes linked to a known issue.
feat - New feature.
hotfix - Quick fixes to the codebase.
junk - Experiments (will never be merged).
refactor - A code change that neither fixes a bug nor adds a feature
ci - Changes to our CI configuration files and scripts (example scopes: Circle, BrowserStack, SauceLabs)