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

Block or report tammyhansen

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

  1. capstone-project capstone-project Public

    Forked from WilliamDann/capstone-project

    A programming MMO game developed as a Capstone Project at LWTech

    Python

  2. csd412-final csd412-final Public

    Forked from WilliamDann/csd412-final

    ASP.NET Core Final Application for CSD 412 at LWTech.

    C#

  3. PrintToArrayList: Java class and met... PrintToArrayList: Java class and methods to divert the System.out to an ArrayList using java.io.PrintStream. Useful if you want to use an existing method that's sending to System.out and you'd rather capture to an ArrayList.
    1
    import java.io.PrintStream;
    2
    import java.util.ArrayList;
    3
    
                  
    4
    /**
    5
     *
  4. Movie prediction from Data Analytics... Movie prediction from Data Analytics class 010522
    1
    import numpy as np
    2
    from sklearn.linear_model import LinearRegression
    3
    
                  
    4
    x0 = [148.04, 91.36, 1.20, .89, 2.00, 251.00, 48.00, 64.00, 67.00]
    5
    y0 = [2798, 1403, 44, 27, 4.7, 2048.6, 306.8, 327.48, 1370]
  5. calcRPNLogic calcRPNLogic Public

    An RPN logic calculator written in JavaScript.

    JavaScript

  6. VirtualMemory VirtualMemory Public

    Virtual Memory assignment to write my own methods to initialize a memory pool, allocate a memory block, and free memory.

    C