Skip to content

Instantly share code, notes, and snippets.

View motionrus's full-sized avatar
🎯
Focusing

Ruslan Tiutin motionrus

🎯
Focusing
View GitHub Profile
@giandoso
giandoso / .bash_aliases
Last active July 9, 2022 10:23
Minhas aliases para bash 😁
# github aliases
alias gs='git status -sb'
alias ga='git add'
alias gaa='git add .'
alias gc='git checkout '
alias gcm='git commit -m'
alias gpush='git push origin master'
alias gpull='git pull origin master'
alias gamend='git commit -a --amend -m'
alias glog='git log --all --graph --decorate --oneline --abbrev-commit'
@ELI7VH
ELI7VH / react-context-boilerplate.tsx
Last active May 9, 2024 18:00
React Context Boiler Plate - Typescript
import React, { createContext, useContext, useState, useEffect } from "react"
type Props = {
children: React.ReactNode
}
type Context = {
count: number
increment: () => void
}
@harshavardhana
harshavardhana / docker-compose.yml
Created September 15, 2017 19:32
Continuous mirroring
version: '2'
services:
minio:
image: minio/minio
container_name: miniobkp
ports:
- 9000:9000
env_file:
- ./minio.env