• Skip to primary navigation
  • Skip to content
  • Skip to footer
dev diary, TIL 톱밥과 Today I Learned
  • Posts
  • Categories
  • Tags
  • Random
    Jongbin Oh

    Jongbin Oh

    I write something to think

    • South Korea
    • Twitter
    • Facebook
    • GitHub
    • Instagram
    • Email

    #TIL #elixir milliseconds로 바꾸는 함수

    less than 1 minute read

    iex> :timer.seconds(1)
    1000
    iex> :timer.minutes(1)
    60000
    iex> :timer.hours(1)
    3600000
    iex> :timer.hms(1, 0, 0)
    3600000
    iex> :timer.hms(1, 1, 1)
    3661000
    

    왜 elixir에 없지? 만들어서 쓰다가 erlang에 있는 걸 찾았다.

    Tags: elixir

    Categories: til

    Updated: 2020-01-07

    Twitter Facebook LinkedIn
    Previous Random Next

    You May Also Enjoy

    #TIL elixir 1.11에 추가된 구조화된 로깅(keyword, map)

    less than 1 minute read

    keyword, map을 변환할 필요없이 로거 인자로 넘길 수 있다. 편해졌다.

    #TIL elixir에서 erlang 파일 로그 핸들러를 사용하기

    1 minute read

    elixir 1.15에서 erlang logger 와의 통합이 이뤄졌다. 그래서 elixir에서 erlang의 파일 로거 핸들러를 손쉽게 사용할 수 있다. elixir logger backend가 deprecated 돼서 설정을 바꾸는게 귀찮았지만 erlang의 파일 로거를 사용할...

    #TIL elixir 1.15부터 soft-deprecate된 logger backends 대처 방법

    1 minute read

    elixir에서 로그를 콘솔로 출력하려고 console logger backend를 정의해서 사용했었다.

    #TIL #elixir 실패한 테스트 케이스를 손쉽게 확인하는 우회책

    less than 1 minute read

    Elixir에서 자식 프로젝트가 여러 개 있는 프로젝트를 Umbrella projects라고 부른다. C++/C#에서 프로젝트가 여러 개 있는 솔루션과 비슷하다. mix test 태스크를 실행하면 하위 프로젝트에 있는 test가 차례로 실행된다. 테스트가 실패하면 에러 exit c...

    • Feed
    © 2025 dev diary, TIL. Powered by Jekyll & Minimal Mistakes.