HTML escape online tool.

- https://www.freeformatter.com/html-escape.html 블로그 글 쓸때 markdown 안에서 html을 쓰면 레이아웃이 망가지는 상황이 발생. 이를 해결 하기 위해 code block안에 항목을 넣을 때 html escape를 해서 진행

Elixir Cast!

[https://elixircasts.io/](https://elixircasts.io/)

엘릭서 Phoenix migration (1.5 -> 1.6 and scss for esbuild)

1. 우선 scss를 사용하는 상황이었기 때문에 app.scss를 복사해서 app.css로 바꾸고 내용을 삭제. (맨 마지막에 migration을 할 예정임,) 2. `package-lock.json` 파일을 지움. 3. package.json 파일에 내용을 변경 (음.. 일단은 삭제만 했네..) ``` ... "nprogress": "^0.2.0" }, "devDependencies": { - "@babel/core": "^7.0.0", - "@babel/preset-env": "^7.0.0", - "babel-loader": "^8.0.0", "copy-webpack-plugin": "^5.1.1", "css-loader": "^3.4.2", "sass-loader": "^8.0.2", "node-sass": "^4.13.1", "hard-source-webpack-plugin": "^0.13.1", - "mini-css-extract-plugin": "^0.9.0", - "optimize-css-assets-webpack-plugin": "^5.0.1", - "terser-webpack-plugin": "^2.3.2", - "webpack": "4.41.5", - "webpack-cli": "^3.3.2" "mini-css-extr...

NPM에서 packege version spec 관련 내용

- `~version` “Approximately equivalent to version”, will update you to all future patch versions, without incrementing the minor version. `~1.2.3` will use releases from `1.2.3 to

Phoenix에서 사용하고 있는 plot chart

- https://elixirschool.com/blog/server-side-svg-charts-with-contex-and-liveview - https://hexdocs.pm/contex/Contex.html#content - https://github.com/mindok/contex-samples

gcc 깔기.

https://linuxconfig.org/how-to-install-gcc-the-c-compiler-on-ubuntu-22-04-lts-jammy-jellyfish-linux ``` $ sudo apt update $ sudo apt install build-essential ```