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));
}
}
-
Memseed
- United Kingdom
-
10:49
(UTC) - https://gavinsimpson.vercel.app
- @gdsimpson
- in/gdsimpson3
Highlights
Pinned Loading
-
Polynomial-regression-001-impl
Polynomial-regression-001-impl PublicMulti term Polynomial Regression with Learnable Exponents and Coefficients (+L1 Regularisation for Term Pruning & Coefficient/Exponent Based Feature augmentation)
Jupyter Notebook 1
-
LinearRegression-From-Scratch
LinearRegression-From-Scratch PublicTutorial - Implementing a Linear Regression from Scratch - MSE & Gradient Descent - 2025
Jupyter Notebook 1
-
Solstice-by-APEERS
Solstice-by-APEERS PublicForked from BSW-G-D-iph6/Solstice-by-APEERS
PPZ - SBABH2 - Solstice by APEERS E-commerce SBA
TypeScript
-
Function-Representation-001
Function-Representation-001 PublicData Structure to represent mathematical functions
Python 1
-
Automatic-Differentiation-impl-001
Automatic-Differentiation-impl-001 Public(To be continued) Automatic Differentiation engine in order to compute partial derivatives (used in Symbolic Regression)
Python 1
If the problem persists, check the GitHub status page or contact support.


