docker ps
docker kill <container>
docker logs -f <container>
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
;= @echo off | |
;= rem Call DOSKEY and use this file as the macrofile | |
;= %SystemRoot%\system32\doskey /listsize=1000 /macrofile=%0% | |
;= rem In batch mode, jump to the end of the file | |
;= goto:eof | |
;= Add aliases below here | |
;= ## SYSTEM ## | |
ls=ls --show-control-chars -F --color -a $* | |
pwd=cd |
- Screenshoots directory
- Google Drive in Finder's SideBar
- iTerm2 + zsh + oh-my-zsh
- AlienBlood iTerm theme
- af-magic oh-my-zsh theme
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
//== src/context/AuthContext.ts ==// | |
import { createContext, useContext } from 'react'; | |
import { User } from 'src/store/types/user'; | |
import { userInitialState } from 'src/store/reducers/user'; | |
export type AuthContextProps = { | |
isLoading: boolean; | |
isAuthenticated: boolean; | |
user: User; |
-
Visual Studio Code
-
Microsoft Whiteboard
-
Sticky Notes
I love what I do, I've been programming since I was 7 years old, and it has become not only my profession but my hobby.
- xavierd/clang_complete (Vim/NeoVim needs Python support)
- Make sure that Vim, Python and Clang have same architecture (32/62 bits)
- preservim/nerdtree
- iceberg theme with airline theme
- vim-airline
- coc
- Nerdtree
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
// Promises javascript example | |
// Maximize asynchronous benefits! | |
const makePromise = (num) => () => new Promise((resolve, reject) => { | |
return setTimeout(() => { | |
console.log(num) | |
resolve(); | |
}, 1000 * Math.floor(3 * Math.random())) | |
}); |
NewerOlder