전체 글
-
Rust: diesel db query 코드 정리컴퓨터/Rust 2021. 7. 18. 14:30
SELECT * FROM table WHERE date = ? ORDER BY id #[derive(Queryable, AsChangeset, Serialize, Deserialize, Debug, Clone)] #[table_name = "table"] pub struct Data { pub id: i32, pub title: String, pub date: String, pub link: String, pub writer: String, } use crate::db::models::Model; use crate::db::schema::table; use crate::db::schema::table::dsl::*; // SELECT * FROM table WHERE date = ? ORDER BY id..
-
Rust: HTML 파싱하기 (crawling)컴퓨터/Rust 2021. 7. 15. 19:06
scraper causal-agent/scraper HTML parsing and querying with CSS selectors. Contribute to causal-agent/scraper development by creating an account on GitHub. github.com In Go lang Python의 beautifulsoup4, selectolax, Go의 soup처럼 그리 쉽지는 않았다. 아래 대학교 공지를 불러오는 Go언어에서 작성한 코드를 Rust로 작성할 것이다. import ( "fmt" "strconv" "strings" "github.com/anaskhan96/soup" ) // AjouLink is the address of where notices of aj..
-
Rust: Remove duplicate strs in String컴퓨터/Rust 2021. 7. 15. 18:33
Rust 중복된 문자열 제거하기 fn main() { let mut orig = "[hello] zzzzzz".to_string(); let a = "hello".to_string(); let dup = "[".to_string() + &a + "]"; if orig.contains(&dup) { println!("yes"); orig.replace_range((0..dup.len()), ""); } println!("{}", orig.trim()); } // yes // zzzzzz 직접 만들어서 효율은 아직 모름. Rust Playground play.rust-lang.org
-
Rust 백엔드: REST API (Rocket + MySQL)컴퓨터/Rust 2021. 7. 14. 14:11
Rocket Rust 언어용 웹 프레임워크 Rocket - Simple, Fast, Type-Safe Web Framework for Rust Forms? Check! Handling forms is simple and easy. rocket.rs Rust Rocket 기본 설정 프로젝트 시작 cargo new rustweb --bin cd rustweb 기본 src/main.rs #[macro_use] extern crate rocket; #[get("/")] fn index() -> &'static str { "Hello, world!" } #[launch] fn rocket() -> _ { rocket::build().mount("/", routes![index]) } cargo build carg..
-
could not find native static library mysqlclient 오류 해결법컴퓨터/Rust 2021. 7. 10. 19:13
오류 Rust에서 Rocket 웹 프레임워크를 사용하다가 MySQL 연동을 하려면 diesel이 필요하다고 한다. cli를 설치하다가 아래와 같은 오류가 발생했다. error: could not find native static library mysqlclient, maybe an -L flag is missing? cargo install diesel_cli, error: error: could not find native static library mysqlclient, maybe an -L flag is missing? error: Could not compile mysqlclient-sys. 해결법 MySQL C API를 다운로드 한다. MySQL :: Download MySQL Connector..
-
V lang: FFI 사용하기컴퓨터/V language 2021. 7. 6. 11:04
FFI 외부 함수 인터페이스 - 위키백과, 우리 모두의 백과사전 외부 함수 인터페이스(Foreign function interface, FFI)는 한 프로그래밍 언어로 작성된 프로그램이 다른 언어로 작성된 서비스를 이용할 수 있거나 그에 따른 함수를 호출할 수 있는 구조이다. 이 용어 ko.wikipedia.org FFI 란? 외부 함수 인터페이스, 쉽게 이 글로 예를 들면 vlang으로 작성한 피보나치 함수를 dll/so로 export 하고 dart나 다른 언어에서 쓸 수 있도록 해주는 것이다. v 소스파일 -> dll/so 윈도우는 dll, 리눅스 계열은 so로 export 된다. ffi.v 간단한 피보나치 계산 함수이다. export에 어떠한 함수명으로 쓸지 결정할 수 있다. // ffi.v mod..
-
NanoID: 범영 고유 식별자 UUID 대체?컴퓨터 2021. 7. 2. 21:28
NanoID ai/nanoid A tiny (108 bytes), secure, URL-friendly, unique string ID generator for JavaScript - ai/nanoid github.com UUID란? UUID ( = GUID) 는 범용 고유 식별자로 소프트웨어 개발에 쓰이는 표준 식별자이다. 08f5fc3f-6de2-4822-9b05-817a201c7435 (v4) 위와 같이 랜덤으로 생성된 UUID는 그 어떠한 것과도 같은 uuid를 가질 수 없다. (0.00000006 % 확률로 같음) (UUID는 버전 5까지 나온 상태) 어디에 쓰이냐면 예를 들어, 테이블의 key 값이나 파일 업로드 시 임시 파일명으로 쓰일 수 있다. NanoID UUID 보다 7살 정도 어리지만..
-
Python Selenium: 여러가지 팁컴퓨터/파이썬 2021. 6. 7. 16:25
1. 크롬 드라이버를 알아서 다운로드해서 설정 이유: 셀레니움을 이용한 콘솔 앱을 만들었는데 chrome이 업데이트된 후에 정상적으로 작동하지 않음 webdriver-manager를 이용해서 알아서 다운로드 시킨다. (크롬, firefox, IE, edge를 지원함) pip install webdriver-manager 예제 import os import sys from selenium import webdriver from selenium.webdriver.chrome.options import Options from webdriver_manager.chrome import ChromeDriverManager def resource_path(another_way): try: usual_way = ( s..