Thanks to visit codestin.com
Credit goes to github.com

Skip to content
View GDSimpson3's full-sized avatar
🎄
Mann Gegen Mann
🎄
Mann Gegen Mann

Organizations

@hackclub @RausNichts @Gardenia-Court @Jasmine-Court

Block or report GDSimpson3

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

Добро пожаловать :

"A single moment of weakness can lead to a lifetime of regrets" ~ Kokushibo

public class Main {
    String name;
    String age;
    String country;
    String[] languages;
    String[] ops;
    public static String toString(Main asd){
        String space="    ";
        String languageText ="";
        for (String i : asd.languages) {
            languageText = languageText + i + "\n"+ space;
        }
        String OpsText = "";
        for (String i : asd.ops) {
            OpsText = OpsText + i + "\n"+ space;
        }
        return "Name " + asd.name + "\nAge " + asd.age + "\nLocation " + asd.country
                + "\nLanuages:\n"+ space + languageText + "\nOps:\n"+ space + OpsText;
    }
    public static void main(String[] args) {
        Main myObj = new Main();
        myObj.name = "Gavin";
        myObj.age = "this.year() - ((334.666666667 * 3) + √(3249) + √(1024) + 915)";
        myObj.country = "United Kingdom";
        String[] list = { "Javascript, Next.JS, React.JS, Nest.JS", "Java, Spring", "Python, Numpy","Swift, SwiftUI" ,"Groovy","C++, Node-gyp, Pybind11, Cmake","R","C, CS50","C#, MAUI, Console app",};
        myObj.languages = list;
        String[] ops = { "Vercel, Webapps","Render, Webapps, Services", "Railway.up, Webapps","Docker, Helm, K8s (GCP)","Jenkins, Brew, Docker","Ubuntu, 20.04, 18.10, Kali, OpenSUSE, RHAT, AntiX, Ubuntu Server 15.04,","DB, MongoDB, Mysql, Mysql Docker","Shell","GCP, K8s","Azure, AD"};
        myObj.ops = ops;
        System.out.println(toString(myObj));
    }
}

Pinned Loading

  1. Polynomial-regression-001-impl Polynomial-regression-001-impl Public

    Multi term Polynomial Regression with Learnable Exponents and Coefficients (+L1 Regularisation for Term Pruning)

    Jupyter Notebook 1

  2. LinearRegression-From-Scratch LinearRegression-From-Scratch Public

    Tutorial - Implementing a Linear Regression from Scratch - MSE & Gradient Descent - 2025

    Jupyter Notebook 1

  3. Java-SBA-backend-final Java-SBA-backend-final Public

    Forked from BSW-G-D-iph6/Java-SBA-backend-final

    PPZ - SBABH2

    Java

  4. Solstice-by-APEERS Solstice-by-APEERS Public

    Forked from BSW-G-D-iph6/Solstice-by-APEERS

    PPZ - SBABH2 - Solstice by APEERS E-commerce SBA

    TypeScript

  5. LRCS-V1 LRCS-V1 Public

    Mathematical Project to find the Roots of any Polynomial

    Python 1

  6. NRiP-V2 NRiP-V2 Public

    Mathematical Implementation of the Newton-Raphson Method

    C++ 1