# language

131개의 포스트
post-thumbnail

navigator.language 제외하고 locale 값을 얻는 방법

navigator language는 우리가 브라우져 혹은 시스템의 언어를 추론할때 자주 사용하는 속성이다.그런데 특정 상황, 특정 브라우져에서는 우리가 의도하는데로 동작하지 않는다. 그중 가장 많이 나타나는 경우는 크롬 브라우져를 사용할 때다.최근 크롬브라우져를 사용할

약 22시간 전
·
0개의 댓글
·

rs-7. 구조체

https://doc.rust-lang.org/beta/book/ch05-00-structs.html구조체는 사용자 정의 타입이다.관련된 여러 값의 이름을 정의하고, 관련 fn 인 method 를 정의한다.java나 javascript 의 class 와 비슷하

2023년 3월 13일
·
0개의 댓글
·
post-thumbnail

rs-6. 소유권

https://doc.rust-lang.org/beta/book/ch04-00-understanding-ownership.htmlrust 핵심 소유권을 간단하게 알아보자.이 코드를 실행하면 에러가 발생한다.3번째 라인, let s2 = s1; 에서 발생한 오류

2023년 3월 13일
·
0개의 댓글
·
post-thumbnail

rs-5. 기본 문법 2

https://doc.rust-lang.org/beta/book/ch03-05-control-flow.htmlhttps://doc.rust-lang.org/beta/book/ch03-05-control-flow.html\`\`\`rustif 조건 {}

2023년 3월 13일
·
0개의 댓글
·

rs-4. 기본 문법 1

https://doc.rust-lang.org/beta/book/ch03-01-variables-and-mutability.html 문서볼때 이 친구가 있으면 컴파일 안되는게 정상이다.*(1) (https://doc.rust-lang.org/beta/book/ch00

2023년 3월 13일
·
0개의 댓글
·

rs-3. Cargo.toml

https://doc.rust-lang.org/beta/book/ch01-03-hello-cargo.htmlcargo 는 rust 에서 사용하는 패키지 매니저다.javascript 의 npm, yarn 같은 포지션이다.rust 에서 사용할 library 의 d

2023년 3월 13일
·
0개의 댓글
·
post-thumbnail

rs-2. hello world

https://doc.rust-lang.org/beta/book/ch01-02-hello-world.htmlhello world 를 해보자.필자는 mac m1 을 쓰고 있다.toolchain 은 해당 언어의 개발툴 /bin 위치다.아마 clion 설치하자마자

2023년 3월 13일
·
0개의 댓글
·

rs-1. docs 전체 둘러보기

https://doc.rust-lang.org/beta/book/index.html이 시리즈는 위 사이트를 참고하여 공부한다.공부 순서는 이론 -> 문법 순서로 진행된다.문서가 잘 되어 있어서 굳이 블로그들을 찾아볼 필요가 없다.이 글도 마찬가지23년 3월 기

2023년 3월 13일
·
0개의 댓글
·

rs-0. rust 공부 계획

동기: 취미교과서: https://doc.rust-lang.org/beta/book/index.htmlide: clion + rust plugin

2023년 3월 13일
·
0개의 댓글
·
post-thumbnail

[OS] 컴파일러 vs 인터프리터

2023년 3월 8일
·
0개의 댓글
·
post-thumbnail

Rust Dev Guide (feat. VS Code)

VS Code(Visual Studio Code) 에서는 마켓플레이스에서 rust-analyzer 익스텐션을 설치한다. 원래는 Rust 익스텐션을 지원 했었지만 현재 공식적으로 deprecated 된 상태이다. rust-analyzer 는 다음과 같은 기능을 VS Co

2023년 2월 16일
·
0개의 댓글
·
post-thumbnail

[PROLOGUE] A to Z 알파벳 프로그래밍 언어 공부 일지

전에 개발 커뮤니티에서 농담처럼 프로그래밍 언어 이름이 외자 알파벳인 경우가 정말 많다고 하시는 이야기를 들은적이 있다. (대표적으로 C, R) 그래서 현재까지 나온 프로그래밍 언어 중에 외자 알파벳으로 되어있는 언어들을 찾아보았다. 찾다보니 [각 알파벳에 해당하는 프

2023년 2월 11일
·
0개의 댓글
·

[python] 리스트 다루기

List 선언 및 초기화, 리스트와 관련된 유용한 함수들

2022년 12월 29일
·
0개의 댓글
·
post-thumbnail

Ch2-3. 리스트 자료형

파이썬 자료형 (3. 리스트 자료형)

2022년 12월 23일
·
0개의 댓글
·
post-thumbnail

[Language Paper Review] BERT: Pre-training of Deep Bidirectional Transformers for Language Understanding

[Language Paper Review] BERT: Pre-training of Deep Bidirectional Transformers for Language Understanding (a.k.a. BERT)

2022년 12월 22일
·
0개의 댓글
·
post-thumbnail

[Language Paper Review] Attention Is All You Need

[Language Paper Review] Attention Is All You Need (a.k.a. Transformer)

2022년 12월 22일
·
1개의 댓글
·
post-thumbnail

[Information] Language Task & Data

[Information] Language Task & Data

2022년 12월 15일
·
0개의 댓글
·
post-thumbnail

[iOS 앱리젝 해결] Guideline 2.1 - Performance - App Completeness

Guideline 2.1 - Performance - App CompletenessWe were unable to review your app as it crashed on launch. We have attached detailed crash logs to help

2022년 12월 11일
·
0개의 댓글
·
post-thumbnail

Ch2-2. 문자열 자료형

파이썬 자료형 (2. 문자열 자료형)

2022년 12월 9일
·
0개의 댓글
·
post-thumbnail

Ch2-1. 숫자형

파이썬 자료형 (1. 숫자형)

2022년 12월 7일
·
0개의 댓글
·