Skip to content

Instantly share code, notes, and snippets.

@audrl1010
audrl1010 / image1.png
Last active April 27, 2022 03:38
RxSwift Observable이란 무엇일까?

Reactive Programming이란 도대체 무엇일까?

흔한 정의... 리액티브 프로그래밍비동기이벤트 기반의 데이터 스트리밍을 Observable Sequence로 변환하여 개발하는 프로그래밍 방식이다.

저게 무슨 말일까? 전혀 이해가 안갑니다.

또한, Reactive Programming를 처음 마주하게 되었을 때 자주 보는 단어들은 Observable, Observer, Schduler, Operator, 모든 것을 stream으로 본다... 등등 이다. 이건 또 뭘까? 하..

차근차근 알아봐요.

@honux77
honux77 / MyHash.java
Created April 12, 2017 18:57
Simple Hash Implementation (Linear Proving)
package honux;
/**
* Simple Hash implementation
* It can't expand and no exception handling for put!
*
* @author honux
*
*/
public class MyHash {
package honux;
public class DoubleLinkedList {
private Node head, tail;
private int count;
public DoubleLinkedList() {
head = tail = null;
count = 0;
}
@JaviLorbada
JaviLorbada / FRP iOS Learning resources.md
Last active June 17, 2024 06:08
The best FRP iOS resources.

Videos