From 341b6aec0bf8b1f60155ebdd5c83fe8d054d6ef1 Mon Sep 17 00:00:00 2001 From: Felipe Ramos Date: Mon, 2 Oct 2023 19:09:26 -0300 Subject: [PATCH 1/2] Adding new wizard user --- gitfetch.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gitfetch.js b/gitfetch.js index 1724d01..e31da40 100644 --- a/gitfetch.js +++ b/gitfetch.js @@ -85,6 +85,8 @@ const profiles = [ { githubUsername: "Rimjhim-mm", linkedinID: "rimjhim-tiwari-a391a7253" }, { githubUsername: "Ayus3h", linkedinID: "ayush-yadav-57134728b" }, { githubUsername: "drifterDev", linkedinID: "mateo-álvarez-murillo-34679b259" }, + { githubUsername: "FelipeCRamos", linkedinID: "felipecramos" }, + // Add more profiles as needed From 2fcadba94a4730d78d8fbcd302992a4aa6ef878a Mon Sep 17 00:00:00 2001 From: Felipe Ramos Date: Mon, 2 Oct 2023 19:11:37 -0300 Subject: [PATCH 2/2] Adding a hello-world in dart language --- Task2/Projects/HelloWorldInDiffLang/hello_world.dart | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 Task2/Projects/HelloWorldInDiffLang/hello_world.dart diff --git a/Task2/Projects/HelloWorldInDiffLang/hello_world.dart b/Task2/Projects/HelloWorldInDiffLang/hello_world.dart new file mode 100644 index 0000000..5eee9c4 --- /dev/null +++ b/Task2/Projects/HelloWorldInDiffLang/hello_world.dart @@ -0,0 +1,3 @@ +void main() { + print("Hello, World!"); +}