Skip to content

Instantly share code, notes, and snippets.

View devjin0617's full-sized avatar
πŸ’»
μ €λŠ” κ°œλ°œμ„ ν•©λ‹ˆλ‹€

cheongjin kim (κΉ€μ²­μ§„) devjin0617

πŸ’»
μ €λŠ” κ°œλ°œμ„ ν•©λ‹ˆλ‹€
View GitHub Profile

InterlliJ Plugins

File - settings - plugins μ—μ„œ μ•„λž˜ ν”ŒλŸ¬κ·ΈμΈλ“€μ„ 검색할 수 μžˆμŠ΅λ‹ˆλ‹€.

  • Vue.js: vue-cliλ₯Ό 기본적으둜 μ‚¬μš©ν•  수 μžˆλ„λ‘ ν•΄μ€λ‹ˆλ‹€. (κ·ΈλŸ¬λ‚˜ μ“Έ 일이 κ·Έλ‹₯..)
  • Presentation Assistant: 타OS의 단좕킀λ₯Ό μ•ˆλ‚΄ν•΄μ€λ‹ˆλ‹€.
  • .gitignore: 각 νŒŒμΌλ“€μ„ .gitignore 에 μΆ”κ°€ν•  수 μžˆλ„λ‘ λ©”λ‰΄μ—μ„œ μ œκ³΅ν•΄μ€λ‹ˆλ‹€.
  • BashSupport: 이걸 μΆ”κ°€ν•˜λ©΄ bashλ₯Ό μ’€ 더 잘 μ‚¬μš©ν•  수 μžˆμ„μ§€λ„ λͺ¨λ¦…λ‹ˆλ‹€.
  • jojoldu Translator: ν•œκΈ€μ„ μ˜μ–΄λ‘œ, μ˜μ–΄λ₯Ό ν•œκΈ€λ‘œ λ²ˆμ—­ν•΄μ£ΌλŠ” μ•„μ£Ό μ°©ν•œ μΉœκ΅¬μž…λ‹ˆλ‹€.
  • CodeGlance: μš°μΈ‘μ—μ„œ μ†ŒμŠ€μ½”λ“œ λ―Έλ‹ˆλ§΅μ„ λ³Ό 수 μžˆμŠ΅λ‹ˆλ‹€.
@devjin0617
devjin0617 / settings.json
Created September 4, 2019 03:21
vscode vue lint & autofix setting file
{
"eslint.autoFixOnSave": true,
"editor.formatOnSave": true,
"files.associations": {
"*.vue": "vue"
},
"eslint.validate": [
{
"language": "javascript",
"autoFix": true
@devjin0617
devjin0617 / .manifest
Created May 19, 2017 15:15
chrome extension using a content script to access the `window` object
{
"content_scripts": [
{
"matches": ["http://*/*", "https://*/*"],
"js": ["inject.js"],
"all_frames": true
}
],
"web_accessible_resources": [
"content.js"
@devjin0617
devjin0617 / git.sh
Last active April 5, 2017 04:56
git정리
# git remote 에 μ‚­μ œλœ λΈŒλŸ°μΉ˜λ“€ κ°±μ‹ ν•˜λŠ” λͺ…λ Ήμ–΄(λ‘˜ 쀑 ν•˜λ‚˜λ§Œ μ‚¬μš©ν•˜λ©΄ 됨)
$ git remote prune origin
$ git remote update --prune
<template>
...
<button type="button" class="btn btn-primary" autocomplate="off" data-loading-text="jquery with bootstrap" @click="clickBtn">
...
</template>
<script>
export default {
name: 'jQueryApp',
methods: {
import 'expose-loader?$!expose-loader?jQuery!jquery'
// μœ„μ—μ„œ μΆ”κ°€ν–ˆλ˜ jQuery 밑에 μ½”λ“œλ₯Ό μž‘μ„±ν•˜μ„Έμš”
import 'bootstrap'
import 'bootstrap/dist/css/bootstrap.min.css'
npm i --save bootstrap
import 'expose-loader?$!expose-loader?jQuery!jquery'