Skip to content
View 4dave's full-sized avatar

Block or report 4dave

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.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. 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

Pinned Loading

  1. books-api books-api Public

    go crud api w/ sqlite db for practice

    Go

  2. books-ui books-ui Public

    JavaScript

  3. corralio corralio Public

    Mobile and web app for Corralio

    TypeScript

  4. go-crud go-crud Public

    Go

  5. Dockerfile Dockerfile
    1
    # Stage 1: Modules caching
    2
    FROM golang:1.24 as modules
    3
    COPY go.mod go.sum /modules/
    4
    WORKDIR /modules
    5
    RUN go mod download
  6. TryCatch wrapper TryCatch wrapper
    1
    type Success<T> = {
    2
      data: T;
    3
      error: null;
    4
    };
    5