목록STEADYSTUDY/넓고 얕게 (8)
오보에블로그

상황 깃헙 페이지를 통해 마크 다운 포스트를 올린 후, 자동 페이지 빌드 진행 과정 중에 아래와 같은 오류 발생 Liquid Exception: Liquid syntax error (line 30): Variable '{{1,0}' was not properly terminated with regexp: /\}\}/ in /github/workspace/_posts/2022-05-05-acmicpc0505-post.md 해결 방법 오류 내용을 살펴 보면, 내가 작성한 2022-05-05-acmicpc0505-post.md 에서 {{1,0} 부분을 정규 표현식으로 인식하고, 제대로 끝마쳐지질 않아서 발생한 오류로 보인다. 그러므로, 해당 부분이 정규표현식으로 인식되지 않게 조치를 취해주면 해결 가능하다. ..

이전에 사용했던 코드를 응용하고자 한다. 응용 코드 : https://pi-314.tistory.com/118 [자바스크립트] 기본 세팅 및 문법 html 기본 틀 작성 (파일 명 : hellow.js , hellow.html) 자바스크립트 defer : 서버에서 hello.js 파일을 가져오고 바로 코드를 실행한다. 그 코드에서 바디를 렌더링 하지 않았으므로,,, 에러.... pi-314.tistory.com var jbRandom = Math.random(); var jbRandom = Math.floor(jbRandom * 10 ); var profile ={ name : "obo", id : "happyOBO" }; if(jbRandom < 5) { document.body.innerText = ..

console.log(1+2); /*1+2 콘솔에 출력 */ 해당 부분의 html, js 파일의 기본 코드 내용에대해 궁금하면 https://pi-314.tistory.com/118 [자바스크립트] 기본 세팅 및 문법 html 기본 틀 작성 (파일 명 : hellow.js , hellow.html) 자바스크립트 defer : 서버에서 hello.js 파일을 가져오고 바로 코드를 실행한다. 그 코드에서 바디를 렌더링 하지 않았으므로,,, 에러.... pi-314.tistory.com 를 참고해주세요 hellow.html hellow.js var jbRandom = Math.random(); var jbRandom = Math.floor(jbRandom * 10 ); var hello = "안녕하세요"; v..

html 기본 틀 작성 (파일 명 : hellow.js , hellow.html) defer : 서버에서 hello.js 파일을 가져오고 바로 코드를 실행한다. 그 코드에서 바디를 렌더링 하지 않았으므로,,, 에러..! defer를 써놓으면 바디까지 렌더링 한 후에 js 파일 코드 실행 자바스크립트 코드 작성 var jbRandom = Math.random(); var jbRandom = Math.floor(jbRandom * 10 ); var hello = "안녕하세요"; var nothello = "아니..안녕하세요"; if(jbRandom = 5) { document.body.innerText = n..
int using_if(int a, int b) { if(a > b) { return a; } else { return b; } } 와 같은 c 언어로된 코드가 있을때 wat 파일로 변환하면 다음과 같다. (module (table 0 anyfunc) (memory $0 1) (export "memory" (memory $0)) (export "using_if" (func $using_if)) (func $using_if (; 0 ;) (param $0 i32) (param $1 i32) (result i32) (select (get_local $0) (get_local $1) (i32.gt_s (get_local $0) (get_local $1) ) ) ) ) get_local $0 ;;0번째 인자의 ..

cf ) http://cs242.stanford.edu/f18/lectures/04-2-webassembly-theory.html CS 242: WebAssembly semantics The amazing thing about WebAssembly is not just that it’s a neat low-level programming language in your browser. It’s that WebAssembly is the most popular programming language ever (how many people have a browser, after all?) to have a complete, verifi cs242.stanford.edu
**Ocaml 사용*** 필요한 패키지 package(bin_prot),package(sexplib), package(core_kernel) main 코드 open Sexplib let rec print_list l = match l with | [] -> "" | hd::tl -> ( match hd with | Core_kernel.Sexp.Atom hd' -> hd'^" "^(print_list tl) | Core_kernel.Sexp.List hd' -> "( "^(print_list hd')^ " ) " ^(print_list tl) ) let main() = let a = Sexp.load_sexps "basic.wat" in let p_a = print_list a in prerr_endli..

공식적인 정의 웹어셈블리WebAssembly,Wasm는 스택 기반의 가상머신을 위한 바이너리 명령 포맷이다. Wasm은 C/C++/Rust 와 같은 하이레벨 언어의 컴파일을 지원하고 웹상에 클라이언트와 서버 애플리케이션을 배포할 수 있도록 설계됐다. 바이너리 명령 포맷 웹어셈블리는 사실 바이너리 포맷과 텍스트 포맷과 같은 여러요소를 포함하고 있으며 Core Specification에 해당 API와 컴파일 타깃이 문서화 되어 있다. 바이너리와 텍스트 포맷은 모두 추상 구문 (abstract syntax)라는 공통 구조로 매핑된다.텍스트 포맷의 웹어셈블리 코드는 AST로 직렬화돼 바이너리 포맷(.wasm 파일)로 컴파일되며, 웹브라우저의 자바스크립트 엔진은 디코딩 스택을 이용해 .wasm 파일을 AST로 디..