Skip to content

Instantly share code, notes, and snippets.

View yoonhoGo's full-sized avatar
😎
Cool

Yoonho Go yoonhoGo

😎
Cool
View GitHub Profile
@yoonhoGo
yoonhoGo / alacritty.yml
Last active January 29, 2024 16:18
alacritty settings
# Configuration for Alacritty, the GPU enhanced terminal emulator.
# Import additional configuration files
#
# Imports are loaded in order, skipping all missing files, with the importing
# file being loaded last. If a field is already present in a previous import, it
# will be replaced.
#
# All imports must either be absolute paths starting with `/`, or paths relative
# to the user's home directory starting with `~/`.
@yoonhoGo
yoonhoGo / install.sh
Last active October 7, 2022 06:37
Modern Unix-based commands on macOS
brew install exa
brew install bat
brew install hexyl
brew install fd
brew install procs
brew install ripgrep
brew install dust
brew install clementtsang/bottom/bottom
brew install starship
@yoonhoGo
yoonhoGo / homebrew-permissions-issue.md
Created April 11, 2020 00:03 — forked from irazasyed/homebrew-permissions-issue.md
Homebrew: Permissions Denied Issue Fix (OS X / macOS)

Homebrew Permissions Denied Issues Solution

sudo chown -R $(whoami) $(brew --prefix)/*

@yoonhoGo
yoonhoGo / init.toml
Last active November 3, 2023 18:11
~/.SpaceVim.d/init.toml
#=============================================================================
# dark_powered.toml --- dark powered configuration example for SpaceVim
# Copyright (c) 2016-2017 Wang Shidong & Contributors
# Author: Wang Shidong < wsdjeg at 163.com >
# URL: https://spacevim.org
# License: GPLv3
#=============================================================================
# All SpaceVim option below [option] section
[options]
@yoonhoGo
yoonhoGo / init.vim
Created March 30, 2020 04:24
neovim ~/.config/nvim/init.vim
call plug#begin('~/.vim/plugged')
Plug 'tpope/vim-fugitive'
Plug 'tpope/vim-surround'
Plug 'scrooloose/nerdtree'
Plug 'scrooloose/syntastic'
Plug 'airblade/vim-gitgutter'
Plug 'vim-airline/vim-airline'
Plug 'preservim/nerdcommenter'
Plug 'valloric/youcompleteme', { 'do': './install.py' }
@yoonhoGo
yoonhoGo / launch.json
Last active January 17, 2022 05:44
VS Code launch.json ts-node and mocha
{
// IntelliSense를 사용하여 가능한 특성에 대해 알아보세요.
// 기존 특성에 대한 설명을 보려면 가리킵니다.
// 자세한 내용을 보려면 https://go.microsoft.com/fwlink/?linkid=830387을(를) 방문하세요.
"version": "0.2.0",
"configurations": [
{
"type": "node",
"name": "vscode-jest-tests",
"request": "launch",
@yoonhoGo
yoonhoGo / api.js
Last active July 23, 2019 23:29
Node.js 서버리스 프레임웍을 사용하여 싱글페이지 포트폴리오 제작하기 7
const AWS = require('aws-sdk')
const express = require('express')
const bodyParser = require('body-parser')
/**
* 만약 profile을 쓰고 싶다면?
*/
// if (process.env.STAGE === 'local') {
// const credentials = new AWS.SharedIniFileCredentials({profile: 'isMe'});
// AWS.config.credentials = credentials;
@yoonhoGo
yoonhoGo / index.html
Created September 17, 2018 09:26
Node.js 서버리스 프레임웍을 사용하여 싱글페이지 포트폴리오 제작하기 6-1
<!DOCTYPE html>
<html class="has-navbar-fixed-top">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Hello AUSG!</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bulma/0.7.1/css/bulma.min.css">
<script defer src="https://use.fontawesome.com/releases/v5.1.0/js/all.js"></script>
</head>
@yoonhoGo
yoonhoGo / index.d.ts
Created September 11, 2018 06:46
Nuxt-edge-with-Typescript-boilerplate
// types/index.d.ts
declare module '*.vue' {
import Vue, { VueConstructor } from 'vue'
const vue: VueConstructor<Vue>
export default vue
}
@yoonhoGo
yoonhoGo / nuxt.config.js
Created September 11, 2018 06:44
Nuxt-edge-with-Typescript-boilerplate
// nuxt.config.js
module.exports = {
srcDir: 'src/',
extensions: ['js', 'ts'],
/*
** Headers of the page
*/
head: {
title: 'portfolio',
meta: [