Skip to content
View StefanM98's full-sized avatar
Block or Report

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.

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

Pinned Loading

  1. BlazorPortfolioWebsite BlazorPortfolioWebsite Public

    Blazor WebAssembly (WASM) .NET Hosted Personal Portfolio

    HTML 2

  2. storage-service storage-service Public

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

    TypeScript

  3. ## 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
  4. UnityNode UnityNode Public

    Multiplayer game made with Unity and Node.js

    C#

  5. CatalogApp CatalogApp Public

    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

  6. Project-Movie-Trailer-Website Project-Movie-Trailer-Website Public

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

    Python