전체 글
-
Rust: actix-rs에서 HTML tera 엔진 렌더링컴퓨터/Rust 2022. 6. 24. 11:24
actix-rs Actix Web | A powerful, pragmatic, and extremely fast web framework for Rust. Request Routing The built-in Actix Web request router can be used with or without macros attached to handlers, and always provides flexible and composable methods of creating routing tables. Includes support for matching dynamic path segments, path prefix actix.rs 소개 이 글에선 Python django 처럼 HTML 엔진을 이용해서 코드를 HT..
-
Rust: Cross compile for Raspberry PI컴퓨터/Rust 2022. 6. 24. 10:24
라즈베리파이에서 러스트를 빌드하는 데는 굉장히 오래 걸릴 수가 있다. 그래서 호스트 OS 환경 (ex 윈도우)에서 라즈베리 파이용 크로스 컴파일하는 법이다. 우선, WSL 설치가 필요하다. 셋업 우선 타겟 버전 Rust 라이브러리를 받아야 한다. (GNU 컴파일러와 같이 링커 CC 설치했다고 가정) rustup target add armv7-unknown-linux-gnueabihf 프로젝트 최상위 폴더에 .cargo 를 만들고 안에 config.toml 파일을 만든다. 파일 안에 다음과 같이 추가한다. (파이 2/3/4 용) .cargo/config.toml [build] # Pi 2/3/4 [target.armv7-unknown-linux-gnueabihf] linker = "arm-linux-gnu..
-
Rust fleet (cargo 대체 빌드 툴)컴퓨터/Rust 2022. 5. 4. 22:36
fleet.rs GitHub - dimensionhq/fleet: 🚀 The blazing fast build tool for Rust. 🚀 The blazing fast build tool for Rust. Contribute to dimensionhq/fleet development by creating an account on GitHub. github.com 소개 기본 cargo와 비교했을 때 5배까지 빠를 수 있다는 fleet 빌드 툴 nigtly에서만 사용 가능하며 Rust ecosystem에 있는 (sccache, lld, zld, ramdisks 등을 이용해) 기본 툴들을 최적화함 외부 라이브러리 의존도가 높으면 그렇게 차이는 없는 듯 설치법 cargo install --git https:..
-
wsl에서 OneDrive 폴더 연결컴퓨터 2022. 4. 25. 11:16
ln -s /mnt/c/Users/me/OneDrive/ here cd here 후 폴더 내용물 확인 하드 링크이므로 클라우드에서 파일이 변경되면 자동으로 같이 변경됨 로컬에서 폴더 업로드 (-r 옵션) scp -r -i "mypem.pem" [업로드할 로컬 폴더] [ec2-user계정명]@[ec2 instance의 public DNS]:~/[경로] EC2에서 폴더 다운로드 scp -r -i "mypem.pem" [ec2-user계정명]@[ec2 instance의 public DNS]:~/[경로] [다운로드 받을 로컬 폴더 경로]
-
Golang: Struct memory 최적화 (구조체 크기)컴퓨터/Go language 2022. 1. 29. 00:27
The Go Programming Language Download Go Binary distributions available for Linux, macOS, Windows, and more. // You can edit this code! // Click here and start typing. package main import "fmt" func main() { fmt.Println("Hello, 世界") } Hello, World! Conway's Game of Life Fibonacci golang.org Struct 같은 primitive 타입 attributes 같지만 크기는 다른 두 구조체 type ComputerBig struct { // 48 bytes IsPowerOn bool Nam..
-
Elixir 언어: bitstring컴퓨터 2022. 1. 24. 23:34
Elixir 언어 elixir-lang.github.com Website for Elixir elixir-lang.org 소개 패킷에서 bits/bytes 처리 좀 공부하다가 아래처럼 bit shift/wise 할 수 있는데 가독성이 좀 떨어지긴 하는 것 같다. // Moderately readable bitwise and a[1]= bitfield[1] & 0b0000_0100 > 1; // Moderately readable bit shifting bits_0 += ((self.id[0] > 1) as u8) is_binary data true iex> is_bitstring data true iex> data2 = iex> is_bitstring data2 true iex> is_binary dat..
-
Python: MPIRE 파이썬 멀티 프로세싱 라이브러리컴퓨터/파이썬 2022. 1. 16. 19:33
MPIRE GitHub - Slimmer-AI/mpire A Python package for easy multiprocessing, but faster than multiprocessing github.com 소개 GIL 때문에 멀티 스레딩이 다른 언어와 같이 작동을 안 하는 파이썬 기본 탑재된 multiprocessing.Pool이나 concurrent.futures.ProcessPoolExecutor와 같은 클래스들을 이용하여 멀티 프로세싱/스레딩을 사용할 수 있는 데 사용하기 어려울 수 있다. MPIRE (MultiProcessing Is Really Easy, 멀티프로세싱 정말 쉬움) 라이브러리를 이용하여 쉽게 구현할 수 있다. 이 라이브러리는 멀티프로세싱 기본 라이브러리 기반이라 문법이 거의 ..
-
Python: Mito 파이썬 데이터 분석 라이브러리컴퓨터/파이썬 2022. 1. 15. 20:32
Mito Mito Documentation - Mito Welcome to the documentation for Mito. Mito is a spreadsheet that helps you complete your Python analyses 10x faster. You edit the Mitosheet, and it generates Python code for you. To quickly get started, see the links below: docs.trymito.io 소개 Mito 라이브러리는 데이터 전처리, 분석, 변형 등을 GUI로 통해서 하게 도와주는데 자동으로 Python 코드까지 생성해준다는 게 특징이다. (MS Excel, Bamboolib과 비슷한 듯) pandas를 이용할 수..