Skip to content
View SamChou19815's full-sized avatar
:octocat:
:octocat:

Organizations

@flow

Block or report SamChou19815

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
SamChou19815/README.md

Developer Sam

/**
 * Copyright (C) 2015-2025 Developer Sam.
 * @demo https://samlang.io/demo
 * @github https://github.com/SamChou19815
 * @bsky https://bsky.app/profile/developersam.com
 * @resume https://developersam.com/resume.pdf
 */

import {List} from std.list;

class Developer(
  val github: Str,
  val projects: List<Str>,
) {
  function sam(): Developer = {
    let github = "SamChou19815";
    let projects = List
      .of("samlang")
      .cons("website")
      .cons("...");
    Developer.init(github, projects)
  }
}

class Main {
  function main(): Developer = Developer.sam()
}

Best viewed on developersam.com.

Pinned Loading

  1. samlang samlang Public

    Sam's Programming Language

    Rust 36 3

  2. facebook/docusaurus facebook/docusaurus Public

    Easy to maintain open source documentation websites.

    TypeScript 57.5k 8.7k

  3. facebook/flow facebook/flow Public

    Adds static typing to JavaScript to improve developer productivity and code quality.

    OCaml 22.1k 1.9k

  4. cornell-dti/course-plan cornell-dti/course-plan Public

    courseplan.io is a web app built in Vue.js to allow Cornell students to plan out their 4-year course schedule and track their college, major, and minor requirements.

    TypeScript 40 11

  5. SamChou19815 SamChou19815 Public

    A monorepo of Sam's smaller projects

    MDX 3

  6. mini-react mini-react Public archive

    Sam's Implementation of a simplified React for educational purpose.

    TypeScript 23