금융관련Coding~
-
MD5(Message-Digest algorithm 5)는 128비트 암호화 해시 함수이다. RFC 1321로 지정금융관련Coding~/암호학 2023. 7. 27. 23:47
https://ko.wikipedia.org/wiki/MD5MD5 - 위키백과, 우리 모두의 백과사전위키백과, 우리 모두의 백과사전. MD5(Message-Digest algorithm 5)는 128비트 암호화 해시 함수이다. RFC 1321로 지정되어 있으며, 주로 프로그램이나 파일이 원본 그대로인지를 확인하는 무결성 검사 등에 ko.wikipedia.org
-
텍스트 노테이션을 이용하여 과학, 수학, 기술 분야의 다이어그램을 작성해주는 도구금융관련Coding~/Rust_Web&금융Finance 2023. 7. 26. 12:37
텍스트 노테이션을 이용하여 과학, 수학, 기술 분야의 다이어그램을 작성해주는 도구 https://news.hada.io/topic?id=9859&utm_source=weekly&utm_medium=email&utm_campaign=202330 Penrose 3.0 릴리즈 | GeekNews 텍스트 노테이션을 이용하여 과학, 수학, 기술 분야의 다이어그램을 작성해주는 도구비 전문가들이 고품질의 아름다운 다이어그램을 작성할 수 있게 도와주는 것을 목표로 개발세가지 프로그 news.hada.io
-
Bootstrap으로 빠르게 반응형 사이트 빌드하기 VS 비슷한게 tailwind (css편하게 세팅하기금융관련Coding~/Rust_Web&금융Finance 2023. 7. 9. 11:46
https://getbootstrap.kr/ Bootstrap강력하고 확장 가능하며 기능이 풍부한 프론트엔드 툴킷. Sass로 빌드 및 커스터마이징하고, 사전 빌드된 그리드 시스템 및 구성 요소를 활용하고, 강력한 JavaScript 플러그인으로 프로젝트에 생기getbootstrap.kr https://tailwindcss.com/ Tailwind CSS - Rapidly build modern websites without ever leaving your HTML.Tailwind CSS is a utility-first CSS framework for rapidly building modern websites without ever leaving your HTML.tailwindcss.com
-
내홈페이지에 github 댓글 만들기금융관련Coding~/Rust_Web&금융Finance 2023. 7. 4. 17:01
https://computasha.github.io/etc-utterances/#:~:text=%EB%82%B4%20repo%EC%9D%98%20URL%EC%9D%B4,comments%20%EB%A5%BC%20%EC%9E%85%EB%A0%A5%ED%95%98%EB%A9%B4%20%EB%90%9C%EB%8B%A4. Github 블로그에 댓글 기능 추가하기 - Utterances 🔮 Utterances 는 깃허브 이슈를 기반으로 댓글을 달 수 있게 만들어주는 깃허브 앱이다. 무료에다가 테마도 다양하고 광고도 없어서 선택했다. (Disqus 라는 것도 있던데 그건 부분 유료라서 보류 computasha.github.io
-
How do you implement Dependency Injection in Rust?금융관련Coding~/Rust_Web&금융Finance 2023. 7. 4. 11:09
https://users.rust-lang.org/t/how-do-you-implement-dependency-injection-in-rust/213/2 How do you implement Dependency Injection in Rust? When I need to do approximately this, I use one of three approaches: Generics. This is probably the "preferred" approach, at least you get a lot of advice to use this. Roughly, you can write the definition of A and AImpl to be parametric in a type X : B, r user..