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
{ | |
"$schema": "https://raw.githubusercontent.com/jsonresume/resume-schema/v1.0.0/schema.json", | |
"meta": { | |
"theme": "elegant" | |
}, | |
"languages": [ | |
{ | |
"language": "fr", | |
"fluency": "Native Speaker" | |
} |
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
git fetch -p | |
git branch -vv | |
git branch -vv | awk '/: gone]/{print $1}' | xargs git branch -D |
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
#Contexts | |
kubectl config get-contexts | |
kubectl config use-context *contextName* | |
#Services | |
kubectl get services | |
kubectl describe services *serviceName* | |
#Pods | |
kubectl get pods |
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
[defaults] | |
url=https://sentry.yourcompany.com | |
project=yourproject | |
org=yourcompany | |
[auth] | |
token = yourtoken |
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
#first | |
lsof -i :8081 | |
#then | |
kill -9 <PID> |
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
jsinspect -r json -t 50 --ignore "node_modules" ./src > report.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
fontforge -lang=ff -c 'Open($1); SelectWorthOutputting(); foreach Export("svg"); endloop;' webfontname.ttf |
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
<!DOCTYPE html> | |
<html lang="fr"> | |
<head> | |
<meta charset="UTF-8" /> | |
<title>PAX</title> | |
<meta name="description" content="PAX gist" /> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<link href="/style.css?" rel="stylesheet" /> | |
<link rel="icon" type="image/x-icon" href="/favicon.ico" /> |
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
import React, { Component } from 'react'; | |
import { StyleSheet, FlatList, Dimensions, View } from 'react-native'; | |
import styled from 'styled-components/native'; | |
const SCREEN_WIDTH = Dimensions.get('window').width; | |
const width = SCREEN_WIDTH; | |
const InactiveDot = styled.View` | |
background-color: ${props => props.theme.slider.inactive.backgroundColor}; | |
width: 8; |
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
#compress | |
tar -zcvf archive_name.tar.gz folder_to_compress | |
#extract | |
tar -zxvf archive_name.tar.gz |
NewerOlder