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
/* | |
Pure markdown + css presentation template | |
Usage: | |
1 - write your markdown | |
2 - compile using some tool that wraps sections in <section> tags | |
3 - include this css on the file | |
Example: | |
pandoc -s slides.md --css slides.css --section-divs | |
*/ | |
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700;900&display=swap'); |
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 { useState } from "react"; | |
function useReducer(reducer, initialState) { | |
const [state, setState] = useState(initialState); | |
const dispatch = action => { | |
setState(reducer(state, action)); | |
}; | |
return [state, dispatch]; |
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
#!/bin/bash | |
yarn eslint --fix --no-error-on-unmatched-pattern $(git diff develop... --name-only -- "*.ts" "*.tsx" "*.js" "*.jsx") |
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
! 2021-09-19 https://www.youtube.com | |
www.youtube.com###related | |
www.youtube.com###comments | |
www.youtube.com###end > .ytd-masthead.style-scope | |
www.youtube.com###guide-button | |
www.youtube.com###voice-search-button | |
www.youtube.com###guide | |
www.youtube.com##.grid-disabled.grid.ytd-browse.style-scope | |
www.youtube.com###chat |
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
#include <bits/stdc++.h> | |
using namespace std; | |
typedef long long int ll; | |
typedef pair<int, int> pii; | |
int main() { | |
ios::sync_with_stdio(0); | |
cin.tie(0); |
Brasília - DF, Brazil | brennn.in | [email protected]
I aim for developing quality sofware that solves real problems, learning and improving my soft and hard skills in the process.