James Hyun
- Total activity 16
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 1
- Subscriptions 6
-
Created CPU usage on macOS Ventura is almost 100%
AnsweredOS: macOS Ventura Specifications: iMac 27 (2019) - 3 GHz 6 Core Intel Core i5, 32GB 2667 MHz DDR4 Memory IntelliJ IDEA occupies almost 90%~99% of CPU. How can I reduce cpu utilization? CPU throt... -
Created How can I keep indents on black line when pasting code?
Answeredif (some < bigger) { const now = moment(); const nowDate = now.toDate(); // here console.log(now); console.log(nowDate);} I already turned on 'Keep indents on empty lines' option, but indentat... -
Created app.use() marked as "Argument types do not match parameters"
const express = require('express');const app = express();function logger(req, res, next) { ... }app.use(logger); // # Webstorm marks line '#' as "Argument types do not match parameters". I've alrea... -
Created date-fns: Method expression is not of Function type
const subDays = require('date-fns/subDays');subDays(new Date(), (offset + 6)); In this code, Webstorm shows error message "Method expression is not of Function type" for subDays(...); How can I rem... -
Edited Vue.prototype is marked as unused
I've defined vue prototype '$http' in ../frontend/src/main.js, and it is used in ../frontend/src/components/IndexPage.vue file. But IntelliJ marks '$http' as unused definition. How can I fix this? -
Created IntelliJ IDEA doesn't recognize ioredis module
const Redis = require('ioredis'); const redis = new Redis(); let howMany = redis.pfcount('mau_key'); I'm trying to ioredis module in JavaScript code, but IntelliJ doesn't recognize ioredis' librar...