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.
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.
#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); |
! 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 |
#!/bin/bash | |
yarn eslint --fix --no-error-on-unmatched-pattern $(git diff develop... --name-only -- "*.ts" "*.tsx" "*.js" "*.jsx") |
import { useState } from "react"; | |
function useReducer(reducer, initialState) { | |
const [state, setState] = useState(initialState); | |
const dispatch = action => { | |
setState(reducer(state, action)); | |
}; | |
return [state, dispatch]; |
/* | |
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'); |