Skip to content

Instantly share code, notes, and snippets.

View irfanfadilah's full-sized avatar
:octocat:
Coding For Fun

Irfan Fadilah irfanfadilah

:octocat:
Coding For Fun
View GitHub Profile
@irfanfadilah
irfanfadilah / .bash_aliases
Last active December 15, 2022 03:09
Ultimate Bash Aliases
# Bash
alias bo="nano ~/.bashrc"
alias bu="source ~/.bashrc"
alias ba="nano ~/.bash_aliases"
# Kubectl
kupods() { kubectl get pods --namespace=$1; }
kubash() { kubectl exec $2 --namespace=$1 -it bash; }
kulogs() { kubectl logs --follow $2 --namespace=$1; }
kudesc() { kubectl describe pods --namespace=$1 $2; }
@irfanfadilah
irfanfadilah / settings.json
Last active February 18, 2020 02:11
Visual Studio Code - Preferences
{
"editor.tabSize": 2,
"editor.smoothScrolling": true,
"editor.minimap.enabled": false,
"files.insertFinalNewline": true,
"files.trimFinalNewlines": true,
"files.trimTrailingWhitespace": true,
"workbench.startupEditor": "none",
"editor.copyWithSyntaxHighlighting": false,
"editor.matchBrackets": "never",
@irfanfadilah
irfanfadilah / Preferences.sublime-settings
Last active November 17, 2020 03:21
Sublime Text 3 - Preferences
{
"color_scheme": "Packages/Material Theme/schemes/Material-Theme-Darker.tmTheme",
"default_line_ending": "unix",
"drag_text": false,
"ensure_newline_at_eof_on_save": true,
"font_size": 10,
"ignored_packages": ["Vintage"],
"line_padding_bottom": 1.5,
"line_padding_top": 1.5,
"material_theme_accent_scrollbars": true,