Skip to content

Instantly share code, notes, and snippets.

View DoK6n's full-sized avatar

Dok6n DoK6n

View GitHub Profile
@superLipbalm
superLipbalm / proxy-design-pattern-with-react.md
Last active August 6, 2024 14:47
리액트로 프록시 디자인 패턴 사용하기

리액트로 프록시 디자인 패턴 사용하기

리액트 환경에서 프록시 디자인 패턴을 사용하는 방법을 살펴보세요.

thumbnail

원문: https://blog.bitsrc.io/proxy-design-pattern-with-react-c0b465980fbf

개발자라면 **'디자인 패턴'**이라는 용어를 들어본 적이 있을 것입니다. 이는 단순히 지나쳐도 되는 단어가 아니라 코딩 숙달의 영역을 여는 열쇠입니다. 이처럼 다양하고 폭넓은 패턴은 소프트웨어 개발에서 코드 정리, 유지보수성 및 확장성을 향상하는 유용한 도구로 사용됩니다.

function hashStringToInt(s, tableSize) {
let hash = 17;
for (let i = 0; i < s.length; i++) {
hash = (13 * hash * s.charCodeAt(i)) % tableSize;
}
return hash;
}
@w1th0utnam3
w1th0utnam3 / rust_electron.md
Last active January 29, 2024 23:17
Building a Rust/Electron app
@staltz
staltz / introrx.md
Last active April 21, 2025 04:15
The introduction to Reactive Programming you've been missing