Nothing Special   »   [go: up one dir, main page]

Skip to content
View yennanliu's full-sized avatar
🍣
shushi
🍣
shushi

Block or report yennanliu

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
yennanliu/README.md

Coding: java python python python

Others: aws gcp docker aws aws

CI/CD: jenkins

/** Heya this is Yen, I code backend for problem solving */

import io.reactivex.rxjava3.core.Observable;

public class MyStack {

    interface Skill {}

    static class BackendDevelopment implements Skill {
        String name;
        BackendDevelopment(String name) { this.name = name; }
    }

    static class DataEngineering implements Skill {
        String name;
        DataEngineering(String name) { this.name = name; }
    }

    static class SystemArchitecture implements Skill {
        String name;
        SystemArchitecture(String name) { this.name = name; }
    }

    public static Observable<String> run(Skill skill) {
        return Observable.create(emitter -> {
            if (skill instanceof BackendDevelopment) {
                emitter.onNext("build backend services with JVM, Python");
            } else if (skill instanceof DataEngineering) {
                emitter.onNext("big data, streaming, data platform development");
            } else if (skill instanceof SystemArchitecture) {
                emitter.onNext("system design, product ownership");
            } else {
                emitter.onNext("other awesome works");
            }
            emitter.onComplete();
        });
    }

Pinned Loading

  1. CS_basics CS_basics Public

    My CS learning : algorithm, data structure, and system design | #SE

    Java 98 42

  2. SpringPlayground SpringPlayground Public

    Java Spring (Boot/Cloud..) backend playground | #SE

    JavaScript 3 4

  3. JavaHelloWorld JavaHelloWorld Public

    Java basics project : data structure, algorithm, syntax, concept

    Java 1 1

  4. NYC_Taxi_Pipeline NYC_Taxi_Pipeline Public

    Design/Implement stream/batch architecture on NYC taxi data | #DE

    Scala 26 10

  5. KafkaSparkPoc KafkaSparkPoc Public

    Build Kafka <-> Spark, Kafka <-> Kafka .. stream processing POC | #DE

    Scala 3 4

  6. dj-playground dj-playground Public

    Django playground : web app, backend | #SE

    Python 2 1