https://help.github.com/en/articles/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent
This file contains 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
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; |
This file contains 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
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 |
This file contains 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
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: ') |
This file contains 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
wget -r -p -U Mozilla --wait=10 www.website.com |
This file contains 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
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): |
This file contains 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
language: node_js | |
node_js: | |
- "12" | |
addons: | |
chrome: stable | |
env: | |
global: | |
CODECOV_TOKEN=$CODECOV_TOKEN | |
before_script: | |
- yarn install |
This file contains 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
module.exports = function (config) { | |
config.set({ | |
... | |
browsers: ['Chrome', 'ChromeHeadlessNoSandbox'], | |
customLaunchers: { | |
ChromeHeadlessNoSandbox: { | |
base: 'ChromeHeadless', | |
flags: ['--no-sandbox'] | |
} | |
} |
This file contains 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
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] |
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)
NewerOlder