Skip to content
View StefanM98's full-sized avatar

Highlights

  • Pro

Block or report StefanM98

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.

Content in all repositories owned by your account will be closed.
Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

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

Report abuse

Pinned Loading

  1. storage-servicestorage-servicePublic

    A simple microservice for managing home & small office storage containers.

    TypeScript 1

  2. ## Creating a 95% Bootstrap Confiden...## Creating a 95% Bootstrap Confidence Interval for the sample standard deviation ### General Steps 1. Take the original sample, which has a sample size of sample_size, and treat it like the population. 2. Take a sample of size sample_size, with rep
    1
    create_bootstrap <- function (.data, num_samples, sample_size) {
    2
     # Create "num_samples" samples, of size "sample_size", from the original population ".data"
    3
     samples <- rerun(num_samples, sample(.data, sample_size, replace = TRUE))
    4
    5
     # Find the standard deviation of each dataset
  3. UnityNodeUnityNodePublic

    Multiplayer game made with Unity and Node.js

    C# 1

  4. CatalogAppCatalogAppPublic

    This is a catalog app that allows an authenticated user to add, edit, and delete catagories and items. I created this catalog for my girlfiend's custom tutu buissness.

    HTML 1

  5. Project-Movie-Trailer-WebsiteProject-Movie-Trailer-WebsitePublic

    Stores a list of your favorite movies and then serves this data as a web page.

    Python