# List Java versions installed
/usr/libexec/java_home -V
# Java 10
export JAVA_HOME=$(/usr/libexec/java_home -v 10)
# Java 9
export JAVA_HOME=$(/usr/libexec/java_home -v 9)
# Java 1.8
export JAVA_HOME=$(/usr/libexec/java_home -v 1.8)
# Java 1.7
export JAVA_HOME=$(/usr/libexec/java_home -v 1.7)
# Java 1.6
export JAVA_HOME=$(/usr/libexec/java_home -v 1.6)


'꼬꼬마' 카테고리의 다른 글

mysql 서버 시작하기  (0) 2017.12.07
typedjs  (0) 2017.11.22
intellij에서 groovy 못 알아들을때  (0) 2017.08.21
아두이노 동호회 가입  (0) 2017.06.08
postgresql - lead, lag over  (0) 2017.06.07
AND

ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/tmp/mysql.sock' (2)

이런 에러가 나오면 당황하지 말고 mysql 서버나 올리세요.


mysql.server start

'꼬꼬마' 카테고리의 다른 글

맥에서 자바 버전 바꾸기  (0) 2018.05.30
typedjs  (0) 2017.11.22
intellij에서 groovy 못 알아들을때  (0) 2017.08.21
아두이노 동호회 가입  (0) 2017.06.08
postgresql - lead, lag over  (0) 2017.06.07
AND

typedjs

꼬꼬마 2017. 11. 22. 23:08

http://www.mattboldt.com/demos/typed-js/

'꼬꼬마' 카테고리의 다른 글

맥에서 자바 버전 바꾸기  (0) 2018.05.30
mysql 서버 시작하기  (0) 2017.12.07
intellij에서 groovy 못 알아들을때  (0) 2017.08.21
아두이노 동호회 가입  (0) 2017.06.08
postgresql - lead, lag over  (0) 2017.06.07
AND

gmavenplus intellij plugin

이거 깔아보세요

'꼬꼬마' 카테고리의 다른 글

mysql 서버 시작하기  (0) 2017.12.07
typedjs  (0) 2017.11.22
아두이노 동호회 가입  (0) 2017.06.08
postgresql - lead, lag over  (0) 2017.06.07
Utility classes should not have public constructors  (0) 2017.05.23
AND

사내 아두이노 동호회 가입했다!


1. 키보드 만들기

2. 로봇 청소기 만들기 

3. 프로듀스 응원봉 (응...?)

AND

SELECT 

LEAD(id) OVER () AS prev, -- offset rows after the current row within the partition

LAG(id) OVER AS next -- offset rows before the current row within the partition


AND

Utility classes, which are a collection of static members, are not meant to be instantiated.

Even abstract utility classes, which can be extended, should not have public constructors.

Java adds an implicit public constructor to every class which does not define at least one explicitly.

Hence, at least one non-public constructor should be defined.

Noncompliant Code Example

class StringUtils { // Noncompliant
  public static String concatenate(String s1, String s2) {
    return s1 + s2;
  }
}

Compliant Solution

class StringUtils { // Compliant
  private StringUtils() {
    throw new IllegalAccessError("Utility class");
  }
  public static String concatenate(String s1, String s2) {
    return s1 + s2;
  }
}


'꼬꼬마' 카테고리의 다른 글

아두이노 동호회 가입  (0) 2017.06.08
postgresql - lead, lag over  (0) 2017.06.07
mybatis Error selecting key or setting result to parameter object  (0) 2017.03.15
sdfsdf  (0) 2017.01.05
https://www.keycdn.com/blog/front-end-frameworks  (0) 2016.12.23
AND

parameterType="map" 이고, <selectKey></selectKey>를 쓰고 insert into table values(#{id}, ....) 를 쓰셨나요?
이럴때는 <selectKey> 말고 insert into table values(nextval('seq'), ....) 이렇게 바로 써줘야합니다ㅠㅠ
map이라서 #{id} 라고 했을때 그냥 null로 알아먹는 듯ㅠ
두시간 짜리 삽질 ㅠ

'꼬꼬마' 카테고리의 다른 글

postgresql - lead, lag over  (0) 2017.06.07
Utility classes should not have public constructors  (0) 2017.05.23
sdfsdf  (0) 2017.01.05
https://www.keycdn.com/blog/front-end-frameworks  (0) 2016.12.23
git submodule 끊고 싶을때  (0) 2016.12.15
AND