From 2f0c00ca0fe31ef097d3d7e8ee13ea971ee94527 Mon Sep 17 00:00:00 2001 From: randiltennakoon Date: Tue, 1 Oct 2019 06:29:53 +0530 Subject: [PATCH 001/481] adding Randil to contributors --- CONTRIBUTORS.md | 2 ++ code/Java/HelloWorld.java | 5 +++++ profiles/Randil_Tennakoon.md | 24 ++++++++++++++++++++++++ 3 files changed, 31 insertions(+) create mode 100644 code/Java/HelloWorld.java create mode 100644 profiles/Randil_Tennakoon.md diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index ef377026..c3006953 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -1,2 +1,4 @@ +- [Randil Tennakoon] (https://github.com/randiltennakoon) - [Rounak Agarwal](https://github.com/agarwalrounak) + diff --git a/code/Java/HelloWorld.java b/code/Java/HelloWorld.java new file mode 100644 index 00000000..a2e26f73 --- /dev/null +++ b/code/Java/HelloWorld.java @@ -0,0 +1,5 @@ +public class HelloWorld{ + public static void main(String[] args){ + System.out.println("Hello World "); + } +} \ No newline at end of file diff --git a/profiles/Randil_Tennakoon.md b/profiles/Randil_Tennakoon.md new file mode 100644 index 00000000..666e5039 --- /dev/null +++ b/profiles/Randil_Tennakoon.md @@ -0,0 +1,24 @@ +## Randil Tennakoon + +### Bio +Undergraduate at Faculty of Information Technology, University of Moratuwa. + +### Location +Kurunegala. + +### Projects +- Smart Vehicle Alert System. + +### Hobbies & Interests +- Volunteering +- Podcasting +- Hiking +- Photography + +### Profiles +[![GitHub][github-img]](https://github.com/randiltennakoon) +[![Twitter][twitter-img]](https://twitter.com/RandilTe92) + + +[twitter-img]: https://i.imgur.com/wWzX9uB.png +[github-img]: https://i.imgur.com/9I6NRUm.png \ No newline at end of file From 6b979e7a7288433cba393c7d00dcbf9fe2f79f33 Mon Sep 17 00:00:00 2001 From: Rishabh Agrawal <36743087+CaffeinatedCod3r@users.noreply.github.com> Date: Wed, 2 Oct 2019 00:31:35 +0530 Subject: [PATCH 002/481] Added HelloWorld.cpp Added Helloworld in C++ language --- code/C++/HelloWorld.cpp | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 code/C++/HelloWorld.cpp diff --git a/code/C++/HelloWorld.cpp b/code/C++/HelloWorld.cpp new file mode 100644 index 00000000..75996df7 --- /dev/null +++ b/code/C++/HelloWorld.cpp @@ -0,0 +1,6 @@ +#include + +int main(){ + std::cout<<"Hello World"< Date: Wed, 2 Oct 2019 00:33:47 +0530 Subject: [PATCH 003/481] Update CONTRIBUTORS.md --- CONTRIBUTORS.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index df9c844d..1bcfffe7 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -1,6 +1,7 @@ +- [CaffeinatedCod3r](https://github.com/CaffeinatedCod3r) - [Corbin Taylor](https://github.com/cjtaylor1990) - [Emmanuel Ezenwigbo](https://github.com/SkyC0der) - [Rounak Agarwal](https://github.com/agarwalrounak) - [viewless](https://github.com/viewless) -- [Ankit Chahar](https://github.com/AnkitChahar) \ No newline at end of file +- [Ankit Chahar](https://github.com/AnkitChahar) From fd51f7ba98f9d289df162172aaf54969d6f258e9 Mon Sep 17 00:00:00 2001 From: Thomas Windt Date: Tue, 1 Oct 2019 21:07:25 +0200 Subject: [PATCH 004/481] Add PHP Signed-off-by: Thomas Windt --- code/PHP/helloworld.php | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 code/PHP/helloworld.php diff --git a/code/PHP/helloworld.php b/code/PHP/helloworld.php new file mode 100644 index 00000000..71424bbb --- /dev/null +++ b/code/PHP/helloworld.php @@ -0,0 +1,3 @@ + From 6095b111205f7fbb630b36a23ca1644b0abbbc6a Mon Sep 17 00:00:00 2001 From: Mykola Balabash Date: Tue, 1 Oct 2019 22:08:57 +0300 Subject: [PATCH 005/481] Issue #10 Added my name. Fixed order --- CONTRIBUTORS.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index df9c844d..b0e10b7d 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -1,6 +1,7 @@ +- [Ankit Chahar](https://github.com/AnkitChahar) - [Corbin Taylor](https://github.com/cjtaylor1990) - [Emmanuel Ezenwigbo](https://github.com/SkyC0der) +- [Mykola Balabash](https://github.com/twilderan) - [Rounak Agarwal](https://github.com/agarwalrounak) -- [viewless](https://github.com/viewless) -- [Ankit Chahar](https://github.com/AnkitChahar) \ No newline at end of file +- [viewless](https://github.com/viewless) \ No newline at end of file From d3b5214aeb07668c90d313b7b8dbe117b8545c13 Mon Sep 17 00:00:00 2001 From: Ananthavijay Date: Wed, 2 Oct 2019 00:40:22 +0530 Subject: [PATCH 006/481] Added Hello world program --- code/Rust/Hello_World.rs | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 code/Rust/Hello_World.rs diff --git a/code/Rust/Hello_World.rs b/code/Rust/Hello_World.rs new file mode 100644 index 00000000..47ad8c63 --- /dev/null +++ b/code/Rust/Hello_World.rs @@ -0,0 +1,3 @@ +fn main() { + println!("Hello World!"); +} From d9b04ce2b14f3f2e1ef5f5cdb1753e92657824fa Mon Sep 17 00:00:00 2001 From: Thomas Windt Date: Tue, 1 Oct 2019 21:11:09 +0200 Subject: [PATCH 007/481] Update CONTRIBUTORS.md --- CONTRIBUTORS.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index df9c844d..fe92d44a 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -3,4 +3,5 @@ - [Emmanuel Ezenwigbo](https://github.com/SkyC0der) - [Rounak Agarwal](https://github.com/agarwalrounak) - [viewless](https://github.com/viewless) -- [Ankit Chahar](https://github.com/AnkitChahar) \ No newline at end of file +- [Ankit Chahar](https://github.com/AnkitChahar) +- [Thomas Windt](https://github.com/WOLFI3654) From 711a7b82cd6b4421d1eaec8c0de70d7850209c80 Mon Sep 17 00:00:00 2001 From: Luciano Santos Date: Tue, 1 Oct 2019 16:15:11 -0300 Subject: [PATCH 008/481] Added Name to CONTRIBUTORS.md --- CONTRIBUTORS.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index df9c844d..cad417a6 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -3,4 +3,5 @@ - [Emmanuel Ezenwigbo](https://github.com/SkyC0der) - [Rounak Agarwal](https://github.com/agarwalrounak) - [viewless](https://github.com/viewless) -- [Ankit Chahar](https://github.com/AnkitChahar) \ No newline at end of file +- [Ankit Chahar](https://github.com/AnkitChahar) +- [Luciano Santos](https://github.com/lucianosz7) \ No newline at end of file From bb3d8a0f15c75372898afacefa16d7d10127bf0f Mon Sep 17 00:00:00 2001 From: Arun Pratap Singh Chauhan Date: Wed, 2 Oct 2019 00:49:48 +0530 Subject: [PATCH 009/481] Create Arunchauhan.md --- profiles/Arunchauhan.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 profiles/Arunchauhan.md diff --git a/profiles/Arunchauhan.md b/profiles/Arunchauhan.md new file mode 100644 index 00000000..d475073f --- /dev/null +++ b/profiles/Arunchauhan.md @@ -0,0 +1,18 @@ +Arun Chauhan +BIO +I am a Third year CSE student at KIET Ghaziabad and currently a React developer Intern at Finfish Events + +Location +India. + +Projects: +Innogeeks +Adopt me +Recipe App +Correspondance world +Hobbies: +Reading +singing + +Profiles +Github:Pratap87 From 60d5e2480201f19f05d2a6a387f1a3f9e13f5466 Mon Sep 17 00:00:00 2001 From: WilsonNagar <41680139+WilsonNagar@users.noreply.github.com> Date: Wed, 2 Oct 2019 00:53:22 +0530 Subject: [PATCH 010/481] Create hello_world --- code/C++/hello_world | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 code/C++/hello_world diff --git a/code/C++/hello_world b/code/C++/hello_world new file mode 100644 index 00000000..33c23936 --- /dev/null +++ b/code/C++/hello_world @@ -0,0 +1,6 @@ +#include +using namespace std; +int main(){ + cout<<"Hello World"<<"\n"; + return 0; +} From f3a3a145bc6a4a95967ed2fec1c1d1570365f290 Mon Sep 17 00:00:00 2001 From: ildar_nazmeev Date: Tue, 1 Oct 2019 21:23:55 +0200 Subject: [PATCH 011/481] hello world on Ruby was added --- code/Ruby/hello_world.rb | 1 + 1 file changed, 1 insertion(+) create mode 100644 code/Ruby/hello_world.rb diff --git a/code/Ruby/hello_world.rb b/code/Ruby/hello_world.rb new file mode 100644 index 00000000..d5117561 --- /dev/null +++ b/code/Ruby/hello_world.rb @@ -0,0 +1 @@ +puts "Hello, World!" \ No newline at end of file From 0719231584c73877a251661bc15d4ad8c47bcac8 Mon Sep 17 00:00:00 2001 From: Luciano Santos Date: Tue, 1 Oct 2019 16:24:35 -0300 Subject: [PATCH 012/481] Added Go hello world program --- code/Go/hello-world.go | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 code/Go/hello-world.go diff --git a/code/Go/hello-world.go b/code/Go/hello-world.go new file mode 100644 index 00000000..eebcff52 --- /dev/null +++ b/code/Go/hello-world.go @@ -0,0 +1,7 @@ +package main + +import "fmt" + +func main(){ + fmt.Println("hello world") +} \ No newline at end of file From 3e1fd656cb7306b64f02909b64ca316c03d16e76 Mon Sep 17 00:00:00 2001 From: Ramy Fetteha Date: Tue, 1 Oct 2019 21:32:48 +0200 Subject: [PATCH 013/481] Code,Profile and Name --- CONTRIBUTORS.md | 3 ++- code/C#/Hello_World_NoirFLamme.cs | 11 +++++++++++ profiles/Ramy_Fetteha.md | 25 +++++++++++++++++++++++++ 3 files changed, 38 insertions(+), 1 deletion(-) create mode 100644 code/C#/Hello_World_NoirFLamme.cs create mode 100644 profiles/Ramy_Fetteha.md diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index df9c844d..53d52c61 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -3,4 +3,5 @@ - [Emmanuel Ezenwigbo](https://github.com/SkyC0der) - [Rounak Agarwal](https://github.com/agarwalrounak) - [viewless](https://github.com/viewless) -- [Ankit Chahar](https://github.com/AnkitChahar) \ No newline at end of file +- [Ankit Chahar](https://github.com/AnkitChahar) +- [Ramy Fetteha](https://github.com/NoirFLamme) \ No newline at end of file diff --git a/code/C#/Hello_World_NoirFLamme.cs b/code/C#/Hello_World_NoirFLamme.cs new file mode 100644 index 00000000..adb22f79 --- /dev/null +++ b/code/C#/Hello_World_NoirFLamme.cs @@ -0,0 +1,11 @@ +//NoirFLamme +//C# +using System; + +public class Class1 +{ + public Class1() + { + Console.WriteLine("Hello, World!!"); + } +} diff --git a/profiles/Ramy_Fetteha.md b/profiles/Ramy_Fetteha.md new file mode 100644 index 00000000..ee976447 --- /dev/null +++ b/profiles/Ramy_Fetteha.md @@ -0,0 +1,25 @@ +## Ramy Fetteha + +### Bio + Engineering student who is interested in programming and coding and have learned + quite a few concepts about computer science and a some programming languages including + C,C#,PHP,Python. + +### Location + Egypt. + +### Projects + Haven't done anything worth mentioning beside a phonebook and a website. + +### Hobbies & Interests + -Programming. + -Biology. + -Weight lifting. + +### Profiles +[![GitHub][github-img]](https://github.com/NoirFLamme) +[![Twitter][twitter-img]](Don't have a twitter) + + +[twitter-img]: https://i.imgur.com/wWzX9uB.png +[github-img]: https://i.imgur.com/9I6NRUm.png From 183cf3fbf85c335d9f45d55ba443bc7b1aec614f Mon Sep 17 00:00:00 2001 From: Rounak Agarwal Date: Wed, 2 Oct 2019 01:06:41 +0530 Subject: [PATCH 014/481] Rename HelloWorld.java to Hello_world.java --- code/Java/{HelloWorld.java => Hello_world.java} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename code/Java/{HelloWorld.java => Hello_world.java} (98%) diff --git a/code/Java/HelloWorld.java b/code/Java/Hello_world.java similarity index 98% rename from code/Java/HelloWorld.java rename to code/Java/Hello_world.java index a2e26f73..2b74086a 100644 --- a/code/Java/HelloWorld.java +++ b/code/Java/Hello_world.java @@ -2,4 +2,4 @@ public class HelloWorld{ public static void main(String[] args){ System.out.println("Hello World "); } -} \ No newline at end of file +} From b109912f93559a0f0ef05071f0c7e2bb020a4e11 Mon Sep 17 00:00:00 2001 From: Piyush Mamidwar Date: Wed, 2 Oct 2019 01:21:23 +0530 Subject: [PATCH 015/481] Create hello-world.sh --- code/Shell/hello-world.sh | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 code/Shell/hello-world.sh diff --git a/code/Shell/hello-world.sh b/code/Shell/hello-world.sh new file mode 100644 index 00000000..94e0f20e --- /dev/null +++ b/code/Shell/hello-world.sh @@ -0,0 +1,2 @@ +#!/bin/sh +echo "Hello World" From 7587fff8b37ed3d3346263343866175c2ee2ac51 Mon Sep 17 00:00:00 2001 From: Rounak Agarwal Date: Wed, 2 Oct 2019 01:22:34 +0530 Subject: [PATCH 016/481] Update CONTRIBUTORS.md file --- CONTRIBUTORS.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index f955670b..4c99b71d 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -1,4 +1,4 @@ - + - [Ankit Chahar](https://github.com/AnkitChahar) - [CaffeinatedCod3r](https://github.com/CaffeinatedCod3r) - [Corbin Taylor](https://github.com/cjtaylor1990) @@ -6,7 +6,7 @@ - [Luciano Santos](https://github.com/lucianosz7) - [Mykola Balabash](https://github.com/twilderan) - [Ramy Fetteha](https://github.com/NoirFLamme) -- [Randil Tennakoon] (https://github.com/randiltennakoon) +- [Randil Tennakoon](https://github.com/randiltennakoon) - [Rounak Agarwal](https://github.com/agarwalrounak) - [Thomas Windt](https://github.com/WOLFI3654) - [viewless](https://github.com/viewless) From 7d5624bbd25f020d77cb6695bab79f469714f80e Mon Sep 17 00:00:00 2001 From: Piyush Mamidwar Date: Wed, 2 Oct 2019 01:31:07 +0530 Subject: [PATCH 017/481] Create Piyush_Mamidwar.md --- profiles/Piyush_Mamidwar.md | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 profiles/Piyush_Mamidwar.md diff --git a/profiles/Piyush_Mamidwar.md b/profiles/Piyush_Mamidwar.md new file mode 100644 index 00000000..caf63130 --- /dev/null +++ b/profiles/Piyush_Mamidwar.md @@ -0,0 +1,25 @@ +## Piyush Mamidwar + +### Bio +Google Certified Associate Android Developer. +Final Year Computer Engineering student. + +### Location +INDIA + +### Projects +StockIt: A chat-bot which will take user queries regarding equity stock and advice or recommend them on BUY / SELL / HOLD as per their queries regarding the stock. +The recommendation will be done based on historical trend and future analysis of the stocks. +PICT Attendance: https://play.google.com/store/apps/details?id=com.piyush.pictattendance&hl=en_IN +PrintIT: https://github.com/Piyush7890/PICTPrint3 + +### Hobbies & Interests +Coding, android development, volleyball, comics, badminton, movies etc + +### Profiles +[![GitHub][github-img]](https://github.com/Piyush7890) +[![LinkedIn][twitter-img]](https://www.linkedin.com/in/piyush-m2/) + + +[twitter-img]: https://i.imgur.com/rwYRqn6.png +[github-img]: https://i.imgur.com/9I6NRUm.png From b2b3fad6cfcc6269d1f9279cfbd0c1c35061231b Mon Sep 17 00:00:00 2001 From: Piyush Mamidwar Date: Wed, 2 Oct 2019 01:32:50 +0530 Subject: [PATCH 018/481] Update Piyush_Mamidwar.md --- profiles/Piyush_Mamidwar.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/profiles/Piyush_Mamidwar.md b/profiles/Piyush_Mamidwar.md index caf63130..159de2e8 100644 --- a/profiles/Piyush_Mamidwar.md +++ b/profiles/Piyush_Mamidwar.md @@ -8,9 +8,9 @@ Final Year Computer Engineering student. INDIA ### Projects -StockIt: A chat-bot which will take user queries regarding equity stock and advice or recommend them on BUY / SELL / HOLD as per their queries regarding the stock. -The recommendation will be done based on historical trend and future analysis of the stocks. -PICT Attendance: https://play.google.com/store/apps/details?id=com.piyush.pictattendance&hl=en_IN +StockIt: A chat-bot which will take user queries regarding equity stock and advice or recommend them on BUY / SELL / HOLD as per their queries regarding the stock. +The recommendation will be done based on historical trend and future analysis of the stocks. +PICT Attendance: https://play.google.com/store/apps/details?id=com.piyush.pictattendance&hl=en_IN PrintIT: https://github.com/Piyush7890/PICTPrint3 ### Hobbies & Interests From 2d3e5ae56edebfb895cdc1eb802eb78dd1229b72 Mon Sep 17 00:00:00 2001 From: Neal Robben Date: Tue, 1 Oct 2019 22:05:28 +0200 Subject: [PATCH 019/481] Added example in VB.Net --- code/VB/HelloWorld.vb | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 code/VB/HelloWorld.vb diff --git a/code/VB/HelloWorld.vb b/code/VB/HelloWorld.vb new file mode 100644 index 00000000..8451a44a --- /dev/null +++ b/code/VB/HelloWorld.vb @@ -0,0 +1,8 @@ +Imports System + +Module HelloWorld + Sub Main() + Console.WriteLine("Hello World") + Console.ReadKey() + End Sub +End Module \ No newline at end of file From 1982ebe4ac8cced02fb905cd00dc904094e49469 Mon Sep 17 00:00:00 2001 From: Kevin Ward Date: Tue, 1 Oct 2019 15:05:51 -0500 Subject: [PATCH 020/481] Contributor -Kevin Ward --- CONTRIBUTORS.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 4c99b71d..4bf0b59e 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -3,6 +3,7 @@ - [CaffeinatedCod3r](https://github.com/CaffeinatedCod3r) - [Corbin Taylor](https://github.com/cjtaylor1990) - [Emmanuel Ezenwigbo](https://github.com/SkyC0der) +- [Kevin Ward](https://github.com/Blueward12) - [Luciano Santos](https://github.com/lucianosz7) - [Mykola Balabash](https://github.com/twilderan) - [Ramy Fetteha](https://github.com/NoirFLamme) From dcb22eb27084f01e700eea24f0de9c0e499a1bf1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cresencio=20V=C3=A1zquez=20Flores?= Date: Tue, 1 Oct 2019 15:09:30 -0500 Subject: [PATCH 021/481] Update CONTRIBUTORS.md --- CONTRIBUTORS.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 4c99b71d..86a81c49 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -2,6 +2,7 @@ - [Ankit Chahar](https://github.com/AnkitChahar) - [CaffeinatedCod3r](https://github.com/CaffeinatedCod3r) - [Corbin Taylor](https://github.com/cjtaylor1990) +- [Cresencio Flores](https://github.com/CresencioF) - [Emmanuel Ezenwigbo](https://github.com/SkyC0der) - [Luciano Santos](https://github.com/lucianosz7) - [Mykola Balabash](https://github.com/twilderan) From d8ebddf4735d75d365405f56c55d8e49c9c5e1eb Mon Sep 17 00:00:00 2001 From: Ameya Joshi <52293882+joshiameya99@users.noreply.github.com> Date: Wed, 2 Oct 2019 01:40:36 +0530 Subject: [PATCH 022/481] Added Hello World Program in R Added Hello World Program in R --- code/R/hello_world.R | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 code/R/hello_world.R diff --git a/code/R/hello_world.R b/code/R/hello_world.R new file mode 100644 index 00000000..9e4f2ed6 --- /dev/null +++ b/code/R/hello_world.R @@ -0,0 +1,4 @@ +#Hello World program in R + +var <- "Hello, World!" +print (var) \ No newline at end of file From bfa3c341abf088024cf6e9ee028755a036f82757 Mon Sep 17 00:00:00 2001 From: MisaelMa Date: Tue, 1 Oct 2019 15:20:15 -0500 Subject: [PATCH 023/481] agregre mi perfil --- CONTRIBUTORS.md | 1 + code/PHP/HelloWorld.php | 3 +++ profiles/MisaelMa.md | 18 ++++++++++++++++++ 3 files changed, 22 insertions(+) create mode 100644 code/PHP/HelloWorld.php create mode 100644 profiles/MisaelMa.md diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 4c99b71d..b901e3c0 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -10,3 +10,4 @@ - [Rounak Agarwal](https://github.com/agarwalrounak) - [Thomas Windt](https://github.com/WOLFI3654) - [viewless](https://github.com/viewless) +- [Misael Ma](https://github.com/MisaelMa) diff --git a/code/PHP/HelloWorld.php b/code/PHP/HelloWorld.php new file mode 100644 index 00000000..e9e647c0 --- /dev/null +++ b/code/PHP/HelloWorld.php @@ -0,0 +1,3 @@ + diff --git a/profiles/MisaelMa.md b/profiles/MisaelMa.md new file mode 100644 index 00000000..c8aaaf43 --- /dev/null +++ b/profiles/MisaelMa.md @@ -0,0 +1,18 @@ +## Misael Marin + +### Location +Mexico + +### Projects +SoundLoad: https://github.com/MisaelMa/SoundLoad +VueDeezer: https://github.com/MisaelMa/VueDeezer +ProgressApp: https://github.com/MisaelMa/ProgressApp +### Hobbies & Interests +Coding, music, sleeping, exercise + +### Profiles +[![GitHub][github-img]](https://github.com/MisaelMa) MisaelMa + + +[twitter-img]: https://i.imgur.com/wWzX9uB.png +[github-img]: https://i.imgur.com/9I6NRUm.png From f7c530e1bde59084f77724ae6842e440175a3adb Mon Sep 17 00:00:00 2001 From: Pyr0x1 Date: Tue, 1 Oct 2019 22:29:08 +0200 Subject: [PATCH 024/481] added shell --- code/Shell/hello.sh | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 code/Shell/hello.sh diff --git a/code/Shell/hello.sh b/code/Shell/hello.sh new file mode 100644 index 00000000..5dc761df --- /dev/null +++ b/code/Shell/hello.sh @@ -0,0 +1,3 @@ +#!/bin/sh + +echo "Hello World!" \ No newline at end of file From d95e66eaac98812dbc8a61140f2a556434bb2ed3 Mon Sep 17 00:00:00 2001 From: Pyr0x1 Date: Tue, 1 Oct 2019 22:33:05 +0200 Subject: [PATCH 025/481] added myself as contributor --- CONTRIBUTORS.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 4c99b71d..3ecf54e4 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -3,6 +3,7 @@ - [CaffeinatedCod3r](https://github.com/CaffeinatedCod3r) - [Corbin Taylor](https://github.com/cjtaylor1990) - [Emmanuel Ezenwigbo](https://github.com/SkyC0der) +- [Loris Gabriele](https://github.com/Pyr0x1) - [Luciano Santos](https://github.com/lucianosz7) - [Mykola Balabash](https://github.com/twilderan) - [Ramy Fetteha](https://github.com/NoirFLamme) From d0359617f445a8235b3e5d2518f400a2bb5c2daa Mon Sep 17 00:00:00 2001 From: Samuel Tonini Date: Tue, 1 Oct 2019 17:37:49 -0300 Subject: [PATCH 026/481] Added Hello World Program in Delphi. #9 --- code/Delphi/hello_world.dpr | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 code/Delphi/hello_world.dpr diff --git a/code/Delphi/hello_world.dpr b/code/Delphi/hello_world.dpr new file mode 100644 index 00000000..39b80eb9 --- /dev/null +++ b/code/Delphi/hello_world.dpr @@ -0,0 +1,12 @@ +program hello_world; + +{$APPTYPE CONSOLE} + +{$R *.res} + +uses + System.SysUtils; + +begin + Writeln('Hello World!'); +end. From 4fd26761f51c2dbf3e1bb532129e9be61294f6ad Mon Sep 17 00:00:00 2001 From: Samuel Tonini Date: Tue, 1 Oct 2019 17:40:56 -0300 Subject: [PATCH 027/481] Add name to the CONTRIBUTORS.md file #10 --- CONTRIBUTORS.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 4c99b71d..7b0938c3 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -8,5 +8,6 @@ - [Ramy Fetteha](https://github.com/NoirFLamme) - [Randil Tennakoon](https://github.com/randiltennakoon) - [Rounak Agarwal](https://github.com/agarwalrounak) +- [Samuel Tonini](https://github.com/samuel-tonini) - [Thomas Windt](https://github.com/WOLFI3654) - [viewless](https://github.com/viewless) From 5acc4342411cc5c055333d0205a5628942b6acf0 Mon Sep 17 00:00:00 2001 From: CherryKitten Date: Tue, 1 Oct 2019 23:16:12 +0200 Subject: [PATCH 028/481] Add Ansible-nginx --- CONTRIBUTORS.md | 1 + code/Ansible-Nginx/README.md | 7 ++++++ code/Ansible-Nginx/Vagrantfile | 7 ++++++ code/Ansible-Nginx/helloworld.yml | 8 +++++++ .../roles/helloworld/tasks/main.yml | 24 +++++++++++++++++++ .../roles/helloworld/templates/default.j2 | 16 +++++++++++++ .../roles/helloworld/templates/index.html | 9 +++++++ 7 files changed, 72 insertions(+) create mode 100644 code/Ansible-Nginx/README.md create mode 100644 code/Ansible-Nginx/Vagrantfile create mode 100644 code/Ansible-Nginx/helloworld.yml create mode 100644 code/Ansible-Nginx/roles/helloworld/tasks/main.yml create mode 100644 code/Ansible-Nginx/roles/helloworld/templates/default.j2 create mode 100644 code/Ansible-Nginx/roles/helloworld/templates/index.html diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 4c99b71d..577e6d58 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -10,3 +10,4 @@ - [Rounak Agarwal](https://github.com/agarwalrounak) - [Thomas Windt](https://github.com/WOLFI3654) - [viewless](https://github.com/viewless) +- [CherryKitten](https://github.com/CherryKitten) diff --git a/code/Ansible-Nginx/README.md b/code/Ansible-Nginx/README.md new file mode 100644 index 00000000..39325788 --- /dev/null +++ b/code/Ansible-Nginx/README.md @@ -0,0 +1,7 @@ +# Ansible-nginx Hello World + +A quick playbook to deploy a "Hello World"-Webpage via ansible. + +To test this, if you have vagrant installed, just do `vagrant up` in this directory and the page should be accessible at http://localhost:8080 + +Don't forget to `vagrant destroy` afterwards, so the VM doesn't keep running. \ No newline at end of file diff --git a/code/Ansible-Nginx/Vagrantfile b/code/Ansible-Nginx/Vagrantfile new file mode 100644 index 00000000..43fdfb97 --- /dev/null +++ b/code/Ansible-Nginx/Vagrantfile @@ -0,0 +1,7 @@ +Vagrant.configure("2") do |config| + config.vm.box = "ubuntu/bionic64" + config.vm.network "forwarded_port", guest: 80, host: 8080 + config.vm.provision "ansible" do |ansible| + ansible.playbook = "helloworld.yml" + end +end \ No newline at end of file diff --git a/code/Ansible-Nginx/helloworld.yml b/code/Ansible-Nginx/helloworld.yml new file mode 100644 index 00000000..cc806349 --- /dev/null +++ b/code/Ansible-Nginx/helloworld.yml @@ -0,0 +1,8 @@ +--- +- name: Install nginx and publish Hello World + hosts: all + become: true + gather_facts: true + tags: helloworld + roles: + - helloworld \ No newline at end of file diff --git a/code/Ansible-Nginx/roles/helloworld/tasks/main.yml b/code/Ansible-Nginx/roles/helloworld/tasks/main.yml new file mode 100644 index 00000000..1353603a --- /dev/null +++ b/code/Ansible-Nginx/roles/helloworld/tasks/main.yml @@ -0,0 +1,24 @@ +--- +- name: install nginx + apt: + name: nginx + +- name: create hello world directory + file: + path: "/var/www/helloworld" + state: directory + +- name: copy hello world file to server + copy: + src: "../templates/index.html" + dest: "/var/www/helloworld/index.html" + +- name: apply nginx config + template: + src: default.j2 + dest: "/etc/nginx/sites-available/default" + +- name: restart nginx + systemd: + name: nginx + state: restarted diff --git a/code/Ansible-Nginx/roles/helloworld/templates/default.j2 b/code/Ansible-Nginx/roles/helloworld/templates/default.j2 new file mode 100644 index 00000000..904174ef --- /dev/null +++ b/code/Ansible-Nginx/roles/helloworld/templates/default.j2 @@ -0,0 +1,16 @@ +server { + listen 80 default_server; + listen [::]:80 default_server; + listen 443 default_server; + listen [::]:443 default_server; + + root /var/www/helloworld; + + index index.html index.htm index.nginx-debian.html; + + server_name _; + + location / { + try_files $uri $uri/ =404; + } +} diff --git a/code/Ansible-Nginx/roles/helloworld/templates/index.html b/code/Ansible-Nginx/roles/helloworld/templates/index.html new file mode 100644 index 00000000..cfe8a554 --- /dev/null +++ b/code/Ansible-Nginx/roles/helloworld/templates/index.html @@ -0,0 +1,9 @@ + + + Hello, World! + + + + +

Hello, World!

+ \ No newline at end of file From 61756044c964bbb1125ad7340dc7d41fbdf7269d Mon Sep 17 00:00:00 2001 From: GAyan17 Date: Wed, 2 Oct 2019 07:09:25 +0530 Subject: [PATCH 029/481] Hey, I'm Ayan I'm new to open source and this is my first commit, and also I added 3 hello world programs for java, c and cpp --- CONTRIBUTORS.md | 1 + code/C++/Hello_World.cc | 8 ++++++++ code/C/Hello_World.c | 6 ++++++ code/Java/Hello_World.java | 8 ++++++++ profiles/Ayan_Goel.md | 23 +++++++++++++++++++++++ 5 files changed, 46 insertions(+) create mode 100644 code/C++/Hello_World.cc create mode 100644 code/C/Hello_World.c create mode 100644 code/Java/Hello_World.java create mode 100644 profiles/Ayan_Goel.md diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index f955670b..e996db37 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -1,5 +1,6 @@ - [Ankit Chahar](https://github.com/AnkitChahar) +- [Ayan Goel](https://github.com/GAyan17) - [CaffeinatedCod3r](https://github.com/CaffeinatedCod3r) - [Corbin Taylor](https://github.com/cjtaylor1990) - [Emmanuel Ezenwigbo](https://github.com/SkyC0der) diff --git a/code/C++/Hello_World.cc b/code/C++/Hello_World.cc new file mode 100644 index 00000000..405cdfa3 --- /dev/null +++ b/code/C++/Hello_World.cc @@ -0,0 +1,8 @@ +#include +using namespace std; + +int main(int argc, char const *argv[]) +{ + cout<<"hello"< +int main() +{ +printf("Hello World\n"); +return 0; +} diff --git a/code/Java/Hello_World.java b/code/Java/Hello_World.java new file mode 100644 index 00000000..3d6d8d1c --- /dev/null +++ b/code/Java/Hello_World.java @@ -0,0 +1,8 @@ +class Hello_World +{ + public static void main(String[] args) { + final{ + System.out.println("Hello World!"); + } + } +} \ No newline at end of file diff --git a/profiles/Ayan_Goel.md b/profiles/Ayan_Goel.md new file mode 100644 index 00000000..812e92f7 --- /dev/null +++ b/profiles/Ayan_Goel.md @@ -0,0 +1,23 @@ +## Ayan Goel + + +### Bio +2nd year B.Tech Student studying in a Engineering College in India. Majoring in Computer Science Engineering. +Love developing apps. Java and Dart enthusiast. + +### Location +India + +### Projects +Trusted-Doctor-Sample: https://github.com/GAyan17/trusted_doctor_sample_app (A simple sample app based on Flutter) + +### Hobbies & Interests +Coding, Reading, Watching Movies, anime. + +###Profiles +[![GitHub][github-img]](https://github.com/GAyan17) +[![Twitter][twitter-img]](Link to Twitter profile) + + +[twitter-img]: https://i.imgur.com/wWzX9uB.png +[github-img]: https://i.imgur.com/9I6NRUm.png \ No newline at end of file From 1da21a818667de5fd65e2139debf905f996d927b Mon Sep 17 00:00:00 2001 From: boaglio Date: Tue, 1 Oct 2019 23:09:10 -0300 Subject: [PATCH 030/481] Scala --- code/Scala/.attach_pid173997 | 0 code/Scala/HelloWorld.scala | 13 +++++++++++++ 2 files changed, 13 insertions(+) create mode 100644 code/Scala/.attach_pid173997 create mode 100644 code/Scala/HelloWorld.scala diff --git a/code/Scala/.attach_pid173997 b/code/Scala/.attach_pid173997 new file mode 100644 index 00000000..e69de29b diff --git a/code/Scala/HelloWorld.scala b/code/Scala/HelloWorld.scala new file mode 100644 index 00000000..73df12fd --- /dev/null +++ b/code/Scala/HelloWorld.scala @@ -0,0 +1,13 @@ +object HelloWorld +{ + def main(args: Array[String]) : Unit = + { + println("Hello World!") + } + + /* + # scalac HelloWorld.scala + # scala HelloWorld + Hello World! + */ +} \ No newline at end of file From 0fc61ee696b02126985b236a93c8cc84b3335814 Mon Sep 17 00:00:00 2001 From: Tim Date: Tue, 1 Oct 2019 22:55:12 -0400 Subject: [PATCH 031/481] Update to CONTRIBUTORS Added myself as a contributor along with a profile about myself. --- CONTRIBUTORS.md | 1 + code/Java/Hello_world.java | 12 ++++++++---- profiles/Tim_Solokha.md | 22 ++++++++++++++++++++++ 3 files changed, 31 insertions(+), 4 deletions(-) create mode 100644 profiles/Tim_Solokha.md diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 4c99b71d..e22e5c5e 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -9,4 +9,5 @@ - [Randil Tennakoon](https://github.com/randiltennakoon) - [Rounak Agarwal](https://github.com/agarwalrounak) - [Thomas Windt](https://github.com/WOLFI3654) +- [Tim Solokha](https://github.com/TimSolokha) - [viewless](https://github.com/viewless) diff --git a/code/Java/Hello_world.java b/code/Java/Hello_world.java index 2b74086a..f92a3f8c 100644 --- a/code/Java/Hello_world.java +++ b/code/Java/Hello_world.java @@ -1,5 +1,9 @@ -public class HelloWorld{ - public static void main(String[] args){ - System.out.println("Hello World "); - } +public class HelloWorld { + + public static void main(String[] args) { + + System.out.println("Hello, world!"); + + } + } diff --git a/profiles/Tim_Solokha.md b/profiles/Tim_Solokha.md new file mode 100644 index 00000000..148d74e2 --- /dev/null +++ b/profiles/Tim_Solokha.md @@ -0,0 +1,22 @@ +## Tim Solokha + +### Bio +I am a sophmore in Computer Science, and want to focus on some sort of aspect of the web (preferably back-end in java). + +### Location +USA + +### Projects +- GUI Circuit Simulator: Built a custom circuit builder within the C++ language, which would show the correct outputs of certain inputs given to a circuit. Solved logic for AND, OR, XOR, etc. + +### Hobbies & Interests +- Playing any kind of sport +- Photography +- Programming + +### Profiles +[![GitHub][github-img]](https://github.com/TimSolokha) + + +[twitter-img]: https://i.imgur.com/wWzX9uB.png +[github-img]: https://i.imgur.com/9I6NRUm.png \ No newline at end of file From c5bb3472064c6ecd2347bd8ef5759b7394d6d1b1 Mon Sep 17 00:00:00 2001 From: Ryan Le <31494954+lryanle@users.noreply.github.com> Date: Tue, 1 Oct 2019 23:39:29 -0500 Subject: [PATCH 032/481] Create helloWorld.java --- code/Java/helloWorld.java | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 code/Java/helloWorld.java diff --git a/code/Java/helloWorld.java b/code/Java/helloWorld.java new file mode 100644 index 00000000..2ff2c11e --- /dev/null +++ b/code/Java/helloWorld.java @@ -0,0 +1,9 @@ +public class HelloWorld { + public static void main (String[] args) { + try { + System.out.println("Hello, World!"); + } catch (Exception e) { + System.out.println("Hello, World failed!"); + } + } +} From 046363b71f2d4f9189981495d1dabb179ba51fd6 Mon Sep 17 00:00:00 2001 From: Ryan Le <31494954+lryanle@users.noreply.github.com> Date: Tue, 1 Oct 2019 23:40:13 -0500 Subject: [PATCH 033/481] Create helloWorld.js --- code/JavaScript/helloWorld.js | 1 + 1 file changed, 1 insertion(+) create mode 100644 code/JavaScript/helloWorld.js diff --git a/code/JavaScript/helloWorld.js b/code/JavaScript/helloWorld.js new file mode 100644 index 00000000..184dfcc9 --- /dev/null +++ b/code/JavaScript/helloWorld.js @@ -0,0 +1 @@ +console.log("Hello, World!"); From 3525cd3aa1128cb3069e5d5c5d4d3996e76a5d56 Mon Sep 17 00:00:00 2001 From: Rebwar Hosein Poori Date: Wed, 2 Oct 2019 08:41:13 +0330 Subject: [PATCH 034/481] Create rebwar.md --- profiles/rebwar.md | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 profiles/rebwar.md diff --git a/profiles/rebwar.md b/profiles/rebwar.md new file mode 100644 index 00000000..9129a6c3 --- /dev/null +++ b/profiles/rebwar.md @@ -0,0 +1,41 @@ +### +## Rebwar Hosein Poori + +### **Bio** + + ASP.NET Core Learner and old asp.net forms web developer who want to be a .net core developer + +### **Location** + + Iran + +### **Projects:** + + https://github.com/rebwar/DIContainerConfig + + https://github.com/rebwar/HelpDesk + + https://github.com/rebwar/CourseStore + + https://github.com/rebwar/JoinUsingGenericsSample + + https://github.com/rebwar/CRUDConsole + + https://github.com/rebwar/SimpleDic + + https://github.com/rebwar/MovieStore + +### **Hobbies & Interests** + + Landsacpe Photography(2nd winner of capadocia photography festival),Nature,Coding,Reading + +### **GitHub Profile:** + + + +[![GitHub][github-img]](https://github.com/rebwar) +[![Twitter][twitter-img]](https://twitter.com/rebwar_poori) + + +[twitter-img]: https://i.imgur.com/wWzX9uB.png +[github-img]: https://i.imgur.com/9I6NRUm.png From 77c21fabc852620d5645375bcf0201dd1971ea15 Mon Sep 17 00:00:00 2001 From: Rebwar Hosein Poori Date: Wed, 2 Oct 2019 08:52:50 +0330 Subject: [PATCH 035/481] Create HelloWorld.cs A class controller with one action, send hello world to Index view! --- code/AspDotNetCore/HelloWorld.cs | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 code/AspDotNetCore/HelloWorld.cs diff --git a/code/AspDotNetCore/HelloWorld.cs b/code/AspDotNetCore/HelloWorld.cs new file mode 100644 index 00000000..09420ee5 --- /dev/null +++ b/code/AspDotNetCore/HelloWorld.cs @@ -0,0 +1,8 @@ + public class HomeController : Controller + { + public IActionResult Index() + { + string sayHello = "Hello World!"; + return View(sayHello); + } + } From b980cf6c1abf4ef74f608a1bbdc177cdaa36861b Mon Sep 17 00:00:00 2001 From: Rounak Agarwal Date: Wed, 2 Oct 2019 11:44:27 +0530 Subject: [PATCH 036/481] Delete .attach_pid173997 --- code/Scala/.attach_pid173997 | 0 1 file changed, 0 insertions(+), 0 deletions(-) delete mode 100644 code/Scala/.attach_pid173997 diff --git a/code/Scala/.attach_pid173997 b/code/Scala/.attach_pid173997 deleted file mode 100644 index e69de29b..00000000 From 334b13b0aebf66e651b8da9b8e9245e718042ec2 Mon Sep 17 00:00:00 2001 From: ajeyprasand <35233664+ajeyprasand@users.noreply.github.com> Date: Wed, 2 Oct 2019 11:44:55 +0530 Subject: [PATCH 037/481] added my name.... --- CONTRIBUTORS.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 66af81fa..4da2f833 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -1,4 +1,5 @@ +- [Ajey Prasand](https://github.com/ajeyprasand) - [Ankit Chahar](https://github.com/AnkitChahar) - [Ayan Goel](https://github.com/GAyan17) - [CaffeinatedCod3r](https://github.com/CaffeinatedCod3r) From c8d58cb35cf81fa23301bd4e788ce0b1c508311c Mon Sep 17 00:00:00 2001 From: Umut Akkaya Date: Wed, 2 Oct 2019 09:25:51 +0300 Subject: [PATCH 038/481] Create Umut_Akkaya.md --- profiles/Umut_Akkaya.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 profiles/Umut_Akkaya.md diff --git a/profiles/Umut_Akkaya.md b/profiles/Umut_Akkaya.md new file mode 100644 index 00000000..dfeccc3b --- /dev/null +++ b/profiles/Umut_Akkaya.md @@ -0,0 +1,12 @@ +Umut Akkaya +BIO +I am working in VeriPark in six month and I'm CSE student at Celal Bayar University + +Location +Turkey + +Projects: +Baship + +Profiles +Github:Xicy From 133e0221a8b0f65df1a3135f66628551b9746216 Mon Sep 17 00:00:00 2001 From: Sammy Date: Wed, 2 Oct 2019 08:27:23 +0200 Subject: [PATCH 039/481] Fix order of CONTRIBUTORS.md --- CONTRIBUTORS.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 577e6d58..95892cf7 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -1,6 +1,7 @@ - [Ankit Chahar](https://github.com/AnkitChahar) - [CaffeinatedCod3r](https://github.com/CaffeinatedCod3r) +- [CherryKitten](https://github.com/CherryKitten) - [Corbin Taylor](https://github.com/cjtaylor1990) - [Emmanuel Ezenwigbo](https://github.com/SkyC0der) - [Luciano Santos](https://github.com/lucianosz7) @@ -10,4 +11,3 @@ - [Rounak Agarwal](https://github.com/agarwalrounak) - [Thomas Windt](https://github.com/WOLFI3654) - [viewless](https://github.com/viewless) -- [CherryKitten](https://github.com/CherryKitten) From 103af0f63d5058088a0068215e148874bee6e7b2 Mon Sep 17 00:00:00 2001 From: Umut Akkaya Date: Wed, 2 Oct 2019 09:28:01 +0300 Subject: [PATCH 040/481] Create Hello_World_Xicy.cs --- code/C#/Hello_World_Xicy.cs | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 code/C#/Hello_World_Xicy.cs diff --git a/code/C#/Hello_World_Xicy.cs b/code/C#/Hello_World_Xicy.cs new file mode 100644 index 00000000..9b0829a9 --- /dev/null +++ b/code/C#/Hello_World_Xicy.cs @@ -0,0 +1,13 @@ + +//AUTHOR: xicy +//LANGUAGE: C# +//GITHUB: https://github.com/xicy +using System; + +namespace HW +{ + class Program + { + static void Main(string[] args) => Console.WriteLine("Hello World!"); + } +} From ff5180f9cf22675d60b6e2b69e2b825a1dbcaee9 Mon Sep 17 00:00:00 2001 From: Umut Akkaya Date: Wed, 2 Oct 2019 09:29:59 +0300 Subject: [PATCH 041/481] Update Umut_Akkaya.md --- profiles/Umut_Akkaya.md | 23 ++++++++++++++++------- 1 file changed, 16 insertions(+), 7 deletions(-) diff --git a/profiles/Umut_Akkaya.md b/profiles/Umut_Akkaya.md index dfeccc3b..41e29450 100644 --- a/profiles/Umut_Akkaya.md +++ b/profiles/Umut_Akkaya.md @@ -1,12 +1,21 @@ -Umut Akkaya -BIO +## Umut Akkaya + +### Bio I am working in VeriPark in six month and I'm CSE student at Celal Bayar University -Location -Turkey +### Location +Izmir/Turkey -Projects: +### Projects Baship -Profiles -Github:Xicy +### Hobbies & Interests +The super awesome things that intrigue you and bring you joy. + +### Profiles +[![GitHub][github-img]](https://github.com/Xicy) +[![Twitter][twitter-img]](https://twitter.com/umutak96) + + +[twitter-img]: https://i.imgur.com/wWzX9uB.png +[github-img]: https://i.imgur.com/9I6NRUm.png From 8be7f6474b1e8d7c3a49bb9b92a4065a252d9759 Mon Sep 17 00:00:00 2001 From: misspuff55 <55994793+misspuff55@users.noreply.github.com> Date: Wed, 2 Oct 2019 13:57:47 +0700 Subject: [PATCH 042/481] create akbar.md --- profiles/akbar.md | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 profiles/akbar.md diff --git a/profiles/akbar.md b/profiles/akbar.md new file mode 100644 index 00000000..38f2762f --- /dev/null +++ b/profiles/akbar.md @@ -0,0 +1,3 @@ +hello my name is akbar from indonesia who's new in programming.. + +thanks From 8efe4050ea1acfada984f94ae877e003881c766a Mon Sep 17 00:00:00 2001 From: dvlpsh Date: Wed, 2 Oct 2019 12:39:27 +0530 Subject: [PATCH 043/481] Hello world in kotlin --- code/Kotlin/helloworld.kt | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 code/Kotlin/helloworld.kt diff --git a/code/Kotlin/helloworld.kt b/code/Kotlin/helloworld.kt new file mode 100644 index 00000000..62ff8e6e --- /dev/null +++ b/code/Kotlin/helloworld.kt @@ -0,0 +1,4 @@ +fun main() +{ + println("Hello World!") +} From 4998e427a1cd67ae27ea22186add66824de66455 Mon Sep 17 00:00:00 2001 From: Aditya Narayan Shahi Date: Wed, 2 Oct 2019 13:00:21 +0530 Subject: [PATCH 044/481] Updated --- code/JavaScript/Hello_World.js | 1 + 1 file changed, 1 insertion(+) create mode 100644 code/JavaScript/Hello_World.js diff --git a/code/JavaScript/Hello_World.js b/code/JavaScript/Hello_World.js new file mode 100644 index 00000000..3451e9b7 --- /dev/null +++ b/code/JavaScript/Hello_World.js @@ -0,0 +1 @@ +console.log('Hello World'); From d74ef0b84fda09ed374ae659dbce8b84b8f05726 Mon Sep 17 00:00:00 2001 From: Aditya Narayan Shahi Date: Wed, 2 Oct 2019 13:07:15 +0530 Subject: [PATCH 045/481] Created helloworld --- code/C++/helloWorld.cpp | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 code/C++/helloWorld.cpp diff --git a/code/C++/helloWorld.cpp b/code/C++/helloWorld.cpp new file mode 100644 index 00000000..020f30a3 --- /dev/null +++ b/code/C++/helloWorld.cpp @@ -0,0 +1,8 @@ + + +#include + +int main(){ + std::cout<<"Hello World"< Date: Wed, 2 Oct 2019 13:09:21 +0530 Subject: [PATCH 046/481] Created hello_World --- code/Java/hello_World.java | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 code/Java/hello_World.java diff --git a/code/Java/hello_World.java b/code/Java/hello_World.java new file mode 100644 index 00000000..d22038cb --- /dev/null +++ b/code/Java/hello_World.java @@ -0,0 +1,9 @@ +public class hello_World { + + public static void main(String[] args) { + + System.out.println("Hello, world!"); + + } + +} From 6b5eca3df2b16fef5f2ef4b0b27c7082f9f58b21 Mon Sep 17 00:00:00 2001 From: Ankit Kumar Sharma <53289186+AnkitSharmaOnGithub@users.noreply.github.com> Date: Wed, 2 Oct 2019 13:38:10 +0530 Subject: [PATCH 047/481] Create HelloWORLD.js --- code/JavaScript/HelloWORLD.js | 1 + 1 file changed, 1 insertion(+) create mode 100644 code/JavaScript/HelloWORLD.js diff --git a/code/JavaScript/HelloWORLD.js b/code/JavaScript/HelloWORLD.js new file mode 100644 index 00000000..410e5192 --- /dev/null +++ b/code/JavaScript/HelloWORLD.js @@ -0,0 +1 @@ +console.log("hello,world!"); From 407e2aedd07351e5172c4ccb8f726a95f028a447 Mon Sep 17 00:00:00 2001 From: Ankit Kumar Sharma <53289186+AnkitSharmaOnGithub@users.noreply.github.com> Date: Wed, 2 Oct 2019 13:40:01 +0530 Subject: [PATCH 048/481] Update CONTRIBUTORS.md --- CONTRIBUTORS.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index ffdadaf3..67a6b2be 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -1,6 +1,7 @@ - [Ajey Prasand](https://github.com/ajeyprasand) - [Ankit Chahar](https://github.com/AnkitChahar) +- [Ankit Sharma](https://github.com/AnkitSharmaOnGithub) - [Ayan Goel](https://github.com/GAyan17) - [CaffeinatedCod3r](https://github.com/CaffeinatedCod3r) - [CherryKitten](https://github.com/CherryKitten) From 0ac6c2544edb344c6226f5c1d52a419f9a0fb897 Mon Sep 17 00:00:00 2001 From: Aamir Ahmad Date: Wed, 2 Oct 2019 14:22:12 +0530 Subject: [PATCH 049/481] updated CONTRIBUTORS.md, code (php) and profiles --- CONTRIBUTORS.md | 1 + code/PHP/hello.php | 3 +++ profiles/Aamir_Ahmad.md | 25 +++++++++++++++++++++++++ 3 files changed, 29 insertions(+) create mode 100644 code/PHP/hello.php create mode 100644 profiles/Aamir_Ahmad.md diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index ffdadaf3..23b3cb50 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -1,4 +1,5 @@ +-[AAMIR AHMAD] (https://github.com/sickwiz) - [Ajey Prasand](https://github.com/ajeyprasand) - [Ankit Chahar](https://github.com/AnkitChahar) - [Ayan Goel](https://github.com/GAyan17) diff --git a/code/PHP/hello.php b/code/PHP/hello.php new file mode 100644 index 00000000..24a7f32e --- /dev/null +++ b/code/PHP/hello.php @@ -0,0 +1,3 @@ + diff --git a/profiles/Aamir_Ahmad.md b/profiles/Aamir_Ahmad.md new file mode 100644 index 00000000..a36fdae2 --- /dev/null +++ b/profiles/Aamir_Ahmad.md @@ -0,0 +1,25 @@ +Aamir Ahmad +## BIO ## +I am a cyber security and web development enthusiast. + +## LOCATION ## +NOIDA,INDIA. + + +## PROJECTS ## +1- I made a project on smart parking systems in my first semester of Bachelors in Computer Science. +2- Currently working on a web application which is a college based Journey planner. + + +## HOBBIES ## +I do standup comedy and poetries in my part time. +Above all , I fork. + + +## PROFILES ## +[![GitHub][github-img]]https://github.com/sickwiz +[![Twitter][twitter-img]](https://twitter.com/_sickwiz) + +[twitter-img]: https://i.imgur.com/wWzX9uB.png +[twitter-img]:https://i.imgur.com/9I6NRUm + From 0ee438ec2a817858d04936dd883306bb9800fa8d Mon Sep 17 00:00:00 2001 From: Aamir Ahmad Date: Wed, 2 Oct 2019 14:35:04 +0530 Subject: [PATCH 050/481] updated CONTRIBUTORS.md,codes and profiles --- CONTRIBUTORS.md | 2 +- code/PHP/hello.php | 1 + profiles/Aamir_Ahmad.md | 6 +++--- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 23b3cb50..911b7eba 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -1,5 +1,5 @@ --[AAMIR AHMAD] (https://github.com/sickwiz) +- [AAMIR AHMAD] (https://github.com/sickwiz) - [Ajey Prasand](https://github.com/ajeyprasand) - [Ankit Chahar](https://github.com/AnkitChahar) - [Ayan Goel](https://github.com/GAyan17) diff --git a/code/PHP/hello.php b/code/PHP/hello.php index 24a7f32e..2d763cb1 100644 --- a/code/PHP/hello.php +++ b/code/PHP/hello.php @@ -1,3 +1,4 @@ diff --git a/profiles/Aamir_Ahmad.md b/profiles/Aamir_Ahmad.md index a36fdae2..e0a65051 100644 --- a/profiles/Aamir_Ahmad.md +++ b/profiles/Aamir_Ahmad.md @@ -1,4 +1,4 @@ -Aamir Ahmad +AAMIR AHMAD ## BIO ## I am a cyber security and web development enthusiast. @@ -13,11 +13,11 @@ NOIDA,INDIA. ## HOBBIES ## I do standup comedy and poetries in my part time. -Above all , I fork. + ## PROFILES ## -[![GitHub][github-img]]https://github.com/sickwiz +[![GitHub][github-img]](https://github.com/sickwiz) [![Twitter][twitter-img]](https://twitter.com/_sickwiz) [twitter-img]: https://i.imgur.com/wWzX9uB.png From dd0a3580b9d5f3e39133ccb1564c867099a175e4 Mon Sep 17 00:00:00 2001 From: Rounak Agarwal Date: Wed, 2 Oct 2019 15:18:57 +0530 Subject: [PATCH 051/481] Update README.md --- README.md | 18 +++--------------- 1 file changed, 3 insertions(+), 15 deletions(-) diff --git a/README.md b/README.md index a372ee0d..5e73b1ac 100644 --- a/README.md +++ b/README.md @@ -1,18 +1,6 @@ -# Welcome to Hacktoberfest 2019 - -![hacktoberfest](hacktoberfest.png) - -# What is Hacktoberfest? -Hacktoberfest is a month-long celebration of open source software run by DigitalOcean and DEV. -It is open to everyone in their global community! -You can easily earn a limited edition T-shirt by submitting 4 pull requests to public GitHub repositories between October 1 and October 31 -after signing up on the [Hacktoberfest website](https://hacktoberfest.digitalocean.com/). - -Read my Hacktoberfest 2018 experience here: _[Hacktoberfest 2018 — My foray into the World of Open Source](https://medium.com/@agarwalrounak/hacktoberfest-2018-my-foray-into-the-world-of-open-source-a8bac8651ade)_. +# Welcome to Hello-World # Getting Started -* Register for Hacktoberfest [here](https://hacktoberfest.digitalocean.com/). - * Fork this repository on GitHub by clicking the Fork button in the top right of this page. @@ -90,7 +78,7 @@ Choose one of above or all 3, make a pull request for your contributions and wai - If you liked contributing to this project, please share and star this project to help as many people as possible to get started in Open Source. - Browse more such issues to contribute to on [GitHub](https://github.com/search?q=label%3Ahacktoberfest+state%3Aopen&type=Issues). -

:confetti_ball: :tada: Happy Hacktoberfest and Happy Contributing :tada: :confetti_ball:

+

:confetti_ball: :tada: Happy Contributing :tada: :confetti_ball:

[twitter-img]: https://i.imgur.com/wWzX9uB.png -[github-img]: https://i.imgur.com/9I6NRUm.png \ No newline at end of file +[github-img]: https://i.imgur.com/9I6NRUm.png From 55964bd31ec08e39e2f65f3cc293c5af62ce36d4 Mon Sep 17 00:00:00 2001 From: Rounak Agarwal Date: Wed, 2 Oct 2019 15:30:09 +0530 Subject: [PATCH 052/481] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5e73b1ac..659e8aa0 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ # Welcome to Hello-World - +This repository serves as a learning tool for new contributors to open-source, but pull requests here won’t count toward Hacktoberfest. # Getting Started * Fork this repository on GitHub by clicking the Fork button in the top right of this page. From e9ea62a23fb55facff594e7f0d465b4333134803 Mon Sep 17 00:00:00 2001 From: stvmachine Date: Wed, 2 Oct 2019 20:50:04 +1000 Subject: [PATCH 053/481] Create hello_world_es.js --- code/JavaScript/hello_world_es.js | 1 + 1 file changed, 1 insertion(+) create mode 100644 code/JavaScript/hello_world_es.js diff --git a/code/JavaScript/hello_world_es.js b/code/JavaScript/hello_world_es.js new file mode 100644 index 00000000..71561aaa --- /dev/null +++ b/code/JavaScript/hello_world_es.js @@ -0,0 +1 @@ +console.log("hola mundo"); From 64edc864c894f418208725040609c28c175c493e Mon Sep 17 00:00:00 2001 From: Samuel Tonini Date: Wed, 2 Oct 2019 07:54:49 -0300 Subject: [PATCH 054/481] Added Hello World Program in Dart. #9 --- code/Dart/hello_world.dart | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 code/Dart/hello_world.dart diff --git a/code/Dart/hello_world.dart b/code/Dart/hello_world.dart new file mode 100644 index 00000000..b79ce557 --- /dev/null +++ b/code/Dart/hello_world.dart @@ -0,0 +1,3 @@ +main() { + print("Hello, World!"); +} \ No newline at end of file From f12ef41cc127246f67ca9233e6758a3d0b544a5e Mon Sep 17 00:00:00 2001 From: gentlecrack <38283791+gentlecrack@users.noreply.github.com> Date: Wed, 2 Oct 2019 20:56:18 +1000 Subject: [PATCH 055/481] aj aj bio --- profiles/aj | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 profiles/aj diff --git a/profiles/aj b/profiles/aj new file mode 100644 index 00000000..0332ffb0 --- /dev/null +++ b/profiles/aj @@ -0,0 +1,22 @@ +## Your Name +Aneej Anand + +### Bio +IT Architect & Program Manager + +### Location +Sydney + +### Projects +Autosys EOD Monitoring Tool +Perl based EOD processor + +### Hobbies & Interests +Photography + +### Profiles +[![GitHub][github-img]](https://github.com/gentlecrack) + + +[twitter-img]: https://i.imgur.com/wWzX9uB.png +[github-img]: https://i.imgur.com/9I6NRUm.png From a24aab35b4d68966488c3066b30e976f01212add Mon Sep 17 00:00:00 2001 From: Hitesh Date: Wed, 2 Oct 2019 16:49:18 +0530 Subject: [PATCH 056/481] First commit for hacktoberfest 2019 --- code/C++/hello_to_world.cpp | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 code/C++/hello_to_world.cpp diff --git a/code/C++/hello_to_world.cpp b/code/C++/hello_to_world.cpp new file mode 100644 index 00000000..48aaf3de --- /dev/null +++ b/code/C++/hello_to_world.cpp @@ -0,0 +1,7 @@ +#include +using namespace std; +int main() +{ + cout << "Hello To World"; + return 0; +} From 181cd0471eef745ca8e7e1c1344c2bc7bd90c792 Mon Sep 17 00:00:00 2001 From: HSBallina Date: Wed, 2 Oct 2019 13:20:02 +0200 Subject: [PATCH 057/481] Simple C# Hello World --- code/C#/HelloWorld_bp.cs | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 code/C#/HelloWorld_bp.cs diff --git a/code/C#/HelloWorld_bp.cs b/code/C#/HelloWorld_bp.cs new file mode 100644 index 00000000..22f000db --- /dev/null +++ b/code/C#/HelloWorld_bp.cs @@ -0,0 +1,15 @@ +void Main() +{ + Hello.World.ToString(); +} + +public static class Hello +{ + public static class World + { + public static new string ToString() + { + return MethodBase.GetCurrentMethod().DeclaringType.ToString(); + } + } +} \ No newline at end of file From b237b8d8e33354eb85291f34c55d408ca73b638d Mon Sep 17 00:00:00 2001 From: Kriss Steindals Date: Wed, 2 Oct 2019 12:21:21 +0100 Subject: [PATCH 058/481] Added Hello World program written in JavaScript --- code/JavaScript/hello.js | 1 + 1 file changed, 1 insertion(+) create mode 100644 code/JavaScript/hello.js diff --git a/code/JavaScript/hello.js b/code/JavaScript/hello.js new file mode 100644 index 00000000..a420803c --- /dev/null +++ b/code/JavaScript/hello.js @@ -0,0 +1 @@ +console.log('Hello World!'); From dcb13d943ae9b83119b29f4f821d01aae3277b14 Mon Sep 17 00:00:00 2001 From: ShriLingam23 Date: Wed, 2 Oct 2019 16:52:00 +0530 Subject: [PATCH 059/481] first contribution to open source --- CONTRIBUTORS.md | 1 + code/Java/HelloWorld_new.java | 9 +++++++++ profiles/ShriLingam23.md | 25 +++++++++++++++++++++++++ 3 files changed, 35 insertions(+) create mode 100644 code/Java/HelloWorld_new.java create mode 100644 profiles/ShriLingam23.md diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index d9725189..fa3496ba 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -17,6 +17,7 @@ - [Randil Tennakoon](https://github.com/randiltennakoon) - [Rounak Agarwal](https://github.com/agarwalrounak) - [Samuel Tonini](https://github.com/samuel-tonini) +- [Shriram Navaratnalingam](https://github.com/ShriLingam23) - [Thomas Windt](https://github.com/WOLFI3654) - [Tim Solokha](https://github.com/TimSolokha) - [viewless](https://github.com/viewless) diff --git a/code/Java/HelloWorld_new.java b/code/Java/HelloWorld_new.java new file mode 100644 index 00000000..013dfd3a --- /dev/null +++ b/code/Java/HelloWorld_new.java @@ -0,0 +1,9 @@ + +class HelloWorld +{ + + public static void main(String args[]) + { + System.out.println("Hello, World!"); + } +} \ No newline at end of file diff --git a/profiles/ShriLingam23.md b/profiles/ShriLingam23.md new file mode 100644 index 00000000..5c9c656f --- /dev/null +++ b/profiles/ShriLingam23.md @@ -0,0 +1,25 @@ +## ShriLingam23 + +### Bio + Software Engineering undergraduate who is who is passionate about learning new technologies and + wanted to contribute for open source + +### Location + Sri Lanka. + +### Projects + Mostly with the MERN Stack + Java related projects + +### Hobbies & Interests + -Programming. + -Cricket. + -Hands on with new technologies. + +### Profiles +[![GitHub][github-img]](https://github.com/ShriLingam23) +[![Twitter][twitter-img]](Don't have a twitter) + + +[twitter-img]: https://i.imgur.com/wWzX9uB.png +[github-img]: https://i.imgur.com/9I6NRUm.png From f6d1fd97904c6de22a15553b798414a20f3218de Mon Sep 17 00:00:00 2001 From: HSBallina Date: Wed, 2 Oct 2019 13:23:06 +0200 Subject: [PATCH 060/481] Minor fix --- code/C#/HelloWorld_bp.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/C#/HelloWorld_bp.cs b/code/C#/HelloWorld_bp.cs index 22f000db..9d95e91b 100644 --- a/code/C#/HelloWorld_bp.cs +++ b/code/C#/HelloWorld_bp.cs @@ -1,6 +1,6 @@ void Main() { - Hello.World.ToString(); + Console.WriteLine(Hello.World.ToString()); } public static class Hello @@ -12,4 +12,4 @@ public static class World return MethodBase.GetCurrentMethod().DeclaringType.ToString(); } } -} \ No newline at end of file +} From d285db020140e9aed86e3254cf2f7607e410432d Mon Sep 17 00:00:00 2001 From: HSBallina Date: Wed, 2 Oct 2019 13:25:13 +0200 Subject: [PATCH 061/481] Fix them tabs --- code/C#/HelloWorld_bp.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/C#/HelloWorld_bp.cs b/code/C#/HelloWorld_bp.cs index 9d95e91b..c7fef382 100644 --- a/code/C#/HelloWorld_bp.cs +++ b/code/C#/HelloWorld_bp.cs @@ -1,6 +1,6 @@ void Main() { - Console.WriteLine(Hello.World.ToString()); + Console.WriteLine(Hello.World.ToString()); } public static class Hello @@ -9,7 +9,7 @@ public static class World { public static new string ToString() { - return MethodBase.GetCurrentMethod().DeclaringType.ToString(); - } + return MethodBase.GetCurrentMethod().DeclaringType.ToString(); + } } } From e2500ed46ddd1d4d3a1a5e711832f86c37221124 Mon Sep 17 00:00:00 2001 From: sahilcodes Date: Wed, 2 Oct 2019 17:04:21 +0530 Subject: [PATCH 062/481] my modified --- CONTRIBUTORS.md | 1 + code/JavaScript/HulloWorld.js | 1 + profiles/Sahildeep_Singh.md | 21 +++++++++++++++++++++ 3 files changed, 23 insertions(+) create mode 100644 code/JavaScript/HulloWorld.js create mode 100644 profiles/Sahildeep_Singh.md diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index d9725189..1a09d90e 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -16,6 +16,7 @@ - [Ramy Fetteha](https://github.com/NoirFLamme) - [Randil Tennakoon](https://github.com/randiltennakoon) - [Rounak Agarwal](https://github.com/agarwalrounak) +- [Sahildeep Singh](https://github.com/sahilcodes) - [Samuel Tonini](https://github.com/samuel-tonini) - [Thomas Windt](https://github.com/WOLFI3654) - [Tim Solokha](https://github.com/TimSolokha) diff --git a/code/JavaScript/HulloWorld.js b/code/JavaScript/HulloWorld.js new file mode 100644 index 00000000..fbd84bd9 --- /dev/null +++ b/code/JavaScript/HulloWorld.js @@ -0,0 +1 @@ +console.log("Hullo World!"); diff --git a/profiles/Sahildeep_Singh.md b/profiles/Sahildeep_Singh.md new file mode 100644 index 00000000..a614e0e7 --- /dev/null +++ b/profiles/Sahildeep_Singh.md @@ -0,0 +1,21 @@ +## Sahildeep Singh + +### Bio +I am a second year MCA student at Chitkara University. + +### Location +India. + +### Hobbies & Interests +- Quizzing +- Random trivia +- Reading +- Daydreaming + +### Profiles +[![GitHub][github-img]](https://github.com/sahilcodes) +[![Twitter][twitter-img]](https://twitter.com/sforsaahil) + + +[twitter-img]: +[github-img]: https://i.imgur.com/9I6NRUm.png From ce3cf19592a8f3d8924a2b5fb1e0a86b9c266590 Mon Sep 17 00:00:00 2001 From: iamhritik55 <56077574+iamhritik55@users.noreply.github.com> Date: Wed, 2 Oct 2019 18:44:52 +0530 Subject: [PATCH 063/481] Rename HelloWorld.cpp to Hello_World.cpp --- code/C++/Hello_World.cpp | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 code/C++/Hello_World.cpp diff --git a/code/C++/Hello_World.cpp b/code/C++/Hello_World.cpp new file mode 100644 index 00000000..23a83fc3 --- /dev/null +++ b/code/C++/Hello_World.cpp @@ -0,0 +1,8 @@ +#include +using namespace std; + +int main() +{ +cout<<"Hello World"; +return 0; +} From ba59ac205dcf317aa3dbcab7048e7f985ca395a3 Mon Sep 17 00:00:00 2001 From: iamhritik55 <56077574+iamhritik55@users.noreply.github.com> Date: Wed, 2 Oct 2019 18:49:44 +0530 Subject: [PATCH 064/481] Update CONTRIBUTORS.md --- CONTRIBUTORS.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index d9725189..e545c7b5 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -20,3 +20,4 @@ - [Thomas Windt](https://github.com/WOLFI3654) - [Tim Solokha](https://github.com/TimSolokha) - [viewless](https://github.com/viewless) +- [Hritik Soni](https://github.com/iamhritik55) From 1023804867b6c9dce6d248f22e4ca59a77299498 Mon Sep 17 00:00:00 2001 From: iamhritik55 <56077574+iamhritik55@users.noreply.github.com> Date: Wed, 2 Oct 2019 18:55:40 +0530 Subject: [PATCH 065/481] Create Hritik_soni --- profiles/Hritik_soni | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 profiles/Hritik_soni diff --git a/profiles/Hritik_soni b/profiles/Hritik_soni new file mode 100644 index 00000000..78800461 --- /dev/null +++ b/profiles/Hritik_soni @@ -0,0 +1,23 @@ +## Hritik Soni + +### Bio +I am learning to code. + +### Location +IIIT-Lucknow + +### Projects +Nothing. + +### Hobbies & Interests +Coding. +Gaming. + + +### Profiles +[![GitHub][github-img]](https://github.com/iamhritik55) + + + +[twitter-img]: https://i.imgur.com/wWzX9uB.png +[github-img]: https://i.imgur.com/9I6NRUm.png From 2039b0e98021f6afa09e604c1716f33ae05e8a55 Mon Sep 17 00:00:00 2001 From: Varun Vishal <47146480+varunvishal10@users.noreply.github.com> Date: Wed, 2 Oct 2019 19:16:18 +0530 Subject: [PATCH 066/481] using dart --- code/Dart/hello.dart | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 code/Dart/hello.dart diff --git a/code/Dart/hello.dart b/code/Dart/hello.dart new file mode 100644 index 00000000..f6cb394b --- /dev/null +++ b/code/Dart/hello.dart @@ -0,0 +1,3 @@ +void main() { + print('Hello, World!'); +} \ No newline at end of file From 4f39588ca6dc340fde138fece598b1d006540780 Mon Sep 17 00:00:00 2001 From: Varun Vishal <47146480+varunvishal10@users.noreply.github.com> Date: Wed, 2 Oct 2019 19:16:56 +0530 Subject: [PATCH 067/481] Update CONTRIBUTORS.md --- CONTRIBUTORS.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index d9725189..1ff067fd 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -19,4 +19,5 @@ - [Samuel Tonini](https://github.com/samuel-tonini) - [Thomas Windt](https://github.com/WOLFI3654) - [Tim Solokha](https://github.com/TimSolokha) +- [Varun Vishal](https://github.com/varunvishal10) - [viewless](https://github.com/viewless) From 323f2d255ac9fda7a5d738005a4cea09f22103a7 Mon Sep 17 00:00:00 2001 From: iamhritik55 <56077574+iamhritik55@users.noreply.github.com> Date: Wed, 2 Oct 2019 19:28:13 +0530 Subject: [PATCH 068/481] Create Hello WOrld in c.c --- code/C/Hello WOrld in c.c | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 code/C/Hello WOrld in c.c diff --git a/code/C/Hello WOrld in c.c b/code/C/Hello WOrld in c.c new file mode 100644 index 00000000..63476d6e --- /dev/null +++ b/code/C/Hello WOrld in c.c @@ -0,0 +1,8 @@ +#include + +int main() +{ +printf("Hello world"); + +return 0; +} From 5222e9d322ced7881287f421e8ec1f1a0dd0e54b Mon Sep 17 00:00:00 2001 From: T0NZ Date: Wed, 2 Oct 2019 21:40:10 +0700 Subject: [PATCH 069/481] update name --- CONTRIBUTORS.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index d9725189..82dcbe04 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -20,3 +20,4 @@ - [Thomas Windt](https://github.com/WOLFI3654) - [Tim Solokha](https://github.com/TimSolokha) - [viewless](https://github.com/viewless) +- [tonzsm](https://github.com/tonzsm) From 539d2bd1e00092d394d3dc3b0a50600e26534490 Mon Sep 17 00:00:00 2001 From: Rounak Agarwal Date: Wed, 2 Oct 2019 22:10:39 +0530 Subject: [PATCH 070/481] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 659e8aa0..74b1c564 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ # Welcome to Hello-World -This repository serves as a learning tool for new contributors to open-source, but pull requests here won’t count toward Hacktoberfest. +This repository serves as a learning tool for new contributors to open-source, but ***pull requests here won’t count toward Hacktoberfest***. # Getting Started * Fork this repository on GitHub by clicking the Fork button in the top right of this page. From b4c2f281a0456d44438098185d8d425c6e6a63cf Mon Sep 17 00:00:00 2001 From: freder2002 <43769548+freder2002@users.noreply.github.com> Date: Wed, 2 Oct 2019 14:06:02 -0400 Subject: [PATCH 071/481] created freder2002 --- profiles/freder2002 | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 profiles/freder2002 diff --git a/profiles/freder2002 b/profiles/freder2002 new file mode 100644 index 00000000..01088bb9 --- /dev/null +++ b/profiles/freder2002 @@ -0,0 +1,14 @@ +# FRED BILO + +### USA + +### Student + +### Interests + +- Full stack +- Arduino + +### Profile Link + +[freder2002](https://github.com/freder2002) From adf32c1974a30ee2030a66bebc05ebd87bb796c7 Mon Sep 17 00:00:00 2001 From: fref2 <48460624+fref2@users.noreply.github.com> Date: Wed, 2 Oct 2019 14:23:49 -0400 Subject: [PATCH 072/481] Created my hello world file --- code/JavaScript/HelloWorld | 1 + 1 file changed, 1 insertion(+) create mode 100644 code/JavaScript/HelloWorld diff --git a/code/JavaScript/HelloWorld b/code/JavaScript/HelloWorld new file mode 100644 index 00000000..940a3ff0 --- /dev/null +++ b/code/JavaScript/HelloWorld @@ -0,0 +1 @@ +console.log("Hello world!"); From 57c907c2f780be9545bf9496b7baed74af3ef2b1 Mon Sep 17 00:00:00 2001 From: fref2 <48460624+fref2@users.noreply.github.com> Date: Wed, 2 Oct 2019 14:27:41 -0400 Subject: [PATCH 073/481] Created my profile! --- profiles/William_Roy | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 profiles/William_Roy diff --git a/profiles/William_Roy b/profiles/William_Roy new file mode 100644 index 00000000..8194b126 --- /dev/null +++ b/profiles/William_Roy @@ -0,0 +1,21 @@ +## Name +William Roy +### Bio +An awesome studen just learning code. + +### Location +Quebec City , canda + +### Projects +So far none! + +### Hobbies & Interests +Huge fan of ufc and football. Also i like reading :)! + +### Profiles +https://github.com/fref2 + + + +[twitter-img]: https://i.imgur.com/wWzX9uB.png +[github-img]: https://i.imgur.com/9I6NRUm.png From bbdbda77596693a7b739a64637e4429f8b88d917 Mon Sep 17 00:00:00 2001 From: Rosario Date: Wed, 2 Oct 2019 20:44:58 +0200 Subject: [PATCH 074/481] Update CONTRIBUTORS.md --- CONTRIBUTORS.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index d9725189..8ce6dd9b 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -15,8 +15,10 @@ - [Mykola Balabash](https://github.com/twilderan) - [Ramy Fetteha](https://github.com/NoirFLamme) - [Randil Tennakoon](https://github.com/randiltennakoon) +- [Rosario Galioto] (https://github.com/tirannosario) - [Rounak Agarwal](https://github.com/agarwalrounak) - [Samuel Tonini](https://github.com/samuel-tonini) - [Thomas Windt](https://github.com/WOLFI3654) - [Tim Solokha](https://github.com/TimSolokha) - [viewless](https://github.com/viewless) + From e7213f99f95848caa9904d7d71b5995ee6c38e5b Mon Sep 17 00:00:00 2001 From: Rahul Rana Date: Thu, 3 Oct 2019 01:19:43 +0530 Subject: [PATCH 075/481] Create "Hello, World!" file Adding Hello, World for first pull request From https://github.com/agarwalrounak/Hello-World/blob/master/CONTRIBUTING.md Rahul Rana - https://github.com/rahulrana-exe --- code/C++/Hello, World! | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 code/C++/Hello, World! diff --git a/code/C++/Hello, World! b/code/C++/Hello, World! new file mode 100644 index 00000000..9fbfa4f7 --- /dev/null +++ b/code/C++/Hello, World! @@ -0,0 +1,6 @@ +#include +int main() +{ + std.cout<<"Hello, World!"; + return 1; +} From bf85c777a233fa63f0c9f707e1112a363a87a495 Mon Sep 17 00:00:00 2001 From: Neal Robben Date: Wed, 2 Oct 2019 22:50:11 +0200 Subject: [PATCH 076/481] Added powershell example --- code/Powershell/HelloWorld.ps1 | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 code/Powershell/HelloWorld.ps1 diff --git a/code/Powershell/HelloWorld.ps1 b/code/Powershell/HelloWorld.ps1 new file mode 100644 index 00000000..ab1dd70f --- /dev/null +++ b/code/Powershell/HelloWorld.ps1 @@ -0,0 +1,3 @@ + +Write-Host "Hello, World!" +read-host “Press any key to continue...” \ No newline at end of file From 35912de7b20e7432960d4ec13e42cd9edf892b9d Mon Sep 17 00:00:00 2001 From: Leon Do Date: Wed, 2 Oct 2019 20:37:29 -0400 Subject: [PATCH 077/481] Update CONTRIBUTORS.md --- CONTRIBUTORS.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index d9725189..e62577f3 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -1,5 +1,5 @@ -- [AAMIR AHMAD] (https://github.com/sickwiz) +- [AAMIR AHMAD](https://github.com/sickwiz) - [Ajey Prasand](https://github.com/ajeyprasand) - [Ankit Chahar](https://github.com/AnkitChahar) - [Ankit Sharma](https://github.com/AnkitSharmaOnGithub) From b6a51a4ca1697a9828b983aa8e53490253453e4f Mon Sep 17 00:00:00 2001 From: Kosasih Wahid Pramana Date: Thu, 3 Oct 2019 07:37:59 +0700 Subject: [PATCH 078/481] Create Kosasih.md --- profiles/Kosasih.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 profiles/Kosasih.md diff --git a/profiles/Kosasih.md b/profiles/Kosasih.md new file mode 100644 index 00000000..c11610fd --- /dev/null +++ b/profiles/Kosasih.md @@ -0,0 +1,20 @@ +## Ayan Goel + + +### Bio +Im newbie programmer who love reading something new + +### Location +Indonesia + +### Projects +Upself.id + +### Hobbies & Interests +Coding, Reading, Watching Movies, Playing Game + +###Profiles +[![GitHub][github-img]](https://github.com/criedchild) + + +[github-img]: https://i.imgur.com/9I6NRUm.png From f7b1ee68c1a48ba7f46c8476480d84654f6091ea Mon Sep 17 00:00:00 2001 From: "jatin.jt.narula" Date: Thu, 3 Oct 2019 14:36:46 +0530 Subject: [PATCH 079/481] jatin arula added to contributors.md file --- CONTRIBUTORS.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index d9725189..1a354a0e 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -9,6 +9,7 @@ - [Corbin Taylor](https://github.com/cjtaylor1990) - [Cresencio Flores](https://github.com/CresencioF) - [Emmanuel Ezenwigbo](https://github.com/SkyC0der) +- [Jatin Narula](https://github.com/jatin96) - [Kevin Ward](https://github.com/Blueward12) - [Loris Gabriele](https://github.com/Pyr0x1) - [Luciano Santos](https://github.com/lucianosz7) From 4f2003add8e935df4c9c9606e36480cf8a4504b4 Mon Sep 17 00:00:00 2001 From: chandra mouli Date: Thu, 3 Oct 2019 15:09:07 +0530 Subject: [PATCH 080/481] created hello world program in shell script --- code/Shell/shellscript.sh | 1 + 1 file changed, 1 insertion(+) create mode 100644 code/Shell/shellscript.sh diff --git a/code/Shell/shellscript.sh b/code/Shell/shellscript.sh new file mode 100644 index 00000000..bba153ac --- /dev/null +++ b/code/Shell/shellscript.sh @@ -0,0 +1 @@ +echo "Hello world" From 3cd4bd5a56c24c907e48003aa726f47d24912544 Mon Sep 17 00:00:00 2001 From: chandra mouli Date: Thu, 3 Oct 2019 15:11:35 +0530 Subject: [PATCH 081/481] Added my name to contributors --- CONTRIBUTORS.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index d9725189..26a95961 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -6,6 +6,7 @@ - [Ayan Goel](https://github.com/GAyan17) - [CaffeinatedCod3r](https://github.com/CaffeinatedCod3r) - [CherryKitten](https://github.com/CherryKitten) +- [Chandra Mouli](https://github.com/codechandra) - [Corbin Taylor](https://github.com/cjtaylor1990) - [Cresencio Flores](https://github.com/CresencioF) - [Emmanuel Ezenwigbo](https://github.com/SkyC0der) From 9396e97e117265b8196c174e40e5b27ec79f71a0 Mon Sep 17 00:00:00 2001 From: chandra mouli Date: Thu, 3 Oct 2019 15:14:47 +0530 Subject: [PATCH 082/481] Added my Bio --- profiles/chandra_mouli.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 profiles/chandra_mouli.md diff --git a/profiles/chandra_mouli.md b/profiles/chandra_mouli.md new file mode 100644 index 00000000..345d435e --- /dev/null +++ b/profiles/chandra_mouli.md @@ -0,0 +1,21 @@ +##NAME +Chandra mouli yerraguntla + +### BIO +I am a programmer + +### Location +INDIA + +### Projects +Built an app + +### Hobbies & Interests +coding + +### Profiles +[![GitHub][github-img]](https://github.com/codechandra) + + +[twitter-img]: https://i.imgur.com/wWzX9uB.png +[github-img]: https://i.imgur.com/9I6NRUm.png From 9567a16b6dd139381747b737feb24c661154e73a Mon Sep 17 00:00:00 2001 From: Amit Dutta Date: Thu, 3 Oct 2019 18:21:08 +0530 Subject: [PATCH 083/481] Added all 3 tasks for Hactoberfest --- CONTRIBUTORS.md | 1 + code/C++/Hello_World.cpp | 9 +++++++++ profiles/Amit_Dutta.md | 21 +++++++++++++++++++++ 3 files changed, 31 insertions(+) create mode 100644 code/C++/Hello_World.cpp create mode 100644 profiles/Amit_Dutta.md diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index d9725189..0c7e7243 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -1,6 +1,7 @@ - [AAMIR AHMAD] (https://github.com/sickwiz) - [Ajey Prasand](https://github.com/ajeyprasand) +- [Amit Dutta](https://github.com/Amitdutta7) - [Ankit Chahar](https://github.com/AnkitChahar) - [Ankit Sharma](https://github.com/AnkitSharmaOnGithub) - [Ayan Goel](https://github.com/GAyan17) diff --git a/code/C++/Hello_World.cpp b/code/C++/Hello_World.cpp new file mode 100644 index 00000000..b6a792d0 --- /dev/null +++ b/code/C++/Hello_World.cpp @@ -0,0 +1,9 @@ +#include + +using namespace std; + +int main() +{ + cout << "Hello World" << endl; + return 0; +} diff --git a/profiles/Amit_Dutta.md b/profiles/Amit_Dutta.md new file mode 100644 index 00000000..cf55e889 --- /dev/null +++ b/profiles/Amit_Dutta.md @@ -0,0 +1,21 @@ +## Amit Dutta + +### Bio +I am a sophmore persuing Computer Science from BIT Mesra. I started coding in my freshman year and absolutely fell in love with it. The power of building anything right after you learn something is really fascinating to me. I am new to open source but I truly love this concept after I discovered it. + +### Location +India + +### Projects +- MapIT: Built a weather predicting python app using OpenWeatherMap API. It tells you the weather based on your location or IP Address. + +### Hobbies & Interests +- Playing basketball +- Programming + +### Profiles +[![GitHub][github-img]](https://github.com/Amitdutta7) + + +[twitter-img]: https://i.imgur.com/wWzX9uB.png +[github-img]: https://i.imgur.com/9I6NRUm.png \ No newline at end of file From ff0c978bf57d07badeda6bc448734161ca4928ba Mon Sep 17 00:00:00 2001 From: Saransh Kumar Date: Thu, 3 Oct 2019 19:22:22 +0530 Subject: [PATCH 084/481] Create helloworld_cryptosingh --- code/C/helloworld_cryptosingh.c | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 code/C/helloworld_cryptosingh.c diff --git a/code/C/helloworld_cryptosingh.c b/code/C/helloworld_cryptosingh.c new file mode 100644 index 00000000..dd00e081 --- /dev/null +++ b/code/C/helloworld_cryptosingh.c @@ -0,0 +1,7 @@ +#include + +int main() +{ + printf("Hello World"); + return 0; +} From d7fabbd34423b89ac284ff3f4c5c64ae2ba84e86 Mon Sep 17 00:00:00 2001 From: Ricardo Borges Date: Thu, 3 Oct 2019 11:03:38 -0300 Subject: [PATCH 085/481] My contribution --- CONTRIBUTORS.md | 1 + code/JavaScript/helloWerlld.js | 1 + profiles/Ricardo_Borges.md | 22 ++++++++++++++++++++++ 3 files changed, 24 insertions(+) create mode 100644 code/JavaScript/helloWerlld.js create mode 100644 profiles/Ricardo_Borges.md diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index d9725189..87baf6c1 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -20,3 +20,4 @@ - [Thomas Windt](https://github.com/WOLFI3654) - [Tim Solokha](https://github.com/TimSolokha) - [viewless](https://github.com/viewless) +- [Ricardo Borges](https://github.com/ricardo93borges) diff --git a/code/JavaScript/helloWerlld.js b/code/JavaScript/helloWerlld.js new file mode 100644 index 00000000..3a6e35ad --- /dev/null +++ b/code/JavaScript/helloWerlld.js @@ -0,0 +1 @@ +console.log("Hello Werlld!"); diff --git a/profiles/Ricardo_Borges.md b/profiles/Ricardo_Borges.md new file mode 100644 index 00000000..660457af --- /dev/null +++ b/profiles/Ricardo_Borges.md @@ -0,0 +1,22 @@ +## Your Name +Ricardo Borges + +### Bio +Creative Software Engineer + +### Location +Brazil, RS. + +### Projects +I'm currently working on a digital wallet. + +### Hobbies & Interests +Code, Games and Art. + +### Profiles +[![GitHub][github-img]](https://github.com/ricardo93borges) +[![Twitter][twitter-img]](https://twitter.com/) + + +[twitter-img]: https://i.imgur.com/wWzX9uB.png +[github-img]: https://i.imgur.com/9I6NRUm.png \ No newline at end of file From c5eda95c25951c0516f54393fc7821db0e538d54 Mon Sep 17 00:00:00 2001 From: Priyal Sobti Date: Thu, 3 Oct 2019 20:15:12 +0530 Subject: [PATCH 086/481] HelloWorld In java --- hello_world.java | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 hello_world.java diff --git a/hello_world.java b/hello_world.java new file mode 100644 index 00000000..83eb9ab2 --- /dev/null +++ b/hello_world.java @@ -0,0 +1,6 @@ + +class Solution{ + public static void main(String args[]){ + System.out.println("Hello World"); + } +} From 1bd73ec9b9b890190f2467a1c6b5ad8161ebeb58 Mon Sep 17 00:00:00 2001 From: Thomas Windt Date: Thu, 3 Oct 2019 17:08:49 +0200 Subject: [PATCH 087/481] Pikalang Signed-off-by: Thomas Windt --- code/Pikalang/hello world.txt | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 code/Pikalang/hello world.txt diff --git a/code/Pikalang/hello world.txt b/code/Pikalang/hello world.txt new file mode 100644 index 00000000..4e1fbdc2 --- /dev/null +++ b/code/Pikalang/hello world.txt @@ -0,0 +1,7 @@ +pi pi pi pi pi pi pi pi pi pi pika pipi pi pi pi pi pi pi pi pipi pi pi +pi pi pi pi pi pi pi pi pipi pi pi pi pipi pi pichu pichu pichu pichu ka +chu pipi pi pi pikachu pipi pi pikachu pi pi pi pi pi pi pi pikachu +pikachu pi pi pi pikachu pipi pi pi pikachu pichu pichu pi pi pi pi pi +pi pi pi pi pi pi pi pi pi pi pikachu pipi pikachu pi pi pi pikachu ka +ka ka ka ka ka pikachu ka ka ka ka ka ka ka ka pikachu pipi pi pikachu +pipi pikachu \ No newline at end of file From ece026821067df49644424ec7184d117bacf617c Mon Sep 17 00:00:00 2001 From: Aamir Ahmad Date: Thu, 3 Oct 2019 21:04:58 +0530 Subject: [PATCH 088/481] created hello world in c++ --- code/C++/hola.cpp | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 code/C++/hola.cpp diff --git a/code/C++/hola.cpp b/code/C++/hola.cpp new file mode 100644 index 00000000..d79e1815 --- /dev/null +++ b/code/C++/hola.cpp @@ -0,0 +1,6 @@ +#include +using namespace std; +int main() +{ +cout<<"hello world"; +} From c472718896ad9d3f48020235892580dcf610d048 Mon Sep 17 00:00:00 2001 From: Aamir Ahmad Date: Thu, 3 Oct 2019 21:34:18 +0530 Subject: [PATCH 089/481] updated Aamir_Ahmad.md --- profiles/Aamir_Ahmad.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/profiles/Aamir_Ahmad.md b/profiles/Aamir_Ahmad.md index e0a65051..c6275ec2 100644 --- a/profiles/Aamir_Ahmad.md +++ b/profiles/Aamir_Ahmad.md @@ -8,7 +8,7 @@ NOIDA,INDIA. ## PROJECTS ## 1- I made a project on smart parking systems in my first semester of Bachelors in Computer Science. -2- Currently working on a web application which is a college based Journey planner. +2- Currently working on a web application alongwith three team members, which is a college based Journey planner. ## HOBBIES ## From a8694705795e265bb223bee53af5b3cb6b56a559 Mon Sep 17 00:00:00 2001 From: Anshu Kumari <49068474+anshukcse@users.noreply.github.com> Date: Thu, 3 Oct 2019 22:07:20 +0530 Subject: [PATCH 090/481] Update CONTRIBUTORS.md --- CONTRIBUTORS.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index d9725189..1443276f 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -3,6 +3,7 @@ - [Ajey Prasand](https://github.com/ajeyprasand) - [Ankit Chahar](https://github.com/AnkitChahar) - [Ankit Sharma](https://github.com/AnkitSharmaOnGithub) +- [Anshu Kumari](https://github.com/anshukcse) - [Ayan Goel](https://github.com/GAyan17) - [CaffeinatedCod3r](https://github.com/CaffeinatedCod3r) - [CherryKitten](https://github.com/CherryKitten) From 37f2b7fe0cff8255c1a33706b87972b8b52999c8 Mon Sep 17 00:00:00 2001 From: Anshu Kumari <49068474+anshukcse@users.noreply.github.com> Date: Thu, 3 Oct 2019 22:18:34 +0530 Subject: [PATCH 091/481] Create Anshu_Kumari.md --- profiles/Anshu_Kumari.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 profiles/Anshu_Kumari.md diff --git a/profiles/Anshu_Kumari.md b/profiles/Anshu_Kumari.md new file mode 100644 index 00000000..85986e33 --- /dev/null +++ b/profiles/Anshu_Kumari.md @@ -0,0 +1,21 @@ +## Anshu Kumari + +### Bio +Enthusiastic Learner + +### Location +Kolkata + +### Projects +Just for learning purpose. + +### Hobbies & Interests +Reading books and learning new interesting things. + +### Profiles +[![GitHub][github-img]](https://github.com/anshukcse) +[![Twitter][twitter-img]](https://twitter.com/anshukcse) + + +[twitter-img]: https://i.imgur.com/wWzX9uB.png +[github-img]: https://i.imgur.com/9I6NRUm.png From 7ac8ddfb21c6c391f17ba03f26af593be6198313 Mon Sep 17 00:00:00 2001 From: Adrian Martin <55789525+amgdevelop@users.noreply.github.com> Date: Thu, 3 Oct 2019 19:29:45 +0200 Subject: [PATCH 092/481] Update CONTRIBUTORS.md --- CONTRIBUTORS.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index d9725189..1ecbd46a 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -1,6 +1,7 @@ - [AAMIR AHMAD] (https://github.com/sickwiz) - [Ajey Prasand](https://github.com/ajeyprasand) + [Adrian Martin](https://github.com/amgdevelop) - [Ankit Chahar](https://github.com/AnkitChahar) - [Ankit Sharma](https://github.com/AnkitSharmaOnGithub) - [Ayan Goel](https://github.com/GAyan17) From c65bba0b8022b526b4217e76876a70c5bda7166d Mon Sep 17 00:00:00 2001 From: Jose Purba Date: Fri, 4 Oct 2019 03:23:52 +0700 Subject: [PATCH 093/481] Create hello_world.pas --- code/Pascal/hello_world.pas | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 code/Pascal/hello_world.pas diff --git a/code/Pascal/hello_world.pas b/code/Pascal/hello_world.pas new file mode 100644 index 00000000..18f066df --- /dev/null +++ b/code/Pascal/hello_world.pas @@ -0,0 +1,5 @@ +program hello_world; + +begin + write('hello world'); +end. From 5ddb0eb69a053acc433e5d76b2418d19014a1bf3 Mon Sep 17 00:00:00 2001 From: Jose Purba Date: Fri, 4 Oct 2019 03:28:30 +0700 Subject: [PATCH 094/481] Create Jose_Purba.md --- profiles/Jose_Purba.md | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 profiles/Jose_Purba.md diff --git a/profiles/Jose_Purba.md b/profiles/Jose_Purba.md new file mode 100644 index 00000000..86ef80cb --- /dev/null +++ b/profiles/Jose_Purba.md @@ -0,0 +1,5 @@ +# Jose Purba +Hey, there! I study Computer Science + +### Location +Bandung, Indonesia From a8db575a6356b88594752eb2c9e6d4248418779b Mon Sep 17 00:00:00 2001 From: dark-shadow7 Date: Fri, 4 Oct 2019 02:35:01 +0530 Subject: [PATCH 095/481] created hello world in cpp --- code/C++/hellovi_world.cpp | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 code/C++/hellovi_world.cpp diff --git a/code/C++/hellovi_world.cpp b/code/C++/hellovi_world.cpp new file mode 100644 index 00000000..9ef4648f --- /dev/null +++ b/code/C++/hellovi_world.cpp @@ -0,0 +1,6 @@ +#include +using namespace std; +int main() +{ +cout<<"HELLO WORLD"; +} From 9e823353d0369aa7b1371652045a74e2914040a1 Mon Sep 17 00:00:00 2001 From: dark-shadow7 Date: Fri, 4 Oct 2019 03:04:14 +0530 Subject: [PATCH 096/481] updated CONTRIBUTORS.md,hellovi_world.cpp and dark-shadow7.md --- CONTRIBUTORS.md | 1 + code/C++/hellovi_world.cpp | 2 +- profiles/dark-shadow7.md | 21 +++++++++++++++++++++ 3 files changed, 23 insertions(+), 1 deletion(-) create mode 100644 profiles/dark-shadow7.md diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index d9725189..4933ef28 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -8,6 +8,7 @@ - [CherryKitten](https://github.com/CherryKitten) - [Corbin Taylor](https://github.com/cjtaylor1990) - [Cresencio Flores](https://github.com/CresencioF) +- [dark-shadow7](https://github.com/dark-shadow7) - [Emmanuel Ezenwigbo](https://github.com/SkyC0der) - [Kevin Ward](https://github.com/Blueward12) - [Loris Gabriele](https://github.com/Pyr0x1) diff --git a/code/C++/hellovi_world.cpp b/code/C++/hellovi_world.cpp index 9ef4648f..d6f7de11 100644 --- a/code/C++/hellovi_world.cpp +++ b/code/C++/hellovi_world.cpp @@ -2,5 +2,5 @@ using namespace std; int main() { -cout<<"HELLO WORLD"; +cout<<"Hello World"; } diff --git a/profiles/dark-shadow7.md b/profiles/dark-shadow7.md new file mode 100644 index 00000000..4010a2a7 --- /dev/null +++ b/profiles/dark-shadow7.md @@ -0,0 +1,21 @@ +VIVEK DWIVEDI AKA dark-shadow7 + +## BIO ## + +My field of interest are :cyber security and web development with little bit exprience in compatative programming in language cpp + + +## projects ## + +1.I have develope the smart suggestion system in the file using file handling and language cpp +2.currently i am working on the college project which is based on the journey planning + +## hobbies ## +read cyber security related blogs and and peek into the computer related hardware and try to design something new + +## profile ## +[![GitHub][github-img]](https://github.com/dark-shadow7) + + +[twitter-img]: https://i.imgur.com/wWzX9u8.png +[twitter-img]: https://i.imgur.com/9I6NRUm From 84196cf2ad61e0f36c6ce50884708c80c02e47eb Mon Sep 17 00:00:00 2001 From: joaovitorml Date: Thu, 3 Oct 2019 18:37:54 -0300 Subject: [PATCH 097/481] Creating my profile --- profiles/Joao_Vitor.md | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 profiles/Joao_Vitor.md diff --git a/profiles/Joao_Vitor.md b/profiles/Joao_Vitor.md new file mode 100644 index 00000000..e7a0b169 --- /dev/null +++ b/profiles/Joao_Vitor.md @@ -0,0 +1,22 @@ +# My Profile + +## Bio + +Hello, my name is João Vítor Morandi Lemos and i'm in my fourth year of software engineering + +### Location: Brazil + +## Interests + +- Coding +- App and web development +- Chess +- Videogames + +## Contact Links + +- [Github](https://github.com/joaovitorml) +- [Gitlab](https://gitlab.com/JVML) +- [Facebook](https://www.facebook.com/joaovitor.ml.7?ref=bookmarks) +- [Linkedin](https://www.linkedin.com/in/jo%C3%A3o-v%C3%ADtor-morandi-lemos-481bb8181/) +- [Chess.com](https://www.chess.com/member/nereidson) From f5fd6d7a7b4650f8e05ed5610c26b2cf8a034674 Mon Sep 17 00:00:00 2001 From: joaovitorml Date: Thu, 3 Oct 2019 18:59:10 -0300 Subject: [PATCH 098/481] Adding helloWorld codes for C++, Java and python. --- code/C++/hello_world.cpp | 16 ++++++++++++++++ code/Java/HelloWorldMain.java | 18 ++++++++++++++++++ code/Python/HelloWorld.py | 1 + 3 files changed, 35 insertions(+) create mode 100644 code/C++/hello_world.cpp create mode 100644 code/Java/HelloWorldMain.java create mode 100644 code/Python/HelloWorld.py diff --git a/code/C++/hello_world.cpp b/code/C++/hello_world.cpp new file mode 100644 index 00000000..39679677 --- /dev/null +++ b/code/C++/hello_world.cpp @@ -0,0 +1,16 @@ +#include + +using namespace std; + +void sayHelloWorld(string x){ + cout << x << endl; +} + +int main(){ + + string helloworld = "Hello world!"; + sayHelloWorld(helloworld); + + return 0; + +} \ No newline at end of file diff --git a/code/Java/HelloWorldMain.java b/code/Java/HelloWorldMain.java new file mode 100644 index 00000000..8bc1e2ba --- /dev/null +++ b/code/Java/HelloWorldMain.java @@ -0,0 +1,18 @@ +public class HelloWorldMain { + + public static String line; + + + public static void main(String[] args) { + + line = insertingLine(line); + System.out.println(line); + + } + + + public static String insertingLine(String x){ + x = "Hello World!"; + return x; + } +} \ No newline at end of file diff --git a/code/Python/HelloWorld.py b/code/Python/HelloWorld.py new file mode 100644 index 00000000..8e235769 --- /dev/null +++ b/code/Python/HelloWorld.py @@ -0,0 +1 @@ +print("Hello World") \ No newline at end of file From a20ad622c9301ea6f8d0091dbf1aa53f3b970a56 Mon Sep 17 00:00:00 2001 From: joaovitorml Date: Thu, 3 Oct 2019 19:02:32 -0300 Subject: [PATCH 099/481] Adding my name to contributors archive. --- CONTRIBUTORS.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index d9725189..d5449879 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -9,6 +9,7 @@ - [Corbin Taylor](https://github.com/cjtaylor1990) - [Cresencio Flores](https://github.com/CresencioF) - [Emmanuel Ezenwigbo](https://github.com/SkyC0der) +- [João Vítor Morandi Lemos](https://github.com/joaovitorml) - [Kevin Ward](https://github.com/Blueward12) - [Loris Gabriele](https://github.com/Pyr0x1) - [Luciano Santos](https://github.com/lucianosz7) From 233a0d262d17ec234cf8775e31e02327e34471ad Mon Sep 17 00:00:00 2001 From: Rounak Agarwal Date: Fri, 4 Oct 2019 11:25:18 +0530 Subject: [PATCH 100/481] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 74b1c564..d06cda65 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ # Welcome to Hello-World -This repository serves as a learning tool for new contributors to open-source, but ***pull requests here won’t count toward Hacktoberfest***. +### This repository serves as a learning tool for new contributors to open-source, but ***pull requests here won’t count toward Hacktoberfest***. # Getting Started * Fork this repository on GitHub by clicking the Fork button in the top right of this page. From 780411b6bdc4521f7c9667cc85e4569aa4b7e723 Mon Sep 17 00:00:00 2001 From: Rounak Agarwal Date: Fri, 4 Oct 2019 11:32:15 +0530 Subject: [PATCH 101/481] Rename aj to aj.md --- profiles/{aj => aj.md} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename profiles/{aj => aj.md} (100%) diff --git a/profiles/aj b/profiles/aj.md similarity index 100% rename from profiles/aj rename to profiles/aj.md From 15ac61532eeee48aef993188a60c8ee00373ccbb Mon Sep 17 00:00:00 2001 From: Rounak Agarwal Date: Fri, 4 Oct 2019 11:42:04 +0530 Subject: [PATCH 102/481] Update Sahildeep_Singh.md --- profiles/Sahildeep_Singh.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/profiles/Sahildeep_Singh.md b/profiles/Sahildeep_Singh.md index a614e0e7..15c9c311 100644 --- a/profiles/Sahildeep_Singh.md +++ b/profiles/Sahildeep_Singh.md @@ -17,5 +17,5 @@ India. [![Twitter][twitter-img]](https://twitter.com/sforsaahil) -[twitter-img]: +[twitter-img]: https://i.imgur.com/wWzX9uB.png [github-img]: https://i.imgur.com/9I6NRUm.png From c7caca3887f68bf6061ee98c8fc9d417e05d2f45 Mon Sep 17 00:00:00 2001 From: Rounak Agarwal Date: Fri, 4 Oct 2019 11:49:05 +0530 Subject: [PATCH 103/481] Rename Hritik_soni to Hritik_soni.md --- profiles/{Hritik_soni => Hritik_soni.md} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename profiles/{Hritik_soni => Hritik_soni.md} (100%) diff --git a/profiles/Hritik_soni b/profiles/Hritik_soni.md similarity index 100% rename from profiles/Hritik_soni rename to profiles/Hritik_soni.md From fa76b4931d02d7cae1c056d7132ea468a4d0cc24 Mon Sep 17 00:00:00 2001 From: Rounak Agarwal Date: Fri, 4 Oct 2019 11:56:05 +0530 Subject: [PATCH 104/481] Rename freder2002 to freder2002.md --- profiles/{freder2002 => freder2002.md} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename profiles/{freder2002 => freder2002.md} (100%) diff --git a/profiles/freder2002 b/profiles/freder2002.md similarity index 100% rename from profiles/freder2002 rename to profiles/freder2002.md From 4156ac08ac738b694582dd898997188f2edf7341 Mon Sep 17 00:00:00 2001 From: Rounak Agarwal Date: Fri, 4 Oct 2019 11:59:04 +0530 Subject: [PATCH 105/481] Rename William_Roy to William_Roy.md --- profiles/{William_Roy => William_Roy.md} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename profiles/{William_Roy => William_Roy.md} (100%) diff --git a/profiles/William_Roy b/profiles/William_Roy.md similarity index 100% rename from profiles/William_Roy rename to profiles/William_Roy.md From 2d71a51f1c86ab07ffe408baaaff095ec3f765a3 Mon Sep 17 00:00:00 2001 From: Rounak Agarwal Date: Fri, 4 Oct 2019 15:19:11 +0530 Subject: [PATCH 106/481] Rename Hello_World.cpp to Hello_World_.cpp --- code/C++/{Hello_World.cpp => Hello_World_.cpp} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename code/C++/{Hello_World.cpp => Hello_World_.cpp} (100%) diff --git a/code/C++/Hello_World.cpp b/code/C++/Hello_World_.cpp similarity index 100% rename from code/C++/Hello_World.cpp rename to code/C++/Hello_World_.cpp From 71fcbc76bb3cf977700fc23dd677f1a995455d66 Mon Sep 17 00:00:00 2001 From: Erol Aliyev Date: Fri, 4 Oct 2019 12:57:49 +0200 Subject: [PATCH 107/481] Update CONTRIBUTORS.md Added my name to CONTRIBUTORS.md --- CONTRIBUTORS.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index a61eec30..2768c047 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -13,6 +13,7 @@ - [Cresencio Flores](https://github.com/CresencioF) - [dark-shadow7](https://github.com/dark-shadow7) - [Emmanuel Ezenwigbo](https://github.com/SkyC0der) +- [Erol Aliyev](https://github.com/erolaliyev) - [Jatin Narula](https://github.com/jatin96) - [João Vítor Morandi Lemos](https://github.com/joaovitorml) - [Kevin Ward](https://github.com/Blueward12) From 5f958f44a225c2575598edab99843d113a0475bf Mon Sep 17 00:00:00 2001 From: pbisaria007 <44259814+pbisaria007@users.noreply.github.com> Date: Fri, 4 Oct 2019 21:06:44 +0530 Subject: [PATCH 108/481] Create HELLO-WORLD.py --- code/Python/HELLO-WORLD.py | 1 + 1 file changed, 1 insertion(+) create mode 100644 code/Python/HELLO-WORLD.py diff --git a/code/Python/HELLO-WORLD.py b/code/Python/HELLO-WORLD.py new file mode 100644 index 00000000..bd491fe1 --- /dev/null +++ b/code/Python/HELLO-WORLD.py @@ -0,0 +1 @@ +print("HELLO-WORLD!") From bf170f190eccc5fd0970428ad97db8a53013938b Mon Sep 17 00:00:00 2001 From: sandeepism <35538851+sandeepism@users.noreply.github.com> Date: Fri, 4 Oct 2019 22:38:15 +0530 Subject: [PATCH 109/481] Create hello_world.cpp --- hello_world.cpp | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 hello_world.cpp diff --git a/hello_world.cpp b/hello_world.cpp new file mode 100644 index 00000000..5aa88398 --- /dev/null +++ b/hello_world.cpp @@ -0,0 +1,6 @@ +#include +using namespace std; +int main() +{ +cout<<"hello world"< Date: Sat, 5 Oct 2019 01:38:04 +0800 Subject: [PATCH 110/481] Create hello-world.lisp --- code/CommonLisp/hello-world.lisp | 1 + 1 file changed, 1 insertion(+) create mode 100644 code/CommonLisp/hello-world.lisp diff --git a/code/CommonLisp/hello-world.lisp b/code/CommonLisp/hello-world.lisp new file mode 100644 index 00000000..6002d275 --- /dev/null +++ b/code/CommonLisp/hello-world.lisp @@ -0,0 +1 @@ +(format t "Hello, world!%") From 5ef26c319004aff74b2ae65391b35bfe0bcc0ec1 Mon Sep 17 00:00:00 2001 From: Momozor Date: Sat, 5 Oct 2019 01:39:44 +0800 Subject: [PATCH 111/481] Update CONTRIBUTORS.md --- CONTRIBUTORS.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index a61eec30..d229bc83 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -18,6 +18,7 @@ - [Kevin Ward](https://github.com/Blueward12) - [Loris Gabriele](https://github.com/Pyr0x1) - [Luciano Santos](https://github.com/lucianosz7) +- [Momozor](https://github.com/momozor) - [Mykola Balabash](https://github.com/twilderan) - [Ramy Fetteha](https://github.com/NoirFLamme) - [Randil Tennakoon](https://github.com/randiltennakoon) From 8f411a260237979e1bba577bbf4837c466bcd382 Mon Sep 17 00:00:00 2001 From: Momozor Date: Sat, 5 Oct 2019 01:45:31 +0800 Subject: [PATCH 112/481] Create Momozor.md --- profiles/Momozor.md | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 profiles/Momozor.md diff --git a/profiles/Momozor.md b/profiles/Momozor.md new file mode 100644 index 00000000..fd1914b9 --- /dev/null +++ b/profiles/Momozor.md @@ -0,0 +1,22 @@ +## Momozor + +### Bio +A lisper that programs for fun. + +### Location +Home Sweet Home. + +### Projects +- https://github.com/momozor/blue-beanie +- https://github.com/momozor/Saurna + +### Hobbies & Interests +Music, cats, books. + +### Profiles +[![GitHub][github-img]](https://github.com/momozor) +[![Twitter][twitter-img]](Link to Twitter profile) + + +[twitter-img]: https://i.imgur.com/wWzX9uB.png +[github-img]: https://i.imgur.com/9I6NRUm.png From ec607e7473849a82c83c829d9c81b020ea2702ba Mon Sep 17 00:00:00 2001 From: Momozor Date: Sat, 5 Oct 2019 01:46:13 +0800 Subject: [PATCH 113/481] Update Momozor.md --- profiles/Momozor.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/profiles/Momozor.md b/profiles/Momozor.md index fd1914b9..51bec1e1 100644 --- a/profiles/Momozor.md +++ b/profiles/Momozor.md @@ -15,8 +15,6 @@ Music, cats, books. ### Profiles [![GitHub][github-img]](https://github.com/momozor) -[![Twitter][twitter-img]](Link to Twitter profile) -[twitter-img]: https://i.imgur.com/wWzX9uB.png [github-img]: https://i.imgur.com/9I6NRUm.png From f2c498bde96356adb351ba72103206ce4b0a3b7e Mon Sep 17 00:00:00 2001 From: quangdvn Date: Sat, 5 Oct 2019 00:58:15 +0700 Subject: [PATCH 114/481] YOUR_COMMIT_MESSAGE --- code/JavaScript/bye_world.js | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 code/JavaScript/bye_world.js diff --git a/code/JavaScript/bye_world.js b/code/JavaScript/bye_world.js new file mode 100644 index 00000000..12bfc553 --- /dev/null +++ b/code/JavaScript/bye_world.js @@ -0,0 +1,7 @@ +let date = new Date(); + +if (date.getHours() > 12) { + console.log('Hello World'); +} else { + console.log('Bye World'); +} From 91b26432d72424a31ee08688013de4967d9028ce Mon Sep 17 00:00:00 2001 From: Neal Robben Date: Fri, 4 Oct 2019 21:33:20 +0200 Subject: [PATCH 115/481] Added Typescript example --- code/Typescript/Helloworld.ts | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 code/Typescript/Helloworld.ts diff --git a/code/Typescript/Helloworld.ts b/code/Typescript/Helloworld.ts new file mode 100644 index 00000000..7d19edcd --- /dev/null +++ b/code/Typescript/Helloworld.ts @@ -0,0 +1,3 @@ + +var greeting: string = "Hello world"; +console.log(greeting); From f06923ac6cc002231479e96a6b9eefe80f9abfb3 Mon Sep 17 00:00:00 2001 From: Vlad Zaporozhskyi Date: Fri, 4 Oct 2019 22:17:52 -0400 Subject: [PATCH 116/481] Update CONTRIBUTORS.md --- CONTRIBUTORS.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index a61eec30..d718ae3a 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -31,3 +31,4 @@ - [Varun Vishal](https://github.com/varunvishal10) - [viewless](https://github.com/viewless) - [tonzsm](https://github.com/tonzsm) +- [Vlad Zaporozhskyi](https://github.com/thezapovlad) From f567c3576300d5e22a64c4b48b1fe53f5f50f434 Mon Sep 17 00:00:00 2001 From: retro-node <56121080+retro-node@users.noreply.github.com> Date: Sat, 5 Oct 2019 13:49:44 +0800 Subject: [PATCH 117/481] Create Helloworld_python.py --- code/Python/Helloworld_python.py | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 code/Python/Helloworld_python.py diff --git a/code/Python/Helloworld_python.py b/code/Python/Helloworld_python.py new file mode 100644 index 00000000..309a7888 --- /dev/null +++ b/code/Python/Helloworld_python.py @@ -0,0 +1,2 @@ +#Hello world by retro-node +print("Hello World") From ab13f5618ba2398cb1941ef64b3c7fd1348c43bd Mon Sep 17 00:00:00 2001 From: Mehul Garg Date: Sat, 5 Oct 2019 13:33:47 +0530 Subject: [PATCH 118/481] Update CONTRIBUTORS.md --- CONTRIBUTORS.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index a61eec30..d37a2c46 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -18,6 +18,7 @@ - [Kevin Ward](https://github.com/Blueward12) - [Loris Gabriele](https://github.com/Pyr0x1) - [Luciano Santos](https://github.com/lucianosz7) +- [Mehul Garg](https://github.com/gargmehul10) - [Mykola Balabash](https://github.com/twilderan) - [Ramy Fetteha](https://github.com/NoirFLamme) - [Randil Tennakoon](https://github.com/randiltennakoon) From 4be7a78413b40f81db6f0d97f0a23f3f1164ac1c Mon Sep 17 00:00:00 2001 From: Megha Agarwal Date: Sat, 5 Oct 2019 14:43:01 +0530 Subject: [PATCH 119/481] Happy coding --- CONTRIBUTORS.md | 1 + code/C/Hellu_World.c | 6 ++++++ 2 files changed, 7 insertions(+) create mode 100644 code/C/Hellu_World.c diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index a61eec30..65c618cd 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -19,6 +19,7 @@ - [Loris Gabriele](https://github.com/Pyr0x1) - [Luciano Santos](https://github.com/lucianosz7) - [Mykola Balabash](https://github.com/twilderan) +- [Megha Agarwal](https://github.com/meghaa105P) - [Ramy Fetteha](https://github.com/NoirFLamme) - [Randil Tennakoon](https://github.com/randiltennakoon) - [Ricardo Borges](https://github.com/ricardo93borges) diff --git a/code/C/Hellu_World.c b/code/C/Hellu_World.c new file mode 100644 index 00000000..1faa1852 --- /dev/null +++ b/code/C/Hellu_World.c @@ -0,0 +1,6 @@ +#include +void main() +{ + printf("Hello World"); + printf("Have fun while coding :)"); +} From be6620703aa9a1593b978f8972e4306ac4a9c470 Mon Sep 17 00:00:00 2001 From: Lilian Ferreira Date: Sat, 5 Oct 2019 11:44:53 +0100 Subject: [PATCH 120/481] CONTRIBUTORS.mb file modified --- CONTRIBUTORS.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index a61eec30..759d54f6 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -31,3 +31,4 @@ - [Varun Vishal](https://github.com/varunvishal10) - [viewless](https://github.com/viewless) - [tonzsm](https://github.com/tonzsm) +- [Lilian F](https://github.com/lilianferreira) From 35728c03a0f36ad538c032c9ef6e72ee96600a83 Mon Sep 17 00:00:00 2001 From: Lilian Ferreira Date: Sat, 5 Oct 2019 11:46:37 +0100 Subject: [PATCH 121/481] CONTRIBUTORS.mb file sorted --- CONTRIBUTORS.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 759d54f6..74e99e2f 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -16,6 +16,7 @@ - [Jatin Narula](https://github.com/jatin96) - [João Vítor Morandi Lemos](https://github.com/joaovitorml) - [Kevin Ward](https://github.com/Blueward12) +- [Lilian F](https://github.com/lilianferreira) - [Loris Gabriele](https://github.com/Pyr0x1) - [Luciano Santos](https://github.com/lucianosz7) - [Mykola Balabash](https://github.com/twilderan) @@ -31,4 +32,3 @@ - [Varun Vishal](https://github.com/varunvishal10) - [viewless](https://github.com/viewless) - [tonzsm](https://github.com/tonzsm) -- [Lilian F](https://github.com/lilianferreira) From f71a7a3fe883d1b5d6363e6733f0feea5c501211 Mon Sep 17 00:00:00 2001 From: nilesh Date: Sat, 5 Oct 2019 20:07:25 +0530 Subject: [PATCH 122/481] my commit' --- CONTRIBUTORS.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index a61eec30..c0209f17 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -31,3 +31,4 @@ - [Varun Vishal](https://github.com/varunvishal10) - [viewless](https://github.com/viewless) - [tonzsm](https://github.com/tonzsm) +- [nilesh](https://github.com/nileshsahitya9) From 9ccdd3978a735800bef897186387ef36461b9d76 Mon Sep 17 00:00:00 2001 From: lakkshh <43241138+lakkshh@users.noreply.github.com> Date: Sat, 5 Oct 2019 20:28:21 +0530 Subject: [PATCH 123/481] Rename Hello_World.cpp to Hello_World_in_CPP.cpp --- code/C++/Hello_World_in_CPP.cpp | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 code/C++/Hello_World_in_CPP.cpp diff --git a/code/C++/Hello_World_in_CPP.cpp b/code/C++/Hello_World_in_CPP.cpp new file mode 100644 index 00000000..13d2a040 --- /dev/null +++ b/code/C++/Hello_World_in_CPP.cpp @@ -0,0 +1,8 @@ + +#include +using namespace std; +int main() +{ + cout<<"Hello, World!"; + return 0; +} From 42ceb2f4a0701b23cf6fe9e944b665ad1a280868 Mon Sep 17 00:00:00 2001 From: lakkshh <43241138+lakkshh@users.noreply.github.com> Date: Sat, 5 Oct 2019 20:30:48 +0530 Subject: [PATCH 124/481] Create Lakshya_Gupta.md --- profiles/Lakshya_Gupta.md | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 profiles/Lakshya_Gupta.md diff --git a/profiles/Lakshya_Gupta.md b/profiles/Lakshya_Gupta.md new file mode 100644 index 00000000..9045b695 --- /dev/null +++ b/profiles/Lakshya_Gupta.md @@ -0,0 +1,24 @@ +LAKSHYA GUPTA +## BIO ## +Call me 'x' till you know the rest! + +## LOCATION ## +DELHI,INDIA. + + +## PROJECTS ## +1- I made a project on Hangman game in C++. + + +## HOBBIES ## +I do photography and love travelling to places! + + + +## PROFILES ## +[![GitHub][github-img]](https://github.com/lakkshh) +[![Twitter][twitter-img]](https://twitter.com/lakkshh) + +[twitter-img]: https://i.imgur.com/wWzX9uB.png +[twitter-img]:https://i.imgur.com/9I6NRUm + From 48167e0143885120cf83b79f37661884031c24a5 Mon Sep 17 00:00:00 2001 From: lakkshh <43241138+lakkshh@users.noreply.github.com> Date: Sat, 5 Oct 2019 20:31:56 +0530 Subject: [PATCH 125/481] Update Lakshya_Gupta.md --- profiles/Lakshya_Gupta.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/profiles/Lakshya_Gupta.md b/profiles/Lakshya_Gupta.md index 9045b695..56677794 100644 --- a/profiles/Lakshya_Gupta.md +++ b/profiles/Lakshya_Gupta.md @@ -16,7 +16,7 @@ I do photography and love travelling to places! ## PROFILES ## -[![GitHub][github-img]](https://github.com/lakkshh) +[![GitHub][github-img]](https://github.com/lakkshh/) [![Twitter][twitter-img]](https://twitter.com/lakkshh) [twitter-img]: https://i.imgur.com/wWzX9uB.png From dab0f2d4632aec49e2f741506b7b80791db39c8b Mon Sep 17 00:00:00 2001 From: lakkshh <43241138+lakkshh@users.noreply.github.com> Date: Sat, 5 Oct 2019 20:33:04 +0530 Subject: [PATCH 126/481] Update Lakshya_Gupta.md --- profiles/Lakshya_Gupta.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/profiles/Lakshya_Gupta.md b/profiles/Lakshya_Gupta.md index 56677794..84805d0c 100644 --- a/profiles/Lakshya_Gupta.md +++ b/profiles/Lakshya_Gupta.md @@ -20,5 +20,5 @@ I do photography and love travelling to places! [![Twitter][twitter-img]](https://twitter.com/lakkshh) [twitter-img]: https://i.imgur.com/wWzX9uB.png -[twitter-img]:https://i.imgur.com/9I6NRUm +[github-img]: https://i.imgur.com/9I6NRUm.png From 514f9b918fea76981e2a79520c0060d8f5bb10cf Mon Sep 17 00:00:00 2001 From: pragapraga Date: Sun, 6 Oct 2019 01:25:41 +0530 Subject: [PATCH 127/481] Added JavaHelloWorld and Name in Contributor list --- CONTRIBUTORS.md | 1 + code/Java/JavaHelloWorld.java | 5 +++++ 2 files changed, 6 insertions(+) create mode 100644 code/Java/JavaHelloWorld.java diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index a61eec30..6bd20719 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -19,6 +19,7 @@ - [Loris Gabriele](https://github.com/Pyr0x1) - [Luciano Santos](https://github.com/lucianosz7) - [Mykola Balabash](https://github.com/twilderan) +- [Pragadeeswaran Gnanasekaran](https://github.com/pragapraga) - [Ramy Fetteha](https://github.com/NoirFLamme) - [Randil Tennakoon](https://github.com/randiltennakoon) - [Ricardo Borges](https://github.com/ricardo93borges) diff --git a/code/Java/JavaHelloWorld.java b/code/Java/JavaHelloWorld.java new file mode 100644 index 00000000..aa6fb359 --- /dev/null +++ b/code/Java/JavaHelloWorld.java @@ -0,0 +1,5 @@ +class JavaHelloWorld{ + public static void main(string args[]){ + System.out.println("Hello World!!!!!"); + } +} \ No newline at end of file From 0a7ebf5ea63c0be72dc410c6a652ecf19f6dd32c Mon Sep 17 00:00:00 2001 From: Alyssa Columbus Date: Sat, 5 Oct 2019 16:22:46 -0700 Subject: [PATCH 128/481] Create hello_world.hs --- code/Haskell/hello_world.hs | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 code/Haskell/hello_world.hs diff --git a/code/Haskell/hello_world.hs b/code/Haskell/hello_world.hs new file mode 100644 index 00000000..ecf15d6d --- /dev/null +++ b/code/Haskell/hello_world.hs @@ -0,0 +1,2 @@ +main :: IO () +main = putStrLn "Hello, World!" From a9a1435af5ed65ae569546f8589719d86fd29a9a Mon Sep 17 00:00:00 2001 From: Alyssa Columbus Date: Sat, 5 Oct 2019 16:24:39 -0700 Subject: [PATCH 129/481] Update CONTRIBUTORS.md --- CONTRIBUTORS.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index a61eec30..1256f1fe 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -1,6 +1,7 @@ - [AAMIR AHMAD](https://github.com/sickwiz) - [Ajey Prasand](https://github.com/ajeyprasand) +- [Alyssa Columbus](https://github.com/acolum) - [Amit Dutta](https://github.com/Amitdutta7) - [Ankit Chahar](https://github.com/AnkitChahar) - [Ankit Sharma](https://github.com/AnkitSharmaOnGithub) From dee1c924666d7e9b8de54977df24fb2dcbc475a9 Mon Sep 17 00:00:00 2001 From: Dzun Nurroin Date: Sun, 6 Oct 2019 07:08:08 +0700 Subject: [PATCH 130/481] add dzun to contributors list --- CONTRIBUTORS.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index a61eec30..cf686d0a 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -31,3 +31,5 @@ - [Varun Vishal](https://github.com/varunvishal10) - [viewless](https://github.com/viewless) - [tonzsm](https://github.com/tonzsm) +- [DzunN86](https://github.com/DzunN86) + From ba915d4e102f692c8da7d766b320da8099a4efdc Mon Sep 17 00:00:00 2001 From: akshitak <42449006+akshitak@users.noreply.github.com> Date: Sun, 6 Oct 2019 18:31:52 +0530 Subject: [PATCH 131/481] 6Oct-1 --- CONTRIBUTORS.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index a61eec30..7d56cc75 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -1,6 +1,7 @@ - [AAMIR AHMAD](https://github.com/sickwiz) - [Ajey Prasand](https://github.com/ajeyprasand) +- [Akshi Tak](https://github.com/akshitak) - [Amit Dutta](https://github.com/Amitdutta7) - [Ankit Chahar](https://github.com/AnkitChahar) - [Ankit Sharma](https://github.com/AnkitSharmaOnGithub) From ec2131d892ab99f2a72c053b06466ca899de4542 Mon Sep 17 00:00:00 2001 From: Dentist Here Date: Sun, 6 Oct 2019 19:22:10 +0530 Subject: [PATCH 132/481] New Commit adding myself --- CONTRIBUTORS.md | 1 + code/PHP/helloworld.php | 4 ++-- code/PHP/index.php | 5 +++++ profiles/HRAnkit.md | 20 ++++++++++++++++++++ 4 files changed, 28 insertions(+), 2 deletions(-) create mode 100644 code/PHP/index.php create mode 100644 profiles/HRAnkit.md diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index a61eec30..d5d67dc4 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -13,6 +13,7 @@ - [Cresencio Flores](https://github.com/CresencioF) - [dark-shadow7](https://github.com/dark-shadow7) - [Emmanuel Ezenwigbo](https://github.com/SkyC0der) +- [HRAnkit](https://github.com/hrankit) - [Jatin Narula](https://github.com/jatin96) - [João Vítor Morandi Lemos](https://github.com/joaovitorml) - [Kevin Ward](https://github.com/Blueward12) diff --git a/code/PHP/helloworld.php b/code/PHP/helloworld.php index 71424bbb..f2260dcc 100644 --- a/code/PHP/helloworld.php +++ b/code/PHP/helloworld.php @@ -1,3 +1,3 @@ + echo 'Hello World!'; +?> diff --git a/code/PHP/index.php b/code/PHP/index.php new file mode 100644 index 00000000..329e76bf --- /dev/null +++ b/code/PHP/index.php @@ -0,0 +1,5 @@ + \ No newline at end of file diff --git a/profiles/HRAnkit.md b/profiles/HRAnkit.md new file mode 100644 index 00000000..8a523ea9 --- /dev/null +++ b/profiles/HRAnkit.md @@ -0,0 +1,20 @@ +## Ankit + +### Bio +Google Certified Android Developer. Good in PHP, MYSQL, VUE, NodeJS, CSS, HTML, etc. + +### Location +India + +### Projects +- Lots of Commercial as well as hobby projeccts + +### Hobbies & Interests +- Programming + +### Profiles +[![GitHub][github-img]](https://github.com/hrankit) + + +[twitter-img]: https://i.imgur.com/wWzX9uB.png +[github-img]: https://i.imgur.com/9I6NRUm.png \ No newline at end of file From adb225eaef0607021425765966fd7cf3e1238632 Mon Sep 17 00:00:00 2001 From: Rounak Agarwal Date: Mon, 7 Oct 2019 00:47:10 +0530 Subject: [PATCH 133/481] Rename hello_world.cpp to code/C++/hello_worlds.cpp --- hello_world.cpp => code/C++/hello_worlds.cpp | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename hello_world.cpp => code/C++/hello_worlds.cpp (100%) diff --git a/hello_world.cpp b/code/C++/hello_worlds.cpp similarity index 100% rename from hello_world.cpp rename to code/C++/hello_worlds.cpp From bbec9e890127ec83171f9bb7eba96461381828bf Mon Sep 17 00:00:00 2001 From: AbbasAbi <53376159+AbbasAbi@users.noreply.github.com> Date: Mon, 7 Oct 2019 04:17:12 +0330 Subject: [PATCH 134/481] Add "AbbasAbi" name to the contributors --- CONTRIBUTORS.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 6351b17a..549ad369 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -1,5 +1,6 @@ - [AAMIR AHMAD](https://github.com/sickwiz) +- [Abbas Abi](https://github.com/AbbasAbi) - [Ajey Prasand](https://github.com/ajeyprasand) - [Amit Dutta](https://github.com/Amitdutta7) - [Ankit Chahar](https://github.com/AnkitChahar) From d0ad5f255a13091227fd99ddfc0d54a440c6c9c3 Mon Sep 17 00:00:00 2001 From: raulgonzalezcz Date: Sun, 6 Oct 2019 20:13:55 -0500 Subject: [PATCH 135/481] Thank you for this opportunity --- .CONTRIBUTORS.md.swp | Bin 0 -> 1024 bytes CONTRIBUTORS.md | 1 + code/Racket/hello-world.rkt | 2 ++ profiles/Raul_Gonzalez_Cruz.md | 22 ++++++++++++++++++++++ 4 files changed, 25 insertions(+) create mode 100644 .CONTRIBUTORS.md.swp create mode 100644 code/Racket/hello-world.rkt create mode 100644 profiles/Raul_Gonzalez_Cruz.md diff --git a/.CONTRIBUTORS.md.swp b/.CONTRIBUTORS.md.swp new file mode 100644 index 0000000000000000000000000000000000000000..9b24ddbc41b9b9c3e810d231e303e8634bf44d6d GIT binary patch literal 1024 zcmYc?$V<%2S1{7E)H7y40tdwy7>W{0bC85^GC}HeJpyzC63a4kGV}9v4NZ0Z@=H>a z^7FHG1DxUd^fU5vQ}scr^*vH^a`JV<^NVs)^qu|vLV`S +[twitter-img]: https://i.imgur.com/wWzX9uB.png +[github-img]: https://i.imgur.com/9I6NRUm.png From fd6d918389cfa257d309a32ea3d5e2a80f0dc6d0 Mon Sep 17 00:00:00 2001 From: Ariq Heritsa Date: Mon, 7 Oct 2019 13:02:59 +0700 Subject: [PATCH 136/481] Add my profile --- CONTRIBUTORS.md | 1 + code/Dart/my_hello_world.dart | 1 + code/PHP/helloworld.php | 4 ++-- profiles/Ariq_Heritsa.md | 21 +++++++++++++++++++++ 4 files changed, 25 insertions(+), 2 deletions(-) create mode 100644 code/Dart/my_hello_world.dart create mode 100644 profiles/Ariq_Heritsa.md diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 6351b17a..e117c1c8 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -5,6 +5,7 @@ - [Ankit Chahar](https://github.com/AnkitChahar) - [Ankit Sharma](https://github.com/AnkitSharmaOnGithub) - [Anshu Kumari](https://github.com/anshukcse) +- [Ariq Heritsa](https://github.com/Heritsam) - [Ayan Goel](https://github.com/GAyan17) - [CaffeinatedCod3r](https://github.com/CaffeinatedCod3r) - [CherryKitten](https://github.com/CherryKitten) diff --git a/code/Dart/my_hello_world.dart b/code/Dart/my_hello_world.dart new file mode 100644 index 00000000..c50809ae --- /dev/null +++ b/code/Dart/my_hello_world.dart @@ -0,0 +1 @@ +void main() => print('Hello, World!'); \ No newline at end of file diff --git a/code/PHP/helloworld.php b/code/PHP/helloworld.php index 71424bbb..f2260dcc 100644 --- a/code/PHP/helloworld.php +++ b/code/PHP/helloworld.php @@ -1,3 +1,3 @@ + echo 'Hello World!'; +?> diff --git a/profiles/Ariq_Heritsa.md b/profiles/Ariq_Heritsa.md new file mode 100644 index 00000000..cdfd7d7c --- /dev/null +++ b/profiles/Ariq_Heritsa.md @@ -0,0 +1,21 @@ +## Ariq Heritsa + +### Bio +A Student, Flutter enthusiast. + +### Location +Bogor, Indonesia. + +### Projects +Voting App, Instagram cloned app. + +### Hobbies & Interests +Guitar. + +### Profiles +[![GitHub][github-img]](https://github.com/Heritsam) +[![Twitter][twitter-img]](https://twitter.com/heritsam) + + +[twitter-img]: https://i.imgur.com/wWzX9uB.png +[github-img]: https://i.imgur.com/9I6NRUm.png \ No newline at end of file From 14b3ba68432441de7730fd72919929fd5c821f5e Mon Sep 17 00:00:00 2001 From: Deeksha Agrawal <43968187+agrawal-deeksha@users.noreply.github.com> Date: Mon, 7 Oct 2019 12:26:06 +0530 Subject: [PATCH 137/481] Update CONTRIBUTORS.md --- CONTRIBUTORS.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 6351b17a..4f32b6a1 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -12,6 +12,7 @@ - [Corbin Taylor](https://github.com/cjtaylor1990) - [Cresencio Flores](https://github.com/CresencioF) - [dark-shadow7](https://github.com/dark-shadow7) +- [Deeksha Agrawal](https://github.com/agrawal-deeksha) - [Emmanuel Ezenwigbo](https://github.com/SkyC0der) - [Erol Aliyev](https://github.com/erolaliyev) - [Jatin Narula](https://github.com/jatin96) From c3e9c57a2dc829d35cfd4fd604eb87483b7bfc84 Mon Sep 17 00:00:00 2001 From: Rounak Agarwal Date: Mon, 7 Oct 2019 14:36:47 +0530 Subject: [PATCH 138/481] Update CONTRIBUTORS.md --- CONTRIBUTORS.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 65c618cd..42afe4af 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -18,8 +18,8 @@ - [Kevin Ward](https://github.com/Blueward12) - [Loris Gabriele](https://github.com/Pyr0x1) - [Luciano Santos](https://github.com/lucianosz7) -- [Mykola Balabash](https://github.com/twilderan) - [Megha Agarwal](https://github.com/meghaa105P) +- [Mykola Balabash](https://github.com/twilderan) - [Ramy Fetteha](https://github.com/NoirFLamme) - [Randil Tennakoon](https://github.com/randiltennakoon) - [Ricardo Borges](https://github.com/ricardo93borges) From f0792b5cf4851917546ca953f0739e7ad5e2f297 Mon Sep 17 00:00:00 2001 From: Rounak Agarwal Date: Mon, 7 Oct 2019 15:10:43 +0530 Subject: [PATCH 139/481] Update CONTRIBUTORS.md --- CONTRIBUTORS.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index ee867570..ddc775ec 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -40,3 +40,5 @@ - [viewless](https://github.com/viewless) - [tonzsm](https://github.com/tonzsm) - [Vlad Zaporozhskyi](https://github.com/thezapovlad) + + From 2b52ff422a533cc84e87977e199a6f92f1c320d3 Mon Sep 17 00:00:00 2001 From: Dzun Nurroin Date: Mon, 7 Oct 2019 16:49:17 +0700 Subject: [PATCH 140/481] add DzunN86 in alphabetical order --- CONTRIBUTORS.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index cf686d0a..262c77d7 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -12,6 +12,7 @@ - [Corbin Taylor](https://github.com/cjtaylor1990) - [Cresencio Flores](https://github.com/CresencioF) - [dark-shadow7](https://github.com/dark-shadow7) +- [DzunN86](https://github.com/DzunN86) - [Emmanuel Ezenwigbo](https://github.com/SkyC0der) - [Jatin Narula](https://github.com/jatin96) - [João Vítor Morandi Lemos](https://github.com/joaovitorml) @@ -31,5 +32,5 @@ - [Varun Vishal](https://github.com/varunvishal10) - [viewless](https://github.com/viewless) - [tonzsm](https://github.com/tonzsm) -- [DzunN86](https://github.com/DzunN86) + From d27d12212e103c64960a6ba469d0e59286201d05 Mon Sep 17 00:00:00 2001 From: Siddharth Raj Date: Mon, 7 Oct 2019 15:57:34 +0530 Subject: [PATCH 141/481] Update CONTRIBUTORS.md --- CONTRIBUTORS.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index ddc775ec..d977a4f5 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -34,6 +34,7 @@ - [Sahildeep Singh](https://github.com/sahilcodes) - [Samuel Tonini](https://github.com/samuel-tonini) - [Shriram Navaratnalingam](https://github.com/ShriLingam23) +- [Siddharth Raj](https://github.com/iamsidofficial) - [Thomas Windt](https://github.com/WOLFI3654) - [Tim Solokha](https://github.com/TimSolokha) - [Varun Vishal](https://github.com/varunvishal10) From 55e014982355532a877528dceb51cfc228227c76 Mon Sep 17 00:00:00 2001 From: andre-lee <39188810+andre-lee@users.noreply.github.com> Date: Mon, 7 Oct 2019 23:29:42 +1100 Subject: [PATCH 142/481] Create andre-lee --- profiles/andre-lee | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 profiles/andre-lee diff --git a/profiles/andre-lee b/profiles/andre-lee new file mode 100644 index 00000000..991339d1 --- /dev/null +++ b/profiles/andre-lee @@ -0,0 +1,21 @@ +## Andre Lee + +### Bio +New Comer + +### Location +Melbourne + +### Projects +Look at my repository + +### Hobbies & Interests +Coding + +### Profiles +[![GitHub][github-img]](Link to GitHub profile) +[![Twitter][twitter-img]](Link to Twitter profile) + + +[twitter-img]: https://i.imgur.com/wWzX9uB.png +[github-img]: https://i.imgur.com/9I6NRUm.png From 38272f6774a0c99fd4323889e4f8854bd4ff3b35 Mon Sep 17 00:00:00 2001 From: andre-lee <39188810+andre-lee@users.noreply.github.com> Date: Mon, 7 Oct 2019 23:31:02 +1100 Subject: [PATCH 143/481] Update CONTRIBUTORS.md --- CONTRIBUTORS.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index ddc775ec..12f0046b 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -3,6 +3,7 @@ - [Ajey Prasand](https://github.com/ajeyprasand) - [Alyssa Columbus](https://github.com/acolum) - [Amit Dutta](https://github.com/Amitdutta7) +- [Andre-Lee](hhttps://github.com/andre-lee) - [Ankit Chahar](https://github.com/AnkitChahar) - [Ankit Sharma](https://github.com/AnkitSharmaOnGithub) - [Anshu Kumari](https://github.com/anshukcse) From 9421310ea27db93a2ddb81c2f42fdf50843b6fff Mon Sep 17 00:00:00 2001 From: BHAVESH GUPTA Date: Mon, 7 Oct 2019 19:16:13 +0530 Subject: [PATCH 144/481] added Bhavesh Gupta --- CONTRIBUTORS.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index ddc775ec..dd7fe614 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -7,6 +7,7 @@ - [Ankit Sharma](https://github.com/AnkitSharmaOnGithub) - [Anshu Kumari](https://github.com/anshukcse) - [Ayan Goel](https://github.com/GAyan17) +- [Bhavesh Gupta](https://guthub.com/bhavesh-g) - [CaffeinatedCod3r](https://github.com/CaffeinatedCod3r) - [CherryKitten](https://github.com/CherryKitten) - [Chandra Mouli](https://github.com/codechandra) From cd04e9b6cbf98301d9b0a308c0d8e5af313ea9fc Mon Sep 17 00:00:00 2001 From: BHAVESH GUPTA Date: Mon, 7 Oct 2019 19:17:06 +0530 Subject: [PATCH 145/481] Update CONTRIBUTORS.md --- CONTRIBUTORS.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index dd7fe614..6edf598c 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -7,7 +7,7 @@ - [Ankit Sharma](https://github.com/AnkitSharmaOnGithub) - [Anshu Kumari](https://github.com/anshukcse) - [Ayan Goel](https://github.com/GAyan17) -- [Bhavesh Gupta](https://guthub.com/bhavesh-g) +- [Bhavesh Gupta](https://github.com/bhavesh-g) - [CaffeinatedCod3r](https://github.com/CaffeinatedCod3r) - [CherryKitten](https://github.com/CherryKitten) - [Chandra Mouli](https://github.com/codechandra) From 6c12b14b50b3e34301af8fc66993397fd5761b19 Mon Sep 17 00:00:00 2001 From: Ashutosh Singh Date: Mon, 7 Oct 2019 23:08:18 +0530 Subject: [PATCH 146/481] entered my details --- CONTRIBUTORS.md | 1 + profiles/Ashutosh_Singh.md | 21 +++++++++++++++++++++ 2 files changed, 22 insertions(+) create mode 100644 profiles/Ashutosh_Singh.md diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index ddc775ec..ed20e97b 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -6,6 +6,7 @@ - [Ankit Chahar](https://github.com/AnkitChahar) - [Ankit Sharma](https://github.com/AnkitSharmaOnGithub) - [Anshu Kumari](https://github.com/anshukcse) +- [Ashutosh Singh](https://github.com/zohan4sh) - [Ayan Goel](https://github.com/GAyan17) - [CaffeinatedCod3r](https://github.com/CaffeinatedCod3r) - [CherryKitten](https://github.com/CherryKitten) diff --git a/profiles/Ashutosh_Singh.md b/profiles/Ashutosh_Singh.md new file mode 100644 index 00000000..d970c668 --- /dev/null +++ b/profiles/Ashutosh_Singh.md @@ -0,0 +1,21 @@ +## Ashutosh Singh + +### Bio +Flutter App Developer + +### Location +India + +### Projects +Build mobile app for DevFest Nagpur 2019. + +### Hobbies & Interests +Listening to music and playing football. + +### Profiles +[![GitHub][github-img]](https://github.com/zohan4sh) +[![Twitter][twitter-img]](https://twitter.com/zohan_ash) + + +[twitter-img]: https://i.imgur.com/wWzX9uB.png +[github-img]: https://i.imgur.com/9I6NRUm.png \ No newline at end of file From f91e4c2e3334d634099a6d0b3d717165b8667c76 Mon Sep 17 00:00:00 2001 From: Ankit Jain <56029974+Ankit-2312@users.noreply.github.com> Date: Mon, 7 Oct 2019 23:56:17 +0530 Subject: [PATCH 147/481] Update The integer function int main() must return some integral value. --- code/C++/hola.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/code/C++/hola.cpp b/code/C++/hola.cpp index d79e1815..c1b9c410 100644 --- a/code/C++/hola.cpp +++ b/code/C++/hola.cpp @@ -3,4 +3,5 @@ using namespace std; int main() { cout<<"hello world"; +return 0; } From 7f58016c7aca43d64706014dcaee11023fbaa472 Mon Sep 17 00:00:00 2001 From: Chris Laks Date: Mon, 7 Oct 2019 22:27:55 +0300 Subject: [PATCH 148/481] Added javascript and Python hello world program --- code/JavaScript/Hello world program.js | 1 + code/Python/Hello world program.py | 1 + 2 files changed, 2 insertions(+) create mode 100644 code/JavaScript/Hello world program.js create mode 100644 code/Python/Hello world program.py diff --git a/code/JavaScript/Hello world program.js b/code/JavaScript/Hello world program.js new file mode 100644 index 00000000..de888297 --- /dev/null +++ b/code/JavaScript/Hello world program.js @@ -0,0 +1 @@ +console.log("Hello World!"); \ No newline at end of file diff --git a/code/Python/Hello world program.py b/code/Python/Hello world program.py new file mode 100644 index 00000000..9cf52cf0 --- /dev/null +++ b/code/Python/Hello world program.py @@ -0,0 +1 @@ +print ("Hello world!") \ No newline at end of file From a9caddd6d9e73983c657d2b85f19b776216aa7df Mon Sep 17 00:00:00 2001 From: Dallin Reeves <44125979+dallin91@users.noreply.github.com> Date: Mon, 7 Oct 2019 15:24:06 -0500 Subject: [PATCH 149/481] Create helloWorld.py --- code/Python/helloWorld.py | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 code/Python/helloWorld.py diff --git a/code/Python/helloWorld.py b/code/Python/helloWorld.py new file mode 100644 index 00000000..8903d602 --- /dev/null +++ b/code/Python/helloWorld.py @@ -0,0 +1,3 @@ +// Prints "Hello World!" + +print("Hello World!") From f828d0ee0d0eb6a5fa27727c5a527bda8862d71e Mon Sep 17 00:00:00 2001 From: Dallin Reeves <44125979+dallin91@users.noreply.github.com> Date: Mon, 7 Oct 2019 15:32:56 -0500 Subject: [PATCH 150/481] Update CONTRIBUTORS.md --- CONTRIBUTORS.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index ddc775ec..267f8515 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -12,6 +12,7 @@ - [Chandra Mouli](https://github.com/codechandra) - [Corbin Taylor](https://github.com/cjtaylor1990) - [Cresencio Flores](https://github.com/CresencioF) +- [Dallin Reeves](https://github.com/dallin91) - [dark-shadow7](https://github.com/dark-shadow7) - [Emmanuel Ezenwigbo](https://github.com/SkyC0der) - [Erol Aliyev](https://github.com/erolaliyev) From a55756494250c48e883e5691dc18fcfafb2a744c Mon Sep 17 00:00:00 2001 From: Rounak Agarwal Date: Tue, 8 Oct 2019 11:25:30 +0530 Subject: [PATCH 151/481] Rename Hello world program.js to Hello_world_program.js --- code/JavaScript/Hello world program.js | 1 - code/JavaScript/Hello_world_program.js | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) delete mode 100644 code/JavaScript/Hello world program.js create mode 100644 code/JavaScript/Hello_world_program.js diff --git a/code/JavaScript/Hello world program.js b/code/JavaScript/Hello world program.js deleted file mode 100644 index de888297..00000000 --- a/code/JavaScript/Hello world program.js +++ /dev/null @@ -1 +0,0 @@ -console.log("Hello World!"); \ No newline at end of file diff --git a/code/JavaScript/Hello_world_program.js b/code/JavaScript/Hello_world_program.js new file mode 100644 index 00000000..019c0f4b --- /dev/null +++ b/code/JavaScript/Hello_world_program.js @@ -0,0 +1 @@ +console.log("Hello World!"); From d5549e7b476a57c5472bf44d43a82f8cce0ab251 Mon Sep 17 00:00:00 2001 From: Rounak Agarwal Date: Tue, 8 Oct 2019 11:25:46 +0530 Subject: [PATCH 152/481] Rename Hello world program.py to Hello_world_program.py --- code/Python/Hello world program.py | 1 - code/Python/Hello_world_program.py | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) delete mode 100644 code/Python/Hello world program.py create mode 100644 code/Python/Hello_world_program.py diff --git a/code/Python/Hello world program.py b/code/Python/Hello world program.py deleted file mode 100644 index 9cf52cf0..00000000 --- a/code/Python/Hello world program.py +++ /dev/null @@ -1 +0,0 @@ -print ("Hello world!") \ No newline at end of file diff --git a/code/Python/Hello_world_program.py b/code/Python/Hello_world_program.py new file mode 100644 index 00000000..6a46a833 --- /dev/null +++ b/code/Python/Hello_world_program.py @@ -0,0 +1 @@ +print ("Hello world!") From 60dba33311298039f5fe70c60724a163bb69204a Mon Sep 17 00:00:00 2001 From: Rounak Agarwal Date: Tue, 8 Oct 2019 11:42:11 +0530 Subject: [PATCH 153/481] Rename andre-lee to andre-lee.md --- profiles/{andre-lee => andre-lee.md} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename profiles/{andre-lee => andre-lee.md} (100%) diff --git a/profiles/andre-lee b/profiles/andre-lee.md similarity index 100% rename from profiles/andre-lee rename to profiles/andre-lee.md From 77771c9c9b539331b14e0005500de74f290142ab Mon Sep 17 00:00:00 2001 From: Nishant Tilve Date: Tue, 8 Oct 2019 13:32:28 +0530 Subject: [PATCH 154/481] Contributed HelloWorld.c --- CONTRIBUTORS.md | 1 + code/C/HelloWorld.c | 6 ++++++ profiles/Nishant-Tilve.md | 24 ++++++++++++++++++++++++ 3 files changed, 31 insertions(+) create mode 100644 code/C/HelloWorld.c create mode 100644 profiles/Nishant-Tilve.md diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 1ba74f25..400b2017 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -31,6 +31,7 @@ - [Momozor](https://github.com/momozor) - [Mykola Balabash](https://github.com/twilderan) - [nilesh](https://github.com/nileshsahitya9) +- [Nishant Tilve](https://github.com/Antimatter98) - [Pragadeeswaran Gnanasekaran](https://github.com/pragapraga) - [Ramy Fetteha](https://github.com/NoirFLamme) - [Randil Tennakoon](https://github.com/randiltennakoon) diff --git a/code/C/HelloWorld.c b/code/C/HelloWorld.c new file mode 100644 index 00000000..368ff2e5 --- /dev/null +++ b/code/C/HelloWorld.c @@ -0,0 +1,6 @@ +#include + +int main(){ + printf("\nHello World!"); + return 0; +} diff --git a/profiles/Nishant-Tilve.md b/profiles/Nishant-Tilve.md new file mode 100644 index 00000000..e887155c --- /dev/null +++ b/profiles/Nishant-Tilve.md @@ -0,0 +1,24 @@ +NISHANT TILVE +## BIO ## +Night Owl. Coffee is my fuel. + +## LOCATION ## +GOA,INDIA. + + +## PROJECTS ## +1- Made a 3D Game using Unity. + + +## HOBBIES ## +Reading Sci-Fi, listening to music! + + + +## PROFILES ## +[![GitHub][github-img]](https://github.com/Antimatter98) +[![Twitter][twitter-img]](https://twitter.com/Antimatter_98) + +[twitter-img]: https://i.imgur.com/wWzX9uB.png +[github-img]: https://i.imgur.com/9I6NRUm.png + From 9db568e7e9b8628314cbc8d90d6b825a7f08265d Mon Sep 17 00:00:00 2001 From: Naveenraj M Date: Tue, 8 Oct 2019 15:38:20 +0530 Subject: [PATCH 155/481] Added Groovy Hello-World code --- CONTRIBUTORS.md | 5 +++-- code/Groovy/hello_world.groovy | 1 + profiles/Naveenraj_M.md | 23 +++++++++++++++++++++++ 3 files changed, 27 insertions(+), 2 deletions(-) create mode 100644 code/Groovy/hello_world.groovy create mode 100644 profiles/Naveenraj_M.md diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 1ba74f25..453e391c 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -31,12 +31,13 @@ - [Momozor](https://github.com/momozor) - [Mykola Balabash](https://github.com/twilderan) - [nilesh](https://github.com/nileshsahitya9) +- [Naveenraj M](https://github.com/naveenrajm7) - [Pragadeeswaran Gnanasekaran](https://github.com/pragapraga) - [Ramy Fetteha](https://github.com/NoirFLamme) - [Randil Tennakoon](https://github.com/randiltennakoon) - [Raul Gonzalez Cruz](https://github.com/raulgonzalezcz) - [Ricardo Borges](https://github.com/ricardo93borges) -- [Rounak Agarwal](https://github.com/agarwalrounak) +- [Rounak Agarwal](https://github.com/agarwalrounak) - [Sahildeep Singh](https://github.com/sahilcodes) - [Samuel Tonini](https://github.com/samuel-tonini) - [Shriram Navaratnalingam](https://github.com/ShriLingam23) @@ -47,4 +48,4 @@ - [viewless](https://github.com/viewless) - [Vlad Zaporozhskyi](https://github.com/thezapovlad) - \ No newline at end of file + diff --git a/code/Groovy/hello_world.groovy b/code/Groovy/hello_world.groovy new file mode 100644 index 00000000..73fad44b --- /dev/null +++ b/code/Groovy/hello_world.groovy @@ -0,0 +1 @@ +println "Hello World!" diff --git a/profiles/Naveenraj_M.md b/profiles/Naveenraj_M.md new file mode 100644 index 00000000..3353b290 --- /dev/null +++ b/profiles/Naveenraj_M.md @@ -0,0 +1,23 @@ +## Naveenraj M + +### Bio +I'm Student + +### Location +Mysuru, Karnataka , INDIA. + +### Projects +2017, I made 5 tables for inventory management using **MySql** +2018, I build a webapp for those tables using **Django** +2019, I containerised the webapp using **Docker** + +### Hobbies & Interests +I waste time and code sometimes. + +### Profiles +[![GitHub][github-img]](https://github.com/naveenrajm7) +[![Twitter][twitter-img]](https://twitter.com/naveenraj_m) + + +[twitter-img]: https://i.imgur.com/wWzX9uB.png +[github-img]: https://i.imgur.com/9I6NRUm.png From 479efcade3335ae2756d940a48d9cfc9487a2868 Mon Sep 17 00:00:00 2001 From: Hung Vu Date: Tue, 8 Oct 2019 17:28:41 +0700 Subject: [PATCH 156/481] Update CONTRIBUTORS.md add my name to CONTRIBUTORS.md --- CONTRIBUTORS.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 1ba74f25..03fd1478 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -19,6 +19,7 @@ - [DzunN86](https://github.com/DzunN86) - [Emmanuel Ezenwigbo](https://github.com/SkyC0der) - [Erol Aliyev](https://github.com/erolaliyev) +- [Hans](https://github.com/hungvu193) - [HRAnkit](https://github.com/hrankit) - [Jatin Narula](https://github.com/jatin96) - [João Vítor Morandi Lemos](https://github.com/joaovitorml) @@ -47,4 +48,4 @@ - [viewless](https://github.com/viewless) - [Vlad Zaporozhskyi](https://github.com/thezapovlad) - \ No newline at end of file + From fc944a609c8dc2935dd4c690faceea91be033731 Mon Sep 17 00:00:00 2001 From: Ritik Gupta Date: Tue, 8 Oct 2019 18:19:43 +0530 Subject: [PATCH 157/481] Update CONTRIBUTORS.md --- CONTRIBUTORS.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 1ba74f25..42ef1276 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -36,6 +36,7 @@ - [Randil Tennakoon](https://github.com/randiltennakoon) - [Raul Gonzalez Cruz](https://github.com/raulgonzalezcz) - [Ricardo Borges](https://github.com/ricardo93borges) +- [Ritik Gupta](https://github.com/ritik-gupta) - [Rounak Agarwal](https://github.com/agarwalrounak) - [Sahildeep Singh](https://github.com/sahilcodes) - [Samuel Tonini](https://github.com/samuel-tonini) @@ -47,4 +48,4 @@ - [viewless](https://github.com/viewless) - [Vlad Zaporozhskyi](https://github.com/thezapovlad) - \ No newline at end of file + From 8675fd2c036eafd389c0a296d44d97e5d5b74768 Mon Sep 17 00:00:00 2001 From: Dallin Reeves <44125979+dallin91@users.noreply.github.com> Date: Tue, 8 Oct 2019 09:08:28 -0500 Subject: [PATCH 158/481] Update helloWorld.py --- code/Python/helloWorld.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/Python/helloWorld.py b/code/Python/helloWorld.py index 8903d602..306497d9 100644 --- a/code/Python/helloWorld.py +++ b/code/Python/helloWorld.py @@ -1,3 +1,3 @@ -// Prints "Hello World!" +# Prints "Hello World!" print("Hello World!") From 38d1952e2dcac52d01817b0f062c357e9405ea9c Mon Sep 17 00:00:00 2001 From: srajalagr <52538621+srajalagr@users.noreply.github.com> Date: Tue, 8 Oct 2019 19:45:37 +0530 Subject: [PATCH 159/481] Update CONTRIBUTORS.md --- CONTRIBUTORS.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 1ba74f25..e63428a3 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -40,6 +40,7 @@ - [Sahildeep Singh](https://github.com/sahilcodes) - [Samuel Tonini](https://github.com/samuel-tonini) - [Shriram Navaratnalingam](https://github.com/ShriLingam23) +- [Srajal Agrawal](https://github.com/srajalagr) - [Thomas Windt](https://github.com/WOLFI3654) - [Tim Solokha](https://github.com/TimSolokha) - [tonzsm](https://github.com/tonzsm) @@ -47,4 +48,4 @@ - [viewless](https://github.com/viewless) - [Vlad Zaporozhskyi](https://github.com/thezapovlad) - \ No newline at end of file + From ea9ff68d56379fe2a38e599f27358c387bd793a3 Mon Sep 17 00:00:00 2001 From: srajalagr <52538621+srajalagr@users.noreply.github.com> Date: Tue, 8 Oct 2019 19:49:20 +0530 Subject: [PATCH 160/481] Create Srajal_Agrawal.md --- profiles/Srajal_Agrawal.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 profiles/Srajal_Agrawal.md diff --git a/profiles/Srajal_Agrawal.md b/profiles/Srajal_Agrawal.md new file mode 100644 index 00000000..e784d54f --- /dev/null +++ b/profiles/Srajal_Agrawal.md @@ -0,0 +1,20 @@ +## Srajal Agrawal + +### Bio +Enthusiastic Learner + +### Location +U.P. + +### Projects +Learn new Things + +### Hobbies & Interests +Reading Novels and listening to eminem ;D + +### Profiles +[![GitHub][github-img]](https://github.com/srajal) + + +[twitter-img]: https://i.imgur.com/wWzX9uB.png +[github-img]: https://i.imgur.com/9I6NRUm.png From 3491fd2f28ec16468f4fb7e66724fb27d53343d9 Mon Sep 17 00:00:00 2001 From: srajalagr <52538621+srajalagr@users.noreply.github.com> Date: Tue, 8 Oct 2019 19:54:58 +0530 Subject: [PATCH 161/481] Rename hello_world.py to hello_World.py --- code/Python/hello_World.py | 1 + 1 file changed, 1 insertion(+) create mode 100644 code/Python/hello_World.py diff --git a/code/Python/hello_World.py b/code/Python/hello_World.py new file mode 100644 index 00000000..ad35e5ae --- /dev/null +++ b/code/Python/hello_World.py @@ -0,0 +1 @@ +print("Hello World") From a1c414589e6da08b423410530f51470bdf744ec7 Mon Sep 17 00:00:00 2001 From: srajalagr <52538621+srajalagr@users.noreply.github.com> Date: Tue, 8 Oct 2019 19:57:41 +0530 Subject: [PATCH 162/481] Create heLLO_woRLD.cpp --- code/C++/heLLO_woRLD.cpp | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 code/C++/heLLO_woRLD.cpp diff --git a/code/C++/heLLO_woRLD.cpp b/code/C++/heLLO_woRLD.cpp new file mode 100644 index 00000000..b588c04e --- /dev/null +++ b/code/C++/heLLO_woRLD.cpp @@ -0,0 +1,9 @@ +#include + +using namespace std; + +int main(){ + cout<<"HELLO WORLD!"< Date: Tue, 8 Oct 2019 20:10:20 +0200 Subject: [PATCH 163/481] First pull request --- .CONTRIBUTORS.md.swp | Bin 1024 -> 0 bytes CONTRIBUTORS.md | 3 ++- code/Python/hello-world.py | 2 ++ 3 files changed, 4 insertions(+), 1 deletion(-) delete mode 100644 .CONTRIBUTORS.md.swp create mode 100644 code/Python/hello-world.py diff --git a/.CONTRIBUTORS.md.swp b/.CONTRIBUTORS.md.swp deleted file mode 100644 index 9b24ddbc41b9b9c3e810d231e303e8634bf44d6d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1024 zcmYc?$V<%2S1{7E)H7y40tdwy7>W{0bC85^GC}HeJpyzC63a4kGV}9v4NZ0Z@=H>a z^7FHG1DxUd^fU5vQ}scr^*vH^a`JV<^NVs)^qu|vLV`S \ No newline at end of file + diff --git a/code/Python/hello-world.py b/code/Python/hello-world.py new file mode 100644 index 00000000..617553ea --- /dev/null +++ b/code/Python/hello-world.py @@ -0,0 +1,2 @@ +#!/usr/bin/python +print("Hello World") From 5c1e6df41a5631189d02617b7f3628719d314500 Mon Sep 17 00:00:00 2001 From: cbecker Date: Tue, 8 Oct 2019 20:14:24 +0200 Subject: [PATCH 164/481] First pull request --- profiles/Thesolution90.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 profiles/Thesolution90.md diff --git a/profiles/Thesolution90.md b/profiles/Thesolution90.md new file mode 100644 index 00000000..a35fd965 --- /dev/null +++ b/profiles/Thesolution90.md @@ -0,0 +1,21 @@ +## Ankit + +### Bio +DevOps Engineer specialized on Kubernetes + +### Location +Germany + +### Projects +- Things I like. Nothing special + +### Hobbies & Interests +- Programming +- Sailing + +### Profiles +[![GitHub][github-img]](https://github.com/thesolution90) + + +[twitter-img]: https://i.imgur.com/wWzX9uB.png +[github-img]: https://i.imgur.com/9I6NRUm.png From 0d1b1fb9922f525566f58c8ee37dace95cc0e5ec Mon Sep 17 00:00:00 2001 From: Victor Azevedo Date: Tue, 8 Oct 2019 21:31:38 -0300 Subject: [PATCH 165/481] insert Hello World and name in Contributors.md --- CONTRIBUTORS.md | 1 + code/Java/OlaMundo.java | 6 ++++++ 2 files changed, 7 insertions(+) create mode 100644 code/Java/OlaMundo.java diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 1ba74f25..d4114cfb 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -44,6 +44,7 @@ - [Tim Solokha](https://github.com/TimSolokha) - [tonzsm](https://github.com/tonzsm) - [Varun Vishal](https://github.com/varunvishal10) +- [Victor Azevedo](https://github.com/victormazevedo) - [viewless](https://github.com/viewless) - [Vlad Zaporozhskyi](https://github.com/thezapovlad) diff --git a/code/Java/OlaMundo.java b/code/Java/OlaMundo.java new file mode 100644 index 00000000..431b79ad --- /dev/null +++ b/code/Java/OlaMundo.java @@ -0,0 +1,6 @@ +public class OlaMundo { + + public static void main(String[] args) { + System.out.println("Ola mundo!"); + } +} From 71480395d790d53c3c8c302f73ffc7b4a7c55819 Mon Sep 17 00:00:00 2001 From: Nekonokuro <56063934+Nekonokuro@users.noreply.github.com> Date: Wed, 9 Oct 2019 15:53:21 +1100 Subject: [PATCH 166/481] Update CONTRIBUTORS.md --- CONTRIBUTORS.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 1ba74f25..d608caf4 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -6,6 +6,7 @@ - [Amit Dutta](https://github.com/Amitdutta7) - [Ankit Chahar](https://github.com/AnkitChahar) - [Ankit Sharma](https://github.com/AnkitSharmaOnGithub) +- [Anna Giliaeva](https://github.com/Nekonokuro) - [Anshu Kumari](https://github.com/anshukcse) - [Ashutosh Singh](https://github.com/zohan4sh) - [Ayan Goel](https://github.com/GAyan17) @@ -47,4 +48,4 @@ - [viewless](https://github.com/viewless) - [Vlad Zaporozhskyi](https://github.com/thezapovlad) - \ No newline at end of file + From c53ffcc2dba9aff940560a7f18397a0e5122c061 Mon Sep 17 00:00:00 2001 From: Nekonokuro <56063934+Nekonokuro@users.noreply.github.com> Date: Wed, 9 Oct 2019 16:08:00 +1100 Subject: [PATCH 167/481] Anna Giliaeva --- profiles/Anna Giliaeva | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 profiles/Anna Giliaeva diff --git a/profiles/Anna Giliaeva b/profiles/Anna Giliaeva new file mode 100644 index 00000000..37ea9869 --- /dev/null +++ b/profiles/Anna Giliaeva @@ -0,0 +1,17 @@ +## Anna Giliaeva + +### Bio +I've just started my way to coding. Looking forward to change my current job to career in cyber security + +### Location +I'm Russian, but I'm living in Melbourne, Australia + +### Projects +I don't have any projects yet :) + +### Hobbies & Interests +Video editing, gaming, psychology + +### Profiles +[![GitHub][github-img]](https://github.com/Nekonokuro) +[![Twitter][twitter-img]](https://twitter.com/AnnaNekonokuro) From daebb5b51df76fd5036cd4faa2e6805a644cd736 Mon Sep 17 00:00:00 2001 From: Pranshu Kharkwal Date: Wed, 9 Oct 2019 11:48:13 +0530 Subject: [PATCH 168/481] Added a Hello World File in Python --- code/Python/HelloWorldPK.py | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 code/Python/HelloWorldPK.py diff --git a/code/Python/HelloWorldPK.py b/code/Python/HelloWorldPK.py new file mode 100644 index 00000000..ccbdccd2 --- /dev/null +++ b/code/Python/HelloWorldPK.py @@ -0,0 +1,2 @@ +# cook your dish here +print("Hello World") \ No newline at end of file From 295e7fdffa232a78668e9b212383cb1cf9c98ead Mon Sep 17 00:00:00 2001 From: Rounak Agarwal Date: Wed, 9 Oct 2019 13:42:58 +0530 Subject: [PATCH 169/481] Rename Anna Giliaeva to Anna_Giliaeva.md --- profiles/{Anna Giliaeva => Anna_Giliaeva.md} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename profiles/{Anna Giliaeva => Anna_Giliaeva.md} (100%) diff --git a/profiles/Anna Giliaeva b/profiles/Anna_Giliaeva.md similarity index 100% rename from profiles/Anna Giliaeva rename to profiles/Anna_Giliaeva.md From fbb14c4a03e2498d462a300751afbb4481c94f9a Mon Sep 17 00:00:00 2001 From: iamhritik55 <56077574+iamhritik55@users.noreply.github.com> Date: Wed, 9 Oct 2019 13:59:42 +0530 Subject: [PATCH 170/481] Update CONTRIBUTORS.md --- CONTRIBUTORS.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index e545c7b5..77575db6 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -9,6 +9,7 @@ - [Corbin Taylor](https://github.com/cjtaylor1990) - [Cresencio Flores](https://github.com/CresencioF) - [Emmanuel Ezenwigbo](https://github.com/SkyC0der) +- [Hritik Soni](https://github.com/iamhritik55) - [Kevin Ward](https://github.com/Blueward12) - [Loris Gabriele](https://github.com/Pyr0x1) - [Luciano Santos](https://github.com/lucianosz7) @@ -20,4 +21,4 @@ - [Thomas Windt](https://github.com/WOLFI3654) - [Tim Solokha](https://github.com/TimSolokha) - [viewless](https://github.com/viewless) -- [Hritik Soni](https://github.com/iamhritik55) + From a38261384285266defb5f1e950d9a6a07ac1043f Mon Sep 17 00:00:00 2001 From: Ley1999 <52542301+Ley1999@users.noreply.github.com> Date: Wed, 9 Oct 2019 13:09:56 +0200 Subject: [PATCH 171/481] Update --- CONTRIBUTORS.md | 1 + code/PHP/hellohacktoberfest.php | 3 +++ profiles/Lejla_I.md | 22 ++++++++++++++++++++++ 3 files changed, 26 insertions(+) create mode 100644 code/PHP/hellohacktoberfest.php create mode 100644 profiles/Lejla_I.md diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 121de6f4..be16f264 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -27,6 +27,7 @@ - [Jatin Narula](https://github.com/jatin96) - [João Vítor Morandi Lemos](https://github.com/joaovitorml) - [Kevin Ward](https://github.com/Blueward12) +- [Lejla I](https://github.com/Ley2717) - [Lilian F](https://github.com/lilianferreira) - [Loris Gabriele](https://github.com/Pyr0x1) - [Luciano Santos](https://github.com/lucianosz7) diff --git a/code/PHP/hellohacktoberfest.php b/code/PHP/hellohacktoberfest.php new file mode 100644 index 00000000..1d2698a4 --- /dev/null +++ b/code/PHP/hellohacktoberfest.php @@ -0,0 +1,3 @@ + \ No newline at end of file diff --git a/profiles/Lejla_I.md b/profiles/Lejla_I.md new file mode 100644 index 00000000..9bb42d48 --- /dev/null +++ b/profiles/Lejla_I.md @@ -0,0 +1,22 @@ +## Lejla I + +### Bio +IT student very motivated to learn and gain more experience. + + +### Location +Secret + +### Projects +PHP related projects + +### Hobbies & Interests +coding, music, books + +### Profiles +[![GitHub][github-img]](https://github.com/Ley2717) +[![Twitter][twitter-img]](Don't have a twitter account.) + + +[twitter-img]: https://i.imgur.com/wWzX9uB.png +[github-img]: https://i.imgur.com/9I6NRUm.png \ No newline at end of file From 24603e566b5597c698b3ab60378c5d89f9d876b8 Mon Sep 17 00:00:00 2001 From: SourabhSooraj <55755390+SourabhSooraj@users.noreply.github.com> Date: Wed, 9 Oct 2019 16:59:37 +0530 Subject: [PATCH 172/481] my name --- CONTRIBUTORS.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index d9725189..d066f169 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -17,6 +17,7 @@ - [Randil Tennakoon](https://github.com/randiltennakoon) - [Rounak Agarwal](https://github.com/agarwalrounak) - [Samuel Tonini](https://github.com/samuel-tonini) +- [Sourabh Sooraj](https://github.com/SourabhSooraj) - [Thomas Windt](https://github.com/WOLFI3654) - [Tim Solokha](https://github.com/TimSolokha) - [viewless](https://github.com/viewless) From 5429a7ca56fcdf835b629fdbfc34e71ef7e173da Mon Sep 17 00:00:00 2001 From: SourabhSooraj <55755390+SourabhSooraj@users.noreply.github.com> Date: Wed, 9 Oct 2019 17:01:06 +0530 Subject: [PATCH 173/481] Create file_Sourabh --- file_Sourabh | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 file_Sourabh diff --git a/file_Sourabh b/file_Sourabh new file mode 100644 index 00000000..15d06b28 --- /dev/null +++ b/file_Sourabh @@ -0,0 +1,3 @@ +My name is Sourabh! + +I'm new to OpenSource ware and i want to get better at it, Thank you! :) From 9d5bd802b0cca2ad9330e689b98f82d0f0b9022e Mon Sep 17 00:00:00 2001 From: SourabhSooraj <55755390+SourabhSooraj@users.noreply.github.com> Date: Wed, 9 Oct 2019 17:01:39 +0530 Subject: [PATCH 174/481] Delete file_Sourabh --- file_Sourabh | 3 --- 1 file changed, 3 deletions(-) delete mode 100644 file_Sourabh diff --git a/file_Sourabh b/file_Sourabh deleted file mode 100644 index 15d06b28..00000000 --- a/file_Sourabh +++ /dev/null @@ -1,3 +0,0 @@ -My name is Sourabh! - -I'm new to OpenSource ware and i want to get better at it, Thank you! :) From 17edb54f3fa6e73c86d934ce91a90c3e5202c72d Mon Sep 17 00:00:00 2001 From: SourabhSooraj <55755390+SourabhSooraj@users.noreply.github.com> Date: Wed, 9 Oct 2019 17:03:35 +0530 Subject: [PATCH 175/481] my contribution --- profiles/file_Sourabh | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 profiles/file_Sourabh diff --git a/profiles/file_Sourabh b/profiles/file_Sourabh new file mode 100644 index 00000000..a71c01e1 --- /dev/null +++ b/profiles/file_Sourabh @@ -0,0 +1,4 @@ +Hi, My name is Sourabh! + +I'm new to OpenSource ware and want to get better at Git. (no pun intended) +Thank you! :) From d3dcb6f77f708b06a0eb8f2e98fdbbfa2622151c Mon Sep 17 00:00:00 2001 From: SourabhSooraj <55755390+SourabhSooraj@users.noreply.github.com> Date: Wed, 9 Oct 2019 17:03:50 +0530 Subject: [PATCH 176/481] my contribution --- profiles/File_Sourabh | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 profiles/File_Sourabh diff --git a/profiles/File_Sourabh b/profiles/File_Sourabh new file mode 100644 index 00000000..a71c01e1 --- /dev/null +++ b/profiles/File_Sourabh @@ -0,0 +1,4 @@ +Hi, My name is Sourabh! + +I'm new to OpenSource ware and want to get better at Git. (no pun intended) +Thank you! :) From 67097dea4ffab53580f9528de4a64ce39287505a Mon Sep 17 00:00:00 2001 From: SourabhSooraj <55755390+SourabhSooraj@users.noreply.github.com> Date: Wed, 9 Oct 2019 17:04:15 +0530 Subject: [PATCH 177/481] Rename File_Sourabh to File_Sourabh.md --- profiles/{File_Sourabh => File_Sourabh.md} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename profiles/{File_Sourabh => File_Sourabh.md} (100%) diff --git a/profiles/File_Sourabh b/profiles/File_Sourabh.md similarity index 100% rename from profiles/File_Sourabh rename to profiles/File_Sourabh.md From cb3bb6c52c05b6f8da7fb83bcd10f6b5fb262cbc Mon Sep 17 00:00:00 2001 From: drmyuu Date: Wed, 9 Oct 2019 08:46:28 -0400 Subject: [PATCH 178/481] Added my name --- CONTRIBUTORS.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 121de6f4..a3b1c6c4 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -19,6 +19,7 @@ - [Corbin Taylor](https://github.com/cjtaylor1990) - [Cresencio Flores](https://github.com/CresencioF) - [dark-shadow7](https://github.com/dark-shadow7) +- [drmyuu](https://github.com/drmyuu) - [Deeksha Agrawal](https://github.com/agrawal-deeksha) - [DzunN86](https://github.com/DzunN86) - [Emmanuel Ezenwigbo](https://github.com/SkyC0der) From 6f0b5b7d69279e53c858f5d0aea2782173e4484a Mon Sep 17 00:00:00 2001 From: Vani Gupta <53790649+topcoder69@users.noreply.github.com> Date: Wed, 9 Oct 2019 18:17:04 +0530 Subject: [PATCH 179/481] Created Vani.md --- profiles/Vani.md | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 profiles/Vani.md diff --git a/profiles/Vani.md b/profiles/Vani.md new file mode 100644 index 00000000..c732911a --- /dev/null +++ b/profiles/Vani.md @@ -0,0 +1,11 @@ +### Vani gupta + +- Bio: Masters Student in Computer Science/ Active Problem Solver/ Coder/ Java,Cpp,C,Python + +- Location: Delhi + +- Institution: University of Hyderabad + + -Profile: https://github.com/topcoder69 + + Have an awesome day! :) From 59f7b195697a6a4bd0f69526337011921c679376 Mon Sep 17 00:00:00 2001 From: Rishabh Gupta <44132253+rishabhgupta03@users.noreply.github.com> Date: Wed, 9 Oct 2019 20:47:44 +0530 Subject: [PATCH 180/481] helloworld-rishabhgupta03.py hello world code in python3 by rishabhgupta03 --- code/helloworld-rishabhgupta03.py | 1 + 1 file changed, 1 insertion(+) create mode 100644 code/helloworld-rishabhgupta03.py diff --git a/code/helloworld-rishabhgupta03.py b/code/helloworld-rishabhgupta03.py new file mode 100644 index 00000000..f3749ad9 --- /dev/null +++ b/code/helloworld-rishabhgupta03.py @@ -0,0 +1 @@ +print ('hello wrld!') From 2fbd7e468175258bc36bd1f290c124cf278d193f Mon Sep 17 00:00:00 2001 From: Rounak Agarwal Date: Wed, 9 Oct 2019 21:28:16 +0530 Subject: [PATCH 181/481] Rename code/helloworld-rishabhgupta03.py to code/Python/helloworld-rishabhgupta03.py --- code/{ => Python}/helloworld-rishabhgupta03.py | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename code/{ => Python}/helloworld-rishabhgupta03.py (100%) diff --git a/code/helloworld-rishabhgupta03.py b/code/Python/helloworld-rishabhgupta03.py similarity index 100% rename from code/helloworld-rishabhgupta03.py rename to code/Python/helloworld-rishabhgupta03.py From 5efddcd97e7374e1661b0070b1bd25ebce35a0af Mon Sep 17 00:00:00 2001 From: meghnalnu Date: Wed, 9 Oct 2019 22:04:03 +0530 Subject: [PATCH 182/481] Namaste --- code/Java/NamasteDuniya.java | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 code/Java/NamasteDuniya.java diff --git a/code/Java/NamasteDuniya.java b/code/Java/NamasteDuniya.java new file mode 100644 index 00000000..3924d58c --- /dev/null +++ b/code/Java/NamasteDuniya.java @@ -0,0 +1,11 @@ +public class NamasteDuniya { + + public static void main(String[] args) { + + System.out.println("Hello World!"); + + } + + +} + From 2a7f12bee7b2f6572562cdb481bc3cb8caba9106 Mon Sep 17 00:00:00 2001 From: Mayank Parmar Date: Wed, 9 Oct 2019 22:52:14 +0530 Subject: [PATCH 183/481] add Mayank --- CONTRIBUTORS.md | 1 + code/Cobol/hello_world.cob | 5 +++++ profiles/Mayank_Parmar.md | 20 ++++++++++++++++++++ 3 files changed, 26 insertions(+) create mode 100644 code/Cobol/hello_world.cob create mode 100644 profiles/Mayank_Parmar.md diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index a9128de0..59970c84 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -31,6 +31,7 @@ - [Lilian F](https://github.com/lilianferreira) - [Loris Gabriele](https://github.com/Pyr0x1) - [Luciano Santos](https://github.com/lucianosz7) +- [Mayank Parmar](https://github.com/myk7hackon) - [Megha Agarwal](https://github.com/meghaa105P) - [Mehul Garg](https://github.com/gargmehul10) - [Momozor](https://github.com/momozor) diff --git a/code/Cobol/hello_world.cob b/code/Cobol/hello_world.cob new file mode 100644 index 00000000..4c50c223 --- /dev/null +++ b/code/Cobol/hello_world.cob @@ -0,0 +1,5 @@ +IDENTIFICATION DIVISION. +PROGRAM-ID. HELLO-WORLD. +PROCEDURE DIVISION. +DISPLAY 'Hello, world'. +STOP RUN. \ No newline at end of file diff --git a/profiles/Mayank_Parmar.md b/profiles/Mayank_Parmar.md new file mode 100644 index 00000000..425c86af --- /dev/null +++ b/profiles/Mayank_Parmar.md @@ -0,0 +1,20 @@ +## Mayank Parmar + +### Bio + Engineering student who is interested in programming and coding and have learned quite a few concepts about computer science and a some programming languages including + C,C++,Python. + +### Location + India. + +### Projects + Haven't done anything worth mentioning beside a Django website. + +### Hobbies & Interests + -Programming.. + -Weight lifting. + +### Profiles +[![GitHub][github-img]](https://github.com/myk7hackon) +[![Twitter][twitter-img]](https://twitter.com/myk7_hackon) + From 9ff341c41c16a068276788d0bc97beae2f840153 Mon Sep 17 00:00:00 2001 From: msharma Date: Thu, 10 Oct 2019 08:22:32 +1100 Subject: [PATCH 184/481] Hello world in Javascript --- CONTRIBUTORS.md | 1 + code/JavaScript/simple_hello_world.js | 1 + 2 files changed, 2 insertions(+) create mode 100644 code/JavaScript/simple_hello_world.js diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 121de6f4..a9ed7341 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -30,6 +30,7 @@ - [Lilian F](https://github.com/lilianferreira) - [Loris Gabriele](https://github.com/Pyr0x1) - [Luciano Santos](https://github.com/lucianosz7) +- [Manu Sharma] (https://github.com/iammanusharma) - [Megha Agarwal](https://github.com/meghaa105P) - [Mehul Garg](https://github.com/gargmehul10) - [Momozor](https://github.com/momozor) diff --git a/code/JavaScript/simple_hello_world.js b/code/JavaScript/simple_hello_world.js new file mode 100644 index 00000000..019c0f4b --- /dev/null +++ b/code/JavaScript/simple_hello_world.js @@ -0,0 +1 @@ +console.log("Hello World!"); From a59e7ccfa7cc5db76832692222af1e78baf572a7 Mon Sep 17 00:00:00 2001 From: msharma Date: Thu, 10 Oct 2019 08:24:15 +1100 Subject: [PATCH 185/481] Revert "Hello world in Javascript" This reverts commit 9ff341c41c16a068276788d0bc97beae2f840153. --- CONTRIBUTORS.md | 1 - code/JavaScript/simple_hello_world.js | 1 - 2 files changed, 2 deletions(-) delete mode 100644 code/JavaScript/simple_hello_world.js diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index a9ed7341..121de6f4 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -30,7 +30,6 @@ - [Lilian F](https://github.com/lilianferreira) - [Loris Gabriele](https://github.com/Pyr0x1) - [Luciano Santos](https://github.com/lucianosz7) -- [Manu Sharma] (https://github.com/iammanusharma) - [Megha Agarwal](https://github.com/meghaa105P) - [Mehul Garg](https://github.com/gargmehul10) - [Momozor](https://github.com/momozor) diff --git a/code/JavaScript/simple_hello_world.js b/code/JavaScript/simple_hello_world.js deleted file mode 100644 index 019c0f4b..00000000 --- a/code/JavaScript/simple_hello_world.js +++ /dev/null @@ -1 +0,0 @@ -console.log("Hello World!"); From d7cccb1a25bdddd86963e2e89e734ce43fca2da1 Mon Sep 17 00:00:00 2001 From: msharma Date: Thu, 10 Oct 2019 08:36:19 +1100 Subject: [PATCH 186/481] hello world javascript --- CONTRIBUTORS.md | 1 + code/JavaScript/simple_hello_world.js | 1 + 2 files changed, 2 insertions(+) create mode 100644 code/JavaScript/simple_hello_world.js diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 121de6f4..a9ed7341 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -30,6 +30,7 @@ - [Lilian F](https://github.com/lilianferreira) - [Loris Gabriele](https://github.com/Pyr0x1) - [Luciano Santos](https://github.com/lucianosz7) +- [Manu Sharma] (https://github.com/iammanusharma) - [Megha Agarwal](https://github.com/meghaa105P) - [Mehul Garg](https://github.com/gargmehul10) - [Momozor](https://github.com/momozor) diff --git a/code/JavaScript/simple_hello_world.js b/code/JavaScript/simple_hello_world.js new file mode 100644 index 00000000..019c0f4b --- /dev/null +++ b/code/JavaScript/simple_hello_world.js @@ -0,0 +1 @@ +console.log("Hello World!"); From 6c8b79dc1b4212fa809d5112921be6d39c7c0f76 Mon Sep 17 00:00:00 2001 From: karansingh97 Date: Thu, 10 Oct 2019 10:34:04 +0530 Subject: [PATCH 187/481] Updated --- CONTRIBUTORS.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index a9128de0..896df02e 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -27,6 +27,7 @@ - [Hritik Soni](https://github.com/iamhritik55) - [Jatin Narula](https://github.com/jatin96) - [João Vítor Morandi Lemos](https://github.com/joaovitorml) +- [Karan Singh](https://github.com/karansingh97) - [Kevin Ward](https://github.com/Blueward12) - [Lilian F](https://github.com/lilianferreira) - [Loris Gabriele](https://github.com/Pyr0x1) From 7eeb6912db83caa392fea3e43eedbac94bd99dfa Mon Sep 17 00:00:00 2001 From: memskez <32346841+memskez@users.noreply.github.com> Date: Thu, 10 Oct 2019 18:17:51 +1300 Subject: [PATCH 188/481] Create Hello_World_memskez.cs --- code/C#/Hello_World_memskez.cs | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 code/C#/Hello_World_memskez.cs diff --git a/code/C#/Hello_World_memskez.cs b/code/C#/Hello_World_memskez.cs new file mode 100644 index 00000000..e751cf0e --- /dev/null +++ b/code/C#/Hello_World_memskez.cs @@ -0,0 +1,12 @@ +//AUTHOR: memskez +//LANGUAGE: C# +//GITHUB: https://github.com/memskez +using System; + +namespace HelloWorld +{ + class Program + { + static void Main(string[] args) => Console.WriteLine("Hello World!"); + } +} From bb2aef01e09d8955eaa144390ff20d9a2f2f1691 Mon Sep 17 00:00:00 2001 From: Ankit Garg <41066963+ankitgargsma@users.noreply.github.com> Date: Thu, 10 Oct 2019 14:19:28 +0530 Subject: [PATCH 189/481] Create HelloW.cpp It is a Hello World printing c++ code. --- code/C++/HelloW.cpp | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 code/C++/HelloW.cpp diff --git a/code/C++/HelloW.cpp b/code/C++/HelloW.cpp new file mode 100644 index 00000000..23a83fc3 --- /dev/null +++ b/code/C++/HelloW.cpp @@ -0,0 +1,8 @@ +#include +using namespace std; + +int main() +{ +cout<<"Hello World"; +return 0; +} From 987429903d39aaf10030a86912ad8374335a6627 Mon Sep 17 00:00:00 2001 From: Ankit Garg <41066963+ankitgargsma@users.noreply.github.com> Date: Thu, 10 Oct 2019 14:23:40 +0530 Subject: [PATCH 190/481] Update CONTRIBUTORS.md --- CONTRIBUTORS.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index a9128de0..dd5a5258 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -7,6 +7,7 @@ - [Amit Dutta](https://github.com/Amitdutta7) - [Andre-Lee](hhttps://github.com/andre-lee) - [Ankit Chahar](https://github.com/AnkitChahar) +- [Ankit Garg](https://github.com/ankitgargsma) - [Ankit Sharma](https://github.com/AnkitSharmaOnGithub) - [Anna Giliaeva](https://github.com/Nekonokuro) - [Anshu Kumari](https://github.com/anshukcse) From 82a8485ec33577071c7898f3925555950df001ff Mon Sep 17 00:00:00 2001 From: Ankit Garg <41066963+ankitgargsma@users.noreply.github.com> Date: Thu, 10 Oct 2019 14:27:28 +0530 Subject: [PATCH 191/481] Create Ankit_Garg.md --- profiles/Ankit_Garg.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 profiles/Ankit_Garg.md diff --git a/profiles/Ankit_Garg.md b/profiles/Ankit_Garg.md new file mode 100644 index 00000000..440f6993 --- /dev/null +++ b/profiles/Ankit_Garg.md @@ -0,0 +1,19 @@ +Ankit Garg + +A self-motivated and hard working individual. Patience is the key to success. + +I live in Uttar Pradesh. + +Projects +Face Recognition system. Smart home automation using IoT. + +Hobbies & Interests +I like playing Badminton and cooking. + +Profiles +[![GitHub][github-img]](www.github.com/ankitgargsma) + + + +[twitter-img]: https://i.imgur.com/wWzX9uB.png +[github-img]: https://i.imgur.com/9I6NRUm.png From 941346af7bfcce2dfdf5d8636e591880fe687f43 Mon Sep 17 00:00:00 2001 From: Kushiya <36870065+Kushiya@users.noreply.github.com> Date: Thu, 10 Oct 2019 15:47:31 +0530 Subject: [PATCH 192/481] Update CONTRIBUTORS.md --- CONTRIBUTORS.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index a9128de0..75392951 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -57,5 +57,6 @@ - [Victor Azevedo](https://github.com/victormazevedo) - [viewless](https://github.com/viewless) - [Vlad Zaporozhskyi](https://github.com/thezapovlad) +- [Kushantha Charuka](https://github.com/Kushiya) From 92d29aca0454da2e917ae7d43d1b63ce80afb1de Mon Sep 17 00:00:00 2001 From: Kushiya <36870065+Kushiya@users.noreply.github.com> Date: Thu, 10 Oct 2019 15:50:50 +0530 Subject: [PATCH 193/481] Create HTML --- code/HTML | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 code/HTML diff --git a/code/HTML b/code/HTML new file mode 100644 index 00000000..25194ce0 --- /dev/null +++ b/code/HTML @@ -0,0 +1,6 @@ + +
This is title
+ +Hello world + + From 760fee6df530c0578b0a085c4955cf802b61e3be Mon Sep 17 00:00:00 2001 From: Kushiya <36870065+Kushiya@users.noreply.github.com> Date: Thu, 10 Oct 2019 15:51:35 +0530 Subject: [PATCH 194/481] Delete HTML --- code/HTML | 6 ------ 1 file changed, 6 deletions(-) delete mode 100644 code/HTML diff --git a/code/HTML b/code/HTML deleted file mode 100644 index 25194ce0..00000000 --- a/code/HTML +++ /dev/null @@ -1,6 +0,0 @@ - -
This is title
- -Hello world - - From 83db3d129d835fd186b0ab575a578c0436a35efa Mon Sep 17 00:00:00 2001 From: Kushiya <36870065+Kushiya@users.noreply.github.com> Date: Thu, 10 Oct 2019 15:53:25 +0530 Subject: [PATCH 195/481] Create HTML --- code/HTML | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 code/HTML diff --git a/code/HTML b/code/HTML new file mode 100644 index 00000000..52a91708 --- /dev/null +++ b/code/HTML @@ -0,0 +1,6 @@ + +
This is title
+ +Hello world + + From 04d0d7936ad76c5fd574dd9035fcad6b84c385f5 Mon Sep 17 00:00:00 2001 From: Kushiya <36870065+Kushiya@users.noreply.github.com> Date: Thu, 10 Oct 2019 15:56:01 +0530 Subject: [PATCH 196/481] Create Kushiya.md --- profiles/Kushiya.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 profiles/Kushiya.md diff --git a/profiles/Kushiya.md b/profiles/Kushiya.md new file mode 100644 index 00000000..175327f2 --- /dev/null +++ b/profiles/Kushiya.md @@ -0,0 +1,17 @@ +## Kushantha Charuka + +### Bio +I'm Software Engineer Undergrate Student + +### Location +Colombo, Sri Lanka + +### Projects +I've uploaded to the github + +### Hobbies & Interests +Gaming, UI/UX Desiging + +### Profiles +[![GitHub][github-img]](https://github.com/Kushiya) + From 426978cefecf468346f47e4faf9a440fd144e3f2 Mon Sep 17 00:00:00 2001 From: aasimarr <56424740+aasimarr@users.noreply.github.com> Date: Fri, 11 Oct 2019 16:16:51 +1100 Subject: [PATCH 197/481] Update CONTRIBUTORS.md --- CONTRIBUTORS.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index a9128de0..b2e14403 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -10,6 +10,7 @@ - [Ankit Sharma](https://github.com/AnkitSharmaOnGithub) - [Anna Giliaeva](https://github.com/Nekonokuro) - [Anshu Kumari](https://github.com/anshukcse) +- [Ashleigh Pearson](https://github.com/aasimarr) - [Ashutosh Singh](https://github.com/zohan4sh) - [Ayan Goel](https://github.com/GAyan17) - [Bhavesh Gupta](https://github.com/bhavesh-g) From 23b9fb6bc9630b45be709cd12b0054c775d8a042 Mon Sep 17 00:00:00 2001 From: Debrup <44672533+xzayvian@users.noreply.github.com> Date: Fri, 11 Oct 2019 18:08:58 +0530 Subject: [PATCH 198/481] Create Debrup_Dutta.md --- profiles/Debrup_Dutta.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 profiles/Debrup_Dutta.md diff --git a/profiles/Debrup_Dutta.md b/profiles/Debrup_Dutta.md new file mode 100644 index 00000000..1c09924e --- /dev/null +++ b/profiles/Debrup_Dutta.md @@ -0,0 +1,18 @@ +Name-Debrup Dutta + +Bio-I am a Computer Engineering Undergrad at IIIT Bhubaneswar.I am an enthusiast, constantly looking forward to grabbing opportunities, to enrich my experience therby garnering my skills. + +Location-Bhubaneswar + +Projects-Mainly some group projects like some small games like tic tac toe, stone, paper, scissor, etc + +Hobbies & interests- Drawing, Sketching, Acoustic Guitar, Creative Writing to name a few + +profiles- +https://github.com/xzayvian +Twitter username - DebrupDutta2, https://twitter.com/DebrupDutta2 + +[twitter-img]: https://i.imgur.com/wWzX9uB.png +[github-img]: https://i.imgur.com/9I6NRUm.png + + From 17772a533dab8d7395a95c502c329fb9444b2193 Mon Sep 17 00:00:00 2001 From: shridharravi97 Date: Fri, 11 Oct 2019 19:11:47 +0530 Subject: [PATCH 199/481] Added Shridhar's code --- CONTRIBUTORS.md | 3 ++- code/Python/Hello_World_Python.py | 1 + profiles/Shridhar_Ravi.md | 21 +++++++++++++++++++++ 3 files changed, 24 insertions(+), 1 deletion(-) create mode 100644 code/Python/Hello_World_Python.py create mode 100644 profiles/Shridhar_Ravi.md diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index f97fb1fe..9880fa02 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -1,4 +1,4 @@ - +s - [AAMIR AHMAD](https://github.com/sickwiz) - [Abbas Abi](https://github.com/AbbasAbi) - [Ajey Prasand](https://github.com/ajeyprasand) @@ -48,6 +48,7 @@ - [Rounak Agarwal](https://github.com/agarwalrounak) - [Sahildeep Singh](https://github.com/sahilcodes) - [Samuel Tonini](https://github.com/samuel-tonini) +- [Shridhar Ravi](https://github.com/shridharravi97) - [Shriram Navaratnalingam](https://github.com/ShriLingam23) - [Siddharth Raj](https://github.com/iamsidofficial) - [Srajal Agrawal](https://github.com/srajalagr) diff --git a/code/Python/Hello_World_Python.py b/code/Python/Hello_World_Python.py new file mode 100644 index 00000000..f301245e --- /dev/null +++ b/code/Python/Hello_World_Python.py @@ -0,0 +1 @@ +print("Hello World!") diff --git a/profiles/Shridhar_Ravi.md b/profiles/Shridhar_Ravi.md new file mode 100644 index 00000000..6fceceb9 --- /dev/null +++ b/profiles/Shridhar_Ravi.md @@ -0,0 +1,21 @@ +## Shridhar Ravi + +### Bio +I am a BE CE Graduate from Mumbai University + +### Location +Mumbai, India. + +### Hobbies & Interests +- Sports +- Movies +- Games + +### Profiles +[![GitHub][github-img]](https://github.com/shridharravi97) +[![Twitter][twitter-img]](https://twitter.com/sridharravimani) + + + +[twitter-img]: https://i.imgur.com/wWzX9uB.png +[github-img]: https://i.imgur.com/9I6NRUm.png From 4ceb41e384a6a286b732723b09c32d3c71bd42f9 Mon Sep 17 00:00:00 2001 From: aniketsharma00411 <56435253+aniketsharma00411@users.noreply.github.com> Date: Fri, 11 Oct 2019 19:42:46 +0530 Subject: [PATCH 200/481] Made a Hello World File --- code/C++/HELlO-WorLd.cpp | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 code/C++/HELlO-WorLd.cpp diff --git a/code/C++/HELlO-WorLd.cpp b/code/C++/HELlO-WorLd.cpp new file mode 100644 index 00000000..38c29e36 --- /dev/null +++ b/code/C++/HELlO-WorLd.cpp @@ -0,0 +1,8 @@ +#include +using namespace std; + +int main() +{ + cout<<"Hello World"< Date: Fri, 11 Oct 2019 19:45:41 +0530 Subject: [PATCH 201/481] Update CONTRIBUTORS.md --- CONTRIBUTORS.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index f97fb1fe..03257810 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -6,6 +6,7 @@ - [Alyssa Columbus](https://github.com/acolum) - [Amit Dutta](https://github.com/Amitdutta7) - [Andre-Lee](hhttps://github.com/andre-lee) +- [Aniket Sharma](https://github.com/aniketsharma00411) - [Ankit Chahar](https://github.com/AnkitChahar) - [Ankit Sharma](https://github.com/AnkitSharmaOnGithub) - [Anna Giliaeva](https://github.com/Nekonokuro) From 3b8fd9bab0ed36afc2824b3095edb1e567577602 Mon Sep 17 00:00:00 2001 From: Rahul Mohan Date: Fri, 11 Oct 2019 20:11:42 +0530 Subject: [PATCH 202/481] done --- profiles/Rahul.md | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 profiles/Rahul.md diff --git a/profiles/Rahul.md b/profiles/Rahul.md new file mode 100644 index 00000000..a4e915ed --- /dev/null +++ b/profiles/Rahul.md @@ -0,0 +1,24 @@ +## Rahul Mohan + +### Bio +I am an undergraduate student in computer science and engineering + +### Location + + INDIA + +### Projects +I am working on some open source projects + +### Hobbies & Intrests +I love music and movies + +### Profiles +[![GitHub][github-img]](https://github.com/Rahul-m0) +[![Twitter][twitter-img]](https://twitter.com/RahulMo14878848) + + +[twitter-img]: https://i.imgur.com/wWzX9uB.png +[github-img]: https://i.imgur.com/9I6NRUm.png + + From 8ffe024aa86c3ffb972ae3ac30f1bf6c7e767be6 Mon Sep 17 00:00:00 2001 From: Rujul Patel <34445867+Rujul-Patel@users.noreply.github.com> Date: Fri, 11 Oct 2019 20:37:01 +0530 Subject: [PATCH 203/481] Create hworld.c --- code/C/hworld.c | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 code/C/hworld.c diff --git a/code/C/hworld.c b/code/C/hworld.c new file mode 100644 index 00000000..1091fd5e --- /dev/null +++ b/code/C/hworld.c @@ -0,0 +1,8 @@ +//Hello World in C +#include + +int main() +{ + printf("Hello, World, :) \n"); + return 0; +} From 3e6e4ac36c29d676346903b35bf0c1792a105aef Mon Sep 17 00:00:00 2001 From: Alex <43220424+AlexvEngelen@users.noreply.github.com> Date: Fri, 11 Oct 2019 19:31:53 +0200 Subject: [PATCH 204/481] Added hello world --- code/PHP/HeLlO-wOrLd.php | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 code/PHP/HeLlO-wOrLd.php diff --git a/code/PHP/HeLlO-wOrLd.php b/code/PHP/HeLlO-wOrLd.php new file mode 100644 index 00000000..c4426819 --- /dev/null +++ b/code/PHP/HeLlO-wOrLd.php @@ -0,0 +1,3 @@ + From fee175e9e587f771d00035b7f983bf08bf928027 Mon Sep 17 00:00:00 2001 From: gargee suresh Date: Fri, 11 Oct 2019 23:06:21 +0530 Subject: [PATCH 205/481] Create _hello_world_.py --- code/Python/_hello_world_.py | 1 + 1 file changed, 1 insertion(+) create mode 100644 code/Python/_hello_world_.py diff --git a/code/Python/_hello_world_.py b/code/Python/_hello_world_.py new file mode 100644 index 00000000..3c1bb17f --- /dev/null +++ b/code/Python/_hello_world_.py @@ -0,0 +1 @@ + print("Hello World") From e008da61d359d450a876bbc964c214c86da0efe4 Mon Sep 17 00:00:00 2001 From: Mattia Peretti Date: Fri, 11 Oct 2019 20:51:00 +0200 Subject: [PATCH 206/481] Add hello world (italian edition) --- code/Dart/hello_world_it.dart | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 code/Dart/hello_world_it.dart diff --git a/code/Dart/hello_world_it.dart b/code/Dart/hello_world_it.dart new file mode 100644 index 00000000..f1c9a898 --- /dev/null +++ b/code/Dart/hello_world_it.dart @@ -0,0 +1,3 @@ +void main() { + print("Ciao mondo!"); +} \ No newline at end of file From 3db8918e113621956a818bd84643026df6712d93 Mon Sep 17 00:00:00 2001 From: tarunvelagala Date: Sat, 12 Oct 2019 01:49:18 +0530 Subject: [PATCH 207/481] Hello World --- code/C/HelloWorld1.c | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 code/C/HelloWorld1.c diff --git a/code/C/HelloWorld1.c b/code/C/HelloWorld1.c new file mode 100644 index 00000000..63869293 --- /dev/null +++ b/code/C/HelloWorld1.c @@ -0,0 +1,9 @@ +#include +int main(int argc, char const *argv[]) +{ + /* code */ + if (printf("Hello World")) + { + } + return 0; +} From c73abc0bdcba803265d43814807f3503ac85c4a8 Mon Sep 17 00:00:00 2001 From: tarunvelagala Date: Sat, 12 Oct 2019 01:51:33 +0530 Subject: [PATCH 208/481] Profile Update --- profiles/Tarun_Velagala.md | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 profiles/Tarun_Velagala.md diff --git a/profiles/Tarun_Velagala.md b/profiles/Tarun_Velagala.md new file mode 100644 index 00000000..fb190259 --- /dev/null +++ b/profiles/Tarun_Velagala.md @@ -0,0 +1,34 @@ +## Tarun Velagala + +### Bio + Passionate Programmer + Enthusiastic Learner. + Trustworthy. + Interactive Team-player. + Thirsty for Knowledge + + + +### Location + Tanuku, ANdhra Pradesh, India + +### Projects + Friends of Numbers + Web URL Scraper + School of Computing Website + Flutter To-Do + Sathyabama Univ Official + +### Hobbies & Interests + -Programming. + -Badminton. + -Listening music. + -Hands on with new technologies. + +### Profiles +[![GitHub][github-img]](https://github.com/tarun1642) +[![Twitter][twitter-img]](https://twitter.com/tarun__675) + + +[twitter-img]: https://i.imgur.com/wWzX9uB.png +[github-img]: https://i.imgur.com/9I6NRUm.png From 9f4c75cf17680a3e0879b7c044717e5e4c8aa48d Mon Sep 17 00:00:00 2001 From: tarunvelagala Date: Sat, 12 Oct 2019 02:02:39 +0530 Subject: [PATCH 209/481] open source git october --- CONTRIBUTORS.md | 1 + code/C/HelloWorld1.c | 2 -- profiles/Tarun_Velagala.md | 2 +- 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index f97fb1fe..0a6e8c5e 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -51,6 +51,7 @@ - [Shriram Navaratnalingam](https://github.com/ShriLingam23) - [Siddharth Raj](https://github.com/iamsidofficial) - [Srajal Agrawal](https://github.com/srajalagr) +- [Tarun Kumar](https://github.com/tarun1642) - [Thomas Windt](https://github.com/WOLFI3654) - [Tim Solokha](https://github.com/TimSolokha) - [tonzsm](https://github.com/tonzsm) diff --git a/code/C/HelloWorld1.c b/code/C/HelloWorld1.c index 63869293..245f0cb5 100644 --- a/code/C/HelloWorld1.c +++ b/code/C/HelloWorld1.c @@ -3,7 +3,5 @@ int main(int argc, char const *argv[]) { /* code */ if (printf("Hello World")) - { - } return 0; } diff --git a/profiles/Tarun_Velagala.md b/profiles/Tarun_Velagala.md index fb190259..1290b841 100644 --- a/profiles/Tarun_Velagala.md +++ b/profiles/Tarun_Velagala.md @@ -10,7 +10,7 @@ ### Location - Tanuku, ANdhra Pradesh, India + Tanuku, ANdhra Pradesh, India. ### Projects Friends of Numbers From a700e965696d905609ee3b0da46c5d608b73230a Mon Sep 17 00:00:00 2001 From: dedesaepulloh Date: Sat, 12 Oct 2019 13:33:06 +0700 Subject: [PATCH 210/481] Added Dede Saepulloh --- CONTRIBUTORS.md | 1 + code/PHP/hello_world.php | 3 +++ profiles/Dede_Saepulloh.md | 7 +++++++ 3 files changed, 11 insertions(+) create mode 100644 code/PHP/hello_world.php create mode 100644 profiles/Dede_Saepulloh.md diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index f97fb1fe..83864712 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -58,5 +58,6 @@ - [Victor Azevedo](https://github.com/victormazevedo) - [viewless](https://github.com/viewless) - [Vlad Zaporozhskyi](https://github.com/thezapovlad) +- [Dede Saepulloh](https://github.com/dedesaepulloh) diff --git a/code/PHP/hello_world.php b/code/PHP/hello_world.php new file mode 100644 index 00000000..ce5b215f --- /dev/null +++ b/code/PHP/hello_world.php @@ -0,0 +1,3 @@ + \ No newline at end of file diff --git a/profiles/Dede_Saepulloh.md b/profiles/Dede_Saepulloh.md new file mode 100644 index 00000000..6d88602d --- /dev/null +++ b/profiles/Dede_Saepulloh.md @@ -0,0 +1,7 @@ +# Dede Saepulloh + +# Academics +Undergraduate student at STMIK Tasikmalaya + +# Development +Android and Web Development \ No newline at end of file From cd3950b16e957596ac79f87493536d4a940db1dc Mon Sep 17 00:00:00 2001 From: Alif Naufal <49275855+alifnaufalyasin@users.noreply.github.com> Date: Sat, 12 Oct 2019 14:04:45 +0700 Subject: [PATCH 211/481] Create HelloWorld --- code/Pascal/HelloWorld | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 code/Pascal/HelloWorld diff --git a/code/Pascal/HelloWorld b/code/Pascal/HelloWorld new file mode 100644 index 00000000..c3b21ab8 --- /dev/null +++ b/code/Pascal/HelloWorld @@ -0,0 +1,6 @@ +program helloworld; +var text : string; +begin + text := 'Hello World'; + write(text); +end. From e4d2e413e8a4411aa9cf6ed290a2721fc3100a78 Mon Sep 17 00:00:00 2001 From: itsnotsagar Date: Sat, 12 Oct 2019 13:27:17 +0530 Subject: [PATCH 212/481] newProfile --- CONTRIBUTORS.md | 1 + code/Python/hello world.py | 1 + profiles/Sagar_Yadav.md | 25 +++++++++++++++++++++++++ 3 files changed, 27 insertions(+) create mode 100644 code/Python/hello world.py create mode 100644 profiles/Sagar_Yadav.md diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index f97fb1fe..c65d08aa 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -10,6 +10,7 @@ - [Ankit Sharma](https://github.com/AnkitSharmaOnGithub) - [Anna Giliaeva](https://github.com/Nekonokuro) - [Anshu Kumari](https://github.com/anshukcse) +- [Sagar Yadav](https://github.com/itsnotsagar) - [Ariq Heritsa](https://github.com/Heritsam) - [Ashutosh Singh](https://github.com/zohan4sh) - [Ayan Goel](https://github.com/GAyan17) diff --git a/code/Python/hello world.py b/code/Python/hello world.py new file mode 100644 index 00000000..8e235769 --- /dev/null +++ b/code/Python/hello world.py @@ -0,0 +1 @@ +print("Hello World") \ No newline at end of file diff --git a/profiles/Sagar_Yadav.md b/profiles/Sagar_Yadav.md new file mode 100644 index 00000000..df8ab65b --- /dev/null +++ b/profiles/Sagar_Yadav.md @@ -0,0 +1,25 @@ +## +Sagar Yadav + +### Bio +First Year Student in VIT Vellore CSE + +### Location +Chennai, Tamil Nadu + +### Projects +Nothing great yet + +### Hobbies & Interests +Coding +Basketball +Gym + +### Profiles +[![GitHub][github-img]](https://github.com/itsnotsagar) +[![Twitter][twitter-img]](https://twitter.com/itsnotsagar) + + +[twitter-img]: https://i.imgur.com/wWzX9uB.png +[github-img]: https://i.imgur.com/9I6NRUm.png + From 9f5b051f5cba281d1f415d81b5d00b07463d9ef9 Mon Sep 17 00:00:00 2001 From: TVSSSRIPAD Date: Sat, 12 Oct 2019 14:07:47 +0530 Subject: [PATCH 213/481] added name in contributors.md --- CONTRIBUTORS.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index f97fb1fe..2ebbe888 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -5,7 +5,7 @@ - [Akshi Tak](https://github.com/akshitak) - [Alyssa Columbus](https://github.com/acolum) - [Amit Dutta](https://github.com/Amitdutta7) -- [Andre-Lee](hhttps://github.com/andre-lee) +- [Andre-Lee](https://github.com/andre-lee) - [Ankit Chahar](https://github.com/AnkitChahar) - [Ankit Sharma](https://github.com/AnkitSharmaOnGithub) - [Anna Giliaeva](https://github.com/Nekonokuro) @@ -51,6 +51,7 @@ - [Shriram Navaratnalingam](https://github.com/ShriLingam23) - [Siddharth Raj](https://github.com/iamsidofficial) - [Srajal Agrawal](https://github.com/srajalagr) +- [Sripad](https://github.com/TVSSSRIPAD) - [Thomas Windt](https://github.com/WOLFI3654) - [Tim Solokha](https://github.com/TimSolokha) - [tonzsm](https://github.com/tonzsm) From 4e1308ffa0275b1ea34cdc86b6a394a41a768239 Mon Sep 17 00:00:00 2001 From: TVSSSRIPAD Date: Sat, 12 Oct 2019 14:14:52 +0530 Subject: [PATCH 214/481] added hello-world.c --- code/C/hello-world.c | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 code/C/hello-world.c diff --git a/code/C/hello-world.c b/code/C/hello-world.c new file mode 100644 index 00000000..fca7cd3c --- /dev/null +++ b/code/C/hello-world.c @@ -0,0 +1,5 @@ +#include +int main() +{ +printf("Hello World"); +} From 57b36b5133f22b7d034418f052332d265a7f3fb0 Mon Sep 17 00:00:00 2001 From: Tankica Date: Sat, 12 Oct 2019 13:17:02 +0200 Subject: [PATCH 215/481] Create Tana_R.md Info about Tana --- profiles/Tana_R.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 profiles/Tana_R.md diff --git a/profiles/Tana_R.md b/profiles/Tana_R.md new file mode 100644 index 00000000..240b9bc6 --- /dev/null +++ b/profiles/Tana_R.md @@ -0,0 +1,13 @@ +Tana + +Bio +Student of information sciences and technology + +Location +Somewhere in Europe + +Projects +No project yet. + +Hobbies & Interests +Yogaaa :). From ce4f2cfce78dabddd165f485f3e6d94dd4b52ae9 Mon Sep 17 00:00:00 2001 From: Prateek kocher <45918299+prateekk2001@users.noreply.github.com> Date: Sat, 12 Oct 2019 17:32:00 +0530 Subject: [PATCH 216/481] Update CONTRIBUTORS.md --- CONTRIBUTORS.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index f97fb1fe..ed6c04c3 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -40,6 +40,7 @@ - [nilesh](https://github.com/nileshsahitya9) - [Nishant Tilve](https://github.com/Antimatter98) - [Pragadeeswaran Gnanasekaran](https://github.com/pragapraga) +- [Prateek kocher](https://github.com/prateekk2001) - [Ramy Fetteha](https://github.com/NoirFLamme) - [Randil Tennakoon](https://github.com/randiltennakoon) - [Raul Gonzalez Cruz](https://github.com/raulgonzalezcz) From 5968a7aa465f814d81260c553f9bc694d13dbec7 Mon Sep 17 00:00:00 2001 From: Prateek Date: Sat, 12 Oct 2019 17:38:53 +0530 Subject: [PATCH 217/481] Hello world commit :) --- code/Kotlin/HelloWorld.kt | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 code/Kotlin/HelloWorld.kt diff --git a/code/Kotlin/HelloWorld.kt b/code/Kotlin/HelloWorld.kt new file mode 100644 index 00000000..3504ae80 --- /dev/null +++ b/code/Kotlin/HelloWorld.kt @@ -0,0 +1,4 @@ +fun main() +{ + println("HELLO WORLD :)") +} From 2d69117153410913bcce17d5ae113cc7f7e0b519 Mon Sep 17 00:00:00 2001 From: ashutosh321607 <45094210+ashutosh321607@users.noreply.github.com> Date: Sat, 12 Oct 2019 18:24:32 +0530 Subject: [PATCH 218/481] Update CONTRIBUTORS.md --- CONTRIBUTORS.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index f97fb1fe..742006a1 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -11,6 +11,7 @@ - [Anna Giliaeva](https://github.com/Nekonokuro) - [Anshu Kumari](https://github.com/anshukcse) - [Ariq Heritsa](https://github.com/Heritsam) +- [Ashutosh garg](https://gitHub.com/ashutosh321607) - [Ashutosh Singh](https://github.com/zohan4sh) - [Ayan Goel](https://github.com/GAyan17) - [Bhavesh Gupta](https://github.com/bhavesh-g) From 4ccc2e322f6636bbed36589d95ba3c7987ac9e8c Mon Sep 17 00:00:00 2001 From: suyashbhiste0 Date: Sat, 12 Oct 2019 19:08:21 +0530 Subject: [PATCH 219/481] Accept contibution from Suyash Bhiste --- CONTRIBUTORS.md | 1 + code/Java/HelloWorldProg.java | 5 +++++ profiles/SuyashBhiste.md | 23 +++++++++++++++++++++++ 3 files changed, 29 insertions(+) create mode 100644 code/Java/HelloWorldProg.java create mode 100644 profiles/SuyashBhiste.md diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index f97fb1fe..36315e66 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -9,6 +9,7 @@ - [Ankit Chahar](https://github.com/AnkitChahar) - [Ankit Sharma](https://github.com/AnkitSharmaOnGithub) - [Anna Giliaeva](https://github.com/Nekonokuro) +- [Suyash Bhiste] (https://github.com/SuyashBhiste) - [Anshu Kumari](https://github.com/anshukcse) - [Ariq Heritsa](https://github.com/Heritsam) - [Ashutosh Singh](https://github.com/zohan4sh) diff --git a/code/Java/HelloWorldProg.java b/code/Java/HelloWorldProg.java new file mode 100644 index 00000000..b0bd5c01 --- /dev/null +++ b/code/Java/HelloWorldProg.java @@ -0,0 +1,5 @@ +public class HelloWorldProg{ + public static void main(String[] args){ + System.out.println("Hello, World!"); + } +} diff --git a/profiles/SuyashBhiste.md b/profiles/SuyashBhiste.md new file mode 100644 index 00000000..5fcadeec --- /dev/null +++ b/profiles/SuyashBhiste.md @@ -0,0 +1,23 @@ +## Suyash Bhiste + +### Bio +I am an aspirant learner in field of cloud computing and AI. Currently I consider myself as android developer. + +### Location +Pune, Maharashtra, India + +### Projects +I have made two cool projects. +1. Caesar Cipher in CPP +2. TicTacToe Against AI in CPP + +### Hobbies & Interests +I love too manage events and my interest is in space topics and horror movies. + +### Profiles +[![GitHub][github-img]](https://github.com/SuyashBhiste) +[![Twitter][twitter-img]](https://twitter.com/SuyashBhiste) + + +[twitter-img]: https://i.imgur.com/wWzX9uB.png +[github-img]: https://i.imgur.com/9I6NRUm.png From ae37e8efdc4bcacc15f448713966afedea107990 Mon Sep 17 00:00:00 2001 From: suyashbhiste0 Date: Sat, 12 Oct 2019 19:15:48 +0530 Subject: [PATCH 220/481] Accept contibution from Suyash Bhiste --- profiles/SuyashBhiste.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/profiles/SuyashBhiste.md b/profiles/SuyashBhiste.md index 5fcadeec..6bb6809b 100644 --- a/profiles/SuyashBhiste.md +++ b/profiles/SuyashBhiste.md @@ -1,7 +1,7 @@ ## Suyash Bhiste ### Bio -I am an aspirant learner in field of cloud computing and AI. Currently I consider myself as android developer. +I am an aspirant learner in field of cloud computing and AI. Currently, I consider myself as android developer. ### Location Pune, Maharashtra, India From a226455029012a947089c1f06e60f18a37215401 Mon Sep 17 00:00:00 2001 From: mush60 Date: Sat, 12 Oct 2019 21:55:32 +0700 Subject: [PATCH 221/481] adding Erlang folder, helloworld.erl, adding Mush60.md --- CONTRIBUTORS.md | 1 + code/Erlang/Hello_World.erl | 6 ++++++ profiles/Mush60.md | 21 +++++++++++++++++++++ 3 files changed, 28 insertions(+) create mode 100644 code/Erlang/Hello_World.erl create mode 100644 profiles/Mush60.md diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index f97fb1fe..802e5abc 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -35,6 +35,7 @@ - [Megha Agarwal](https://github.com/meghaa105P) - [Mehul Garg](https://github.com/gargmehul10) - [Momozor](https://github.com/momozor) +- [Mush60](https://github.com/mush60) - [Mykola Balabash](https://github.com/twilderan) - [Naveenraj M](https://github.com/naveenrajm7) - [nilesh](https://github.com/nileshsahitya9) diff --git a/code/Erlang/Hello_World.erl b/code/Erlang/Hello_World.erl new file mode 100644 index 00000000..1a7eb841 --- /dev/null +++ b/code/Erlang/Hello_World.erl @@ -0,0 +1,6 @@ +% hello world program +-module(helloworld). +-export([start/0]). + +start() -> + io:fwrite("Hello, world!\n"). diff --git a/profiles/Mush60.md b/profiles/Mush60.md new file mode 100644 index 00000000..53849952 --- /dev/null +++ b/profiles/Mush60.md @@ -0,0 +1,21 @@ +## Your Name +Muhammad Sholeh / Mush60 + +### Bio +IT Support still learn to code and solve problem + +### Location +Malang City, East of Java, Indonesia + +### Projects +POS app using Laravel + +### Hobbies & Interests +Reading, Programming, Network Security, Music + +### Profiles +[![GitHub][github-img]](https://github.com/mush60) + + +[twitter-img]: https://i.imgur.com/wWzX9uB.png +[github-img]: https://i.imgur.com/9I6NRUm.png From 93cd175fd69daf87ce7b8acfd77c9c083fb9429a Mon Sep 17 00:00:00 2001 From: ateebahmad321 <49478027+ateebahmad321@users.noreply.github.com> Date: Sat, 12 Oct 2019 20:39:27 +0500 Subject: [PATCH 222/481] hello-open-source My first contribution in open source --- code/PHP/hello-open-source | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 code/PHP/hello-open-source diff --git a/code/PHP/hello-open-source b/code/PHP/hello-open-source new file mode 100644 index 00000000..73ecd6e7 --- /dev/null +++ b/code/PHP/hello-open-source @@ -0,0 +1,7 @@ + From ed0cf9883dc9a33d4b64ff335f2089bf46c894b9 Mon Sep 17 00:00:00 2001 From: Kukulkan Date: Sat, 12 Oct 2019 22:32:31 +0530 Subject: [PATCH 223/481] First Timer --- CONTRIBUTORS.md | 1 + code/Shell/hello_world.sh | 4 ++++ profiles/Kaustubh_J.md | 20 ++++++++++++++++++++ 3 files changed, 25 insertions(+) create mode 100644 code/Shell/hello_world.sh create mode 100644 profiles/Kaustubh_J.md diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index f97fb1fe..9ce00240 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -29,6 +29,7 @@ - [Jatin Narula](https://github.com/jatin96) - [João Vítor Morandi Lemos](https://github.com/joaovitorml) - [Kevin Ward](https://github.com/Blueward12) +- [Kaustubh J] (https://github.com/thsubaku9) - [Lilian F](https://github.com/lilianferreira) - [Loris Gabriele](https://github.com/Pyr0x1) - [Luciano Santos](https://github.com/lucianosz7) diff --git a/code/Shell/hello_world.sh b/code/Shell/hello_world.sh new file mode 100644 index 00000000..2905bc76 --- /dev/null +++ b/code/Shell/hello_world.sh @@ -0,0 +1,4 @@ +#!/bin/bash + +read -p "Enter name: " name +echo "Hello $name" \ No newline at end of file diff --git a/profiles/Kaustubh_J.md b/profiles/Kaustubh_J.md new file mode 100644 index 00000000..4ed27c3b --- /dev/null +++ b/profiles/Kaustubh_J.md @@ -0,0 +1,20 @@ +## Anna Giliaeva + +### Bio +I've just started contributing to open source. Looking forward to being useful + +### Location +I'm an Indian + +### Projects +I don't have any projects yet :) + +### Hobbies & Interests +Algorithm designing, gaming, psychology, playing basketball, debating + +### Profiles +[![GitHub][github-img]] (https://github.com/thsubaku9) + + +[twitter-img]: https://i.imgur.com/wWzX9uB.png +[github-img]: https://i.imgur.com/9I6NRUm.png \ No newline at end of file From 67a2b92d0593b87dc8d686799c44ba7e59b672ea Mon Sep 17 00:00:00 2001 From: NinjaCoderDev <56485862+NinjaCoderDev@users.noreply.github.com> Date: Sat, 12 Oct 2019 23:19:36 +0530 Subject: [PATCH 224/481] Create hello_flutter.dart --- code/Dart/hello_flutter.dart | 1 + 1 file changed, 1 insertion(+) create mode 100644 code/Dart/hello_flutter.dart diff --git a/code/Dart/hello_flutter.dart b/code/Dart/hello_flutter.dart new file mode 100644 index 00000000..8cefa989 --- /dev/null +++ b/code/Dart/hello_flutter.dart @@ -0,0 +1 @@ +void main() => print('Hello Dart from Flutter!'); From 428aac208b0d7edb2ecbb4c3a99c72c4bb00e89d Mon Sep 17 00:00:00 2001 From: NinjaCoderDev <56485862+NinjaCoderDev@users.noreply.github.com> Date: Sat, 12 Oct 2019 23:22:11 +0530 Subject: [PATCH 225/481] Update CONTRIBUTORS.md --- CONTRIBUTORS.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index f97fb1fe..cb3e78cd 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -50,6 +50,7 @@ - [Samuel Tonini](https://github.com/samuel-tonini) - [Shriram Navaratnalingam](https://github.com/ShriLingam23) - [Siddharth Raj](https://github.com/iamsidofficial) +- [Soumyadeep Sinha](https://github.com/NinjaCoderDev) - [Srajal Agrawal](https://github.com/srajalagr) - [Thomas Windt](https://github.com/WOLFI3654) - [Tim Solokha](https://github.com/TimSolokha) From b93491cb9b5aad0791cbc0bce812d87570f46a83 Mon Sep 17 00:00:00 2001 From: Kuwarbir Singh Date: Sat, 12 Oct 2019 23:26:44 +0530 Subject: [PATCH 226/481] added python code --- CONTRIBUTORS.md | 1 + code/Python/hello_World-Kuwar.py | 1 + 2 files changed, 2 insertions(+) create mode 100644 code/Python/hello_World-Kuwar.py diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index f97fb1fe..f16f7704 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -29,6 +29,7 @@ - [Jatin Narula](https://github.com/jatin96) - [João Vítor Morandi Lemos](https://github.com/joaovitorml) - [Kevin Ward](https://github.com/Blueward12) +- [Kuwarbir Singh](https://github.com/kuwarbir) - [Lilian F](https://github.com/lilianferreira) - [Loris Gabriele](https://github.com/Pyr0x1) - [Luciano Santos](https://github.com/lucianosz7) diff --git a/code/Python/hello_World-Kuwar.py b/code/Python/hello_World-Kuwar.py new file mode 100644 index 00000000..ad35e5ae --- /dev/null +++ b/code/Python/hello_World-Kuwar.py @@ -0,0 +1 @@ +print("Hello World") From 12b595e0ff235ab615d50cee8c1bccb97000c208 Mon Sep 17 00:00:00 2001 From: DiBiN <41875571+dibinxavier@users.noreply.github.com> Date: Sun, 13 Oct 2019 02:20:48 +0530 Subject: [PATCH 227/481] Update CONTRIBUTORS.md --- CONTRIBUTORS.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 121de6f4..ffb92707 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -54,5 +54,5 @@ - [Victor Azevedo](https://github.com/victormazevedo) - [viewless](https://github.com/viewless) - [Vlad Zaporozhskyi](https://github.com/thezapovlad) - +. From 7bd8dfbba20590c3be283a1309edf2a617239a3b Mon Sep 17 00:00:00 2001 From: DiBiN <41875571+dibinxavier@users.noreply.github.com> Date: Sun, 13 Oct 2019 02:21:32 +0530 Subject: [PATCH 228/481] Update CONTRIBUTORS.md --- CONTRIBUTORS.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index ffb92707..24be226c 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -20,6 +20,7 @@ - [Cresencio Flores](https://github.com/CresencioF) - [dark-shadow7](https://github.com/dark-shadow7) - [Deeksha Agrawal](https://github.com/agrawal-deeksha) +- [ibin Xavier](https://github.com/dibinxavier) - [DzunN86](https://github.com/DzunN86) - [Emmanuel Ezenwigbo](https://github.com/SkyC0der) - [Erol Aliyev](https://github.com/erolaliyev) @@ -54,5 +55,4 @@ - [Victor Azevedo](https://github.com/victormazevedo) - [viewless](https://github.com/viewless) - [Vlad Zaporozhskyi](https://github.com/thezapovlad) -. From dc748a8512a60859ba899b92dbc8f4fbbd298ab4 Mon Sep 17 00:00:00 2001 From: ABID SALEEM Date: Sun, 13 Oct 2019 09:54:27 +0530 Subject: [PATCH 229/481] Create helloWorld --- code/Python/helloWorld | 1 + 1 file changed, 1 insertion(+) create mode 100644 code/Python/helloWorld diff --git a/code/Python/helloWorld b/code/Python/helloWorld new file mode 100644 index 00000000..ad35e5ae --- /dev/null +++ b/code/Python/helloWorld @@ -0,0 +1 @@ +print("Hello World") From ef8fd223dae78d6748908a2ad223d84432a7cf64 Mon Sep 17 00:00:00 2001 From: ABID SALEEM Date: Sun, 13 Oct 2019 10:06:58 +0530 Subject: [PATCH 230/481] added Abid Saleem --- CONTRIBUTORS.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index f97fb1fe..e8acb232 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -1,6 +1,7 @@ - [AAMIR AHMAD](https://github.com/sickwiz) - [Abbas Abi](https://github.com/AbbasAbi) +- [Abid Saleem](https://github.com/abidsal04) - [Ajey Prasand](https://github.com/ajeyprasand) - [Akshi Tak](https://github.com/akshitak) - [Alyssa Columbus](https://github.com/acolum) From e9f4fc306c5203edde2608b0fc5628c36dfda24a Mon Sep 17 00:00:00 2001 From: veugelenw Date: Sun, 13 Oct 2019 18:11:56 +1100 Subject: [PATCH 231/481] Update CONTRIBUTORS.md --- CONTRIBUTORS.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index f97fb1fe..6cd8fad9 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -58,5 +58,7 @@ - [Victor Azevedo](https://github.com/victormazevedo) - [viewless](https://github.com/viewless) - [Vlad Zaporozhskyi](https://github.com/thezapovlad) +- [Walter Brahman](https://github.com/veugelenw) + From b5009202fa4aa60e0fd696d3fd492f801efcdd46 Mon Sep 17 00:00:00 2001 From: Kunal Kumar Date: Sun, 13 Oct 2019 14:53:01 +0530 Subject: [PATCH 232/481] hello world program added --- CONTRIBUTORS.md | 1 + code/C++/Hello-World.cpp | 7 +++++++ code/C++/helloWorld.cpp | 4 +--- profiles/Kunal_Kumar.md | 24 ++++++++++++++++++++++++ 4 files changed, 33 insertions(+), 3 deletions(-) create mode 100644 code/C++/Hello-World.cpp create mode 100644 profiles/Kunal_Kumar.md diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index f97fb1fe..540456f9 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -29,6 +29,7 @@ - [Jatin Narula](https://github.com/jatin96) - [João Vítor Morandi Lemos](https://github.com/joaovitorml) - [Kevin Ward](https://github.com/Blueward12) +- [Kunal Kumar](https://github.com/kunal164107) - [Lilian F](https://github.com/lilianferreira) - [Loris Gabriele](https://github.com/Pyr0x1) - [Luciano Santos](https://github.com/lucianosz7) diff --git a/code/C++/Hello-World.cpp b/code/C++/Hello-World.cpp new file mode 100644 index 00000000..c959fa40 --- /dev/null +++ b/code/C++/Hello-World.cpp @@ -0,0 +1,7 @@ +#include +using namespace std + +int main() +{ + cout<<"Hello, World"< int main(){ std::cout<<"Hello World"< +[twitter-img]: https://i.imgur.com/wWzX9uB.png +[github-img]: https://i.imgur.com/9I6NRUm.png From 13f8a3101f0af407177721ffee7378d47178cfbc Mon Sep 17 00:00:00 2001 From: Subhadeep Deyashi Date: Sun, 13 Oct 2019 15:33:09 +0530 Subject: [PATCH 233/481] Added subhadeep-deyashi.md file --- profiles/subhadeep-deyashi.md | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 profiles/subhadeep-deyashi.md diff --git a/profiles/subhadeep-deyashi.md b/profiles/subhadeep-deyashi.md new file mode 100644 index 00000000..c07626b1 --- /dev/null +++ b/profiles/subhadeep-deyashi.md @@ -0,0 +1,22 @@ +## Subhadeep Deyashi + +### Bio +Enthusiactic Programmer + +### Location +India + +### Projects +- Image Super Resolution +- Cats vs Dogs Image Classifier + +### Hobbies & Interests +Playing Cricket + +### Profiles +[![GitHub][github-img]](https://github.com/subhadeep-deyashi) +[![Twitter][twitter-img]](https://twitter.com/Subhadeep01) + + +[twitter-img]: https://i.imgur.com/wWzX9uB.png +[github-img]: https://i.imgur.com/9I6NRUm.png From 965fb614736b6a35c448dbad80420b0570ae1ef9 Mon Sep 17 00:00:00 2001 From: Sparsh Kamat Date: Sun, 13 Oct 2019 15:33:31 +0530 Subject: [PATCH 234/481] Create Hello World in C --- code/C/Hello World in C | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 code/C/Hello World in C diff --git a/code/C/Hello World in C b/code/C/Hello World in C new file mode 100644 index 00000000..5158b44b --- /dev/null +++ b/code/C/Hello World in C @@ -0,0 +1,6 @@ +#include +int main() +{ + printf("Hello World") + return0; +} From 00102a53bdd2f52f747c70ce3cf56b28b02df8ef Mon Sep 17 00:00:00 2001 From: hadanavdeep <56508705+hadanavdeep@users.noreply.github.com> Date: Sun, 13 Oct 2019 18:42:10 +0530 Subject: [PATCH 235/481] Update CONTRIBUTORS.md --- CONTRIBUTORS.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index f97fb1fe..0c845b2b 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -36,6 +36,7 @@ - [Mehul Garg](https://github.com/gargmehul10) - [Momozor](https://github.com/momozor) - [Mykola Balabash](https://github.com/twilderan) +- [Navdeep Hada](https://github.com/hadanavdeep) - [Naveenraj M](https://github.com/naveenrajm7) - [nilesh](https://github.com/nileshsahitya9) - [Nishant Tilve](https://github.com/Antimatter98) From cc24cc12fb13dda792d026e78fae5df505355d7c Mon Sep 17 00:00:00 2001 From: tulikakundu <33029495+tulikakundu@users.noreply.github.com> Date: Sun, 13 Oct 2019 18:43:20 +0530 Subject: [PATCH 236/481] Update CONTRIBUTORS.md --- CONTRIBUTORS.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index f97fb1fe..49a7ec18 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -54,6 +54,7 @@ - [Thomas Windt](https://github.com/WOLFI3654) - [Tim Solokha](https://github.com/TimSolokha) - [tonzsm](https://github.com/tonzsm) +- [tulika kundu](https://github.com/tulikakundu) - [Varun Vishal](https://github.com/varunvishal10) - [Victor Azevedo](https://github.com/victormazevedo) - [viewless](https://github.com/viewless) From 5632872add959fec85806fd8846ea8d6294f1fe2 Mon Sep 17 00:00:00 2001 From: "[kruejuli]" <[kruejuli@students.uni-mainz.de]> Date: Sun, 13 Oct 2019 15:53:52 +0200 Subject: [PATCH 237/481] Contributed to all 3 --- CONTRIBUTORS.md | 1 + code/Java/HelloWorldByJuli.java | 11 +++++++++++ profiles/Juli_Krue.md | 21 +++++++++++++++++++++ 3 files changed, 33 insertions(+) create mode 100644 code/Java/HelloWorldByJuli.java create mode 100644 profiles/Juli_Krue.md diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index f97fb1fe..be9111d9 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -28,6 +28,7 @@ - [Hritik Soni](https://github.com/iamhritik55) - [Jatin Narula](https://github.com/jatin96) - [João Vítor Morandi Lemos](https://github.com/joaovitorml) +- [Juli Krue](https://github.com/JuliKrue) - [Kevin Ward](https://github.com/Blueward12) - [Lilian F](https://github.com/lilianferreira) - [Loris Gabriele](https://github.com/Pyr0x1) diff --git a/code/Java/HelloWorldByJuli.java b/code/Java/HelloWorldByJuli.java new file mode 100644 index 00000000..8e06d35e --- /dev/null +++ b/code/Java/HelloWorldByJuli.java @@ -0,0 +1,11 @@ +package hacktober; + +public class HelloWorld { + + public static void main(String[] args) { + + System.out.println("Hello World"); + + } + +} diff --git a/profiles/Juli_Krue.md b/profiles/Juli_Krue.md new file mode 100644 index 00000000..15713f17 --- /dev/null +++ b/profiles/Juli_Krue.md @@ -0,0 +1,21 @@ +## Juli Krue + +### Bio +Digial humanities student learning to code. + +### Location +Home Sweet Home. + +### Projects +Plain html/css Pages for different university courses,simple sythesizer with FAUST, simple Patches in PD. + +### Hobbies & Interests +Crossfit,Books and Comics,Music,Yoga,Code. + +### Profiles +[![GitHub][github-img]](https://github.com/JuliKrue) +[![Twitter][twitter-img]](https://twitter.com/juli_krueger) + + +[twitter-img]: https://i.imgur.com/wWzX9uB.png +[github-img]: https://i.imgur.com/9I6NRUm.png \ No newline at end of file From 72a33ef1e7ad6056f1ac4465ffcc95238abb6a2b Mon Sep 17 00:00:00 2001 From: nisheanthan Date: Sun, 13 Oct 2019 22:59:42 +0530 Subject: [PATCH 238/481] hello world in dart --- CONTRIBUTORS.md | 1 + code/Dart/first_hello_world.dart | 4 ++++ profiles/Nisheanthan.md | 22 ++++++++++++++++++++++ 3 files changed, 27 insertions(+) create mode 100644 code/Dart/first_hello_world.dart create mode 100644 profiles/Nisheanthan.md diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index f97fb1fe..09eba9c8 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -39,6 +39,7 @@ - [Naveenraj M](https://github.com/naveenrajm7) - [nilesh](https://github.com/nileshsahitya9) - [Nishant Tilve](https://github.com/Antimatter98) +- [Nisheanthan Karthikeyan](https://github.com/Nisheanthan) - [Pragadeeswaran Gnanasekaran](https://github.com/pragapraga) - [Ramy Fetteha](https://github.com/NoirFLamme) - [Randil Tennakoon](https://github.com/randiltennakoon) diff --git a/code/Dart/first_hello_world.dart b/code/Dart/first_hello_world.dart new file mode 100644 index 00000000..4990d068 --- /dev/null +++ b/code/Dart/first_hello_world.dart @@ -0,0 +1,4 @@ +// this is my first code in dart. +void main() { + print("Hello World"); +} \ No newline at end of file diff --git a/profiles/Nisheanthan.md b/profiles/Nisheanthan.md new file mode 100644 index 00000000..ef68504c --- /dev/null +++ b/profiles/Nisheanthan.md @@ -0,0 +1,22 @@ +Nisheanthan Karthikeyan + +## Bio +Hey, Am an enthusiastic student who is passionated on whatever doing. +I'm looking to polish my self with each and every bit of chance am getting +and will keep going like this untill all ends. + +## Location +Colombo, Sri Lanka + +## Projects +Working with some Angular projects and now stepping into Dart/Flutter. + +## Hobbies and Interests +Love to code, Chess with friends and Music makes me relax. + +## Profiles +[![GitHub][github-img]](https://github.com/Nisheanthan) +[![Twitter][twitter-img]](https://twitter.com/home) + +[twitter-img]: https://i.imgur.com/wWzX9uB.png +[github-img]: https://i.imgur.com/9I6NRUm.png \ No newline at end of file From 56a25e8b52316263bb127fed43e488b07f62d040 Mon Sep 17 00:00:00 2001 From: Harsh Tank Date: Mon, 14 Oct 2019 02:55:51 +0530 Subject: [PATCH 239/481] Added my name in Contributors --- CONTRIBUTORS.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index f97fb1fe..d03665f5 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -26,6 +26,7 @@ - [Erol Aliyev](https://github.com/erolaliyev) - [HRAnkit](https://github.com/hrankit) - [Hritik Soni](https://github.com/iamhritik55) +- [Harsh Tank](https://github.com/harshtank) - [Jatin Narula](https://github.com/jatin96) - [João Vítor Morandi Lemos](https://github.com/joaovitorml) - [Kevin Ward](https://github.com/Blueward12) From 183468e8ac68046405c83930c1bafd3bfd074a91 Mon Sep 17 00:00:00 2001 From: eshack94 Date: Mon, 14 Oct 2019 00:43:43 -0400 Subject: [PATCH 240/481] fix contributers.md alphabetization and add eshack94 to contributing.md --- CONTRIBUTORS.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index f97fb1fe..16286419 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -15,13 +15,14 @@ - [Ayan Goel](https://github.com/GAyan17) - [Bhavesh Gupta](https://github.com/bhavesh-g) - [CaffeinatedCod3r](https://github.com/CaffeinatedCod3r) -- [CherryKitten](https://github.com/CherryKitten) - [Chandra Mouli](https://github.com/codechandra) +- [CherryKitten](https://github.com/CherryKitten) - [Corbin Taylor](https://github.com/cjtaylor1990) - [Cresencio Flores](https://github.com/CresencioF) - [dark-shadow7](https://github.com/dark-shadow7) - [Deeksha Agrawal](https://github.com/agrawal-deeksha) - [DzunN86](https://github.com/DzunN86) +- [Elijah Shackelford](https://github.com/eshack94) - [Emmanuel Ezenwigbo](https://github.com/SkyC0der) - [Erol Aliyev](https://github.com/erolaliyev) - [HRAnkit](https://github.com/hrankit) From a13b6f8cd1a9bf4e9f875c51f2081b3ccb64c52a Mon Sep 17 00:00:00 2001 From: Rounak Agarwal Date: Mon, 14 Oct 2019 11:27:09 +0530 Subject: [PATCH 241/481] Update CONTRIBUTORS.md --- CONTRIBUTORS.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index a3b1c6c4..449bf430 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -19,8 +19,8 @@ - [Corbin Taylor](https://github.com/cjtaylor1990) - [Cresencio Flores](https://github.com/CresencioF) - [dark-shadow7](https://github.com/dark-shadow7) -- [drmyuu](https://github.com/drmyuu) - [Deeksha Agrawal](https://github.com/agrawal-deeksha) +- [drmyuu](https://github.com/drmyuu) - [DzunN86](https://github.com/DzunN86) - [Emmanuel Ezenwigbo](https://github.com/SkyC0der) - [Erol Aliyev](https://github.com/erolaliyev) From 707e385ce569ae726c478c5bdce4863a6eebb21f Mon Sep 17 00:00:00 2001 From: Rounak Agarwal Date: Mon, 14 Oct 2019 11:31:11 +0530 Subject: [PATCH 242/481] Rename hello_world.java to code/Java/hello_world_.java --- hello_world.java => code/Java/hello_world_.java | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename hello_world.java => code/Java/hello_world_.java (100%) diff --git a/hello_world.java b/code/Java/hello_world_.java similarity index 100% rename from hello_world.java rename to code/Java/hello_world_.java From c54e73319ae3fe404f5672fc03af7f3615b00c76 Mon Sep 17 00:00:00 2001 From: e1810 <46741658+e1810@users.noreply.github.com> Date: Mon, 14 Oct 2019 15:03:44 +0900 Subject: [PATCH 243/481] Add hello-world program --- code/Python/helloWorld | 1 + 1 file changed, 1 insertion(+) create mode 100644 code/Python/helloWorld diff --git a/code/Python/helloWorld b/code/Python/helloWorld new file mode 100644 index 00000000..eb2c6749 --- /dev/null +++ b/code/Python/helloWorld @@ -0,0 +1 @@ +print("Hello,world") From 8b38da5abaeaa3180c5659a04f913498908ee495 Mon Sep 17 00:00:00 2001 From: nymika Date: Mon, 14 Oct 2019 12:25:06 +0530 Subject: [PATCH 244/481] first commit --- CONTRIBUTORS.md | 1 + code/C++/namaskaram.cpp | 7 +++++++ profiles/nymika.md | 22 ++++++++++++++++++++++ 3 files changed, 30 insertions(+) create mode 100644 code/C++/namaskaram.cpp create mode 100644 profiles/nymika.md diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 353be2bc..3088a85a 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -45,6 +45,7 @@ - [Naveenraj M](https://github.com/naveenrajm7) - [nilesh](https://github.com/nileshsahitya9) - [Nishant Tilve](https://github.com/Antimatter98) +- [nymika](https://github.com/nymika) - [Pragadeeswaran Gnanasekaran](https://github.com/pragapraga) - [Ramy Fetteha](https://github.com/NoirFLamme) - [Randil Tennakoon](https://github.com/randiltennakoon) diff --git a/code/C++/namaskaram.cpp b/code/C++/namaskaram.cpp new file mode 100644 index 00000000..c1b9c410 --- /dev/null +++ b/code/C++/namaskaram.cpp @@ -0,0 +1,7 @@ +#include +using namespace std; +int main() +{ +cout<<"hello world"; +return 0; +} diff --git a/profiles/nymika.md b/profiles/nymika.md new file mode 100644 index 00000000..1bcf7a41 --- /dev/null +++ b/profiles/nymika.md @@ -0,0 +1,22 @@ +## nymika + +### Location +- Hyderabad,Telangana. + +### Academics +- ABV-IIITM gwalior. + +### Non-Coding Interests +- Psychology +- Philosophy +- Science +- Dance + +### Why Do You Love Coding? +You are free to do whatever you want. + +### Your Favorite Animal +Every animal + +### Your Favorite Dessert +I don't eat desserts From 0783065d24f7cfc0383f6fc53cfc488329abd307 Mon Sep 17 00:00:00 2001 From: Michelle Walstra Date: Mon, 14 Oct 2019 10:43:21 +0200 Subject: [PATCH 245/481] Adding my profile --- profiles/Michelle_Walstra.md | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 profiles/Michelle_Walstra.md diff --git a/profiles/Michelle_Walstra.md b/profiles/Michelle_Walstra.md new file mode 100644 index 00000000..2661873b --- /dev/null +++ b/profiles/Michelle_Walstra.md @@ -0,0 +1,24 @@ +## Michelle Walstra + +### Bio +I am UX designer for an agile web development agency in South Africa. I have a degree in Visual design but fell in love with user experience and web development once I started working in the field. + +### Location +South Africa + +### Projects +- SPAR - https://www.spar.co.za +- Debonairs Pizza - https://app.debonairspizza.co.za +- Portfolio - http://michellewalstra.com + +### Hobbies & Interests +- Avid Redditor +- Watching Netflix +- Listening to music + +### Profiles +[![GitHub][github-img]](https://github.com/michelleswalstra) + + +[twitter-img]: https://i.imgur.com/wWzX9uB.png +[github-img]: https://i.imgur.com/9I6NRUm.png From d4bee74b654a947cc4d4449e33f82337023d6aa5 Mon Sep 17 00:00:00 2001 From: asmibadole <56522149+asmibadole@users.noreply.github.com> Date: Mon, 14 Oct 2019 16:54:01 +0530 Subject: [PATCH 246/481] Update CONTRIBUTORS.md --- CONTRIBUTORS.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 353be2bc..df1c308c 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -13,6 +13,7 @@ - [Anshu Kumari](https://github.com/anshukcse) - [Ariq Heritsa](https://github.com/Heritsam) - [Ashutosh Singh](https://github.com/zohan4sh) +- [Asmi Badole](https://github.com/asmibadole) - [Ayan Goel](https://github.com/GAyan17) - [Bhavesh Gupta](https://github.com/bhavesh-g) - [CaffeinatedCod3r](https://github.com/CaffeinatedCod3r) @@ -66,5 +67,4 @@ - [Victor Azevedo](https://github.com/victormazevedo) - [viewless](https://github.com/viewless) - [Vlad Zaporozhskyi](https://github.com/thezapovlad) - From 313afd338310c9f487896c60fc45c97be0cd4af4 Mon Sep 17 00:00:00 2001 From: Rachit Garg Date: Mon, 14 Oct 2019 19:25:41 +0530 Subject: [PATCH 247/481] Added helloWorld, Profile and edited contributors.md --- CONTRIBUTORS.md | 1 + code/C/Hello_World_RG.c | 8 ++++++++ profiles/Rachit_Garg.md | 24 ++++++++++++++++++++++++ 3 files changed, 33 insertions(+) create mode 100644 code/C/Hello_World_RG.c create mode 100644 profiles/Rachit_Garg.md diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 353be2bc..1cc113a4 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -46,6 +46,7 @@ - [nilesh](https://github.com/nileshsahitya9) - [Nishant Tilve](https://github.com/Antimatter98) - [Pragadeeswaran Gnanasekaran](https://github.com/pragapraga) +- [Rachit Garg](https://github.com/rstar900) - [Ramy Fetteha](https://github.com/NoirFLamme) - [Randil Tennakoon](https://github.com/randiltennakoon) - [Raul Gonzalez Cruz](https://github.com/raulgonzalezcz) diff --git a/code/C/Hello_World_RG.c b/code/C/Hello_World_RG.c new file mode 100644 index 00000000..c1a549b7 --- /dev/null +++ b/code/C/Hello_World_RG.c @@ -0,0 +1,8 @@ +#include + +int main() +{ + printf("Hello, World!"); + + return 0; +} \ No newline at end of file diff --git a/profiles/Rachit_Garg.md b/profiles/Rachit_Garg.md new file mode 100644 index 00000000..77a87619 --- /dev/null +++ b/profiles/Rachit_Garg.md @@ -0,0 +1,24 @@ +## Rachit Garg + +### Bio + I am a curious beast by nature. Exploring + new places and new technologies is my passion. + +### Location +Hometown is Delhi. +Currently in Chennai. + +### Projects +A DTMF based mobile controlled robot +and a plant moisture monitoring system +based on IOT. + +### Hobbies & Interests +Listening to music, travelling and coding. + +### Profiles +[![GitHub][github-img]](https://github.com/rstar900) + + +[twitter-img]: https://i.imgur.com/wWzX9uB.png +[github-img]: https://i.imgur.com/9I6NRUm.png From af6bd832b1fa2b0141581e5edaed799bd7b01d1c Mon Sep 17 00:00:00 2001 From: TejpalSharma7 <55192304+TejpalSharma7@users.noreply.github.com> Date: Mon, 14 Oct 2019 19:52:36 +0530 Subject: [PATCH 248/481] Create Tejpalsharmahacktober --- code/C++/Tejpalsharmahacktober | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 code/C++/Tejpalsharmahacktober diff --git a/code/C++/Tejpalsharmahacktober b/code/C++/Tejpalsharmahacktober new file mode 100644 index 00000000..8cf87a9f --- /dev/null +++ b/code/C++/Tejpalsharmahacktober @@ -0,0 +1,4 @@ +#include +void main() +{ cout<<"Hello World"; +} From 1cc958232f2fe5169f968f9367b4484a12e32aac Mon Sep 17 00:00:00 2001 From: TejpalSharma7 <55192304+TejpalSharma7@users.noreply.github.com> Date: Mon, 14 Oct 2019 20:05:32 +0530 Subject: [PATCH 249/481] Create TejpalSharma.md for hacktoberfest19 --- profiles/TejpalSharma.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 profiles/TejpalSharma.md diff --git a/profiles/TejpalSharma.md b/profiles/TejpalSharma.md new file mode 100644 index 00000000..ca864e66 --- /dev/null +++ b/profiles/TejpalSharma.md @@ -0,0 +1,20 @@ +Tejpal Sharma + +### Bio +Enthusiastic,new to coding, getting to know myself + +### Location +Delhi,India + +### Projects +Built my own website at trippytoes.gq , build a supermarket cashier application in cpp + +### Hobbies & Interests +Reading books, Shopping, Reading social studies, Doing Coding, Business development + +### Profiles +https://github.com/TejpalSharma7 +No twitter account + +[twitter-img]: https://i.imgur.com/wWzX9uB.png +[github-img]: https://i.imgur.com/9I6NRUm.png From 248603fd7b7c7905e5fa95cf53752c07acf1b5e7 Mon Sep 17 00:00:00 2001 From: FurfurV <44726497+FurfurV@users.noreply.github.com> Date: Mon, 14 Oct 2019 15:51:04 +0100 Subject: [PATCH 250/481] Create simple_hello_world --- code/Python/simple_hello_world | 1 + 1 file changed, 1 insertion(+) create mode 100644 code/Python/simple_hello_world diff --git a/code/Python/simple_hello_world b/code/Python/simple_hello_world new file mode 100644 index 00000000..f301245e --- /dev/null +++ b/code/Python/simple_hello_world @@ -0,0 +1 @@ +print("Hello World!") From 9aefdc304e63a30aac6a88c00f79a0a852599d2d Mon Sep 17 00:00:00 2001 From: FurfurV <44726497+FurfurV@users.noreply.github.com> Date: Mon, 14 Oct 2019 15:55:07 +0100 Subject: [PATCH 251/481] Update CONTRIBUTORS.md --- CONTRIBUTORS.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 353be2bc..79a912ab 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -65,6 +65,7 @@ - [Varun Vishal](https://github.com/varunvishal10) - [Victor Azevedo](https://github.com/victormazevedo) - [viewless](https://github.com/viewless) +- [Viktoria Cseke](https://github.com/FurfurV) - [Vlad Zaporozhskyi](https://github.com/thezapovlad) From 5dfcdd0b9ee09f4c67ea02762cfc00871d0da059 Mon Sep 17 00:00:00 2001 From: Ciceer Ghimirey <24794916+TheCiceerGuy@users.noreply.github.com> Date: Mon, 14 Oct 2019 21:01:08 +0545 Subject: [PATCH 252/481] Add files via upload --- CONTRIBUTORS.md | 1 + code/JavaScript/hello-world.js | 1 + 2 files changed, 2 insertions(+) create mode 100644 code/JavaScript/hello-world.js diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 353be2bc..fd1cf7b4 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -55,6 +55,7 @@ - [Rounak Agarwal](https://github.com/agarwalrounak) - [Sahildeep Singh](https://github.com/sahilcodes) - [Samuel Tonini](https://github.com/samuel-tonini) +- [Shishir Ghimire](https://github.com/theciceergguy) - [Shriram Navaratnalingam](https://github.com/ShriLingam23) - [Siddharth Raj](https://github.com/iamsidofficial) - [Srajal Agrawal](https://github.com/srajalagr) diff --git a/code/JavaScript/hello-world.js b/code/JavaScript/hello-world.js new file mode 100644 index 00000000..c0518622 --- /dev/null +++ b/code/JavaScript/hello-world.js @@ -0,0 +1 @@ +document.write("Hello, World!"); \ No newline at end of file From 6721467b488b0d9ee327ec7f94e1e9b5fe095061 Mon Sep 17 00:00:00 2001 From: Uyin Solomon <34033122+rootleet@users.noreply.github.com> Date: Mon, 14 Oct 2019 15:21:59 +0000 Subject: [PATCH 253/481] update CONTIBUTIORS.md --- CONTRIBUTORS.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 353be2bc..7b1d88d9 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -62,6 +62,7 @@ - [Thomas Windt](https://github.com/WOLFI3654) - [Tim Solokha](https://github.com/TimSolokha) - [tonzsm](https://github.com/tonzsm) +- [Uyin SOlomon](https://github.com/rootleet) - [Varun Vishal](https://github.com/varunvishal10) - [Victor Azevedo](https://github.com/victormazevedo) - [viewless](https://github.com/viewless) From 771c1c345d34a4009446ef0aa16d42e8035b90db Mon Sep 17 00:00:00 2001 From: Cara Krug <32429264+computersushi@users.noreply.github.com> Date: Mon, 14 Oct 2019 10:37:04 -0500 Subject: [PATCH 254/481] Create SkylarKrug --- profiles/SkylarKrug | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 profiles/SkylarKrug diff --git a/profiles/SkylarKrug b/profiles/SkylarKrug new file mode 100644 index 00000000..ce7e44d9 --- /dev/null +++ b/profiles/SkylarKrug @@ -0,0 +1,3 @@ +## Cara Krug +### I live in the United States +### I enjoy coding and security From f47bf6f41701b97251d24e82ccf053cdf81fe006 Mon Sep 17 00:00:00 2001 From: Emre Demirel Date: Mon, 14 Oct 2019 17:59:58 +0200 Subject: [PATCH 255/481] second --- code/JavaScript/OliveBranch.js | 1 + 1 file changed, 1 insertion(+) create mode 100644 code/JavaScript/OliveBranch.js diff --git a/code/JavaScript/OliveBranch.js b/code/JavaScript/OliveBranch.js new file mode 100644 index 00000000..4084c305 --- /dev/null +++ b/code/JavaScript/OliveBranch.js @@ -0,0 +1 @@ +console.log("This is olive branch"); From 4e07c421d8b109407987b6b2a053dff018b2132c Mon Sep 17 00:00:00 2001 From: Nischal Kanishk Date: Mon, 14 Oct 2019 21:46:57 +0530 Subject: [PATCH 256/481] updated contributors.md --- CONTRIBUTORS.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 353be2bc..62d9333e 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -44,6 +44,7 @@ - [Mykola Balabash](https://github.com/twilderan) - [Naveenraj M](https://github.com/naveenrajm7) - [nilesh](https://github.com/nileshsahitya9) +- [NischalKanishk](https://github.com/NischalKanishk) - [Nishant Tilve](https://github.com/Antimatter98) - [Pragadeeswaran Gnanasekaran](https://github.com/pragapraga) - [Ramy Fetteha](https://github.com/NoirFLamme) From 4c093c485aceb548a75d1f21b45a27362781cd3f Mon Sep 17 00:00:00 2001 From: Nischal Kanishk Date: Mon, 14 Oct 2019 21:48:16 +0530 Subject: [PATCH 257/481] added my Hello World code. --- code/C/Hello_World_Nis.c | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 code/C/Hello_World_Nis.c diff --git a/code/C/Hello_World_Nis.c b/code/C/Hello_World_Nis.c new file mode 100644 index 00000000..dd694262 --- /dev/null +++ b/code/C/Hello_World_Nis.c @@ -0,0 +1,6 @@ +#include +int main() +{ + printf("Hello World!"); + return 0; +} \ No newline at end of file From 42da6275d4c2a4caa0347679f2d3ba29f35576d0 Mon Sep 17 00:00:00 2001 From: Nischal Kanishk Date: Mon, 14 Oct 2019 21:49:38 +0530 Subject: [PATCH 258/481] added my profile --- profiles/Nischal_Kanishk.md | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 profiles/Nischal_Kanishk.md diff --git a/profiles/Nischal_Kanishk.md b/profiles/Nischal_Kanishk.md new file mode 100644 index 00000000..8ff0c143 --- /dev/null +++ b/profiles/Nischal_Kanishk.md @@ -0,0 +1,24 @@ +## Nischal Kanishk + +### Bio +I believe in the theory of mankind. + +### Location +Belgaum + +### Projects +Restaurant management app with *Node* +Recipe collection app *Node* +Buggers Hub to connect to coders *MERN* + +### Hobbies & Interests +Gaming attracts me the most. +Travelling fascinates me. + +### Profiles +[![GitHub][github-img]](https://github.com/NischalKanishk) +[![Twitter][twitter-img]](https://twitter.com/Ns_Kanishk) + + +[twitter-img]: https://i.imgur.com/wWzX9uB.png +[github-img]: https://i.imgur.com/9I6NRUm.png \ No newline at end of file From fbaa082f2dec2a02be28bc1296fb6bacd126adfa Mon Sep 17 00:00:00 2001 From: SRI HARAN Date: Mon, 14 Oct 2019 21:59:26 +0530 Subject: [PATCH 259/481] Create helloworld-sriharan.py --- code/Python/helloworld-sriharan.py | 1 + 1 file changed, 1 insertion(+) create mode 100644 code/Python/helloworld-sriharan.py diff --git a/code/Python/helloworld-sriharan.py b/code/Python/helloworld-sriharan.py new file mode 100644 index 00000000..6a46a833 --- /dev/null +++ b/code/Python/helloworld-sriharan.py @@ -0,0 +1 @@ +print ("Hello world!") From b26b4560584827acd7b1fd2d093bc90fdbe22a92 Mon Sep 17 00:00:00 2001 From: SRI HARAN Date: Mon, 14 Oct 2019 22:01:46 +0530 Subject: [PATCH 260/481] Create sriharan-manogaran.md --- profiles/sriharan-manogaran.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 profiles/sriharan-manogaran.md diff --git a/profiles/sriharan-manogaran.md b/profiles/sriharan-manogaran.md new file mode 100644 index 00000000..b15c2de4 --- /dev/null +++ b/profiles/sriharan-manogaran.md @@ -0,0 +1,21 @@ +## Sriharan Manogaran + +### Bio +Developer, ML/DS + +### Location +Chennai, Tamil Nadu + +### Projects +Chatbot + +### Hobbies & Interests +Riding and moving around +Coding + +### Profiles +[![GitHub][github-img]](https://github.com/sriharan16897) + + +[twitter-img]: https://i.imgur.com/wWzX9uB.png +[github-img]: https://i.imgur.com/9I6NRUm.png From 75ab2ad78b2b53a5d6ed996858809c9d65915bd1 Mon Sep 17 00:00:00 2001 From: SRI HARAN Date: Mon, 14 Oct 2019 22:04:13 +0530 Subject: [PATCH 261/481] Update CONTRIBUTORS.md --- CONTRIBUTORS.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 353be2bc..fc2e07bf 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -58,6 +58,7 @@ - [Shriram Navaratnalingam](https://github.com/ShriLingam23) - [Siddharth Raj](https://github.com/iamsidofficial) - [Srajal Agrawal](https://github.com/srajalagr) +- [Sriharan Manogaran](https://github.com/sriharan16897) - [TheSolution90](https://github.com/thesolution90) - [Thomas Windt](https://github.com/WOLFI3654) - [Tim Solokha](https://github.com/TimSolokha) From 02004762df33dbc82d9928700a1af21e445f8a5a Mon Sep 17 00:00:00 2001 From: Rishabh Shukla <42274135+RishabhShukla1511@users.noreply.github.com> Date: Mon, 14 Oct 2019 22:39:02 +0530 Subject: [PATCH 262/481] Add files via upload My first Hacktober19 fest pr --- code/Java/HelloWORLD.java | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 code/Java/HelloWORLD.java diff --git a/code/Java/HelloWORLD.java b/code/Java/HelloWORLD.java new file mode 100644 index 00000000..3053994a --- /dev/null +++ b/code/Java/HelloWORLD.java @@ -0,0 +1,9 @@ +//My first repository to enter in HACKTOBERFEST + +class HelloWORLD { + + public static void main(String[] args) + { + System.out.println("Hello World in java"); + } +} From 2a2580df1c6ab93be9837807b3a681d7b020586f Mon Sep 17 00:00:00 2001 From: FurfurV <44726497+FurfurV@users.noreply.github.com> Date: Mon, 14 Oct 2019 20:19:54 +0100 Subject: [PATCH 263/481] Create viktoria.md thank you! --- profiles/viktoria.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 profiles/viktoria.md diff --git a/profiles/viktoria.md b/profiles/viktoria.md new file mode 100644 index 00000000..4f59c06e --- /dev/null +++ b/profiles/viktoria.md @@ -0,0 +1,16 @@ +## Viktoria Cseke + +### Bio +Im just a software developer student who loves cats :) + +### Location +Ireland + +### Hobbies & Interests +Games and food, cats. + +### Profiles +[![GitHub][github-img]](https://github.com/FurfurV) + + +[github-img]: https://i.imgur.com/9I6NRUm.png From efa0ff7eb14a078460d2ae0ecd694215eabbdad1 Mon Sep 17 00:00:00 2001 From: "Marco A. Rojas" Date: Mon, 14 Oct 2019 17:07:26 -0400 Subject: [PATCH 264/481] =?UTF-8?q?=F0=9F=94=A5=20Marco=20Rojas=20|=20Hell?= =?UTF-8?q?o=20World:=20BASH=20and=20profile=20page=20https://www.devmarco?= =?UTF-8?q?rojas.com/?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- code/BASH/Hello_World.sh | 4 ++++ profiles/Marco_Rojas.md | 28 ++++++++++++++++++++++++++++ 2 files changed, 32 insertions(+) create mode 100755 code/BASH/Hello_World.sh create mode 100644 profiles/Marco_Rojas.md diff --git a/code/BASH/Hello_World.sh b/code/BASH/Hello_World.sh new file mode 100755 index 00000000..5d1cbe20 --- /dev/null +++ b/code/BASH/Hello_World.sh @@ -0,0 +1,4 @@ +#!/bin/bash + +echo "Hello, World! 🌎"; + diff --git a/profiles/Marco_Rojas.md b/profiles/Marco_Rojas.md new file mode 100644 index 00000000..d3596df9 --- /dev/null +++ b/profiles/Marco_Rojas.md @@ -0,0 +1,28 @@ +## Marco Rojas + +### Bio +My name is Marco and I just graduated from Benemérita Universidad Autónoma de Puebla (BUAP) as an Information Technology Engineer. +In the past, I worked with an agency as a freelance developer, creating projects with REST APIs, Express.js, MongoDB, React-Native, React. +My university projects range from C++, Python, PHP, BASH, Java, OpenGL, Docker, and OpenStack. +In my last year, I was also the local leader for the FreeCodeCamp community, and in partnership with Major League Hacking, we held events for the University’s tech community. +Events included classes with Docker and Git 101, and workshops like Python for AI and Web Applications with NodeJs. +I found in Boston a great opportunity to discover new technological trends, learn about startups, and hopefully bring my skills to a growing engineering team. + +### Location +Boston, MA. + +### Projects + +[![Portoflio](https://www.devmarcorojas.com/img/opengl.png)](https://www.devmarcorojas.com) + +Checkout my full [Portfolio](https://www.devmarcorojas.com) + + +### Profiles + +[![GitHub][github-img]](https://github.com/MrcRjs) +[![Twitter][twitter-img]](https://twitter.com/MrcRjs) + + +[twitter-img]: https://i.imgur.com/wWzX9uB.png +[github-img]: https://i.imgur.com/9I6NRUm.png \ No newline at end of file From 640dde95eea8756b02c006ac34ea8d9d45b8a441 Mon Sep 17 00:00:00 2001 From: Tamas Csonka Date: Mon, 14 Oct 2019 23:26:27 +0200 Subject: [PATCH 265/481] Tamas Csonka added to contribution --- CONTRIBUTORS.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 353be2bc..48e2f83b 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -66,5 +66,5 @@ - [Victor Azevedo](https://github.com/victormazevedo) - [viewless](https://github.com/viewless) - [Vlad Zaporozhskyi](https://github.com/thezapovlad) - +- [Tamas Csonka](https://github.com/csnktms) From 0ce9d38e27636c10b3a09ed60f50dd8f6fecf357 Mon Sep 17 00:00:00 2001 From: Camilo Caquimbo Date: Mon, 14 Oct 2019 16:52:26 -0500 Subject: [PATCH 266/481] Add Camilo --- CONTRIBUTORS.md | 1 + profiles/CamiloCaquimbo.md | 20 ++++++++++++++++++++ 2 files changed, 21 insertions(+) create mode 100644 profiles/CamiloCaquimbo.md diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 353be2bc..0e5bcdc2 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -16,6 +16,7 @@ - [Ayan Goel](https://github.com/GAyan17) - [Bhavesh Gupta](https://github.com/bhavesh-g) - [CaffeinatedCod3r](https://github.com/CaffeinatedCod3r) +- [Camilo Caquimbo](https://github.com/camilocaquimbo) - [CherryKitten](https://github.com/CherryKitten) - [Chandra Mouli](https://github.com/codechandra) - [Corbin Taylor](https://github.com/cjtaylor1990) diff --git a/profiles/CamiloCaquimbo.md b/profiles/CamiloCaquimbo.md new file mode 100644 index 00000000..14c3c609 --- /dev/null +++ b/profiles/CamiloCaquimbo.md @@ -0,0 +1,20 @@ +## Camilo Caquimbo + +### Bio +Computer engineer from Colombia. Tech lover. + +### Location +Tauramena Casanare Colombia. + +### Projects +Many Websites and contributions to some projects. + +### Hobbies & Interests +Technology, gadgets and mountain bike. + +### Profiles +[![GitHub][github-img]](https://github.com/camilocaquimbo/) + + +[twitter-img]: https://i.imgur.com/wWzX9uB.png +[github-img]: https://i.imgur.com/9I6NRUm.png From 106422fc6e146bf6d523699ba45fe5c14e8d9d9d Mon Sep 17 00:00:00 2001 From: Matias Baldanza Date: Mon, 14 Oct 2019 18:55:54 -0300 Subject: [PATCH 267/481] Added Matias Baldanza as contributor --- CONTRIBUTORS.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 353be2bc..56788eb8 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -37,6 +37,7 @@ - [Lilian F](https://github.com/lilianferreira) - [Loris Gabriele](https://github.com/Pyr0x1) - [Luciano Santos](https://github.com/lucianosz7) +- [Matias Baldanza](https://github.com/matiasbaldanza) - [Mayank Parmar](https://github.com/myk7hackon) - [Megha Agarwal](https://github.com/meghaa105P) - [Mehul Garg](https://github.com/gargmehul10) From 15c4c298db8b8fa82568850380656914ce3076d5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Cristian=20de=20Oliveira?= Date: Mon, 14 Oct 2019 19:03:17 -0300 Subject: [PATCH 268/481] Update CONTRIBUTORS.md --- CONTRIBUTORS.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 353be2bc..abe4b358 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -6,6 +6,7 @@ - [Akshi Tak](https://github.com/akshitak) - [Alyssa Columbus](https://github.com/acolum) - [Amit Dutta](https://github.com/Amitdutta7) +- [André Cristian de Oliveira](https://github.com/acristoliv) - [Andre-Lee](hhttps://github.com/andre-lee) - [Ankit Chahar](https://github.com/AnkitChahar) - [Ankit Sharma](https://github.com/AnkitSharmaOnGithub) From 131a16cfc43f0be5451202de9a3ec8a1317ed3e5 Mon Sep 17 00:00:00 2001 From: RC61 <51101973+RC61@users.noreply.github.com> Date: Mon, 14 Oct 2019 18:31:37 -0400 Subject: [PATCH 269/481] Update CONTRIBUTORS.md --- CONTRIBUTORS.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 353be2bc..1865dd00 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -51,6 +51,7 @@ - [Raul Gonzalez Cruz](https://github.com/raulgonzalezcz) - [Ricardo Borges](https://github.com/ricardo93borges) - [Ritik Gupta](https://github.com/ritik-gupta) +- [Rory Coleman](https://github.com/RC61) - [Rosario Galioto](https://github.com/tirannosario) - [Rounak Agarwal](https://github.com/agarwalrounak) - [Sahildeep Singh](https://github.com/sahilcodes) From 07331cd2badd7113a325a19fd746d8126f2ec8ea Mon Sep 17 00:00:00 2001 From: Matias Baldanza Date: Mon, 14 Oct 2019 22:06:11 -0300 Subject: [PATCH 270/481] Added Matias Baldanza profile --- profiles/Matias_Baldanza.md | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 profiles/Matias_Baldanza.md diff --git a/profiles/Matias_Baldanza.md b/profiles/Matias_Baldanza.md new file mode 100644 index 00000000..d794e058 --- /dev/null +++ b/profiles/Matias_Baldanza.md @@ -0,0 +1,22 @@ +## Matias Baldanza + + +### Bio +I'm getting back into programming after a long hiatus. + +### Location +Argentina + +### Projects +No OSS projects, yet. + +### Hobbies & Interests +Coding, Writing, Reading, Movies. + +###Profiles +[![GitHub][github-img]](https://github.com/matiasbaldanza) +[![Twitter][twitter-img]](https://twitter.com/matiasbaldanza) + + +[twitter-img]: https://i.imgur.com/wWzX9uB.png +[github-img]: https://i.imgur.com/9I6NRUm.png From 64e8239ffc09d9f2cb36122ce3191c5b2c4aab39 Mon Sep 17 00:00:00 2001 From: nk-hack <55867993+nk-hack@users.noreply.github.com> Date: Tue, 15 Oct 2019 12:07:05 +1100 Subject: [PATCH 271/481] Create hello-world.ps1 Hello World --- code/Powershell/hello-world.ps1 | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 code/Powershell/hello-world.ps1 diff --git a/code/Powershell/hello-world.ps1 b/code/Powershell/hello-world.ps1 new file mode 100644 index 00000000..c1ce21c6 --- /dev/null +++ b/code/Powershell/hello-world.ps1 @@ -0,0 +1,4 @@ + +Write-Host "Hello, World!" + +read-host “Press any key to continue...” From 63cd73c35fbc318ed077e40ac83437347cb36185 Mon Sep 17 00:00:00 2001 From: nk-hack <55867993+nk-hack@users.noreply.github.com> Date: Tue, 15 Oct 2019 12:09:52 +1100 Subject: [PATCH 272/481] Rename hello-world.sh to hello-world-1.sh Create hello-world --- code/Shell/hello-world-1.sh | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 code/Shell/hello-world-1.sh diff --git a/code/Shell/hello-world-1.sh b/code/Shell/hello-world-1.sh new file mode 100644 index 00000000..b12f87b3 --- /dev/null +++ b/code/Shell/hello-world-1.sh @@ -0,0 +1,3 @@ +#!/bin/sh + +echo "Hello World" From 51b1d9cf7af27536c1ce72a32e3149014ce9dc1b Mon Sep 17 00:00:00 2001 From: AnnaCodes1093 <56553858+AnnaCodes1093@users.noreply.github.com> Date: Mon, 14 Oct 2019 21:14:46 -0400 Subject: [PATCH 273/481] Update CONTRIBUTORS.md --- CONTRIBUTORS.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 353be2bc..88640187 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -10,6 +10,7 @@ - [Ankit Chahar](https://github.com/AnkitChahar) - [Ankit Sharma](https://github.com/AnkitSharmaOnGithub) - [Anna Giliaeva](https://github.com/Nekonokuro) +- [Anna Fennley](https://github.com/Annacodes1093) - [Anshu Kumari](https://github.com/anshukcse) - [Ariq Heritsa](https://github.com/Heritsam) - [Ashutosh Singh](https://github.com/zohan4sh) From 21946ac0d01e3a66dad815b1dc2b995484167658 Mon Sep 17 00:00:00 2001 From: Dulce Hernandez Date: Mon, 14 Oct 2019 21:40:33 -0500 Subject: [PATCH 274/481] Hello World Spanish --- code/JavaScript/helloWorldES.js | 1 + 1 file changed, 1 insertion(+) create mode 100644 code/JavaScript/helloWorldES.js diff --git a/code/JavaScript/helloWorldES.js b/code/JavaScript/helloWorldES.js new file mode 100644 index 00000000..c3ec3b26 --- /dev/null +++ b/code/JavaScript/helloWorldES.js @@ -0,0 +1 @@ +console.log('Hola Mundo'); \ No newline at end of file From 1c72fdb7d461169511e9523f702946655830341d Mon Sep 17 00:00:00 2001 From: ShubhiL Date: Tue, 15 Oct 2019 10:09:47 +0530 Subject: [PATCH 275/481] Hello World A simple C++ file --- code/C++/HelloWorld.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/code/C++/HelloWorld.cpp b/code/C++/HelloWorld.cpp index 75996df7..ec3eba6f 100644 --- a/code/C++/HelloWorld.cpp +++ b/code/C++/HelloWorld.cpp @@ -1,6 +1,7 @@ #include -int main(){ - std::cout<<"Hello World"< Date: Tue, 15 Oct 2019 10:11:37 +0530 Subject: [PATCH 276/481] Update CONTRIBUTORS.md added my name --- CONTRIBUTORS.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 353be2bc..39c068b1 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -56,6 +56,7 @@ - [Sahildeep Singh](https://github.com/sahilcodes) - [Samuel Tonini](https://github.com/samuel-tonini) - [Shriram Navaratnalingam](https://github.com/ShriLingam23) +- [Shubhi Lohani](https://github.com/ShubhiL) - [Siddharth Raj](https://github.com/iamsidofficial) - [Srajal Agrawal](https://github.com/srajalagr) - [TheSolution90](https://github.com/thesolution90) From 0ef48c950f17c1f9b1e3b72c95e33b1fde88232f Mon Sep 17 00:00:00 2001 From: Ayush Sinha <41180129+Ayusinha@users.noreply.github.com> Date: Tue, 15 Oct 2019 10:53:59 +0530 Subject: [PATCH 277/481] Update CONTRIBUTORS.md Added Name and profile --- CONTRIBUTORS.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 353be2bc..38fedf5f 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -14,6 +14,7 @@ - [Ariq Heritsa](https://github.com/Heritsam) - [Ashutosh Singh](https://github.com/zohan4sh) - [Ayan Goel](https://github.com/GAyan17) +- [Ayush Sinha](https://github.com/Ayusinha) - [Bhavesh Gupta](https://github.com/bhavesh-g) - [CaffeinatedCod3r](https://github.com/CaffeinatedCod3r) - [CherryKitten](https://github.com/CherryKitten) From 6984aec43c77b58b177df94ab69beb74d3b0f617 Mon Sep 17 00:00:00 2001 From: Joshua Date: Tue, 15 Oct 2019 11:00:11 +0530 Subject: [PATCH 278/481] Learning by commiting greetings to the world --- CONTRIBUTORS.md | 1 + code/Python/greetingWorld.py | 7 +++++++ 2 files changed, 8 insertions(+) create mode 100644 code/Python/greetingWorld.py diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 353be2bc..a93d6901 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -32,6 +32,7 @@ - [Hritik Soni](https://github.com/iamhritik55) - [Jatin Narula](https://github.com/jatin96) - [João Vítor Morandi Lemos](https://github.com/joaovitorml) +- [Joshua Prakasam](https://github.com/Joshua-Prakasam) - [Kevin Ward](https://github.com/Blueward12) - [Lejla I](https://github.com/Ley2717) - [Lilian F](https://github.com/lilianferreira) diff --git a/code/Python/greetingWorld.py b/code/Python/greetingWorld.py new file mode 100644 index 00000000..8ef3d8c9 --- /dev/null +++ b/code/Python/greetingWorld.py @@ -0,0 +1,7 @@ +#Greeting World with different Greeting Randomly + +import random + +greetings = ["Hello World!", "How are you? World", "What's up World?", "Long time no see World", "It's been ages World."] + +print(greetings[random.randint(0, len(greetings)-1)]) From c3189f38fa448d71e1da15c7950988889cebaa93 Mon Sep 17 00:00:00 2001 From: Surafel Date: Tue, 15 Oct 2019 10:08:16 +0300 Subject: [PATCH 279/481] Creating a commit with my name --- CONTRIBUTORS.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 353be2bc..f3773741 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -58,6 +58,7 @@ - [Shriram Navaratnalingam](https://github.com/ShriLingam23) - [Siddharth Raj](https://github.com/iamsidofficial) - [Srajal Agrawal](https://github.com/srajalagr) +- [Surafel Hailu](https://github.com/surafelh) - [TheSolution90](https://github.com/thesolution90) - [Thomas Windt](https://github.com/WOLFI3654) - [Tim Solokha](https://github.com/TimSolokha) From 60834eee0ec6e095e539d631eb2b9a8c78ead336 Mon Sep 17 00:00:00 2001 From: saini-g Date: Tue, 15 Oct 2019 13:03:27 +0530 Subject: [PATCH 280/481] adding typescript Hello World example using class --- code/Typescript/hello-world.ts | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 code/Typescript/hello-world.ts diff --git a/code/Typescript/hello-world.ts b/code/Typescript/hello-world.ts new file mode 100644 index 00000000..58edcd7f --- /dev/null +++ b/code/Typescript/hello-world.ts @@ -0,0 +1,10 @@ +class Person { + constructor(private name: string) {} + + sayHello(): string { + return `${this.name} says hello!!`; + } +} + +let newPerson = new Person('Gaurav Saini'); +console.log(newPerson.sayHello()); \ No newline at end of file From 7c5f1aa04d0fc52128021b08be516c9c492c225a Mon Sep 17 00:00:00 2001 From: siw3kosky Date: Tue, 15 Oct 2019 09:37:17 +0200 Subject: [PATCH 281/481] Update CONTRIBUTORS.md --- CONTRIBUTORS.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 353be2bc..5331967b 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -66,5 +66,6 @@ - [Victor Azevedo](https://github.com/victormazevedo) - [viewless](https://github.com/viewless) - [Vlad Zaporozhskyi](https://github.com/thezapovlad) +- [siw3kosky](https://github.com/siw3kosky) From d73d1bd1efa47800e2d35c4e12375fb162dc8f90 Mon Sep 17 00:00:00 2001 From: siw3kosky Date: Tue, 15 Oct 2019 09:52:30 +0200 Subject: [PATCH 282/481] Create hello_world_my --- code/Python/hello_world_my | 1 + 1 file changed, 1 insertion(+) create mode 100644 code/Python/hello_world_my diff --git a/code/Python/hello_world_my b/code/Python/hello_world_my new file mode 100644 index 00000000..b2233a03 --- /dev/null +++ b/code/Python/hello_world_my @@ -0,0 +1 @@ +print("Hello World") # prints "Hello World" From b2a12200752145bc19dd54397f3a407324a8d6e7 Mon Sep 17 00:00:00 2001 From: Axel Andrian Date: Tue, 15 Oct 2019 15:04:59 +0700 Subject: [PATCH 283/481] Add new contributor in CONTRIBUTORS.md --- CONTRIBUTORS.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 353be2bc..94bed7a2 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -66,5 +66,6 @@ - [Victor Azevedo](https://github.com/victormazevedo) - [viewless](https://github.com/viewless) - [Vlad Zaporozhskyi](https://github.com/thezapovlad) +- [Axel Andrian](https://github.com/AxelAndrian) From 6ffc477401bb096ae4c11b8894c17827f84565da Mon Sep 17 00:00:00 2001 From: Ray Blair Date: Tue, 15 Oct 2019 09:21:20 +0100 Subject: [PATCH 284/481] Update CONTRIBUTORS.md Updated Ray Blair to list of contributors --- CONTRIBUTORS.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 353be2bc..7ae6dc85 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -46,6 +46,7 @@ - [nilesh](https://github.com/nileshsahitya9) - [Nishant Tilve](https://github.com/Antimatter98) - [Pragadeeswaran Gnanasekaran](https://github.com/pragapraga) +- [Ray Blair](https://github.com/rayblair06) - [Ramy Fetteha](https://github.com/NoirFLamme) - [Randil Tennakoon](https://github.com/randiltennakoon) - [Raul Gonzalez Cruz](https://github.com/raulgonzalezcz) From fd9818efb2d62401f9d5a540d2c0fe42d88c2cfa Mon Sep 17 00:00:00 2001 From: Gagandeep singh Date: Tue, 15 Oct 2019 14:09:07 +0530 Subject: [PATCH 285/481] update contributors.md --- CONTRIBUTORS.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 353be2bc..1e366ed8 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -27,6 +27,7 @@ - [DzunN86](https://github.com/DzunN86) - [Emmanuel Ezenwigbo](https://github.com/SkyC0der) - [Erol Aliyev](https://github.com/erolaliyev) +- [Gagandeep Sing](https://github.com/gagan0183) - [Hans](https://github.com/hungvu193) - [HRAnkit](https://github.com/hrankit) - [Hritik Soni](https://github.com/iamhritik55) From bdd2e8363f99db666ebc02fe6e49b91a81c81539 Mon Sep 17 00:00:00 2001 From: Law Zava Date: Tue, 15 Oct 2019 11:54:16 +0200 Subject: [PATCH 286/481] Update CONTRIBUTORS.md --- CONTRIBUTORS.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 353be2bc..7c5a1075 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -33,6 +33,7 @@ - [Jatin Narula](https://github.com/jatin96) - [João Vítor Morandi Lemos](https://github.com/joaovitorml) - [Kevin Ward](https://github.com/Blueward12) +- [Law Zava](https://github.com/lawzava) - [Lejla I](https://github.com/Ley2717) - [Lilian F](https://github.com/lilianferreira) - [Loris Gabriele](https://github.com/Pyr0x1) From 8a7e9aa18b781a689f7340b5115024761130e918 Mon Sep 17 00:00:00 2001 From: Law Zava Date: Tue, 15 Oct 2019 11:56:31 +0200 Subject: [PATCH 287/481] Add V lang --- code/V/v.v | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 code/V/v.v diff --git a/code/V/v.v b/code/V/v.v new file mode 100644 index 00000000..8cc58c05 --- /dev/null +++ b/code/V/v.v @@ -0,0 +1,3 @@ +fn main() { + println("Hello world"); +} From ad1195a84dce195231ee8af011c834cc8aa0c57a Mon Sep 17 00:00:00 2001 From: chudau Date: Tue, 15 Oct 2019 16:57:31 +0700 Subject: [PATCH 288/481] committed by chudau --- CONTRIBUTORS.md | 1 + code/JavaScript/xinchao.js | 1 + 2 files changed, 2 insertions(+) create mode 100644 code/JavaScript/xinchao.js diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 353be2bc..9e6226ec 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -24,6 +24,7 @@ - [dark-shadow7](https://github.com/dark-shadow7) - [Deeksha Agrawal](https://github.com/agrawal-deeksha) - [drmyuu](https://github.com/drmyuu) +- [chudau](https://github.com/chudau) - [DzunN86](https://github.com/DzunN86) - [Emmanuel Ezenwigbo](https://github.com/SkyC0der) - [Erol Aliyev](https://github.com/erolaliyev) diff --git a/code/JavaScript/xinchao.js b/code/JavaScript/xinchao.js new file mode 100644 index 00000000..b45861a8 --- /dev/null +++ b/code/JavaScript/xinchao.js @@ -0,0 +1 @@ +console.log("Hello World from Viet Nam !"); From 0aa64df01b50eee6e7b7a2df402e4aae1ff824b3 Mon Sep 17 00:00:00 2001 From: BirokratskaZila Date: Tue, 15 Oct 2019 12:36:52 +0200 Subject: [PATCH 289/481] Update CONTRIBUTORS.md Added my Name and Profile Link --- CONTRIBUTORS.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 353be2bc..e79fd018 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -4,6 +4,7 @@ - [Adrian Martin](https://github.com/amgdevelop) - [Ajey Prasand](https://github.com/ajeyprasand) - [Akshi Tak](https://github.com/akshitak) +- [Alan Jereb](https://github.com/BirokratskaZila) - [Alyssa Columbus](https://github.com/acolum) - [Amit Dutta](https://github.com/Amitdutta7) - [Andre-Lee](hhttps://github.com/andre-lee) From a77cdc3730fa933eba931adface69f8bd31531ca Mon Sep 17 00:00:00 2001 From: nkosi-tauro Date: Tue, 15 Oct 2019 13:23:13 +0200 Subject: [PATCH 290/481] added program and profile --- code/Rust/Hello-World.rs | 3 +++ profiles/Nkosi_Tauro.md | 26 ++++++++++++++++++++++++++ 2 files changed, 29 insertions(+) create mode 100644 code/Rust/Hello-World.rs create mode 100644 profiles/Nkosi_Tauro.md diff --git a/code/Rust/Hello-World.rs b/code/Rust/Hello-World.rs new file mode 100644 index 00000000..a258649c --- /dev/null +++ b/code/Rust/Hello-World.rs @@ -0,0 +1,3 @@ +fn main(){ + println!("Hello World!") +} \ No newline at end of file diff --git a/profiles/Nkosi_Tauro.md b/profiles/Nkosi_Tauro.md new file mode 100644 index 00000000..82acce28 --- /dev/null +++ b/profiles/Nkosi_Tauro.md @@ -0,0 +1,26 @@ +## Nkosi Tauro + +### BIO +Computer Science Student at the University of London | Mentor and Code Reviewer + +### LOCATION +Cape Town, South Africa + + +### PROJECTS +- [Blog 2.0](https://github.com/nkosi-tauro/blog2.0) +- [Spotify-Playlist](https://github.com/nkosi-tauro/Spotify-Playlist) +- [survival-shooter](https://github.com/nkosi-tauro/survival-shooter) + +### HOBBIES +Video Gaming +Hiking + + + +### PROFILES +[![GitHub][github-img]](https://github.com/nkosi-tauro) + +[twitter-img]: https://i.imgur.com/wWzX9uB.png +[github-img]: https://i.imgur.com/9I6NRUm.png + From b2ffe8718f76a990d444ad16dae12e52a62f5ee5 Mon Sep 17 00:00:00 2001 From: Leticiagc Date: Tue, 15 Oct 2019 09:34:18 -0300 Subject: [PATCH 291/481] I created a new class hello world --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 27287359..703e6ec3 100644 --- a/.gitignore +++ b/.gitignore @@ -52,3 +52,4 @@ config.json *.sublime-project *.sublime-workspace +/bin/ From 69e87ad8b1090d4717f4a71de0acf928aaf27f3f Mon Sep 17 00:00:00 2001 From: Leticiagc Date: Tue, 15 Oct 2019 09:36:30 -0300 Subject: [PATCH 292/481] I created a new class hello world --- .classpath | 6 +++++ .project | 23 +++++++++++++++++++ .settings/.jsdtscope | 7 ++++++ ...rg.eclipse.wst.jsdt.ui.superType.container | 1 + .../org.eclipse.wst.jsdt.ui.superType.name | 1 + code/Java/Newhelloworld.java | 9 ++++++++ 6 files changed, 47 insertions(+) create mode 100644 .classpath create mode 100644 .project create mode 100644 .settings/.jsdtscope create mode 100644 .settings/org.eclipse.wst.jsdt.ui.superType.container create mode 100644 .settings/org.eclipse.wst.jsdt.ui.superType.name create mode 100644 code/Java/Newhelloworld.java diff --git a/.classpath b/.classpath new file mode 100644 index 00000000..cf7c7033 --- /dev/null +++ b/.classpath @@ -0,0 +1,6 @@ + + + + + + diff --git a/.project b/.project new file mode 100644 index 00000000..9aa9d7aa --- /dev/null +++ b/.project @@ -0,0 +1,23 @@ + + + Hello-World-1 + + + + + + org.eclipse.jdt.core.javabuilder + + + + + org.eclipse.wst.validation.validationbuilder + + + + + + org.eclipse.wst.jsdt.core.jsNature + org.eclipse.jdt.core.javanature + + diff --git a/.settings/.jsdtscope b/.settings/.jsdtscope new file mode 100644 index 00000000..cca691f6 --- /dev/null +++ b/.settings/.jsdtscope @@ -0,0 +1,7 @@ + + + + + + + diff --git a/.settings/org.eclipse.wst.jsdt.ui.superType.container b/.settings/org.eclipse.wst.jsdt.ui.superType.container new file mode 100644 index 00000000..49c8cd4f --- /dev/null +++ b/.settings/org.eclipse.wst.jsdt.ui.superType.container @@ -0,0 +1 @@ +org.eclipse.wst.jsdt.launching.JRE_CONTAINER \ No newline at end of file diff --git a/.settings/org.eclipse.wst.jsdt.ui.superType.name b/.settings/org.eclipse.wst.jsdt.ui.superType.name new file mode 100644 index 00000000..11006e2a --- /dev/null +++ b/.settings/org.eclipse.wst.jsdt.ui.superType.name @@ -0,0 +1 @@ +Global \ No newline at end of file diff --git a/code/Java/Newhelloworld.java b/code/Java/Newhelloworld.java new file mode 100644 index 00000000..333804e1 --- /dev/null +++ b/code/Java/Newhelloworld.java @@ -0,0 +1,9 @@ + +public class Newhelloworld { + public static void main(String[] args) { + String valor = "Hello, World!"; + + System.out.println(valor); + + } +} From ab9c8a8344efe12fdcaa83393223bfbe0ab3136d Mon Sep 17 00:00:00 2001 From: Micael Pereira <8707982+micaelalex@users.noreply.github.com> Date: Tue, 15 Oct 2019 14:52:17 +0100 Subject: [PATCH 293/481] Update CONTRIBUTORS.md --- CONTRIBUTORS.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 353be2bc..0fe7a2fd 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -40,6 +40,7 @@ - [Mayank Parmar](https://github.com/myk7hackon) - [Megha Agarwal](https://github.com/meghaa105P) - [Mehul Garg](https://github.com/gargmehul10) +- [Micael Pereira](https://github.com/micaelalex) - [Momozor](https://github.com/momozor) - [Mykola Balabash](https://github.com/twilderan) - [Naveenraj M](https://github.com/naveenrajm7) From 7d82fbfa78196eaceee4d7c92a74eb02ab5f7180 Mon Sep 17 00:00:00 2001 From: Florent Lesauvage Date: Tue, 15 Oct 2019 16:06:30 +0200 Subject: [PATCH 294/481] Update CONTRIBUTORS.md --- CONTRIBUTORS.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 353be2bc..c814ce11 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -28,6 +28,7 @@ - [Emmanuel Ezenwigbo](https://github.com/SkyC0der) - [Erol Aliyev](https://github.com/erolaliyev) - [Hans](https://github.com/hungvu193) +- [Homard](https://github.com/homard) - [HRAnkit](https://github.com/hrankit) - [Hritik Soni](https://github.com/iamhritik55) - [Jatin Narula](https://github.com/jatin96) From 25387f52f2f4984654a4480504027dcccef176b8 Mon Sep 17 00:00:00 2001 From: Ayran Olckers Date: Tue, 15 Oct 2019 15:09:34 +0100 Subject: [PATCH 295/481] Create Geek --- profiles/Geek | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 profiles/Geek diff --git a/profiles/Geek b/profiles/Geek new file mode 100644 index 00000000..434db73f --- /dev/null +++ b/profiles/Geek @@ -0,0 +1,17 @@ +# BIO +I am the Geekiest one + +Site: https://www.ayran.dev/ +Github: https://github.com/TheGeekiestOne +Twitter: https://twitter.com/TheGeekiestOne +Instagram: https://www.instagram.com/the_geekiest_one/ + +#Location +England + +#Projects +Curreently doing University projects + +#Hobbies + +Programming, Coffee, Reading From 2822bda0eba191fdf760ab1cfa139064ec302dc3 Mon Sep 17 00:00:00 2001 From: Ritesh8732 <47283395+Ritesh8732@users.noreply.github.com> Date: Tue, 15 Oct 2019 22:10:26 +0530 Subject: [PATCH 296/481] hello.c --- hello.c | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 hello.c diff --git a/hello.c b/hello.c new file mode 100644 index 00000000..d7a89572 --- /dev/null +++ b/hello.c @@ -0,0 +1,6 @@ +#include +using namespace std; +int main() +{ + cout<<"Hello World"; +} From 0d1fc34abd5aeec5d9c707faad9afac9572cb0ea Mon Sep 17 00:00:00 2001 From: dharanivora <51277064+dharanivora@users.noreply.github.com> Date: Tue, 15 Oct 2019 13:12:58 -0400 Subject: [PATCH 297/481] Create dharanivora.md --- profiles/dharanivora.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 profiles/dharanivora.md diff --git a/profiles/dharanivora.md b/profiles/dharanivora.md new file mode 100644 index 00000000..755af26f --- /dev/null +++ b/profiles/dharanivora.md @@ -0,0 +1,21 @@ +Dharani Vora + +### Bio +Happy-Happy + +### Location +Home Sweet Home. + +### Projects +A lot to build... + +### Hobbies & Interests +Creating, Colors, Rain + +### Profiles +[![GitHub][github-img]](Link to GitHub profile) +[![Twitter][twitter-img]](Link to Twitter profile) + + +[twitter-img]: https://i.imgur.com/wWzX9uB.png +[github-img]: https://i.imgur.com/9I6NRUm.png From 8ec62530ab9e2db13ab8449a97071e3234fef25d Mon Sep 17 00:00:00 2001 From: Nicolas Saavedra Date: Tue, 15 Oct 2019 15:02:14 -0300 Subject: [PATCH 298/481] just added my name --- CONTRIBUTORS.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 353be2bc..508007d9 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -55,6 +55,7 @@ - [Rounak Agarwal](https://github.com/agarwalrounak) - [Sahildeep Singh](https://github.com/sahilcodes) - [Samuel Tonini](https://github.com/samuel-tonini) +- [Nicolas Saavedra](http://github.com/nikokubrick) - [Shriram Navaratnalingam](https://github.com/ShriLingam23) - [Siddharth Raj](https://github.com/iamsidofficial) - [Srajal Agrawal](https://github.com/srajalagr) From 5ca3a041a38028aad1642042959ba6017eef705b Mon Sep 17 00:00:00 2001 From: Nicolas Saavedra Date: Tue, 15 Oct 2019 15:08:18 -0300 Subject: [PATCH 299/481] my profile nicolas saavedra --- profiles/nicolas_saavedra.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 profiles/nicolas_saavedra.md diff --git a/profiles/nicolas_saavedra.md b/profiles/nicolas_saavedra.md new file mode 100644 index 00000000..1518662d --- /dev/null +++ b/profiles/nicolas_saavedra.md @@ -0,0 +1,21 @@ +## Nico Saavedra + +### Bio +Just starting as a developer. + +### Location +Andorra + +### Projects +http://www.eltrasterocuinabar.ml + +### Hobbies & Interests +Technology, music and cinemas + +### Profiles +[![GitHub][github-img]](https://github.com/nikokubrick) +[![Twitter][twitter-img]](https://twitter.com/NicoSaavedraDev) + + +[twitter-img]: https://i.imgur.com/wWzX9uB.png +[github-img]: https://i.imgur.com/9I6NRUm.png From 7250f022c7770551e9d13becc6b86d1dec49cebe Mon Sep 17 00:00:00 2001 From: Adrian Gogu <51375642+inefabilis@users.noreply.github.com> Date: Tue, 15 Oct 2019 21:48:48 +0300 Subject: [PATCH 300/481] Create Adrian_Gogu --- profiles/Adrian_Gogu | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 profiles/Adrian_Gogu diff --git a/profiles/Adrian_Gogu b/profiles/Adrian_Gogu new file mode 100644 index 00000000..46518fc4 --- /dev/null +++ b/profiles/Adrian_Gogu @@ -0,0 +1,21 @@ +## Adrian Gogu + +### Bio +I was born in a small city named Causeni,then moved to capital Chisinau,travel a lot in U.S and Europe,trying different jobs. + +### Location +Republic of Moldova,Chisnau. + +### Projects +Hello World and some app.using JS,PHP,Java,SQL + +### Hobbies & Interests +I love my family,music,coding,drugs and sometimes work-out(Yes that's true). + +### Profiles +[![GitHub][github-img]](https://github.com/inefabilis) +[![Twitter][twitter-img]](Link to Twitter profile) //don't have one + + +[twitter-img]: https://i.imgur.com/wWzX9uB.png +[github-img]: https://i.imgur.com/9I6NRUm.png From 4361cb7177e90b9f20bb970342e680a6afaab524 Mon Sep 17 00:00:00 2001 From: ridh7 <46676917+ridh7@users.noreply.github.com> Date: Wed, 16 Oct 2019 00:48:35 +0530 Subject: [PATCH 301/481] Update CONTRIBUTORS.md --- CONTRIBUTORS.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 353be2bc..180b6652 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -50,6 +50,7 @@ - [Randil Tennakoon](https://github.com/randiltennakoon) - [Raul Gonzalez Cruz](https://github.com/raulgonzalezcz) - [Ricardo Borges](https://github.com/ricardo93borges) +- [Ridhwik Kalgaonkar](https://github.com/ridh7) - [Ritik Gupta](https://github.com/ritik-gupta) - [Rosario Galioto](https://github.com/tirannosario) - [Rounak Agarwal](https://github.com/agarwalrounak) From b04692d3a445ce7e198352fe0f33aacb66b3330d Mon Sep 17 00:00:00 2001 From: asmaek Date: Tue, 15 Oct 2019 23:26:09 +0100 Subject: [PATCH 302/481] commit --- CONTRIBUTORS.md | 3 ++- code/Python/HelloWorld_AK.py | 2 ++ profiles/Asmae_KAB.md | 24 ++++++++++++++++++++++++ 3 files changed, 28 insertions(+), 1 deletion(-) create mode 100644 code/Python/HelloWorld_AK.py create mode 100644 profiles/Asmae_KAB.md diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 353be2bc..e4abc922 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -1,4 +1,4 @@ - + - [AAMIR AHMAD](https://github.com/sickwiz) - [Abbas Abi](https://github.com/AbbasAbi) - [Adrian Martin](https://github.com/amgdevelop) @@ -11,6 +11,7 @@ - [Ankit Sharma](https://github.com/AnkitSharmaOnGithub) - [Anna Giliaeva](https://github.com/Nekonokuro) - [Anshu Kumari](https://github.com/anshukcse) +- [Asmae Kabbaz](https://github.com/AsmaeK) - [Ariq Heritsa](https://github.com/Heritsam) - [Ashutosh Singh](https://github.com/zohan4sh) - [Ayan Goel](https://github.com/GAyan17) diff --git a/code/Python/HelloWorld_AK.py b/code/Python/HelloWorld_AK.py new file mode 100644 index 00000000..e1748f45 --- /dev/null +++ b/code/Python/HelloWorld_AK.py @@ -0,0 +1,2 @@ +# print Hello World +print ("Hello World!") \ No newline at end of file diff --git a/profiles/Asmae_KAB.md b/profiles/Asmae_KAB.md new file mode 100644 index 00000000..84fd51b5 --- /dev/null +++ b/profiles/Asmae_KAB.md @@ -0,0 +1,24 @@ +## Asmae Kabbaz + +### Bio + I'm a 23-year old Business student and i'am also interested in programming coding and cyber security. + +### Location + Home Sweet Home = El Jadida, Morocco + +## projects + Python Java and C++ related projects + +### Hobbies & Interests + -Pen-testing + -Programing + -Front end / back end Web development + +### Profiles +[![GitHub][github-img]](https://github.com/AsmaeK) +[![Twitter][twitter-img]](https://twitter.com/KVxgue) + + +[twitter-img]: https://i.imgur.com/wWzX9uB.png +[github-img]: https://i.imgur.com/9I6NRUm.png + From 4be02d068157adbebdccb3cae1b2b94836dcfdbf Mon Sep 17 00:00:00 2001 From: Romildo Alves Date: Tue, 15 Oct 2019 21:31:40 -0300 Subject: [PATCH 303/481] Hacktoberfest pull request --- code/JavaScript/hello_hacktoberfest_world.js | 1 + 1 file changed, 1 insertion(+) create mode 100644 code/JavaScript/hello_hacktoberfest_world.js diff --git a/code/JavaScript/hello_hacktoberfest_world.js b/code/JavaScript/hello_hacktoberfest_world.js new file mode 100644 index 00000000..997ead63 --- /dev/null +++ b/code/JavaScript/hello_hacktoberfest_world.js @@ -0,0 +1 @@ +console.log('Hello Hacktoberfest World =)') From 1e8f1b194d43cb5e6f830cee424c79f8322490ab Mon Sep 17 00:00:00 2001 From: Tushar Jayanti Date: Tue, 15 Oct 2019 20:34:40 -0500 Subject: [PATCH 304/481] Adding to Contributors --- CONTRIBUTORS.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 353be2bc..b2eab009 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -62,6 +62,7 @@ - [Thomas Windt](https://github.com/WOLFI3654) - [Tim Solokha](https://github.com/TimSolokha) - [tonzsm](https://github.com/tonzsm) +- [Tushar Jayanti](https://github.com/tusharjayanti) - [Varun Vishal](https://github.com/varunvishal10) - [Victor Azevedo](https://github.com/victormazevedo) - [viewless](https://github.com/viewless) From 36e1eb44ecf905b603475bfeabd44cc6c65b941b Mon Sep 17 00:00:00 2001 From: eltonpinto156 <56260222+eltonpinto156@users.noreply.github.com> Date: Wed, 16 Oct 2019 07:29:37 +0530 Subject: [PATCH 305/481] Update CONTRIBUTORS.md --- CONTRIBUTORS.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 353be2bc..cd4a7f68 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -25,6 +25,7 @@ - [Deeksha Agrawal](https://github.com/agrawal-deeksha) - [drmyuu](https://github.com/drmyuu) - [DzunN86](https://github.com/DzunN86) +- [Elton Glenvill Pinto](https://github.com/eltonpinto156) - [Emmanuel Ezenwigbo](https://github.com/SkyC0der) - [Erol Aliyev](https://github.com/erolaliyev) - [Hans](https://github.com/hungvu193) From 37b166f1c010327fe54ced47915f920072cf535b Mon Sep 17 00:00:00 2001 From: will-chow Date: Tue, 15 Oct 2019 22:27:20 -0400 Subject: [PATCH 306/481] Create HelloWorld01.java --- code/Java/HelloWorld01.java | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 code/Java/HelloWorld01.java diff --git a/code/Java/HelloWorld01.java b/code/Java/HelloWorld01.java new file mode 100644 index 00000000..7908b60b --- /dev/null +++ b/code/Java/HelloWorld01.java @@ -0,0 +1,9 @@ +/** + * The HelloWorldApp class implements an application that + * simply prints "Hello World!" to standard output. + */ +class HelloWorldApp { + public static void main(String[] args) { + System.out.println("Hello World!"); // Display the string. + } +} \ No newline at end of file From 65a8437bcbc5280deaf84d3523c1391f1ab1366e Mon Sep 17 00:00:00 2001 From: tooler2 <56618856+tooler2@users.noreply.github.com> Date: Wed, 16 Oct 2019 14:01:13 +1100 Subject: [PATCH 307/481] Update CONTRIBUTORS.md --- CONTRIBUTORS.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 353be2bc..6870f639 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -61,6 +61,7 @@ - [TheSolution90](https://github.com/thesolution90) - [Thomas Windt](https://github.com/WOLFI3654) - [Tim Solokha](https://github.com/TimSolokha) +- [Tooler](https://github.com/Tooler2) - [tonzsm](https://github.com/tonzsm) - [Varun Vishal](https://github.com/varunvishal10) - [Victor Azevedo](https://github.com/victormazevedo) From 996b9cab7cfe7dbe052f8c2cc270952dbfbb41d5 Mon Sep 17 00:00:00 2001 From: Ayran Olckers Date: Wed, 16 Oct 2019 09:40:18 +0100 Subject: [PATCH 308/481] Create Hello_World-Inheritance.cpp using Inheritance and dynamic allocation to print "Hello World!" --- code/C++/Hello_World-Inheritance.cpp | 32 ++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 code/C++/Hello_World-Inheritance.cpp diff --git a/code/C++/Hello_World-Inheritance.cpp b/code/C++/Hello_World-Inheritance.cpp new file mode 100644 index 00000000..1c3d223c --- /dev/null +++ b/code/C++/Hello_World-Inheritance.cpp @@ -0,0 +1,32 @@ +/* + Author : Ayran Olckers + Date : 16/10/2019 + Time : 08:40 + Description : Hello World with Inheritance + site: https://ayran.dev +*/ + +#include + +//I used: Inheritance and dynamic allocation + +class _Hello +{ + public: + virtual ~_Hello(){std::cout << " World!";} + void Prnt(){std::cout << "Hello";} + +}; + +class ChildHello: public _Hello +{ + public: + ~ChildHello(){Prnt();} +}; + +int main() +{ + ChildHello *Obj; + Obj = new ChildHello; + delete Obj; +} From 79326b8d471f574b20bb9d89734c4cab7c8fb0f0 Mon Sep 17 00:00:00 2001 From: Rounak Agarwal Date: Wed, 16 Oct 2019 14:14:28 +0530 Subject: [PATCH 309/481] Delete file_Sourabh --- profiles/file_Sourabh | 4 ---- 1 file changed, 4 deletions(-) delete mode 100644 profiles/file_Sourabh diff --git a/profiles/file_Sourabh b/profiles/file_Sourabh deleted file mode 100644 index a71c01e1..00000000 --- a/profiles/file_Sourabh +++ /dev/null @@ -1,4 +0,0 @@ -Hi, My name is Sourabh! - -I'm new to OpenSource ware and want to get better at Git. (no pun intended) -Thank you! :) From 1387556f0dffa60b64b329f9977c77fa073a712b Mon Sep 17 00:00:00 2001 From: Rounak Agarwal Date: Wed, 16 Oct 2019 14:15:45 +0530 Subject: [PATCH 310/481] Rename File_Sourabh.md to Sourabh_Sooraj.md --- profiles/{File_Sourabh.md => Sourabh_Sooraj.md} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename profiles/{File_Sourabh.md => Sourabh_Sooraj.md} (100%) diff --git a/profiles/File_Sourabh.md b/profiles/Sourabh_Sooraj.md similarity index 100% rename from profiles/File_Sourabh.md rename to profiles/Sourabh_Sooraj.md From 2f3823443ce42fdf5cece73c8b512959fe04c101 Mon Sep 17 00:00:00 2001 From: Aatif Fraz Date: Wed, 16 Oct 2019 16:17:18 +0530 Subject: [PATCH 311/481] Create Yo_World.cpp Added my code in cpp. --- code/C++/Yo_World.cpp | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 code/C++/Yo_World.cpp diff --git a/code/C++/Yo_World.cpp b/code/C++/Yo_World.cpp new file mode 100644 index 00000000..fe1f34f2 --- /dev/null +++ b/code/C++/Yo_World.cpp @@ -0,0 +1,5 @@ +#include +using namespace std; +int main(){ + cout<<"Yo , World! \n Hope You all doin' fine."; +} From 3b8d2ba3565865d96516132763e85a800c178cfb Mon Sep 17 00:00:00 2001 From: Aatif Fraz Date: Wed, 16 Oct 2019 16:19:11 +0530 Subject: [PATCH 312/481] Update CONTRIBUTORS.md Added my name and link! --- CONTRIBUTORS.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index fe2f26d0..d284d074 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -1,5 +1,6 @@ - [AAMIR AHMAD](https://github.com/sickwiz) +- [Aatif Fraz](https://github.com/frazAatif) - [Abbas Abi](https://github.com/AbbasAbi) - [Adrian Martin](https://github.com/amgdevelop) - [Ajey Prasand](https://github.com/ajeyprasand) From 9a62b87276e40b3c26a5d7d8e0ff3db616f726e8 Mon Sep 17 00:00:00 2001 From: Aatif Fraz Date: Wed, 16 Oct 2019 16:26:26 +0530 Subject: [PATCH 313/481] Create Aatif_Fraz.md Added name , location , hobbies. --- profiles/Aatif_Fraz.md | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 profiles/Aatif_Fraz.md diff --git a/profiles/Aatif_Fraz.md b/profiles/Aatif_Fraz.md new file mode 100644 index 00000000..434f3ee3 --- /dev/null +++ b/profiles/Aatif_Fraz.md @@ -0,0 +1,3 @@ +##Aatif Fraz +### Jabalpur, India. +### Competitive Programming. From a4f19541fe1fd11a6da12f1c1758d3e586e66248 Mon Sep 17 00:00:00 2001 From: Rounak Agarwal Date: Wed, 16 Oct 2019 16:58:36 +0530 Subject: [PATCH 314/481] Update CONTRIBUTORS.md --- CONTRIBUTORS.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 75392951..40a4f95b 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -5,7 +5,7 @@ - [Akshi Tak](https://github.com/akshitak) - [Alyssa Columbus](https://github.com/acolum) - [Amit Dutta](https://github.com/Amitdutta7) -- [Andre-Lee](hhttps://github.com/andre-lee) +- [Andre-Lee](https://github.com/andre-lee) - [Ankit Chahar](https://github.com/AnkitChahar) - [Ankit Sharma](https://github.com/AnkitSharmaOnGithub) - [Anna Giliaeva](https://github.com/Nekonokuro) @@ -28,6 +28,7 @@ - [Jatin Narula](https://github.com/jatin96) - [João Vítor Morandi Lemos](https://github.com/joaovitorml) - [Kevin Ward](https://github.com/Blueward12) +- [Kushantha Charuka](https://github.com/Kushiya) - [Lilian F](https://github.com/lilianferreira) - [Loris Gabriele](https://github.com/Pyr0x1) - [Luciano Santos](https://github.com/lucianosz7) @@ -57,6 +58,5 @@ - [Victor Azevedo](https://github.com/victormazevedo) - [viewless](https://github.com/viewless) - [Vlad Zaporozhskyi](https://github.com/thezapovlad) -- [Kushantha Charuka](https://github.com/Kushiya) From 5a810db25610672ed5028dc00dff51679f7c668e Mon Sep 17 00:00:00 2001 From: Rounak Agarwal Date: Wed, 16 Oct 2019 17:01:59 +0530 Subject: [PATCH 315/481] Rename code/HTML/Hello_World.html to code/html/hello_world.html --- code/{HTML => html/hello_world.html} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename code/{HTML => html/hello_world.html} (100%) diff --git a/code/HTML b/code/html/hello_world.html similarity index 100% rename from code/HTML rename to code/html/hello_world.html From 7c98193fe8281c897efd6d0aefe5931802ed42a8 Mon Sep 17 00:00:00 2001 From: Rounak Agarwal Date: Wed, 16 Oct 2019 17:17:45 +0530 Subject: [PATCH 316/481] Update CONTRIBUTORS.md --- CONTRIBUTORS.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 9880fa02..7f82e937 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -1,4 +1,4 @@ -s + - [AAMIR AHMAD](https://github.com/sickwiz) - [Abbas Abi](https://github.com/AbbasAbi) - [Ajey Prasand](https://github.com/ajeyprasand) From e6f92e40588de6a612a6d31f243b5bb3c984d0b0 Mon Sep 17 00:00:00 2001 From: Rounak Agarwal Date: Wed, 16 Oct 2019 17:19:39 +0530 Subject: [PATCH 317/481] Update CONTRIBUTORS.md --- CONTRIBUTORS.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 24d9fb70..08eea977 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -6,7 +6,7 @@ - [Akshi Tak](https://github.com/akshitak) - [Alyssa Columbus](https://github.com/acolum) - [Amit Dutta](https://github.com/Amitdutta7) -- [Andre-Lee](hhttps://github.com/andre-lee) +- [Andre-Lee](https://github.com/andre-lee) - [Aniket Sharma](https://github.com/aniketsharma00411) - [Ankit Chahar](https://github.com/AnkitChahar) - [Ankit Garg](https://github.com/ankitgargsma) From f73fe95b15664b3b75ee25594c244d3710021deb Mon Sep 17 00:00:00 2001 From: Thomas Scharke Date: Wed, 16 Oct 2019 14:24:41 +0200 Subject: [PATCH 318/481] feat: Add a "Hello World"-program in Smalltalk --- CONTRIBUTORS.md | 1 + code/Smalltalk/helloworld.st | 6 ++++++ profiles/Thomas_Scharke.md | 34 ++++++++++++++++++++++++++++++++++ 3 files changed, 41 insertions(+) create mode 100644 code/Smalltalk/helloworld.st create mode 100644 profiles/Thomas_Scharke.md diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 08eea977..e7daa68b 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -67,6 +67,7 @@ - [Sourabh Sooraj](https://github.com/SourabhSooraj) - [Srajal Agrawal](https://github.com/srajalagr) - [TheSolution90](https://github.com/thesolution90) +- [Thomas Scharke](https://github.com/tscharke) - [Thomas Windt](https://github.com/WOLFI3654) - [Tim Solokha](https://github.com/TimSolokha) - [tonzsm](https://github.com/tonzsm) diff --git a/code/Smalltalk/helloworld.st b/code/Smalltalk/helloworld.st new file mode 100644 index 00000000..d80a068b --- /dev/null +++ b/code/Smalltalk/helloworld.st @@ -0,0 +1,6 @@ + "A Hello-World-Program in Smalltalk + + Execute this by: `gst helloworld.st` +" + +'Hello World!' printNl ! diff --git a/profiles/Thomas_Scharke.md b/profiles/Thomas_Scharke.md new file mode 100644 index 00000000..5d40ba11 --- /dev/null +++ b/profiles/Thomas_Scharke.md @@ -0,0 +1,34 @@ +## Thomas Scharke + +### Bio + +Remote Freelancing Software Artist ❤️TypeScript | JavaScript | ReactNative | React ️❤️ + +### Location + +Remote & Bochum (Germany) + +### Projects + +- [Lesehelden](https://lesehelden.app) +- [Woop](https://woopmylife.org) + +### Hobbies & Interests + +- Remote-Work +- Collobartion +- Compassionate +- Coding +- ReactNative +- Music +- Stand-Up-Paddeling + +### Profiles + +[![GitHub][github-img]](https://github.com/tscharke) +[![Twitter][twitter-img]](https://twitter.com/t_scharke) + + + +[twitter-img]: https://i.imgur.com/wWzX9uB.png +[github-img]: https://i.imgur.com/9I6NRUm.png From 2a73cead936524a957cb3f040af0191c4868cd2b Mon Sep 17 00:00:00 2001 From: ayagrwl <43722027+ayagrwl@users.noreply.github.com> Date: Wed, 16 Oct 2019 18:36:46 +0530 Subject: [PATCH 319/481] Added my name. Also corrected manu sharma's entry. --- CONTRIBUTORS.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 08eea977..db135220 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -17,6 +17,7 @@ - [Ashleigh Pearson](https://github.com/aasimarr) - [Ashutosh Singh](https://github.com/zohan4sh) - [Ayan Goel](https://github.com/GAyan17) +- [Ayush Agrawal](https://github.com/ayagrwl) - [Bhavesh Gupta](https://github.com/bhavesh-g) - [CaffeinatedCod3r](https://github.com/CaffeinatedCod3r) - [CherryKitten](https://github.com/CherryKitten) @@ -42,7 +43,7 @@ - [Lilian F](https://github.com/lilianferreira) - [Loris Gabriele](https://github.com/Pyr0x1) - [Luciano Santos](https://github.com/lucianosz7) -- [Manu Sharma] (https://github.com/iammanusharma) +- [Manu Sharma](https://github.com/iammanusharma) - [Mayank Parmar](https://github.com/myk7hackon) - [Megha Agarwal](https://github.com/meghaa105P) - [Mehul Garg](https://github.com/gargmehul10) From 6363dc2296820a1725e59856f731c10778a60a76 Mon Sep 17 00:00:00 2001 From: Saul Date: Wed, 16 Oct 2019 09:09:17 -0400 Subject: [PATCH 320/481] Create HelloWorldEsVz My Hacktoberfest 2019 Contribution in PHP --- code/PHP/HelloWorldEsVz | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 code/PHP/HelloWorldEsVz diff --git a/code/PHP/HelloWorldEsVz b/code/PHP/HelloWorldEsVz new file mode 100644 index 00000000..9ab9e583 --- /dev/null +++ b/code/PHP/HelloWorldEsVz @@ -0,0 +1,4 @@ + From 5be044eff7069a81cb45ba51d8593c4e4d7b09ce Mon Sep 17 00:00:00 2001 From: Saul Date: Wed, 16 Oct 2019 09:11:19 -0400 Subject: [PATCH 321/481] Update Adding my name to CONTRIBUTORS.MD Adding my name for HAcktoberfest 2019 --- CONTRIBUTORS.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 08eea977..e5430ff9 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -61,6 +61,7 @@ - [Rounak Agarwal](https://github.com/agarwalrounak) - [Sahildeep Singh](https://github.com/sahilcodes) - [Samuel Tonini](https://github.com/samuel-tonini) +- [Saul Miquilena](https://github.com/SaulMiquilena) - [Shridhar Ravi](https://github.com/shridharravi97) - [Shriram Navaratnalingam](https://github.com/ShriLingam23) - [Siddharth Raj](https://github.com/iamsidofficial) From bf8919c23b49d2d1190eeaecad0fec290ad15249 Mon Sep 17 00:00:00 2001 From: Saul Date: Wed, 16 Oct 2019 09:16:26 -0400 Subject: [PATCH 322/481] Create Saul_Miquilena.md Adding my profile to list of contributors for Hacktoberfest 2019 --- profiles/Saul_Miquilena.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 profiles/Saul_Miquilena.md diff --git a/profiles/Saul_Miquilena.md b/profiles/Saul_Miquilena.md new file mode 100644 index 00000000..34e5bb60 --- /dev/null +++ b/profiles/Saul_Miquilena.md @@ -0,0 +1,18 @@ +## Saul Miquilena + +### Bio +Systems Engineer and tall guy. + +### Location +Home Sweet Home = Venezuela. + +### Projects +[Personal Website](https://saulmiquilena.com.ve) + +### Hobbies & Interests +I like playing strategy and city building videogames + +### Profiles +[![GitHub][github-img]](https://github.com/SaulMiquilena) + +[github-img]: https://i.imgur.com/9I6NRUm.png From 743071f5c83bf68ea1dbeeeb81856695ab871cee Mon Sep 17 00:00:00 2001 From: Saul Date: Wed, 16 Oct 2019 09:18:57 -0400 Subject: [PATCH 323/481] Rename HelloWorldEsVz to HelloWorldEsVz.php Forgot the .php extension for the file --- code/PHP/{HelloWorldEsVz => HelloWorldEsVz.php} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename code/PHP/{HelloWorldEsVz => HelloWorldEsVz.php} (100%) diff --git a/code/PHP/HelloWorldEsVz b/code/PHP/HelloWorldEsVz.php similarity index 100% rename from code/PHP/HelloWorldEsVz rename to code/PHP/HelloWorldEsVz.php From 324dfae683b6a5ede1aefaaf8886b05a2b86ce93 Mon Sep 17 00:00:00 2001 From: AsmaeK <56610850+AsmaeK@users.noreply.github.com> Date: Wed, 16 Oct 2019 14:48:12 +0100 Subject: [PATCH 324/481] Update Asmae_KAB.md --- profiles/Asmae_KAB.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/profiles/Asmae_KAB.md b/profiles/Asmae_KAB.md index 84fd51b5..4f3bee2c 100644 --- a/profiles/Asmae_KAB.md +++ b/profiles/Asmae_KAB.md @@ -1,7 +1,7 @@ ## Asmae Kabbaz ### Bio - I'm a 23-year old Business student and i'am also interested in programming coding and cyber security. + I'm a 22-year old Business student and i'am also interested in programming coding and cyber security. ### Location Home Sweet Home = El Jadida, Morocco From ebe7b1877920d2f5c42352228b50a3b4b8436413 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?PR=E1=8E=A7=E4=B9=88=C4=90=E1=95=A0=C4=90=C4=90=C9=8E?= <43685956+UndefendedGuy@users.noreply.github.com> Date: Wed, 16 Oct 2019 21:49:01 +0530 Subject: [PATCH 325/481] Adding Name --- CONTRIBUTORS.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 08eea977..2cc68140 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -1,4 +1,5 @@ +- [UndefendedGuy](https://github.com/UndefendedGuy) - [AAMIR AHMAD](https://github.com/sickwiz) - [Abbas Abi](https://github.com/AbbasAbi) - [Adrian Martin](https://github.com/amgdevelop) From aaf1362a06ed9f869097f5a8938624e98d178cae Mon Sep 17 00:00:00 2001 From: mysha08 <46046479+sangeetameena580@users.noreply.github.com> Date: Wed, 16 Oct 2019 22:31:23 +0530 Subject: [PATCH 326/481] Create Sangeeta_Meena.md --- profiles/Sangeeta_Meena.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 profiles/Sangeeta_Meena.md diff --git a/profiles/Sangeeta_Meena.md b/profiles/Sangeeta_Meena.md new file mode 100644 index 00000000..53b1f5d1 --- /dev/null +++ b/profiles/Sangeeta_Meena.md @@ -0,0 +1,20 @@ +## Sangeeta Meena + +### Bio +Web Developer, Reserach Consultant. +Third year student pursuing Int. M.Tech. in Mathematics and Computing at IIT (ISM) Dhanbad. + +### Location +INDIA + +### Hobbies & Interests +-Coding +-Web Development +-Dancing + +### Profiles +[![GitHub][github-img]](https://github.com/sangeetameena580) + + +[twitter-img]: https://i.imgur.com/rwYRqn6.png +[github-img]: https://i.imgur.com/9I6NRUm.png From bb3fda7cd79d29a97068f9dcd870474a864c9bc5 Mon Sep 17 00:00:00 2001 From: mysha08 <46046479+sangeetameena580@users.noreply.github.com> Date: Wed, 16 Oct 2019 22:32:27 +0530 Subject: [PATCH 327/481] Update Sangeeta_Meena.md --- profiles/Sangeeta_Meena.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/profiles/Sangeeta_Meena.md b/profiles/Sangeeta_Meena.md index 53b1f5d1..e3307f5d 100644 --- a/profiles/Sangeeta_Meena.md +++ b/profiles/Sangeeta_Meena.md @@ -8,9 +8,7 @@ Third year student pursuing Int. M.Tech. in Mathematics and Computing at IIT (IS INDIA ### Hobbies & Interests --Coding --Web Development --Dancing +Coding,web development and dancing. ### Profiles [![GitHub][github-img]](https://github.com/sangeetameena580) From 1fd46d507de8d406015aa9bcbf8e0c788ba9ad10 Mon Sep 17 00:00:00 2001 From: mysha08 <46046479+sangeetameena580@users.noreply.github.com> Date: Wed, 16 Oct 2019 22:39:13 +0530 Subject: [PATCH 328/481] Create hello_world123.cpp --- code/C++/hello_world123.cpp | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 code/C++/hello_world123.cpp diff --git a/code/C++/hello_world123.cpp b/code/C++/hello_world123.cpp new file mode 100644 index 00000000..c896d6f8 --- /dev/null +++ b/code/C++/hello_world123.cpp @@ -0,0 +1,7 @@ +#include +using namespace std; +int main() +{ +cout<<"Hello World"; +return 0; +} From c097227b4ce5d9c5cd6b3755049484d42166421f Mon Sep 17 00:00:00 2001 From: Ryan Date: Wed, 16 Oct 2019 18:12:00 +0100 Subject: [PATCH 329/481] Update CONTRIBUTORS.md I added my name to the contributors file! --- CONTRIBUTORS.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 08eea977..b51aafa7 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -59,6 +59,7 @@ - [Ritik Gupta](https://github.com/ritik-gupta) - [Rosario Galioto](https://github.com/tirannosario) - [Rounak Agarwal](https://github.com/agarwalrounak) +- [Ryan Cumming] (https://github.com/Goslenator7) - [Sahildeep Singh](https://github.com/sahilcodes) - [Samuel Tonini](https://github.com/samuel-tonini) - [Shridhar Ravi](https://github.com/shridharravi97) From 398050702e9d4588c72db0b034f2f6b93daaba0e Mon Sep 17 00:00:00 2001 From: mysha08 <46046479+sangeetameena580@users.noreply.github.com> Date: Wed, 16 Oct 2019 22:53:44 +0530 Subject: [PATCH 330/481] Update CONTRIBUTORS.md --- CONTRIBUTORS.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 08eea977..39fc1ae9 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -61,6 +61,7 @@ - [Rounak Agarwal](https://github.com/agarwalrounak) - [Sahildeep Singh](https://github.com/sahilcodes) - [Samuel Tonini](https://github.com/samuel-tonini) +- [Sangeeta Meena](https://github.com/sangeetameena580) - [Shridhar Ravi](https://github.com/shridharravi97) - [Shriram Navaratnalingam](https://github.com/ShriLingam23) - [Siddharth Raj](https://github.com/iamsidofficial) From fd8785b33d84dcaea5fd6c659b4c609efc1675ee Mon Sep 17 00:00:00 2001 From: Gianpierre Fernandez Date: Wed, 16 Oct 2019 19:53:29 +0200 Subject: [PATCH 331/481] Add my name Gianpierre to contributors Add my info name and GitHub link --- CONTRIBUTORS.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 88f2aac1..dd281a37 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -30,6 +30,7 @@ - [DzunN86](https://github.com/DzunN86) - [Emmanuel Ezenwigbo](https://github.com/SkyC0der) - [Erol Aliyev](https://github.com/erolaliyev) +- [Gianpierre Fernandez](https://github.com/G1anpierre) - [Hans](https://github.com/hungvu193) - [HRAnkit](https://github.com/hrankit) - [Hritik Soni](https://github.com/iamhritik55) From d03d84b3aaf0b80628e7ea8ee874a5365f12b9dc Mon Sep 17 00:00:00 2001 From: Joe Phearse Date: Wed, 16 Oct 2019 14:50:47 -0500 Subject: [PATCH 332/481] added name --- CONTRIBUTORS.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 88f2aac1..e7e8353c 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -35,6 +35,7 @@ - [Hritik Soni](https://github.com/iamhritik55) - [Jatin Narula](https://github.com/jatin96) - [João Vítor Morandi Lemos](https://github.com/joaovitorml) +- [jphearse](https://github.com/jphearse) - [Karan Singh](https://github.com/karansingh97) - [Kevin Ward](https://github.com/Blueward12) - [Kushantha Charuka](https://github.com/Kushiya) From cca01dd25f500c7f02c08e39d34537e98ab0e679 Mon Sep 17 00:00:00 2001 From: Josef Malacka Jr Date: Wed, 16 Oct 2019 15:19:00 -0600 Subject: [PATCH 333/481] Update CONTRIBUTORS.md --- CONTRIBUTORS.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 88f2aac1..7d6d3358 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -61,6 +61,7 @@ - [Rounak Agarwal](https://github.com/agarwalrounak) - [Sahildeep Singh](https://github.com/sahilcodes) - [Samuel Tonini](https://github.com/samuel-tonini) +- [Josef Malacka](https://github.com/shlavocky) - [Shridhar Ravi](https://github.com/shridharravi97) - [Shriram Navaratnalingam](https://github.com/ShriLingam23) - [Siddharth Raj](https://github.com/iamsidofficial) From a04ead114430877616f1a307ccd17d3eef763289 Mon Sep 17 00:00:00 2001 From: Josef Malacka Jr Date: Wed, 16 Oct 2019 15:19:40 -0600 Subject: [PATCH 334/481] Update CONTRIBUTORS.md --- CONTRIBUTORS.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 7d6d3358..1cd7448c 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -35,6 +35,7 @@ - [Hritik Soni](https://github.com/iamhritik55) - [Jatin Narula](https://github.com/jatin96) - [João Vítor Morandi Lemos](https://github.com/joaovitorml) +- [Josef Malacka](https://github.com/shlavocky) - [Karan Singh](https://github.com/karansingh97) - [Kevin Ward](https://github.com/Blueward12) - [Kushantha Charuka](https://github.com/Kushiya) @@ -61,7 +62,6 @@ - [Rounak Agarwal](https://github.com/agarwalrounak) - [Sahildeep Singh](https://github.com/sahilcodes) - [Samuel Tonini](https://github.com/samuel-tonini) -- [Josef Malacka](https://github.com/shlavocky) - [Shridhar Ravi](https://github.com/shridharravi97) - [Shriram Navaratnalingam](https://github.com/ShriLingam23) - [Siddharth Raj](https://github.com/iamsidofficial) From 419985b0d6e6cf95026de5f86e8187e5ea25ffd8 Mon Sep 17 00:00:00 2001 From: ethanr33 <35584218+ethanr33@users.noreply.github.com> Date: Wed, 16 Oct 2019 14:36:09 -0700 Subject: [PATCH 335/481] Added my information I added my information to the project --- CONTRIBUTORS.md | 1 + code/JavaScript/Hello0_World.js | 2 ++ profiles/Ethan_Roos.md | 19 +++++++++++++++++++ 3 files changed, 22 insertions(+) create mode 100644 code/JavaScript/Hello0_World.js create mode 100644 profiles/Ethan_Roos.md diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 88f2aac1..769a277a 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -30,6 +30,7 @@ - [DzunN86](https://github.com/DzunN86) - [Emmanuel Ezenwigbo](https://github.com/SkyC0der) - [Erol Aliyev](https://github.com/erolaliyev) +- [Ethan Roos](https://github.com/ethanr33) - [Hans](https://github.com/hungvu193) - [HRAnkit](https://github.com/hrankit) - [Hritik Soni](https://github.com/iamhritik55) diff --git a/code/JavaScript/Hello0_World.js b/code/JavaScript/Hello0_World.js new file mode 100644 index 00000000..45ae5b9d --- /dev/null +++ b/code/JavaScript/Hello0_World.js @@ -0,0 +1,2 @@ + +console.log("Hello, world!"); \ No newline at end of file diff --git a/profiles/Ethan_Roos.md b/profiles/Ethan_Roos.md new file mode 100644 index 00000000..8ab5f58a --- /dev/null +++ b/profiles/Ethan_Roos.md @@ -0,0 +1,19 @@ +## Ethan Roos + +### Bio +I'm a student who wants to become a freelance web developer + +### Hobbies & Interests +Coding +Video Games +Nature +Music + +### Profiles +[![GitHub][github-img]](https://github.com/ethanr33) +[![Twitter][twitter-img]](https://twitter.com/ethanroos_) + + +[twitter-img]: https://i.imgur.com/wWzX9uB.png +[github-img]: https://i.imgur.com/9I6NRUm.png +``` \ No newline at end of file From 78b4eb00fb034319ce75106ac47de6743c078323 Mon Sep 17 00:00:00 2001 From: Darren Trinh Date: Thu, 17 Oct 2019 14:54:37 +1100 Subject: [PATCH 336/481] Updated CONTRIBUTORS.md --- CONTRIBUTORS.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 88f2aac1..5fc0a01e 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -25,6 +25,7 @@ - [Cresencio Flores](https://github.com/CresencioF) - [Dallin Reeves](https://github.com/dallin91) - [dark-shadow7](https://github.com/dark-shadow7) +- [Darren T](https://github.com/darrentrinh) - [Deeksha Agrawal](https://github.com/agrawal-deeksha) - [drmyuu](https://github.com/drmyuu) - [DzunN86](https://github.com/DzunN86) From 8e37856e1c1ee9082b812c5ac66c5d8b1dd71b49 Mon Sep 17 00:00:00 2001 From: Prajjwal Yadav Date: Thu, 17 Oct 2019 09:32:58 +0530 Subject: [PATCH 337/481] updated conotributers --- CONTRIBUTORS.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 88f2aac1..9e1da688 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -53,6 +53,7 @@ - [Nishant Tilve](https://github.com/Antimatter98) - [Pragadeeswaran Gnanasekaran](https://github.com/pragapraga) - [Ramy Fetteha](https://github.com/NoirFLamme) +- [Prajjwal Yadav](https://github.com/prajjyadav) - [Randil Tennakoon](https://github.com/randiltennakoon) - [Raul Gonzalez Cruz](https://github.com/raulgonzalezcz) - [Ricardo Borges](https://github.com/ricardo93borges) From a21ff72c80511592f285e2494eaaa53bc9f9cef3 Mon Sep 17 00:00:00 2001 From: Rounak Agarwal Date: Thu, 17 Oct 2019 11:23:03 +0530 Subject: [PATCH 338/481] Update CONTRIBUTORS.md --- CONTRIBUTORS.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 83864712..7ca00cbb 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -20,6 +20,7 @@ - [Corbin Taylor](https://github.com/cjtaylor1990) - [Cresencio Flores](https://github.com/CresencioF) - [dark-shadow7](https://github.com/dark-shadow7) +- [Dede Saepulloh](https://github.com/dedesaepulloh) - [Deeksha Agrawal](https://github.com/agrawal-deeksha) - [DzunN86](https://github.com/DzunN86) - [Emmanuel Ezenwigbo](https://github.com/SkyC0der) @@ -58,6 +59,5 @@ - [Victor Azevedo](https://github.com/victormazevedo) - [viewless](https://github.com/viewless) - [Vlad Zaporozhskyi](https://github.com/thezapovlad) -- [Dede Saepulloh](https://github.com/dedesaepulloh) From 6c1e7e612eeb05c29c918ba0ce88c6a9e8487aab Mon Sep 17 00:00:00 2001 From: Rounak Agarwal Date: Thu, 17 Oct 2019 11:27:39 +0530 Subject: [PATCH 339/481] Update CONTRIBUTORS.md --- CONTRIBUTORS.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index c65d08aa..b2eec08e 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -10,7 +10,6 @@ - [Ankit Sharma](https://github.com/AnkitSharmaOnGithub) - [Anna Giliaeva](https://github.com/Nekonokuro) - [Anshu Kumari](https://github.com/anshukcse) -- [Sagar Yadav](https://github.com/itsnotsagar) - [Ariq Heritsa](https://github.com/Heritsam) - [Ashutosh Singh](https://github.com/zohan4sh) - [Ayan Goel](https://github.com/GAyan17) @@ -47,6 +46,7 @@ - [Ricardo Borges](https://github.com/ricardo93borges) - [Rosario Galioto](https://github.com/tirannosario) - [Rounak Agarwal](https://github.com/agarwalrounak) +- [Sagar Yadav](https://github.com/itsnotsagar) - [Sahildeep Singh](https://github.com/sahilcodes) - [Samuel Tonini](https://github.com/samuel-tonini) - [Shriram Navaratnalingam](https://github.com/ShriLingam23) From ae9c426224bb20cd6dde140a168ffb72f5451006 Mon Sep 17 00:00:00 2001 From: Rounak Agarwal Date: Thu, 17 Oct 2019 11:28:27 +0530 Subject: [PATCH 340/481] Rename hello world.py to helloworld.py --- code/Python/hello world.py | 1 - code/Python/helloworld.py | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) delete mode 100644 code/Python/hello world.py create mode 100644 code/Python/helloworld.py diff --git a/code/Python/hello world.py b/code/Python/hello world.py deleted file mode 100644 index 8e235769..00000000 --- a/code/Python/hello world.py +++ /dev/null @@ -1 +0,0 @@ -print("Hello World") \ No newline at end of file diff --git a/code/Python/helloworld.py b/code/Python/helloworld.py new file mode 100644 index 00000000..ad35e5ae --- /dev/null +++ b/code/Python/helloworld.py @@ -0,0 +1 @@ +print("Hello World") From e9b1848f1f0cf58350885de9e8b51bc006387ae9 Mon Sep 17 00:00:00 2001 From: Rounak Agarwal Date: Thu, 17 Oct 2019 11:36:02 +0530 Subject: [PATCH 341/481] Update CONTRIBUTORS.md --- CONTRIBUTORS.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 36315e66..792d8eb3 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -9,7 +9,6 @@ - [Ankit Chahar](https://github.com/AnkitChahar) - [Ankit Sharma](https://github.com/AnkitSharmaOnGithub) - [Anna Giliaeva](https://github.com/Nekonokuro) -- [Suyash Bhiste] (https://github.com/SuyashBhiste) - [Anshu Kumari](https://github.com/anshukcse) - [Ariq Heritsa](https://github.com/Heritsam) - [Ashutosh Singh](https://github.com/zohan4sh) @@ -52,6 +51,7 @@ - [Shriram Navaratnalingam](https://github.com/ShriLingam23) - [Siddharth Raj](https://github.com/iamsidofficial) - [Srajal Agrawal](https://github.com/srajalagr) +- [Suyash Bhiste](https://github.com/SuyashBhiste) - [Thomas Windt](https://github.com/WOLFI3654) - [Tim Solokha](https://github.com/TimSolokha) - [tonzsm](https://github.com/tonzsm) From 5a7f477df985e4b6d00264542f6dd95f74f9eec1 Mon Sep 17 00:00:00 2001 From: Rounak Agarwal Date: Thu, 17 Oct 2019 11:40:00 +0530 Subject: [PATCH 342/481] Rename hello-open-source to hello-open-source.php --- code/PHP/{hello-open-source => hello-open-source.php} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename code/PHP/{hello-open-source => hello-open-source.php} (100%) diff --git a/code/PHP/hello-open-source b/code/PHP/hello-open-source.php similarity index 100% rename from code/PHP/hello-open-source rename to code/PHP/hello-open-source.php From ee9c92721d6d491146cb2ac240e6f0233c98ed13 Mon Sep 17 00:00:00 2001 From: Rounak Agarwal Date: Thu, 17 Oct 2019 11:42:24 +0530 Subject: [PATCH 343/481] Update CONTRIBUTORS.md --- CONTRIBUTORS.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 247f6947..d23e9087 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -37,8 +37,8 @@ - [Jatin Narula](https://github.com/jatin96) - [João Vítor Morandi Lemos](https://github.com/joaovitorml) - [Karan Singh](https://github.com/karansingh97) +- [Kaustubh J](https://github.com/thsubaku9) - [Kevin Ward](https://github.com/Blueward12) -- [Kaustubh J] (https://github.com/thsubaku9) - [Kushantha Charuka](https://github.com/Kushiya) - [Lejla I](https://github.com/Ley2717) - [Lilian F](https://github.com/lilianferreira) From 6e3fbe128f15fbe6d3dca891e6823a6850f610e7 Mon Sep 17 00:00:00 2001 From: Will G Date: Thu, 17 Oct 2019 00:16:24 -0700 Subject: [PATCH 344/481] Added a cpp file! --- .CONTRIBUTORS.md.un~ | Bin 0 -> 523 bytes CONTRIBUTORS.md | 2 +- code/C++/yellow.cpp | 6 ++++++ 3 files changed, 7 insertions(+), 1 deletion(-) create mode 100644 .CONTRIBUTORS.md.un~ create mode 100644 code/C++/yellow.cpp diff --git a/.CONTRIBUTORS.md.un~ b/.CONTRIBUTORS.md.un~ new file mode 100644 index 0000000000000000000000000000000000000000..9d0d29238d8fd7626d7277345056bb50f1d5a40b GIT binary patch literal 523 zcmWH`%$*;a=aT=FfvNDYv(q~n>4p2)t2Xosr_?W=xImxdZS%sX56U~gO}+7zfq@|m zh(RC}LNPD`X%Geh7#qxwUBPe00uhP70Fg%_K~gY782$qR+!z#Pqa5ml05CdCq0#YG U0%&9i5QE|pgu(G;+W34G00xyJc>n+a literal 0 HcmV?d00001 diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index d23e9087..ada47390 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -82,5 +82,5 @@ - [Victor Azevedo](https://github.com/victormazevedo) - [viewless](https://github.com/viewless) - [Vlad Zaporozhskyi](https://github.com/thezapovlad) - +- [Will Gebbie](https://github.com/will-gebbie) diff --git a/code/C++/yellow.cpp b/code/C++/yellow.cpp new file mode 100644 index 00000000..4697e180 --- /dev/null +++ b/code/C++/yellow.cpp @@ -0,0 +1,6 @@ +#include + +int main(){ + std::cout << "Yellow World!"; + return 0; +} From 592fe8233fc060ea253cbcdb1cb1d0d30a274656 Mon Sep 17 00:00:00 2001 From: InsiyaK110 <56274942+InsiyaK110@users.noreply.github.com> Date: Thu, 17 Oct 2019 11:58:52 +0100 Subject: [PATCH 345/481] Java --- code/Java/HW Java | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 code/Java/HW Java diff --git a/code/Java/HW Java b/code/Java/HW Java new file mode 100644 index 00000000..25b83c4b --- /dev/null +++ b/code/Java/HW Java @@ -0,0 +1,5 @@ +public class HelloWorld { + public static void main (String[] args) { + System.out.println("Hello, World!"); + } +} From abca63f27114c28a36eabb87835b7d967725b26a Mon Sep 17 00:00:00 2001 From: rijupramanik Date: Thu, 17 Oct 2019 16:56:58 +0530 Subject: [PATCH 346/481] profile and php hello world --- CONTRIBUTORS.md | 1 + code/PHP/world_hello.php | 3 +++ profiles/Riju_Pramanik.txt | 21 +++++++++++++++++++++ 3 files changed, 25 insertions(+) create mode 100644 code/PHP/world_hello.php create mode 100644 profiles/Riju_Pramanik.txt diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index d23e9087..39f1132c 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -60,6 +60,7 @@ - [Randil Tennakoon](https://github.com/randiltennakoon) - [Raul Gonzalez Cruz](https://github.com/raulgonzalezcz) - [Ricardo Borges](https://github.com/ricardo93borges) +- [Riju Pramanik](https://github.com/pramanikriju) - [Ritik Gupta](https://github.com/ritik-gupta) - [Rosario Galioto](https://github.com/tirannosario) - [Rounak Agarwal](https://github.com/agarwalrounak) diff --git a/code/PHP/world_hello.php b/code/PHP/world_hello.php new file mode 100644 index 00000000..07ad667d --- /dev/null +++ b/code/PHP/world_hello.php @@ -0,0 +1,3 @@ + \ No newline at end of file diff --git a/profiles/Riju_Pramanik.txt b/profiles/Riju_Pramanik.txt new file mode 100644 index 00000000..0463d90f --- /dev/null +++ b/profiles/Riju_Pramanik.txt @@ -0,0 +1,21 @@ +## Riju Pramanik + +### Bio +Full stack developer and freelance photographer + +### Location +India + +### Projects +Onewallethub - Unified payments aggregator platform + +### Hobbies & Interests +Guitar and Photography + +### Profiles +[![GitHub][github-img]](https://github.com/pramanikriju) +[![Twitter][twitter-img]](https://twitter.com/riju_venate) + + +[twitter-img]: https://i.imgur.com/wWzX9uB.png +[github-img]: https://i.imgur.com/9I6NRUm.png \ No newline at end of file From 7d404e006676298cdc7cdbb560621c52bbaaefed Mon Sep 17 00:00:00 2001 From: BITTU Date: Thu, 17 Oct 2019 19:18:07 +0530 Subject: [PATCH 347/481] my first commit --- code/JavaScript/Hello-World.js | 1 + profiles/Bittu_Benny.md | 21 +++++++++++++++++++++ 2 files changed, 22 insertions(+) create mode 100644 code/JavaScript/Hello-World.js create mode 100644 profiles/Bittu_Benny.md diff --git a/code/JavaScript/Hello-World.js b/code/JavaScript/Hello-World.js new file mode 100644 index 00000000..6e7bffe1 --- /dev/null +++ b/code/JavaScript/Hello-World.js @@ -0,0 +1 @@ +alert("Hello World"); \ No newline at end of file diff --git a/profiles/Bittu_Benny.md b/profiles/Bittu_Benny.md new file mode 100644 index 00000000..7e4e538b --- /dev/null +++ b/profiles/Bittu_Benny.md @@ -0,0 +1,21 @@ +##NAME +Bittu Benny + +### Bio +working as a programmer + +### Location +INDIA + +### Projects +HELLO_WORLD + +### Hobbies & Interests +programming,animation + +### Profiles +[![GitHub][github-img]](https://github.com/bittubenny123) + + +[twitter-img]: https://i.imgur.com/wWzX9uB.png +[github-img]: https://i.imgur.com/9I6NRUm.png \ No newline at end of file From fc9fc182c1a407379b938b73da44154e40f267d8 Mon Sep 17 00:00:00 2001 From: BITTU Date: Thu, 17 Oct 2019 19:22:44 +0530 Subject: [PATCH 348/481] second commit - contributors.md edited --- CONTRIBUTORS.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 08eea977..8e85ed2b 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -1,4 +1,4 @@ - + - [AAMIR AHMAD](https://github.com/sickwiz) - [Abbas Abi](https://github.com/AbbasAbi) - [Adrian Martin](https://github.com/amgdevelop) @@ -18,6 +18,7 @@ - [Ashutosh Singh](https://github.com/zohan4sh) - [Ayan Goel](https://github.com/GAyan17) - [Bhavesh Gupta](https://github.com/bhavesh-g) +- [Bittu Benny](https://github.com/bittubenny123) - [CaffeinatedCod3r](https://github.com/CaffeinatedCod3r) - [CherryKitten](https://github.com/CherryKitten) - [Chandra Mouli](https://github.com/codechandra) From 33d56012b30356183a689cc1cb330749a348e810 Mon Sep 17 00:00:00 2001 From: tmoss0 Date: Thu, 17 Oct 2019 10:21:05 -0400 Subject: [PATCH 349/481] Adding my Hello World! --- code/JavaScript/Hello_World_Upload.js | 1 + 1 file changed, 1 insertion(+) create mode 100644 code/JavaScript/Hello_World_Upload.js diff --git a/code/JavaScript/Hello_World_Upload.js b/code/JavaScript/Hello_World_Upload.js new file mode 100644 index 00000000..178f0edd --- /dev/null +++ b/code/JavaScript/Hello_World_Upload.js @@ -0,0 +1 @@ +console.log('Hello World!'); \ No newline at end of file From c945e93431a559bb0eade78a75e08f88e3fc4d2f Mon Sep 17 00:00:00 2001 From: marciomyst Date: Thu, 17 Oct 2019 11:49:58 -0300 Subject: [PATCH 350/481] Update CONTRIBUTORS.md Add name and github link to document --- CONTRIBUTORS.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index d23e9087..3ebf7c1a 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -45,6 +45,7 @@ - [Loris Gabriele](https://github.com/Pyr0x1) - [Luciano Santos](https://github.com/lucianosz7) - [Manu Sharma] (https://github.com/iammanusharma) +- [Marcio Luiz Rossato Gomes](https://github.com/marciomyst) - [Mayank Parmar](https://github.com/myk7hackon) - [Megha Agarwal](https://github.com/meghaa105P) - [Mehul Garg](https://github.com/gargmehul10) From abc9c107c72e0fe8e54cf535600d72b7e63f85f4 Mon Sep 17 00:00:00 2001 From: marciomyst Date: Thu, 17 Oct 2019 11:55:00 -0300 Subject: [PATCH 351/481] Create Marcio_Gomes.md Add profile information --- profiles/Marcio_Gomes.md | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 profiles/Marcio_Gomes.md diff --git a/profiles/Marcio_Gomes.md b/profiles/Marcio_Gomes.md new file mode 100644 index 00000000..5b2e91d5 --- /dev/null +++ b/profiles/Marcio_Gomes.md @@ -0,0 +1,18 @@ +## Marcio Gomes + +### Bio + Master Science in Computer Vision who is interested in programming and coding and software architecture + have programming skills in VB, C#, Java, Dart. + +### Location + Brazil. + +### Projects + Haven't done anything worth mentioning. + +### Hobbies & Interests + -Programming. + -Play Street Fighter IV. + +### Profiles +[![GitHub][github-img]](https://github.com/marciomyst) From ef70c695e5933255253e4fc79617c655576d5734 Mon Sep 17 00:00:00 2001 From: marciomyst Date: Thu, 17 Oct 2019 12:02:11 -0300 Subject: [PATCH 352/481] Create HelloWorld_MarcioGomes.cs Add a fancy hello world sample in C# --- code/C#/HelloWorld_MarcioGomes.cs | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 code/C#/HelloWorld_MarcioGomes.cs diff --git a/code/C#/HelloWorld_MarcioGomes.cs b/code/C#/HelloWorld_MarcioGomes.cs new file mode 100644 index 00000000..d71aad1e --- /dev/null +++ b/code/C#/HelloWorld_MarcioGomes.cs @@ -0,0 +1,17 @@ +using System; + +namespace HelloWorldApp +{ + internal static class HelloWorld + { + internal static string SayHello(this string _)=> "Hello World"; + } + + /// + /// Fancy Hello World Program. + /// + class Program + { + static void Main() => Console.WriteLine(string.Empty.SayHello()); + } +} From 5e889bf841961ec14b5c2b66a55beb4671c9ff8e Mon Sep 17 00:00:00 2001 From: Cristian Date: Thu, 17 Oct 2019 15:25:42 -0300 Subject: [PATCH 353/481] =?UTF-8?q?ol=C3=A1=20mundo?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- code/C/OlaMundo.c | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 code/C/OlaMundo.c diff --git a/code/C/OlaMundo.c b/code/C/OlaMundo.c new file mode 100644 index 00000000..f19a0b1b --- /dev/null +++ b/code/C/OlaMundo.c @@ -0,0 +1,6 @@ +#include + +int main(){ + printf("Olá, Mundo :D!\n"); + return 0; +} \ No newline at end of file From ed75c1642112371142e9d0ec0cc350dd36d2f9f1 Mon Sep 17 00:00:00 2001 From: Prashantique <56654657+Prashantique@users.noreply.github.com> Date: Fri, 18 Oct 2019 00:42:40 +0530 Subject: [PATCH 354/481] Update CONTRIBUTORS.md --- CONTRIBUTORS.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index d23e9087..e4b0954f 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -54,6 +54,7 @@ - [Naveenraj M](https://github.com/naveenrajm7) - [nilesh](https://github.com/nileshsahitya9) - [Nishant Tilve](https://github.com/Antimatter98) +- [Prashant Sharma](https://github.com/Prashantique) - [Pragadeeswaran Gnanasekaran](https://github.com/pragapraga) - [Prateek kocher](https://github.com/prateekk2001) - [Ramy Fetteha](https://github.com/NoirFLamme) From 5190ae01638c8b714cc483ab97a785183485c362 Mon Sep 17 00:00:00 2001 From: Ferveloper Date: Thu, 17 Oct 2019 21:51:42 +0200 Subject: [PATCH 355/481] Fernando's contribution --- CONTRIBUTORS.md | 1 + code/JavaScript/hello-world.js | 6 ++++++ 2 files changed, 7 insertions(+) create mode 100644 code/JavaScript/hello-world.js diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index d23e9087..16fd9c49 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -31,6 +31,7 @@ - [DzunN86](https://github.com/DzunN86) - [Emmanuel Ezenwigbo](https://github.com/SkyC0der) - [Erol Aliyev](https://github.com/erolaliyev) +- [Fernando Merino](https://github.com/Ferveloper) - [Hans](https://github.com/hungvu193) - [HRAnkit](https://github.com/hrankit) - [Hritik Soni](https://github.com/iamhritik55) diff --git a/code/JavaScript/hello-world.js b/code/JavaScript/hello-world.js new file mode 100644 index 00000000..097dd122 --- /dev/null +++ b/code/JavaScript/hello-world.js @@ -0,0 +1,6 @@ +// ES2015 version +"use strict"; + +const helloWorld = 'Hello, World!'; + +console.log(helloWorld); From 936d7f0a104129b1004a3eec72429d4047bee736 Mon Sep 17 00:00:00 2001 From: drunkedMonkey Date: Thu, 17 Oct 2019 23:21:04 +0200 Subject: [PATCH 356/481] 3 tasks, drunkedMonkey --- CONTRIBUTORS.md | 1 + code/JavaScript/hello_World_Spain.js | 6 ++++++ profiles/drunkedMonkey.md | 21 +++++++++++++++++++++ 3 files changed, 28 insertions(+) create mode 100644 code/JavaScript/hello_World_Spain.js create mode 100644 profiles/drunkedMonkey.md diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index d23e9087..91f3a6aa 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -29,6 +29,7 @@ - [Deeksha Agrawal](https://github.com/agrawal-deeksha) - [drmyuu](https://github.com/drmyuu) - [DzunN86](https://github.com/DzunN86) +- [drunkedMonkey](https://github.com/drunkedMonkey) - [Emmanuel Ezenwigbo](https://github.com/SkyC0der) - [Erol Aliyev](https://github.com/erolaliyev) - [Hans](https://github.com/hungvu193) diff --git a/code/JavaScript/hello_World_Spain.js b/code/JavaScript/hello_World_Spain.js new file mode 100644 index 00000000..08704f70 --- /dev/null +++ b/code/JavaScript/hello_World_Spain.js @@ -0,0 +1,6 @@ +const saludo = () => { + console.log("Hola Mundo"); + alert("Hola Mundo"); +}; + +saludo(); \ No newline at end of file diff --git a/profiles/drunkedMonkey.md b/profiles/drunkedMonkey.md new file mode 100644 index 00000000..d183bdd3 --- /dev/null +++ b/profiles/drunkedMonkey.md @@ -0,0 +1,21 @@ +## Your Name +José Ibañez + +### Bio +Web Developer + +### Location +Alicante,Spain + +### Projects +Insurance app with Angular + +### Hobbies & Interests +Videogames and Javascript + +### Profiles +[![GitHub][github-img]](https://github.com/drunkedMonkey) + + +[twitter-img]: https://i.imgur.com/wWzX9uB.png +[github-img]: https://i.imgur.com/9I6NRUm.png \ No newline at end of file From 36372a29672437627214065bb3e1568f9db084c0 Mon Sep 17 00:00:00 2001 From: Scott Mercer <37919395+scottmercer@users.noreply.github.com> Date: Thu, 17 Oct 2019 17:35:30 -0500 Subject: [PATCH 357/481] update contributors --- CONTRIBUTORS.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index d23e9087..c1dfaf35 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -66,6 +66,7 @@ - [Sagar Yadav](https://github.com/itsnotsagar) - [Sahildeep Singh](https://github.com/sahilcodes) - [Samuel Tonini](https://github.com/samuel-tonini) +- [Scott Mercer] (https://github.com/scottmercer) - [Shridhar Ravi](https://github.com/shridharravi97) - [Shriram Navaratnalingam](https://github.com/ShriLingam23) - [Siddharth Raj](https://github.com/iamsidofficial) From f64de1f00aa7ad74173fabe676778f48125d84a3 Mon Sep 17 00:00:00 2001 From: nessa-art Date: Fri, 18 Oct 2019 01:08:50 -0400 Subject: [PATCH 358/481] Contributing from Canada! --- CONTRIBUTORS.md | 1 + code/C++/bonjour_le_monde.cpp | 9 +++++++++ profiles/Vanessa_Truong.md | 23 +++++++++++++++++++++++ 3 files changed, 33 insertions(+) create mode 100644 code/C++/bonjour_le_monde.cpp create mode 100644 profiles/Vanessa_Truong.md diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index d23e9087..d7efecd3 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -78,6 +78,7 @@ - [Thomas Windt](https://github.com/WOLFI3654) - [Tim Solokha](https://github.com/TimSolokha) - [tonzsm](https://github.com/tonzsm) +- [Vanessa Truong](https://github.com/nessa-art) - [Varun Vishal](https://github.com/varunvishal10) - [Victor Azevedo](https://github.com/victormazevedo) - [viewless](https://github.com/viewless) diff --git a/code/C++/bonjour_le_monde.cpp b/code/C++/bonjour_le_monde.cpp new file mode 100644 index 00000000..bcb5d4e9 --- /dev/null +++ b/code/C++/bonjour_le_monde.cpp @@ -0,0 +1,9 @@ +#include +using namespace std; + +int main() +{ + cout << "Hello World!" << endl; + + return 0; +} \ No newline at end of file diff --git a/profiles/Vanessa_Truong.md b/profiles/Vanessa_Truong.md new file mode 100644 index 00000000..dcd74ca1 --- /dev/null +++ b/profiles/Vanessa_Truong.md @@ -0,0 +1,23 @@ +## Vanessa Truong + +### Bio +I'm a Software Engineering undergraduate - looking to learn more about open source development! + +### Location +Living in Canada with the polar bears. + +### Projects +Developed a 2D puzzle platform game in Unity (The Village). +Currently developing a 2.5D co-op game in Unity for my capstone project. +Looking into developing a mobile VR game. + +### Hobbies & Interests +Open source development is an area I'm looking into getting more involved with. :) + +### Profiles +[![GitHub][github-img]](https://github.com/nessa-art) +[![Twitter][twitter-img]](I don't use Twitter >:)) + + +[twitter-img]: https://i.imgur.com/wWzX9uB.png +[github-img]: https://i.imgur.com/9I6NRUm.png \ No newline at end of file From f09254a1b98b6f1db35c0e3fbd305f5aa2151269 Mon Sep 17 00:00:00 2001 From: Rounak Agarwal Date: Fri, 18 Oct 2019 11:44:17 +0530 Subject: [PATCH 359/481] Rename Hello World in C to Hello_World_in_C.c --- code/C/{Hello World in C => Hello_World_in_C.c} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename code/C/{Hello World in C => Hello_World_in_C.c} (100%) diff --git a/code/C/Hello World in C b/code/C/Hello_World_in_C.c similarity index 100% rename from code/C/Hello World in C rename to code/C/Hello_World_in_C.c From b8c5b5c4165bed69c6776a80ed9a3ed33629fdc2 Mon Sep 17 00:00:00 2001 From: John Zissimou Date: Fri, 18 Oct 2019 09:24:33 +0100 Subject: [PATCH 360/481] Added name in the CONTRIBUTORS.md file. --- CONTRIBUTORS.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index f777f76b..b77c1787 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -1,4 +1,4 @@ - + - [AAMIR AHMAD](https://github.com/sickwiz) - [Abbas Abi](https://github.com/AbbasAbi) - [Abid Saleem](https://github.com/abidsal04) @@ -37,6 +37,7 @@ - [Hritik Soni](https://github.com/iamhritik55) - [Jatin Narula](https://github.com/jatin96) - [João Vítor Morandi Lemos](https://github.com/joaovitorml) +- [John Zissimou](https://github.com/johnziss9) - [Juli Krue](https://github.com/JuliKrue) - [Karan Singh](https://github.com/karansingh97) - [Kaustubh J](https://github.com/thsubaku9) From 971badf91a8780ade7faf61c1cbc3c39cb5f002e Mon Sep 17 00:00:00 2001 From: Alok Kumar Date: Fri, 18 Oct 2019 16:16:01 +0530 Subject: [PATCH 361/481] Create helloWorldByAlok.java --- code/Java/helloWorldByAlok.java | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 code/Java/helloWorldByAlok.java diff --git a/code/Java/helloWorldByAlok.java b/code/Java/helloWorldByAlok.java new file mode 100644 index 00000000..00c4298a --- /dev/null +++ b/code/Java/helloWorldByAlok.java @@ -0,0 +1,5 @@ + public class HelloWorld { + public static void main (String[] args) { + System.out.println("Hello, World!"); + } +} From 22ff13e765cc5bd1a99316cb6fbd88d4182d1235 Mon Sep 17 00:00:00 2001 From: Alok Kumar Date: Fri, 18 Oct 2019 16:19:55 +0530 Subject: [PATCH 362/481] Update CONTRIBUTORS.md --- CONTRIBUTORS.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index f777f76b..e5d9cdbc 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -6,6 +6,7 @@ - [Ajey Prasand](https://github.com/ajeyprasand) - [Akshi Tak](https://github.com/akshitak) - [Alyssa Columbus](https://github.com/acolum) +- [Alok](https://github.com/Alokkumar8) - [Amit Dutta](https://github.com/Amitdutta7) - [Andre-Lee](https://github.com/andre-lee) - [Aniket Sharma](https://github.com/aniketsharma00411) From f957ba2f7d742f5e181597c8e2f7bae80fa371d3 Mon Sep 17 00:00:00 2001 From: Justin Anthony Balaguer I Date: Fri, 18 Oct 2019 19:51:36 +0800 Subject: [PATCH 363/481] hello-world commit [Justin Balaguer] --- CONTRIBUTORS.md | 1 + code/JavaScript/a_helloWorld.js | 1 + profiles/Justin_Anthony_Balaguer_I.md | 23 +++++++++++++++++++++++ 3 files changed, 25 insertions(+) create mode 100644 code/JavaScript/a_helloWorld.js create mode 100644 profiles/Justin_Anthony_Balaguer_I.md diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index f777f76b..e5e18dc1 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -38,6 +38,7 @@ - [Jatin Narula](https://github.com/jatin96) - [João Vítor Morandi Lemos](https://github.com/joaovitorml) - [Juli Krue](https://github.com/JuliKrue) +- [Justin Anthony Balaguer I](https://github.com/justinbalaguer) - [Karan Singh](https://github.com/karansingh97) - [Kaustubh J](https://github.com/thsubaku9) - [Kevin Ward](https://github.com/Blueward12) diff --git a/code/JavaScript/a_helloWorld.js b/code/JavaScript/a_helloWorld.js new file mode 100644 index 00000000..ae9e3a99 --- /dev/null +++ b/code/JavaScript/a_helloWorld.js @@ -0,0 +1 @@ +console.log("Hello, World!"); \ No newline at end of file diff --git a/profiles/Justin_Anthony_Balaguer_I.md b/profiles/Justin_Anthony_Balaguer_I.md new file mode 100644 index 00000000..bfd12fd4 --- /dev/null +++ b/profiles/Justin_Anthony_Balaguer_I.md @@ -0,0 +1,23 @@ +Justin Anthony Balaguer I + +### Bio +Filipino guy that wants to explore coding + +### Location +Legazpi, 4508 Albay, Philippines + +### Projects +Philippines News (API fetch) +Loan Collection +Evade (JS Game) + +### Hobbies & Interests +Automation to make life easier, I am also interested in making videos (personal travel videos to look back when I'm old) + +### Profiles +[![GitHub][github-img]](https://github.com/justinbalaguer) +[![Twitter][twitter-img]](https://twitter.com/justinbalaguer_) + + +[twitter-img]: https://i.imgur.com/wWzX9uB.png +[github-img]: https://i.imgur.com/9I6NRUm.png \ No newline at end of file From d712ecd400ce61686d7297564b9229686fb90454 Mon Sep 17 00:00:00 2001 From: Nathan Lilly Date: Fri, 18 Oct 2019 10:59:58 -0400 Subject: [PATCH 364/481] Add SVG directory and code --- code/SVG/helloworld.svg | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 code/SVG/helloworld.svg diff --git a/code/SVG/helloworld.svg b/code/SVG/helloworld.svg new file mode 100644 index 00000000..685fb9cd --- /dev/null +++ b/code/SVG/helloworld.svg @@ -0,0 +1,3 @@ + + HELLO WORLD + \ No newline at end of file From 4d7b25db338ce0a4f7caa9c762a428b48ee7cdd4 Mon Sep 17 00:00:00 2001 From: Bobsizlak <56492850+Bobsizlak@users.noreply.github.com> Date: Fri, 18 Oct 2019 11:53:01 -0400 Subject: [PATCH 365/481] Create Hello_World --- code/Python/Hello_World | 1 + 1 file changed, 1 insertion(+) create mode 100644 code/Python/Hello_World diff --git a/code/Python/Hello_World b/code/Python/Hello_World new file mode 100644 index 00000000..ad35e5ae --- /dev/null +++ b/code/Python/Hello_World @@ -0,0 +1 @@ +print("Hello World") From 818bc3e80fd113bb18371675a00876de6a24cd63 Mon Sep 17 00:00:00 2001 From: Bobsizlak <56492850+Bobsizlak@users.noreply.github.com> Date: Fri, 18 Oct 2019 11:55:46 -0400 Subject: [PATCH 366/481] Update CONTRIBUTORS.md --- CONTRIBUTORS.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index f777f76b..531770e9 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -17,6 +17,7 @@ - [Ariq Heritsa](https://github.com/Heritsam) - [Ashleigh Pearson](https://github.com/aasimarr) - [Ashutosh Singh](https://github.com/zohan4sh) +- [Austin Hayford](https://github.com/Bobsizlak) - [Ayan Goel](https://github.com/GAyan17) - [Bhavesh Gupta](https://github.com/bhavesh-g) - [CaffeinatedCod3r](https://github.com/CaffeinatedCod3r) From c8cbf80c1d88e4159d77ae6bd11f05ecec9d0439 Mon Sep 17 00:00:00 2001 From: verma-bhavya Date: Fri, 18 Oct 2019 21:30:23 +0530 Subject: [PATCH 367/481] Added profile to CONTRIBUTORS.md --- CONTRIBUTORS.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index f777f76b..abfa64f2 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -90,6 +90,6 @@ - [viewless](https://github.com/viewless) - [Vlad Zaporozhskyi](https://github.com/thezapovlad) - [Walter Brahman](https://github.com/veugelenw) - +- [Bhavya Verma](https://github.com/verma-bhavya) From e994c0b643ca18111511cdbd63bdd042b2c5eca5 Mon Sep 17 00:00:00 2001 From: Bobsizlak <56492850+Bobsizlak@users.noreply.github.com> Date: Fri, 18 Oct 2019 12:06:19 -0400 Subject: [PATCH 368/481] Create Austin_Hayford --- profiles/Austin_Hayford | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 profiles/Austin_Hayford diff --git a/profiles/Austin_Hayford b/profiles/Austin_Hayford new file mode 100644 index 00000000..d26ffd03 --- /dev/null +++ b/profiles/Austin_Hayford @@ -0,0 +1,20 @@ +Austin Hayford + +Bio +Aerospace Engineering student, aspiring astronaut + +Location +Orlando, Fl + +Projects +None... Yet :D + +Hobbies & Interests +Motorcycles, mountian biking + +Profiles +[![GitHub][github-img]](https://github.com/Bobsizlak) + + +[twitter-img]: https://i.imgur.com/wWzX9uB.png +[github-img]: https://i.imgur.com/9I6NRUm.png From 44603461174165c2673b9a268232d3557faa2683 Mon Sep 17 00:00:00 2001 From: Bobsizlak <56492850+Bobsizlak@users.noreply.github.com> Date: Fri, 18 Oct 2019 12:14:55 -0400 Subject: [PATCH 369/481] Update Austin_Hayford --- profiles/Austin_Hayford | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/profiles/Austin_Hayford b/profiles/Austin_Hayford index d26ffd03..048ec43e 100644 --- a/profiles/Austin_Hayford +++ b/profiles/Austin_Hayford @@ -1,20 +1,21 @@ -Austin Hayford +## Austin Hayford -Bio +### Bio Aerospace Engineering student, aspiring astronaut -Location +### Location Orlando, Fl -Projects -None... Yet :D +### Projects +None... Yet :D -Hobbies & Interests +### Hobbies & Interests Motorcycles, mountian biking -Profiles -[![GitHub][github-img]](https://github.com/Bobsizlak) - +### Profiles +[![GitHub][github-img]](https://github.com/Bobsizlak) +[![Twitter][twitter-img]](Link to Twitter profile) + [twitter-img]: https://i.imgur.com/wWzX9uB.png [github-img]: https://i.imgur.com/9I6NRUm.png From bc22ae4a8ff2c7df7a8da39e8f6cc4b23d475451 Mon Sep 17 00:00:00 2001 From: pragyeshjain <45493023+pragyeshjain@users.noreply.github.com> Date: Fri, 18 Oct 2019 22:50:42 +0530 Subject: [PATCH 370/481] Update CONTRIBUTORS.md --- CONTRIBUTORS.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index f777f76b..3fccceb2 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -60,6 +60,7 @@ - [nilesh](https://github.com/nileshsahitya9) - [Nishant Tilve](https://github.com/Antimatter98) - [Pragadeeswaran Gnanasekaran](https://github.com/pragapraga) +- [Pragyesh Jain](https://github.com/pragyeshjain) - [Prateek kocher](https://github.com/prateekk2001) - [Ramy Fetteha](https://github.com/NoirFLamme) - [Randil Tennakoon](https://github.com/randiltennakoon) From 8a3fef4876c4693ded1a6f1c38512be489b88941 Mon Sep 17 00:00:00 2001 From: Amisha Jangra Date: Fri, 18 Oct 2019 11:18:24 -0700 Subject: [PATCH 371/481] added few elements using html --- code/html/hlo_world.html | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 code/html/hlo_world.html diff --git a/code/html/hlo_world.html b/code/html/hlo_world.html new file mode 100644 index 00000000..d0b68ea8 --- /dev/null +++ b/code/html/hlo_world.html @@ -0,0 +1,12 @@ + + +My repository + + + +

HELLO WORLD

+ + + \ No newline at end of file From 7911273f60ea7a267ede11dea222a61f11ead1f6 Mon Sep 17 00:00:00 2001 From: Kem Muhammad Date: Fri, 18 Oct 2019 19:21:27 -0400 Subject: [PATCH 372/481] Working to get my first shirt, good luck to all! --- CONTRIBUTORS.md | 1 + code/JavaScript/Salaams_World.js | 1 + profiles/Kem_Muhammad.md | 20 ++++++++++++++++++++ 3 files changed, 22 insertions(+) create mode 100644 code/JavaScript/Salaams_World.js create mode 100644 profiles/Kem_Muhammad.md diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index f777f76b..3f9e6515 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -40,6 +40,7 @@ - [Juli Krue](https://github.com/JuliKrue) - [Karan Singh](https://github.com/karansingh97) - [Kaustubh J](https://github.com/thsubaku9) +- [Kem Muhammad](https://github.com/siddiqtechnologies) - [Kevin Ward](https://github.com/Blueward12) - [Kunal Kumar](https://github.com/kunal164107) - [Kushantha Charuka](https://github.com/Kushiya) diff --git a/code/JavaScript/Salaams_World.js b/code/JavaScript/Salaams_World.js new file mode 100644 index 00000000..d8c10f85 --- /dev/null +++ b/code/JavaScript/Salaams_World.js @@ -0,0 +1 @@ +console.log('Salaams World!'); \ No newline at end of file diff --git a/profiles/Kem_Muhammad.md b/profiles/Kem_Muhammad.md new file mode 100644 index 00000000..ff05f60b --- /dev/null +++ b/profiles/Kem_Muhammad.md @@ -0,0 +1,20 @@ +## Kem Muhammad + +### Bio +I'm working as a security admin, and looking forward to retirement. I have published several apps in the App and Google stores. + +### Location +Harlem, New York + +### Projects +Working on a small Triva game, and learning more about HTML, CSS & JavaScript. + +### Hobbies & Interests +Still shoot hoops, love college basketball and playing trivia games. + +### Profiles +[![GitHub][github-img]] (https://github.com/siddiqtechnologies) + + +[twitter-img]: https://i.imgur.com/wWzX9uB.png +[github-img]: https://i.imgur.com/9I6NRUm.png \ No newline at end of file From 0498cd35647787e39c6cc8984b8eb593d1b4303f Mon Sep 17 00:00:00 2001 From: 0395ankit <39001750+0395ankit@users.noreply.github.com> Date: Sat, 19 Oct 2019 08:39:00 +0530 Subject: [PATCH 373/481] Create HeLLo World --- code/Python/HeLLo World | 1 + 1 file changed, 1 insertion(+) create mode 100644 code/Python/HeLLo World diff --git a/code/Python/HeLLo World b/code/Python/HeLLo World new file mode 100644 index 00000000..ad35e5ae --- /dev/null +++ b/code/Python/HeLLo World @@ -0,0 +1 @@ +print("Hello World") From 04860846492ac2a5ca7f7ce670f6dad899286929 Mon Sep 17 00:00:00 2001 From: 0395ankit <39001750+0395ankit@users.noreply.github.com> Date: Sat, 19 Oct 2019 08:41:28 +0530 Subject: [PATCH 374/481] Update CONTRIBUTORS.md --- CONTRIBUTORS.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index f777f76b..81562d52 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -1,4 +1,5 @@ +- [Ankit Aggarwal](https://github.com/0395ankit) - [AAMIR AHMAD](https://github.com/sickwiz) - [Abbas Abi](https://github.com/AbbasAbi) - [Abid Saleem](https://github.com/abidsal04) From fbcb74012349f2f6bb0184a8b6e2a260a499c351 Mon Sep 17 00:00:00 2001 From: 0395ankit <39001750+0395ankit@users.noreply.github.com> Date: Sat, 19 Oct 2019 08:42:39 +0530 Subject: [PATCH 375/481] Update CONTRIBUTORS.md --- CONTRIBUTORS.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 81562d52..d470f64d 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -1,5 +1,4 @@ -- [Ankit Aggarwal](https://github.com/0395ankit) - [AAMIR AHMAD](https://github.com/sickwiz) - [Abbas Abi](https://github.com/AbbasAbi) - [Abid Saleem](https://github.com/abidsal04) @@ -10,6 +9,7 @@ - [Amit Dutta](https://github.com/Amitdutta7) - [Andre-Lee](https://github.com/andre-lee) - [Aniket Sharma](https://github.com/aniketsharma00411) +- [Ankit Aggarwal](https://github.com/0395ankit) - [Ankit Chahar](https://github.com/AnkitChahar) - [Ankit Garg](https://github.com/ankitgargsma) - [Ankit Sharma](https://github.com/AnkitSharmaOnGithub) From 596c041e6c04b2d1309609e961f0acf8938251cc Mon Sep 17 00:00:00 2001 From: 0395ankit <39001750+0395ankit@users.noreply.github.com> Date: Sat, 19 Oct 2019 08:46:15 +0530 Subject: [PATCH 376/481] Create Ankit_Aggarwal.md --- profiles/Ankit_Aggarwal.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 profiles/Ankit_Aggarwal.md diff --git a/profiles/Ankit_Aggarwal.md b/profiles/Ankit_Aggarwal.md new file mode 100644 index 00000000..9874acdb --- /dev/null +++ b/profiles/Ankit_Aggarwal.md @@ -0,0 +1,21 @@ +## Ankit Aggarwal + +### Bio +Software Developer with 2 years of experience. + +### Location +Delhi + +### Projects +Scripting of various manual monitoring and automation. + +### Hobbies & Interests +The super awesome things that intrigue you and bring you joy. + +### Profiles +[![GitHub][]](https://github.com/0395ankit) + + + +[twitter-img]: https://i.imgur.com/wWzX9uB.png +[github-img]: https://i.imgur.com/9I6NRUm.png From e27af5796648cc7b52b94311eef312009cbb49f4 Mon Sep 17 00:00:00 2001 From: Sanatan-Shrivastava Date: Sat, 19 Oct 2019 21:22:45 +0530 Subject: [PATCH 377/481] added code in Bash language(shellscript), added profile and added name in contributors.md --- CONTRIBUTORS.md | 1 + code/Bash/HelloWorld!.sh | 3 +++ profiles/Sanatan-Shrivastava.md | 23 +++++++++++++++++++++++ 3 files changed, 27 insertions(+) create mode 100644 code/Bash/HelloWorld!.sh create mode 100644 profiles/Sanatan-Shrivastava.md diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index f777f76b..aecc23ae 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -90,6 +90,7 @@ - [viewless](https://github.com/viewless) - [Vlad Zaporozhskyi](https://github.com/thezapovlad) - [Walter Brahman](https://github.com/veugelenw) +- [Sanatan Shrivastava](https://github.com/Sanatan-Shrivastava) diff --git a/code/Bash/HelloWorld!.sh b/code/Bash/HelloWorld!.sh new file mode 100644 index 00000000..5b9627b9 --- /dev/null +++ b/code/Bash/HelloWorld!.sh @@ -0,0 +1,3 @@ +#!/bin/bash +STR="Hello, World!" +echo $STR \ No newline at end of file diff --git a/profiles/Sanatan-Shrivastava.md b/profiles/Sanatan-Shrivastava.md new file mode 100644 index 00000000..6ad0c70e --- /dev/null +++ b/profiles/Sanatan-Shrivastava.md @@ -0,0 +1,23 @@ +## Sanatan-Shrivastava + +### Bio +I am a sophomore undergraduate in Computer Science and Engineering at Indian Institute of Information Technology, Kota. My areas of interest are Cloud Computing, Data Structures and Full Stack Web Development. + +### Location +Jaipur, Rajasthan, India. + +### Projects +Online News Magazine - StackScoop +Enterprise Resource Portal - A student ERP Portal +An application based on flutter with Developer Students Clubs of IIIT Kota + +### Hobbies & Interests +I like reading blogs, playing Badminton and working on customer oriented projects. + +### Profiles +[![GitHub][github-img]](https://github.com/Sanatan-Shrivastava) +[![Twitter][twitter-img]](https://twitter.com/SanatanShrivas1) + + +[twitter-img]: https://i.imgur.com/wWzX9uB.png +[github-img]: https://i.imgur.com/9I6NRUm.png \ No newline at end of file From 53304508b5dbef1f697cf25c0de5cebc3835e1ff Mon Sep 17 00:00:00 2001 From: Nemanja Jeremic Date: Sat, 19 Oct 2019 17:53:20 +0200 Subject: [PATCH 378/481] Update CONTRIBUTORS.md --- CONTRIBUTORS.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index f777f76b..5dc552f1 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -90,6 +90,7 @@ - [viewless](https://github.com/viewless) - [Vlad Zaporozhskyi](https://github.com/thezapovlad) - [Walter Brahman](https://github.com/veugelenw) +- [Nemanja Jeremic](https://github.com/nemanjajeremic) From 59c4155d30f777428f72ae1b57932ef4a2c72dd0 Mon Sep 17 00:00:00 2001 From: Aman Sohani Date: Sat, 19 Oct 2019 16:39:56 +0000 Subject: [PATCH 379/481] My first Commit --- CONTRIBUTORS.md | 1 + code/Python/HelloWorld_AmanSohani.py | 1 + 2 files changed, 2 insertions(+) create mode 100755 code/Python/HelloWorld_AmanSohani.py diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 353be2bc..dd4601dd 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -5,6 +5,7 @@ - [Ajey Prasand](https://github.com/ajeyprasand) - [Akshi Tak](https://github.com/akshitak) - [Alyssa Columbus](https://github.com/acolum) +- [Aman Sohani](https://github.com/amansohani222) - [Amit Dutta](https://github.com/Amitdutta7) - [Andre-Lee](hhttps://github.com/andre-lee) - [Ankit Chahar](https://github.com/AnkitChahar) diff --git a/code/Python/HelloWorld_AmanSohani.py b/code/Python/HelloWorld_AmanSohani.py new file mode 100755 index 00000000..dfe80e8d --- /dev/null +++ b/code/Python/HelloWorld_AmanSohani.py @@ -0,0 +1 @@ +print("Hello World"); \ No newline at end of file From 5c884b225ba86ad6034817c1bd6d9039e67e3447 Mon Sep 17 00:00:00 2001 From: nazmanager1 Date: Sat, 19 Oct 2019 12:08:47 -0500 Subject: [PATCH 380/481] add hello world hacktoberfest --- code/C#/Hello_World_Naz.cs | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 code/C#/Hello_World_Naz.cs diff --git a/code/C#/Hello_World_Naz.cs b/code/C#/Hello_World_Naz.cs new file mode 100644 index 00000000..7e041dde --- /dev/null +++ b/code/C#/Hello_World_Naz.cs @@ -0,0 +1,16 @@ +//Author:nazmanager1 +//LANGUAGE: C# +//https://github.com/nazmanager1 + +using System; + +namespace HelloWorld +{ + class Program + { + static void Main(string[] args) + { + Console.WriteLine("Hello World"); + } + } +} \ No newline at end of file From 198edc8fb7ca8cf0d19739ce8940761d495f7622 Mon Sep 17 00:00:00 2001 From: sajidmansoori Date: Sat, 19 Oct 2019 23:05:31 +0530 Subject: [PATCH 381/481] New contribution by Mohammed Sajid --- CONTRIBUTORS.md | 1 + code/Python/helloworldsajid.py | 1 + 2 files changed, 2 insertions(+) create mode 100644 code/Python/helloworldsajid.py diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index f777f76b..f36748fa 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -52,6 +52,7 @@ - [Mayank Parmar](https://github.com/myk7hackon) - [Megha Agarwal](https://github.com/meghaa105P) - [Mehul Garg](https://github.com/gargmehul10) +- [Mohammed Sajid Mansoori](https://github.com/sajidmansoori1998) - [Momozor](https://github.com/momozor) - [Mush60](https://github.com/mush60) - [Mykola Balabash](https://github.com/twilderan) diff --git a/code/Python/helloworldsajid.py b/code/Python/helloworldsajid.py new file mode 100644 index 00000000..b54ac76d --- /dev/null +++ b/code/Python/helloworldsajid.py @@ -0,0 +1 @@ +print("Hello World ! How are you ?") \ No newline at end of file From 44b15a49b344ecea891bb3cbca910d4b4237f26a Mon Sep 17 00:00:00 2001 From: Vishal Arora <33788309+WishAllVA@users.noreply.github.com> Date: Sun, 20 Oct 2019 00:46:49 +0530 Subject: [PATCH 382/481] Add files via upload --- code/C++/Hell-o-World.cpp | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 code/C++/Hell-o-World.cpp diff --git a/code/C++/Hell-o-World.cpp b/code/C++/Hell-o-World.cpp new file mode 100644 index 00000000..5956de1e --- /dev/null +++ b/code/C++/Hell-o-World.cpp @@ -0,0 +1,7 @@ +#include +using namespace std; + +int main(){ + cout<<"Hello World"; + return 0; +} From 2e2cb13501f965155d2657a77cc97d45689488a8 Mon Sep 17 00:00:00 2001 From: Vishal Arora <33788309+WishAllVA@users.noreply.github.com> Date: Sun, 20 Oct 2019 00:48:24 +0530 Subject: [PATCH 383/481] Update CONTRIBUTORS.md --- CONTRIBUTORS.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index f777f76b..f9ab95fd 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -88,6 +88,7 @@ - [Varun Vishal](https://github.com/varunvishal10) - [Victor Azevedo](https://github.com/victormazevedo) - [viewless](https://github.com/viewless) +- [Vishal Arora](https://github.com/WishAllVA) - [Vlad Zaporozhskyi](https://github.com/thezapovlad) - [Walter Brahman](https://github.com/veugelenw) From bdac331e5a8414b915dd4393db329eea4bf51324 Mon Sep 17 00:00:00 2001 From: Vishal Arora <33788309+WishAllVA@users.noreply.github.com> Date: Sun, 20 Oct 2019 00:52:36 +0530 Subject: [PATCH 384/481] Add files via upload --- profiles/Vishal_Arora.md | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 profiles/Vishal_Arora.md diff --git a/profiles/Vishal_Arora.md b/profiles/Vishal_Arora.md new file mode 100644 index 00000000..c2ff6a74 --- /dev/null +++ b/profiles/Vishal_Arora.md @@ -0,0 +1,8 @@ +Vishal Arora +Full Satck Web Developer +Bengaluru, India +Stock Market Prediction and Hotel Management Website +PlayStation and making videos on youtube + +[twitter-img]: https://i.imgur.com/wWzX9uB.png +[github-img]: https://i.imgur.com/9I6NRUm.png \ No newline at end of file From 71ee6f75493959a1fdee644d84bc179049c33235 Mon Sep 17 00:00:00 2001 From: Prakhar Sapre Date: Sat, 19 Oct 2019 14:24:40 -0500 Subject: [PATCH 385/481] Create HelloJava.java --- code/Java/HelloJava.java | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 code/Java/HelloJava.java diff --git a/code/Java/HelloJava.java b/code/Java/HelloJava.java new file mode 100644 index 00000000..0e1605ea --- /dev/null +++ b/code/Java/HelloJava.java @@ -0,0 +1,7 @@ +class HelloJava{ + + public static void main(String[] args){ + + System.out.println("Heeeellllo World of Java"); + } +} From d60caca69243cc2a0aea7d24974e686df8cf3d13 Mon Sep 17 00:00:00 2001 From: Vishal Arora <33788309+WishAllVA@users.noreply.github.com> Date: Sun, 20 Oct 2019 00:55:35 +0530 Subject: [PATCH 386/481] Delete Vishal_Arora.md --- profiles/Vishal_Arora.md | 8 -------- 1 file changed, 8 deletions(-) delete mode 100644 profiles/Vishal_Arora.md diff --git a/profiles/Vishal_Arora.md b/profiles/Vishal_Arora.md deleted file mode 100644 index c2ff6a74..00000000 --- a/profiles/Vishal_Arora.md +++ /dev/null @@ -1,8 +0,0 @@ -Vishal Arora -Full Satck Web Developer -Bengaluru, India -Stock Market Prediction and Hotel Management Website -PlayStation and making videos on youtube - -[twitter-img]: https://i.imgur.com/wWzX9uB.png -[github-img]: https://i.imgur.com/9I6NRUm.png \ No newline at end of file From 6c37580a018fa19e4d5cbf2126bd53b702ad458f Mon Sep 17 00:00:00 2001 From: Vishal Arora <33788309+WishAllVA@users.noreply.github.com> Date: Sun, 20 Oct 2019 00:56:01 +0530 Subject: [PATCH 387/481] Add files via upload --- profiles/Vishal_Arora.md | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 profiles/Vishal_Arora.md diff --git a/profiles/Vishal_Arora.md b/profiles/Vishal_Arora.md new file mode 100644 index 00000000..04b88061 --- /dev/null +++ b/profiles/Vishal_Arora.md @@ -0,0 +1,25 @@ +VISHAL ARORA +## BIO ## +I am a Full Stack Web Developer and Data Analysis enthusiast. + +## LOCATION ## +BENGALURU,INDIA. + + +## PROJECTS ## +1- Made a project on Stock Market Prediction +2- Made a Geofencing app for livestock + + +## HOBBIES ## +Playstation and Football + + + +## PROFILES ## +[![GitHub][github-img]](https://github.com/WishAllVA) +[![Twitter][twitter-img]](https://twitter.com/VishalA29735145) + +[twitter-img]: https://i.imgur.com/wWzX9uB.png +[twitter-img]:https://i.imgur.com/9I6NRUm + From 00448a519bef51f004aae76048b8244122b7bb9a Mon Sep 17 00:00:00 2001 From: Venkatesh Prasad Date: Sun, 20 Oct 2019 01:19:09 +0530 Subject: [PATCH 388/481] Added a new folder for Julia coding. Now one can say hello to the world even in Julia --- code/Julia | 0 code/hello_world.jl | 3 +++ 2 files changed, 3 insertions(+) create mode 100644 code/Julia create mode 100644 code/hello_world.jl diff --git a/code/Julia b/code/Julia new file mode 100644 index 00000000..e69de29b diff --git a/code/hello_world.jl b/code/hello_world.jl new file mode 100644 index 00000000..adb5fa87 --- /dev/null +++ b/code/hello_world.jl @@ -0,0 +1,3 @@ +println("Hello World. This is JuliaLang, a language designed for high performance.") + +println("It has the speed of C/C++ and the ease of Python. It is revolutionizing scientific coding.") \ No newline at end of file From b2005e4090ad91a41c874d8211f684ed646f4300 Mon Sep 17 00:00:00 2001 From: sandeep singh negi <9041128179sandy@gmail.com> Date: Sun, 20 Oct 2019 02:02:18 +0530 Subject: [PATCH 389/481] added my name --- CONTRIBUTORS.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index f9ab95fd..5eabbd62 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -91,6 +91,7 @@ - [Vishal Arora](https://github.com/WishAllVA) - [Vlad Zaporozhskyi](https://github.com/thezapovlad) - [Walter Brahman](https://github.com/veugelenw) +- [Sandeep Singh Negi](https://github.com/sandeepnegi1996) From 8b0c7a1dca21fb21e6eedbab0530c466b29534e6 Mon Sep 17 00:00:00 2001 From: ryan papazoglou Date: Sat, 19 Oct 2019 16:57:00 -0400 Subject: [PATCH 390/481] Hacktoberfest --- CONTRIBUTORS.md | 1 + code/Python/hello_world_papa.py | 1 + profiles/papa.md | 22 ++++++++++++++++++++++ 3 files changed, 24 insertions(+) create mode 100644 code/Python/hello_world_papa.py create mode 100644 profiles/papa.md diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index f777f76b..6e793d97 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -68,6 +68,7 @@ - [Ritik Gupta](https://github.com/ritik-gupta) - [Rosario Galioto](https://github.com/tirannosario) - [Rounak Agarwal](https://github.com/agarwalrounak) +- [Ryan Papazoglou](https://github.com/RyanPapazoglou) - [Sagar Yadav](https://github.com/itsnotsagar) - [Sahildeep Singh](https://github.com/sahilcodes) - [Samuel Tonini](https://github.com/samuel-tonini) diff --git a/code/Python/hello_world_papa.py b/code/Python/hello_world_papa.py new file mode 100644 index 00000000..f0b303f3 --- /dev/null +++ b/code/Python/hello_world_papa.py @@ -0,0 +1 @@ +print('Hello World!') \ No newline at end of file diff --git a/profiles/papa.md b/profiles/papa.md new file mode 100644 index 00000000..5e8bcea2 --- /dev/null +++ b/profiles/papa.md @@ -0,0 +1,22 @@ +## Ryan Papazoglou + +### Bio +Computer Science & Business recent graduate + +### Location +USA + +### Projects + + + +### Hobbies & Interests +Coding, investing, soccer, etc + +### Profiles +[![GitHub][github-img]](https://github.com/RyanPapazoglou) +[![LinkedIn][twitter-img]](https://www.linkedin.com/in/ryan-papazoglou-72274b109/) + + +[twitter-img]: https://i.imgur.com/rwYRqn6.png +[github-img]: https://i.imgur.com/9I6NRUm.png \ No newline at end of file From 50d4fb966be457b68fef26f1ab114e4818e05179 Mon Sep 17 00:00:00 2001 From: Venkatraman B Date: Sat, 19 Oct 2019 19:03:31 -0700 Subject: [PATCH 391/481] Create helloWorld --- code/C/helloWorld | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 code/C/helloWorld diff --git a/code/C/helloWorld b/code/C/helloWorld new file mode 100644 index 00000000..ed84b103 --- /dev/null +++ b/code/C/helloWorld @@ -0,0 +1,2 @@ +#include +printf("Hello World"); From 79601b59d261e0376d30e082c1104a01801ffc53 Mon Sep 17 00:00:00 2001 From: Khoirun Nawa Date: Sun, 20 Oct 2019 10:34:17 +0700 Subject: [PATCH 392/481] Adding Hello World in Clojure Language --- CONTRIBUTORS.md | 1 + code/Clojure/Hello_World_.clj | 1 + profiles/Dialytica.md | 25 +++++++++++++++++++++++++ 3 files changed, 27 insertions(+) create mode 100644 code/Clojure/Hello_World_.clj create mode 100644 profiles/Dialytica.md diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index f777f76b..8aef30e0 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -41,6 +41,7 @@ - [Karan Singh](https://github.com/karansingh97) - [Kaustubh J](https://github.com/thsubaku9) - [Kevin Ward](https://github.com/Blueward12) +- [Khoirun Nawa](https://github.com/dialytica) - [Kunal Kumar](https://github.com/kunal164107) - [Kushantha Charuka](https://github.com/Kushiya) - [Kuwarbir Singh](https://github.com/kuwarbir) diff --git a/code/Clojure/Hello_World_.clj b/code/Clojure/Hello_World_.clj new file mode 100644 index 00000000..0234f93d --- /dev/null +++ b/code/Clojure/Hello_World_.clj @@ -0,0 +1 @@ +(println "Hello World") diff --git a/profiles/Dialytica.md b/profiles/Dialytica.md new file mode 100644 index 00000000..30dc482f --- /dev/null +++ b/profiles/Dialytica.md @@ -0,0 +1,25 @@ +## Dialytica + +### Bio + +Hello there, I'm Khoirun Nawa. I'm your another first timer in this hacktoberfest and making a pull +request on public repository. I hope I can give my best contribution. + +Oh, and currently I work as a trainee of Software Development Engineering in Testing at accelbyte. + +### Location +Yogyakarta, Indonesia + +### Projects +Currently have no public project. Maybe someday :D + +### Hobbies & Interests +Tinkering with new stuff, maybe I should find a stable hobby. + +### Profiles +[![Github][github-img]](https://github.com/dialytica) +[![Twitter][twitter-img]](https://twitter.com/_nnawa) + + +[twitter-img]: https://i.imgur.com/wWzX9uB.png +[github-img]: https://i.imgur.com/9I6NRUm.png From 84288ba7c199630ec4ef4b758cf37dfe5c148eef Mon Sep 17 00:00:00 2001 From: adarsh-qclw <42464891+adarsh-qclw@users.noreply.github.com> Date: Sun, 20 Oct 2019 13:17:53 +0530 Subject: [PATCH 393/481] Update CONTRIBUTORS.md --- CONTRIBUTORS.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index f777f76b..0eb18cf0 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -2,6 +2,7 @@ - [AAMIR AHMAD](https://github.com/sickwiz) - [Abbas Abi](https://github.com/AbbasAbi) - [Abid Saleem](https://github.com/abidsal04) +- [Adarsh R](https://github.com/adarsh-qclw) - [Adrian Martin](https://github.com/amgdevelop) - [Ajey Prasand](https://github.com/ajeyprasand) - [Akshi Tak](https://github.com/akshitak) From 811b98b732e2504ef64c0882c6f0e536fb0831af Mon Sep 17 00:00:00 2001 From: AnglinaBhambra <35236308+AnglinaBhambra@users.noreply.github.com> Date: Sun, 20 Oct 2019 10:41:30 +0100 Subject: [PATCH 394/481] contribute-hello-world --- code/Python/contribute-hello-world | 1 + 1 file changed, 1 insertion(+) create mode 100644 code/Python/contribute-hello-world diff --git a/code/Python/contribute-hello-world b/code/Python/contribute-hello-world new file mode 100644 index 00000000..f301245e --- /dev/null +++ b/code/Python/contribute-hello-world @@ -0,0 +1 @@ +print("Hello World!") From 2736d0d96685c3d769621b5534da568e32d24610 Mon Sep 17 00:00:00 2001 From: AnglinaBhambra <35236308+AnglinaBhambra@users.noreply.github.com> Date: Sun, 20 Oct 2019 10:47:01 +0100 Subject: [PATCH 395/481] Update CONTRIBUTORS.md added my name and profile link --- CONTRIBUTORS.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index f777f76b..6c90a1aa 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -8,6 +8,7 @@ - [Alyssa Columbus](https://github.com/acolum) - [Amit Dutta](https://github.com/Amitdutta7) - [Andre-Lee](https://github.com/andre-lee) +- [Anglina Bhambra](https://github.com/AnglinaBhambra) - [Aniket Sharma](https://github.com/aniketsharma00411) - [Ankit Chahar](https://github.com/AnkitChahar) - [Ankit Garg](https://github.com/ankitgargsma) From 181b4a7f6f09ca48c5fe361bd67744d17c1500cf Mon Sep 17 00:00:00 2001 From: AnglinaBhambra <35236308+AnglinaBhambra@users.noreply.github.com> Date: Sun, 20 Oct 2019 11:02:37 +0100 Subject: [PATCH 396/481] third contribution for Hacktoberfest --- profiles/Anglina_Bhambra.md | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 profiles/Anglina_Bhambra.md diff --git a/profiles/Anglina_Bhambra.md b/profiles/Anglina_Bhambra.md new file mode 100644 index 00000000..51a7c808 --- /dev/null +++ b/profiles/Anglina_Bhambra.md @@ -0,0 +1,24 @@ +## Anglina Bhambra + +### Bio +Looking for a career in data science, also very interested in sustainability. + +### Location +London. + +### Projects +No projects as of yet, working my way through a data science course - aiming to get a portfolio created and a couple of projects pushed out before the end of November. + +### Hobbies & Interests +Exercising for sure! Playing games and learning about sustainability. +Oh and A LOT of youtube. +Experienced solo travelling this year and absolutely loved it. +I would love to be able to enjoy water sports more often. + +### Profiles +[![GitHub][AnglinaBhambra]](https://github.com/AnglinaBhambra) +[![Twitter][_AnglinaB]](https://twitter.com/_AnglinaB) + + +[twitter-img]: https://i.imgur.com/wWzX9uB.png +[github-img]: https://i.imgur.com/9I6NRUm.png From c13e83f2c9b0d90172a7bb95723876436671e91b Mon Sep 17 00:00:00 2001 From: allenpbiju Date: Sun, 20 Oct 2019 19:02:25 +0530 Subject: [PATCH 397/481] Added Brainfuck language --- CONTRIBUTORS.md | 1 + code/Brainfuck/hello.bf | 1 + profiles/allen_p_biju.md | 21 +++++++++++++++++++++ 3 files changed, 23 insertions(+) create mode 100644 code/Brainfuck/hello.bf create mode 100644 profiles/allen_p_biju.md diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index f777f76b..9c0eed10 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -5,6 +5,7 @@ - [Adrian Martin](https://github.com/amgdevelop) - [Ajey Prasand](https://github.com/ajeyprasand) - [Akshi Tak](https://github.com/akshitak) +- [Allen P Biju](https://github.com/allenpbiju) - [Alyssa Columbus](https://github.com/acolum) - [Amit Dutta](https://github.com/Amitdutta7) - [Andre-Lee](https://github.com/andre-lee) diff --git a/code/Brainfuck/hello.bf b/code/Brainfuck/hello.bf new file mode 100644 index 00000000..dcc45196 --- /dev/null +++ b/code/Brainfuck/hello.bf @@ -0,0 +1 @@ ++[-[<<[+[--->]-[<<<]]]>>>-]>-.---.>..>.<<<<-.<+.>>>>>.>.<<.<-. \ No newline at end of file diff --git a/profiles/allen_p_biju.md b/profiles/allen_p_biju.md new file mode 100644 index 00000000..7dca9413 --- /dev/null +++ b/profiles/allen_p_biju.md @@ -0,0 +1,21 @@ +## Allen P Biju + +### Bio +I'm a Btech Computer Science Student. + +### Location +India + +### Projects +I'm working on an Image recognition app and i have built a simple phonegap app named 'Leaky Tap' + +### Hobbies & Interests +Reading, Travelling + +### Profiles +[![GitHub][github-img]](https://github.com/allenpbiju) +[![Twitter][twitter-img]](https://twitter.com/allenpbiju) + + +[twitter-img]: https://i.imgur.com/wWzX9uB.png +[github-img]: https://i.imgur.com/9I6NRUm.png From 96f3d3923e41ac685ed9031c6819f906fbefb5df Mon Sep 17 00:00:00 2001 From: Swaraj Dash <48145355+iamspd2@users.noreply.github.com> Date: Sun, 20 Oct 2019 20:15:49 +0530 Subject: [PATCH 398/481] Created a C program --- code/C/swaraj_says_hello.c | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 code/C/swaraj_says_hello.c diff --git a/code/C/swaraj_says_hello.c b/code/C/swaraj_says_hello.c new file mode 100644 index 00000000..37e0b612 --- /dev/null +++ b/code/C/swaraj_says_hello.c @@ -0,0 +1,7 @@ +#include + +int main() +{ + printf("\nSwaraj says Hello!\n"); + return 0; +} From c052a5edd5a20710aae93dc3a4fc6c919c573c4b Mon Sep 17 00:00:00 2001 From: Swaraj Dash <48145355+iamspd2@users.noreply.github.com> Date: Sun, 20 Oct 2019 20:20:20 +0530 Subject: [PATCH 399/481] Create Profile Page --- profiles/Swaraj_Dash.md | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 profiles/Swaraj_Dash.md diff --git a/profiles/Swaraj_Dash.md b/profiles/Swaraj_Dash.md new file mode 100644 index 00000000..9b7842df --- /dev/null +++ b/profiles/Swaraj_Dash.md @@ -0,0 +1,22 @@ +## Swaraj Dash ## + +# Bio # +I am a tech geek and ML enthusiast. + +# Location # +Bhubaneswar,India. + +# Projects # +1. Sentiment Analysis on Tweets +2. Dog Breed Classfier + +# Hobbies # +Football, Guitars + +# Profiles # +[![GitHub][github-img]](https://github.com/iamspd2) +[![Twitter][twitter-img]](https://twitter.com/swalaxh) + +[twitter-img]: https://i.imgur.com/wWzX9uB.png +[twitter-img]:https://i.imgur.com/9I6NRUm + From 73cbce2c6d19cfdc579e6beb92b3d655cf067e41 Mon Sep 17 00:00:00 2001 From: Swaraj Dash <48145355+iamspd2@users.noreply.github.com> Date: Sun, 20 Oct 2019 20:22:24 +0530 Subject: [PATCH 400/481] Update CONTRIBUTORS.md --- CONTRIBUTORS.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index f777f76b..ed2f4c41 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -79,6 +79,7 @@ - [Srajal Agrawal](https://github.com/srajalagr) - [Sripad](https://github.com/TVSSSRIPAD) - [Suyash Bhiste](https://github.com/SuyashBhiste) +- [Swaraj Dash](https://github.com/iamspd2) - [Tarun Kumar](https://github.com/tarun1642) - [TheSolution90](https://github.com/thesolution90) - [Thomas Windt](https://github.com/WOLFI3654) From 782b65c74b44833b5092ac89e320a5c1da7ca2a8 Mon Sep 17 00:00:00 2001 From: nizarion Date: Sun, 20 Oct 2019 16:15:30 +0100 Subject: [PATCH 401/481] Added my name --- CONTRIBUTORS.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index f777f76b..96c59cf0 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -59,6 +59,7 @@ - [Naveenraj M](https://github.com/naveenrajm7) - [nilesh](https://github.com/nileshsahitya9) - [Nishant Tilve](https://github.com/Antimatter98) +- [Niz Arion](https://github.com/nizarion) - [Pragadeeswaran Gnanasekaran](https://github.com/pragapraga) - [Prateek kocher](https://github.com/prateekk2001) - [Ramy Fetteha](https://github.com/NoirFLamme) From 20a6227c8a395546e69c736daba2dee468128bd7 Mon Sep 17 00:00:00 2001 From: James Porter <33670244+Trinculo54@users.noreply.github.com> Date: Sun, 20 Oct 2019 19:55:16 -0400 Subject: [PATCH 402/481] Update CONTRIBUTORS.md --- CONTRIBUTORS.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index f777f76b..71094f6a 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -35,6 +35,7 @@ - [Hans](https://github.com/hungvu193) - [HRAnkit](https://github.com/hrankit) - [Hritik Soni](https://github.com/iamhritik55) +- [James](https://github.com/Trinculo54) - [Jatin Narula](https://github.com/jatin96) - [João Vítor Morandi Lemos](https://github.com/joaovitorml) - [Juli Krue](https://github.com/JuliKrue) @@ -91,5 +92,4 @@ - [Vlad Zaporozhskyi](https://github.com/thezapovlad) - [Walter Brahman](https://github.com/veugelenw) - From a543d0b4482b0a32e0946f9f96f6389fee578b30 Mon Sep 17 00:00:00 2001 From: James Porter <33670244+Trinculo54@users.noreply.github.com> Date: Sun, 20 Oct 2019 20:02:08 -0400 Subject: [PATCH 403/481] Create James_Porter.md --- profiles/James_Porter.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 profiles/James_Porter.md diff --git a/profiles/James_Porter.md b/profiles/James_Porter.md new file mode 100644 index 00000000..90fe51f1 --- /dev/null +++ b/profiles/James_Porter.md @@ -0,0 +1,21 @@ +## James Porter + +### Bio +I am a professional memer and somewhat a programmer. + +### Location +Tyngsborough, Massachusetts + +### Projects +Games hub, and Jamie's Hotlist + +### Hobbies & Interests +programming, Music Making, and web design + +### Profiles +[![GitHub][github-img]](https://github.com/Trinculo54) +Twitter: N/A + + +[twitter-img]: https://i.imgur.com/wWzX9uB.png +[github-img]: https://i.imgur.com/9I6NRUm.png From 2b5a32c017cd19693c067ba8c1f31d84cb56ef57 Mon Sep 17 00:00:00 2001 From: Rounak Agarwal Date: Mon, 21 Oct 2019 11:58:42 +0530 Subject: [PATCH 404/481] Rename helloWorld to Helloworld.py --- code/Python/{helloWorld => Helloworld.py} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename code/Python/{helloWorld => Helloworld.py} (100%) diff --git a/code/Python/helloWorld b/code/Python/Helloworld.py similarity index 100% rename from code/Python/helloWorld rename to code/Python/Helloworld.py From bb8765cc4647ee4aa3806cf9d20ae8870ec05885 Mon Sep 17 00:00:00 2001 From: mohammed hussam <52914487+hussamkhatib@users.noreply.github.com> Date: Mon, 21 Oct 2019 21:55:54 +0530 Subject: [PATCH 405/481] Create helllllllowooorrrllld.c --- code/C/helllllllowooorrrllld.c | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 code/C/helllllllowooorrrllld.c diff --git a/code/C/helllllllowooorrrllld.c b/code/C/helllllllowooorrrllld.c new file mode 100644 index 00000000..022b16ec --- /dev/null +++ b/code/C/helllllllowooorrrllld.c @@ -0,0 +1,8 @@ +#include +#include + +int main() +{ + printf("Hello world!\n"); + return 0; +} From 125eff8ec09e53126d9eb3ac9367bfdeba288a9d Mon Sep 17 00:00:00 2001 From: Rounak Agarwal Date: Wed, 23 Oct 2019 14:36:40 +0530 Subject: [PATCH 406/481] Rename SkylarKrug to SkylarKrug.md --- profiles/{SkylarKrug => SkylarKrug.md} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename profiles/{SkylarKrug => SkylarKrug.md} (100%) diff --git a/profiles/SkylarKrug b/profiles/SkylarKrug.md similarity index 100% rename from profiles/SkylarKrug rename to profiles/SkylarKrug.md From 6c43285aea1fc25d78a7934c767d511eed67f067 Mon Sep 17 00:00:00 2001 From: Rounak Agarwal Date: Wed, 23 Oct 2019 14:43:12 +0530 Subject: [PATCH 407/481] Rename Tejpalsharmahacktober to Tejpalsharmahacktober.cpp --- code/C++/{Tejpalsharmahacktober => Tejpalsharmahacktober.cpp} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename code/C++/{Tejpalsharmahacktober => Tejpalsharmahacktober.cpp} (100%) diff --git a/code/C++/Tejpalsharmahacktober b/code/C++/Tejpalsharmahacktober.cpp similarity index 100% rename from code/C++/Tejpalsharmahacktober rename to code/C++/Tejpalsharmahacktober.cpp From 06b64d9d36ee2a915bec7cf65dbe86300d028d7a Mon Sep 17 00:00:00 2001 From: Rounak Agarwal Date: Wed, 23 Oct 2019 14:59:18 +0530 Subject: [PATCH 408/481] Update CONTRIBUTORS.md --- CONTRIBUTORS.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 86299e55..546f5c07 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -56,7 +56,7 @@ - [Lilian F](https://github.com/lilianferreira) - [Loris Gabriele](https://github.com/Pyr0x1) - [Luciano Santos](https://github.com/lucianosz7) -- [Manu Sharma] (https://github.com/iammanusharma) +- [Manu Sharma](https://github.com/iammanusharma) - [Matias Baldanza](https://github.com/matiasbaldanza) - [Mayank Parmar](https://github.com/myk7hackon) - [Megha Agarwal](https://github.com/meghaa105P) From 0c1e2ddbd3b732d6ad7940f659d73dba46c9a30e Mon Sep 17 00:00:00 2001 From: Rounak Agarwal Date: Thu, 24 Oct 2019 01:22:39 +0530 Subject: [PATCH 409/481] Update CONTRIBUTORS.md --- CONTRIBUTORS.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 69435759..0fea357d 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -115,3 +115,5 @@ - [Viktoria Cseke](https://github.com/FurfurV) - [Vlad Zaporozhskyi](https://github.com/thezapovlad) - [Walter Brahman](https://github.com/veugelenw) + + From 166850c08a37e17bbfcaf047308a065be65b4b09 Mon Sep 17 00:00:00 2001 From: Rounak Agarwal Date: Thu, 24 Oct 2019 01:23:23 +0530 Subject: [PATCH 410/481] Update HelloWorld.php --- code/PHP/HelloWorld.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/PHP/HelloWorld.php b/code/PHP/HelloWorld.php index e9e647c0..47b668f5 100644 --- a/code/PHP/HelloWorld.php +++ b/code/PHP/HelloWorld.php @@ -1,3 +1,3 @@ +?> From 8b8287f6656ff3a048d9a1992940d06131096859 Mon Sep 17 00:00:00 2001 From: AnonyMousBoy511 <56958482+AnonyMousBoy511@users.noreply.github.com> Date: Thu, 24 Oct 2019 15:24:56 +0530 Subject: [PATCH 411/481] Adding Hello World for Hacktoberfest --- code/JavaScript/Hello__World.js | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 code/JavaScript/Hello__World.js diff --git a/code/JavaScript/Hello__World.js b/code/JavaScript/Hello__World.js new file mode 100644 index 00000000..9dbd0fbd --- /dev/null +++ b/code/JavaScript/Hello__World.js @@ -0,0 +1,3 @@ +const name = 'Anonymous' + +console.log(`Hello World by ${name}`) From 392cb71369f6534cc690e52a968be7dc162eb8ef Mon Sep 17 00:00:00 2001 From: Aarya Kulkarni Date: Thu, 24 Oct 2019 18:08:16 +0530 Subject: [PATCH 412/481] Java Program Added --- code/Java/helloWorldProgram.java | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 code/Java/helloWorldProgram.java diff --git a/code/Java/helloWorldProgram.java b/code/Java/helloWorldProgram.java new file mode 100644 index 00000000..747251c7 --- /dev/null +++ b/code/Java/helloWorldProgram.java @@ -0,0 +1,5 @@ +class helloWorldProgram{ + public static void main(string args[]){ + System.out.println("Hello World :) "); + } +} From 663d638eb9548400ac6ee44b943258db2774b175 Mon Sep 17 00:00:00 2001 From: Aarya Kulkarni Date: Thu, 24 Oct 2019 18:10:39 +0530 Subject: [PATCH 413/481] Profile added --- profiles/Aarya_Kulkarni.md | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 profiles/Aarya_Kulkarni.md diff --git a/profiles/Aarya_Kulkarni.md b/profiles/Aarya_Kulkarni.md new file mode 100644 index 00000000..a8372d9a --- /dev/null +++ b/profiles/Aarya_Kulkarni.md @@ -0,0 +1,24 @@ +## Aarya Kulkarni + +### Bio +I am a third year CSE student at MKSSSs Cummins College of Engineering Pune + + +### Location +Pune,India. + +### Projects +Food Delivery admin(Java Dijkstra) +Online Shopping portal(C++) + +### Hobbies & Interests +- Singing +- Dancing +- Acting + +### Profiles +[![GitHub][github-img]](https://github.com/aaryakulkarni) + + +[twitter-img]: https://i.imgur.com/wWzX9uB.png +[github-img]: https://i.imgur.com/9I6NRUm.png From 4a803485215272cb858ca9b0049695d058da673d Mon Sep 17 00:00:00 2001 From: Aarya Kulkarni Date: Thu, 24 Oct 2019 18:13:32 +0530 Subject: [PATCH 414/481] Newly Added Name and link --- CONTRIBUTORS.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 0fea357d..392cb3b9 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -1,6 +1,7 @@ - [AAMIR AHMAD](https://github.com/sickwiz) +- [Aarya Kulkarni](https://github.com/aaryakulkarni) - [Abbas Abi](https://github.com/AbbasAbi) - [Abid Saleem](https://github.com/abidsal04) - [Adrian Martin](https://github.com/amgdevelop) From 819f6c391c9d4954ccb0e8b61ff0c0fe9f437476 Mon Sep 17 00:00:00 2001 From: Ting Wei Date: Thu, 24 Oct 2019 20:54:50 +0800 Subject: [PATCH 415/481] Create hello_world --- code/Java/hello_world | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 code/Java/hello_world diff --git a/code/Java/hello_world b/code/Java/hello_world new file mode 100644 index 00000000..f700fe8a --- /dev/null +++ b/code/Java/hello_world @@ -0,0 +1,7 @@ +class HelloWorld +{ + public static void main(String args[]) + { + System.out.println("Hello World!"); + } +} From 8ac044c045fb7d73b0bafafe44b337fe2ec437a1 Mon Sep 17 00:00:00 2001 From: Ting Wei Date: Thu, 24 Oct 2019 20:56:43 +0800 Subject: [PATCH 416/481] Update CONTRIBUTORS.md --- CONTRIBUTORS.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 0fea357d..4f096ee9 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -70,6 +70,7 @@ - [Mykola Balabash](https://github.com/twilderan) - [Navdeep Hada](https://github.com/hadanavdeep) - [Naveenraj M](https://github.com/naveenrajm7) +- [Ng Tingwei](https://github.com/tingwei99) - [nilesh](https://github.com/nileshsahitya9) - [NischalKanishk](https://github.com/NischalKanishk) - [Nishant Tilve](https://github.com/Antimatter98) From 236b259fc439cccb8b746bdf72b1fac8fc7dade7 Mon Sep 17 00:00:00 2001 From: Taylor Gagne Date: Thu, 24 Oct 2019 13:19:42 -0400 Subject: [PATCH 417/481] Add myself to the contributors --- CONTRIBUTORS.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 0fea357d..96c7025a 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -103,6 +103,7 @@ - [Suyash Bhiste](https://github.com/SuyashBhiste) - [Tamas Csonka](https://github.com/csnktms) - [Tarun Kumar](https://github.com/tarun1642) +- [Taylor Gagne](https://github.com/taylor009) - [TheSolution90](https://github.com/thesolution90) - [Thomas Windt](https://github.com/WOLFI3654) - [Tim Solokha](https://github.com/TimSolokha) From b86b75e29d9e5ce3be40c7373318be61d8692407 Mon Sep 17 00:00:00 2001 From: Taylor Gagne Date: Thu, 24 Oct 2019 13:28:54 -0400 Subject: [PATCH 418/481] create kotlin helloWorld.kt --- code/Kotlin/helloWorld.kt | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 code/Kotlin/helloWorld.kt diff --git a/code/Kotlin/helloWorld.kt b/code/Kotlin/helloWorld.kt new file mode 100644 index 00000000..9c9c3342 --- /dev/null +++ b/code/Kotlin/helloWorld.kt @@ -0,0 +1,4 @@ +fun main() +{ + println("Hello World!!! :)") +} \ No newline at end of file From 6fdfe8ea981ad1f807ce6a58bdc5f29b1a1b4cac Mon Sep 17 00:00:00 2001 From: Taylor Gagne Date: Thu, 24 Oct 2019 13:32:19 -0400 Subject: [PATCH 419/481] added helloworld.kt --- code/Kotlin/helloWorld.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/Kotlin/helloWorld.kt b/code/Kotlin/helloWorld.kt index 9c9c3342..77084a33 100644 --- a/code/Kotlin/helloWorld.kt +++ b/code/Kotlin/helloWorld.kt @@ -1,4 +1,4 @@ fun main() { - println("Hello World!!! :)") + println("Hello World!!! :) from kotlin") } \ No newline at end of file From 3122fb1b506b99f71e88282362c64681771177a6 Mon Sep 17 00:00:00 2001 From: Iranildo <35541435+iranildobatalha@users.noreply.github.com> Date: Thu, 24 Oct 2019 17:25:18 -0400 Subject: [PATCH 420/481] My code in Python for HacktoberFest --- code/Python/HelloWorldPython.py | 1 + 1 file changed, 1 insertion(+) create mode 100644 code/Python/HelloWorldPython.py diff --git a/code/Python/HelloWorldPython.py b/code/Python/HelloWorldPython.py new file mode 100644 index 00000000..f99e539d --- /dev/null +++ b/code/Python/HelloWorldPython.py @@ -0,0 +1 @@ +print("Hello World!!! Happy Hacktoberfest!") From b22fd1caeab7f4df4ec26854ea35ad05664079fe Mon Sep 17 00:00:00 2001 From: Iranildo <35541435+iranildobatalha@users.noreply.github.com> Date: Thu, 24 Oct 2019 17:33:29 -0400 Subject: [PATCH 421/481] Adding my name to the list. --- CONTRIBUTORS.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 0fea357d..16932101 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -45,6 +45,7 @@ - [HRAnkit](https://github.com/hrankit) - [Hritik Soni](https://github.com/iamhritik55) - [ibin Xavier](https://github.com/dibinxavier) +- [Iranildo Batalha](https://github.com/iranildobatalha) - [Jatin Narula](https://github.com/jatin96) - [João Vítor Morandi Lemos](https://github.com/joaovitorml) - [Joshua Prakasam](https://github.com/Joshua-Prakasam) From 8b84b7150ddb3dac53495a0b6dd6310a3e8f8e0c Mon Sep 17 00:00:00 2001 From: Iranildo <35541435+iranildobatalha@users.noreply.github.com> Date: Thu, 24 Oct 2019 17:46:46 -0400 Subject: [PATCH 422/481] My profile --- profiles/IranildoBtalha.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 profiles/IranildoBtalha.md diff --git a/profiles/IranildoBtalha.md b/profiles/IranildoBtalha.md new file mode 100644 index 00000000..a11d0925 --- /dev/null +++ b/profiles/IranildoBtalha.md @@ -0,0 +1,20 @@ +## Iranildo Batalha + +### Bio +A developer and coder that love programing. I studyng Engineer Computing in Escola Superior de Tecnologia (EST). + +### Location +Maanaus, Amazonas - Brazil. + +### Projects +A app help peoples that living in streets. + +### Hobbies & Interests +I love programing e chalenges. + +### Profiles +[![GitHub][github-img]](https://github.com/iranildobatalha) + + +[twitter-img]: https://i.imgur.com/wWzX9uB.png +[github-img]: https://i.imgur.com/9I6NRUm.png From 5bc271619665531cccaf05246335b4d2d522aefd Mon Sep 17 00:00:00 2001 From: Iranildo <35541435+iranildobatalha@users.noreply.github.com> Date: Thu, 24 Oct 2019 17:48:05 -0400 Subject: [PATCH 423/481] My profile --- profiles/IranildoBatalha.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 profiles/IranildoBatalha.md diff --git a/profiles/IranildoBatalha.md b/profiles/IranildoBatalha.md new file mode 100644 index 00000000..a11d0925 --- /dev/null +++ b/profiles/IranildoBatalha.md @@ -0,0 +1,20 @@ +## Iranildo Batalha + +### Bio +A developer and coder that love programing. I studyng Engineer Computing in Escola Superior de Tecnologia (EST). + +### Location +Maanaus, Amazonas - Brazil. + +### Projects +A app help peoples that living in streets. + +### Hobbies & Interests +I love programing e chalenges. + +### Profiles +[![GitHub][github-img]](https://github.com/iranildobatalha) + + +[twitter-img]: https://i.imgur.com/wWzX9uB.png +[github-img]: https://i.imgur.com/9I6NRUm.png From 12eb337d87396b72c3c5c6f56dabe2907f75ad07 Mon Sep 17 00:00:00 2001 From: Iranildo <35541435+iranildobatalha@users.noreply.github.com> Date: Thu, 24 Oct 2019 17:51:10 -0400 Subject: [PATCH 424/481] Delete IranildoBtlha.md --- profiles/IranildoBtalha.md | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 profiles/IranildoBtalha.md diff --git a/profiles/IranildoBtalha.md b/profiles/IranildoBtalha.md deleted file mode 100644 index a11d0925..00000000 --- a/profiles/IranildoBtalha.md +++ /dev/null @@ -1,20 +0,0 @@ -## Iranildo Batalha - -### Bio -A developer and coder that love programing. I studyng Engineer Computing in Escola Superior de Tecnologia (EST). - -### Location -Maanaus, Amazonas - Brazil. - -### Projects -A app help peoples that living in streets. - -### Hobbies & Interests -I love programing e chalenges. - -### Profiles -[![GitHub][github-img]](https://github.com/iranildobatalha) - - -[twitter-img]: https://i.imgur.com/wWzX9uB.png -[github-img]: https://i.imgur.com/9I6NRUm.png From 4c551c597da53aa182a8b2747a829fed27951345 Mon Sep 17 00:00:00 2001 From: Iranildo <35541435+iranildobatalha@users.noreply.github.com> Date: Thu, 24 Oct 2019 17:56:41 -0400 Subject: [PATCH 425/481] My code in C++ --- code/C++/HelloWorldC++.cpp | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 code/C++/HelloWorldC++.cpp diff --git a/code/C++/HelloWorldC++.cpp b/code/C++/HelloWorldC++.cpp new file mode 100644 index 00000000..c70c1c86 --- /dev/null +++ b/code/C++/HelloWorldC++.cpp @@ -0,0 +1,8 @@ +#include + +using namespace std; + +int main(){ + cout << "Hello World!! Happy HacktoberFest!" << endl; + return 0; +} From ca1babb8a9ba6c7554bc7346abfac0f4dfb50f43 Mon Sep 17 00:00:00 2001 From: JuliaLehoux Date: Fri, 25 Oct 2019 15:28:32 +0200 Subject: [PATCH 426/481] Create Julia_Lehoux.md --- profiles/Julia_Lehoux.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 profiles/Julia_Lehoux.md diff --git a/profiles/Julia_Lehoux.md b/profiles/Julia_Lehoux.md new file mode 100644 index 00000000..3f599fa0 --- /dev/null +++ b/profiles/Julia_Lehoux.md @@ -0,0 +1,21 @@ +## Julia Lehoux + +### Bio +Zenikanard Fan + +### Location +Paris. + +### Projects +Super cool projects. + +### Hobbies & Interests +Zenikanard and friends. + +### Profiles +[![GitHub][github-img]](https://github.com/JuliaLehoux) +[![Twitter][twitter-img]](https://twitter.com/julia_lehoux) + + +[twitter-img]: https://i.imgur.com/wWzX9uB.png +[github-img]: https://i.imgur.com/9I6NRUm.png From 3443e3836bc840e845b7ff3754ee5c8ee09798d2 Mon Sep 17 00:00:00 2001 From: Rounak Agarwal Date: Sat, 26 Oct 2019 23:39:29 +0530 Subject: [PATCH 427/481] Delete .classpath --- .classpath | 6 ------ 1 file changed, 6 deletions(-) delete mode 100644 .classpath diff --git a/.classpath b/.classpath deleted file mode 100644 index cf7c7033..00000000 --- a/.classpath +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - From 605ac45708e22ced2b96fcd5287416068c75089c Mon Sep 17 00:00:00 2001 From: Rounak Agarwal Date: Sat, 26 Oct 2019 23:39:42 +0530 Subject: [PATCH 428/481] Delete .project --- .project | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 .project diff --git a/.project b/.project deleted file mode 100644 index 9aa9d7aa..00000000 --- a/.project +++ /dev/null @@ -1,23 +0,0 @@ - - - Hello-World-1 - - - - - - org.eclipse.jdt.core.javabuilder - - - - - org.eclipse.wst.validation.validationbuilder - - - - - - org.eclipse.wst.jsdt.core.jsNature - org.eclipse.jdt.core.javanature - - From 31a7b6d187c6f2c2f04e215c0cda5ed51b71cd4a Mon Sep 17 00:00:00 2001 From: Rounak Agarwal Date: Sat, 26 Oct 2019 23:40:21 +0530 Subject: [PATCH 429/481] Delete .jsdtscope --- .settings/.jsdtscope | 7 ------- 1 file changed, 7 deletions(-) delete mode 100644 .settings/.jsdtscope diff --git a/.settings/.jsdtscope b/.settings/.jsdtscope deleted file mode 100644 index cca691f6..00000000 --- a/.settings/.jsdtscope +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - From 822f96fc8293a89c133812c3c8db4ef34eda2371 Mon Sep 17 00:00:00 2001 From: Rounak Agarwal Date: Sat, 26 Oct 2019 23:40:32 +0530 Subject: [PATCH 430/481] Delete org.eclipse.wst.jsdt.ui.superType.name --- .settings/org.eclipse.wst.jsdt.ui.superType.name | 1 - 1 file changed, 1 deletion(-) delete mode 100644 .settings/org.eclipse.wst.jsdt.ui.superType.name diff --git a/.settings/org.eclipse.wst.jsdt.ui.superType.name b/.settings/org.eclipse.wst.jsdt.ui.superType.name deleted file mode 100644 index 11006e2a..00000000 --- a/.settings/org.eclipse.wst.jsdt.ui.superType.name +++ /dev/null @@ -1 +0,0 @@ -Global \ No newline at end of file From fff34e22f76c78d50f72598bad58b7bc7700990a Mon Sep 17 00:00:00 2001 From: Rounak Agarwal Date: Sat, 26 Oct 2019 23:40:42 +0530 Subject: [PATCH 431/481] Delete org.eclipse.wst.jsdt.ui.superType.container --- .settings/org.eclipse.wst.jsdt.ui.superType.container | 1 - 1 file changed, 1 deletion(-) delete mode 100644 .settings/org.eclipse.wst.jsdt.ui.superType.container diff --git a/.settings/org.eclipse.wst.jsdt.ui.superType.container b/.settings/org.eclipse.wst.jsdt.ui.superType.container deleted file mode 100644 index 49c8cd4f..00000000 --- a/.settings/org.eclipse.wst.jsdt.ui.superType.container +++ /dev/null @@ -1 +0,0 @@ -org.eclipse.wst.jsdt.launching.JRE_CONTAINER \ No newline at end of file From 71bf32cc00f8e4da747f64948b376372ca11bb0e Mon Sep 17 00:00:00 2001 From: Rounak Agarwal Date: Sat, 26 Oct 2019 23:41:27 +0530 Subject: [PATCH 432/481] Update .gitignore --- .gitignore | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 703e6ec3..b23921d1 100644 --- a/.gitignore +++ b/.gitignore @@ -52,4 +52,5 @@ config.json *.sublime-project *.sublime-workspace -/bin/ + +.settings/ From 69fc8b5119d0788f40cf5a7c27c3766f006c324f Mon Sep 17 00:00:00 2001 From: Rounak Agarwal Date: Sat, 26 Oct 2019 23:53:26 +0530 Subject: [PATCH 433/481] Rename hello_world_my to hello_world_my.py --- code/Python/{hello_world_my => hello_world_my.py} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename code/Python/{hello_world_my => hello_world_my.py} (100%) diff --git a/code/Python/hello_world_my b/code/Python/hello_world_my.py similarity index 100% rename from code/Python/hello_world_my rename to code/Python/hello_world_my.py From c25af563bd237951ae121e335023547173c56019 Mon Sep 17 00:00:00 2001 From: Rounak Agarwal Date: Sun, 27 Oct 2019 00:04:31 +0530 Subject: [PATCH 434/481] Rename hello.c to code/C/hello.c --- hello.c => code/C/hello.c | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename hello.c => code/C/hello.c (100%) diff --git a/hello.c b/code/C/hello.c similarity index 100% rename from hello.c rename to code/C/hello.c From 7b51a6d3932f76d1d7fa23a28970d0c7210a3740 Mon Sep 17 00:00:00 2001 From: Rounak Agarwal Date: Sun, 27 Oct 2019 00:09:06 +0530 Subject: [PATCH 435/481] Update and rename Adrian_Gogu to Adrian_Gogu.md --- profiles/{Adrian_Gogu => Adrian_Gogu.md} | 1 - 1 file changed, 1 deletion(-) rename profiles/{Adrian_Gogu => Adrian_Gogu.md} (89%) diff --git a/profiles/Adrian_Gogu b/profiles/Adrian_Gogu.md similarity index 89% rename from profiles/Adrian_Gogu rename to profiles/Adrian_Gogu.md index 46518fc4..4acf9b9c 100644 --- a/profiles/Adrian_Gogu +++ b/profiles/Adrian_Gogu.md @@ -14,7 +14,6 @@ I love my family,music,coding,drugs and sometimes work-out(Yes that's true). ### Profiles [![GitHub][github-img]](https://github.com/inefabilis) -[![Twitter][twitter-img]](Link to Twitter profile) //don't have one [twitter-img]: https://i.imgur.com/wWzX9uB.png From 306065ee1cb96b8941ee378cc69b3e06d3bb7702 Mon Sep 17 00:00:00 2001 From: okiwoki Date: Sun, 27 Oct 2019 10:20:46 -0400 Subject: [PATCH 436/481] Create Warren_Thomas --- profiles/Warren_Thomas | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 profiles/Warren_Thomas diff --git a/profiles/Warren_Thomas b/profiles/Warren_Thomas new file mode 100644 index 00000000..91d45e2b --- /dev/null +++ b/profiles/Warren_Thomas @@ -0,0 +1,20 @@ +## Warren Thomas + +### Bio +Beginner developer just getting feet wet with Github + +### Location +Ohio + +### Projects +None yet! + +### Hobbies & Interests +Computers, sketching, tunnel digging, finding creative ways to use my time. + +### Profiles +[![GitHub][github-img]](https://github.com/okiwoki) + + +[twitter-img]: https://i.imgur.com/wWzX9uB.png +[github-img]: https://i.imgur.com/9I6NRUm.png From 40dda828104d4955ef9fb18f7b3b650a9d551d09 Mon Sep 17 00:00:00 2001 From: Everton Braga Date: Sun, 27 Oct 2019 20:37:09 -0300 Subject: [PATCH 437/481] My name and Github link --- CONTRIBUTORS.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 692ae126..86c2813b 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -43,6 +43,7 @@ - [Elijah Shackelford](https://github.com/eshack94) - [Emmanuel Ezenwigbo](https://github.com/SkyC0der) - [Erol Aliyev](https://github.com/erolaliyev) +- [Everton Braga](https://github.com/evertonrbraga) - [Gagandeep Sing](https://github.com/gagan0183) - [Hans](https://github.com/hungvu193) - [Harsh Tank](https://github.com/harshtank) From 6f5185f761cd5e167e5a721640147a0109323e41 Mon Sep 17 00:00:00 2001 From: bhanuprakash299 Date: Mon, 28 Oct 2019 12:45:03 +0530 Subject: [PATCH 438/481] code to print hello world in c --- code/C/hello world.cpp | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 code/C/hello world.cpp diff --git a/code/C/hello world.cpp b/code/C/hello world.cpp new file mode 100644 index 00000000..85fc8626 --- /dev/null +++ b/code/C/hello world.cpp @@ -0,0 +1,5 @@ +#include +int main(){ + printf("hello world\n"); + return 0; +} From 4b242016db2fe1af9d5dcfcbb46333e07f2f4d25 Mon Sep 17 00:00:00 2001 From: VPraharsha3 <56556436+VPraharsha3@users.noreply.github.com> Date: Mon, 28 Oct 2019 17:03:25 +0530 Subject: [PATCH 439/481] Update CONTRIBUTORS.md --- CONTRIBUTORS.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 692ae126..0fef480f 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -126,6 +126,7 @@ - [Victor Azevedo](https://github.com/victormazevedo) - [viewless](https://github.com/viewless) - [Viktoria Cseke](https://github.com/FurfurV) + [Vivek Praharsha](https://github.com/VPraharsha3) - [Vlad Zaporozhskyi](https://github.com/thezapovlad) - [Walter Brahman](https://github.com/veugelenw) From 31fb3ce0e76b97f75547641b5f10cab68ad52c89 Mon Sep 17 00:00:00 2001 From: VPraharsha3 <56556436+VPraharsha3@users.noreply.github.com> Date: Mon, 28 Oct 2019 17:46:25 +0530 Subject: [PATCH 440/481] Create Hello_World.go added hello world program in Go --- code/Go/Hello_World.go | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 code/Go/Hello_World.go diff --git a/code/Go/Hello_World.go b/code/Go/Hello_World.go new file mode 100644 index 00000000..20f4cdbc --- /dev/null +++ b/code/Go/Hello_World.go @@ -0,0 +1,5 @@ +package main +import "fmt" +func main(){ + fmt.Println("Hello, World!") +} From 1cc7119296c931d584fdc87c81d30542030373d2 Mon Sep 17 00:00:00 2001 From: LadyLazorcorn Date: Mon, 28 Oct 2019 20:23:22 +0100 Subject: [PATCH 441/481] add susann --- CONTRIBUTORS.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 692ae126..7b40a1f4 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -82,7 +82,7 @@ - [nilesh](https://github.com/nileshsahitya9) - [NischalKanishk](https://github.com/NischalKanishk) - [Nishant Tilve](https://github.com/Antimatter98) -- [Nisheanthan Karthikeyan](https://github.com/Nisheanthan) +- [Nisheanthan Karthikeyan](https://github.com/Nisheanthan) - [nymika](https://github.com/nymika) - [Pragadeeswaran Gnanasekaran](https://github.com/pragapraga) - [Prateek kocher](https://github.com/prateekk2001) @@ -112,6 +112,7 @@ - [Sriharan Manogaran](https://github.com/sriharan16897) - [Sripad](https://github.com/TVSSSRIPAD) - [Surafel Hailu](https://github.com/surafelh) +- [Susann Baumgart](https://github.com/LadyLazorcorn) - [Suyash Bhiste](https://github.com/SuyashBhiste) - [Tamas Csonka](https://github.com/csnktms) - [Tarun Kumar](https://github.com/tarun1642) From ccf699feae374b18558f1c3b5909830664308123 Mon Sep 17 00:00:00 2001 From: Rachael Neff <35469555+raneff@users.noreply.github.com> Date: Mon, 28 Oct 2019 16:18:52 -0500 Subject: [PATCH 442/481] Update CONTRIBUTORS.md Add additional contributor --- CONTRIBUTORS.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 692ae126..3a0f42ee 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -86,6 +86,7 @@ - [nymika](https://github.com/nymika) - [Pragadeeswaran Gnanasekaran](https://github.com/pragapraga) - [Prateek kocher](https://github.com/prateekk2001) +- [Rachael Neff] (https://github.com/raneff) - [Rachit Garg](https://github.com/rstar900) - [Ramy Fetteha](https://github.com/NoirFLamme) - [Randil Tennakoon](https://github.com/randiltennakoon) From d042215fe8bb54ef0b0b90cd96e46683f3e6bf0a Mon Sep 17 00:00:00 2001 From: Rachael Neff <35469555+raneff@users.noreply.github.com> Date: Mon, 28 Oct 2019 16:23:02 -0500 Subject: [PATCH 443/481] Create Rachael_Neff Create new profile --- profiles/Rachael_Neff | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 profiles/Rachael_Neff diff --git a/profiles/Rachael_Neff b/profiles/Rachael_Neff new file mode 100644 index 00000000..7f0a1090 --- /dev/null +++ b/profiles/Rachael_Neff @@ -0,0 +1,21 @@ +## Rachael Neff + +### Bio +I am a bioinformaticist with an interest in graphics + +### Location +Omaha, Nebraska + +### Projects +I work on a number of different cancer research projects. Another notable project is the creation of a music library database for my local university. + +### Hobbies & Interests +I'm a violinist and runner. + +### Profiles +[![GitHub][github-img]](https://github.com/raneff) +[![Twitter][twitter-img]](Link to Twitter profile) + + +[twitter-img]: https://i.imgur.com/wWzX9uB.png +[github-img]: https://i.imgur.com/9I6NRUm.png From 0dc6a492444c3bad297e556b2998ebde03c2fc04 Mon Sep 17 00:00:00 2001 From: Jesse Date: Mon, 28 Oct 2019 22:47:00 -0400 Subject: [PATCH 444/481] Updates: CONTRIBUTORS.md Woot! --- CONTRIBUTORS.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 692ae126..d57fbb70 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -52,6 +52,7 @@ - [ibin Xavier](https://github.com/dibinxavier) - [Iranildo Batalha](https://github.com/iranildobatalha) - [Jatin Narula](https://github.com/jatin96) +- [Jesse Mayo](https://github.com/jsmayo) - [João Vítor Morandi Lemos](https://github.com/joaovitorml) - [Joshua Prakasam](https://github.com/Joshua-Prakasam) - [Juli Krue](https://github.com/JuliKrue) From ff2518212ccd00bff0a058d6fe8ce1e01adbc360 Mon Sep 17 00:00:00 2001 From: Rounak Agarwal Date: Tue, 29 Oct 2019 12:13:58 +0530 Subject: [PATCH 445/481] Rename Geek to TheGeekiestOne.md --- profiles/{Geek => TheGeekiestOne.md} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename profiles/{Geek => TheGeekiestOne.md} (100%) diff --git a/profiles/Geek b/profiles/TheGeekiestOne.md similarity index 100% rename from profiles/Geek rename to profiles/TheGeekiestOne.md From 724f23d6f4471b00793100898e62c6e3c5b907d6 Mon Sep 17 00:00:00 2001 From: Rounak Agarwal Date: Tue, 29 Oct 2019 15:31:42 +0530 Subject: [PATCH 446/481] Rename Rachael_Neff to Rachael_Neff.md --- profiles/{Rachael_Neff => Rachael_Neff.md} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename profiles/{Rachael_Neff => Rachael_Neff.md} (100%) diff --git a/profiles/Rachael_Neff b/profiles/Rachael_Neff.md similarity index 100% rename from profiles/Rachael_Neff rename to profiles/Rachael_Neff.md From 658a0f7884aba255b4e0450de90c6e55aeaa7aed Mon Sep 17 00:00:00 2001 From: Rounak Agarwal Date: Tue, 29 Oct 2019 15:33:10 +0530 Subject: [PATCH 447/481] Rename Warren_Thomas to Warren_Thomas.md --- profiles/{Warren_Thomas => Warren_Thomas.md} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename profiles/{Warren_Thomas => Warren_Thomas.md} (100%) diff --git a/profiles/Warren_Thomas b/profiles/Warren_Thomas.md similarity index 100% rename from profiles/Warren_Thomas rename to profiles/Warren_Thomas.md From 308f5d33bd47152d11a7ebf9c59c9b4cc7fd672a Mon Sep 17 00:00:00 2001 From: Pongsak J Date: Tue, 29 Oct 2019 22:00:07 +0700 Subject: [PATCH 448/481] Create Pongsak_J.md Add my Profile --- profiles/Pongsak_J.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 profiles/Pongsak_J.md diff --git a/profiles/Pongsak_J.md b/profiles/Pongsak_J.md new file mode 100644 index 00000000..fff990e9 --- /dev/null +++ b/profiles/Pongsak_J.md @@ -0,0 +1,16 @@ +## Pongsak J. + +### Bio +Im just a software developer student who loves cats :) + +### Location +Thailland + +### Hobbies & Interests +Games and tavel. + +### Profiles +[![GitHub][github-img]](https://github.com/PonsakDev) + + +[github-img]: https://i.imgur.com/9I6NRUm.png From 0c854f82d19c71609da36039f71fc5fbedddf90d Mon Sep 17 00:00:00 2001 From: muh fachrul razy Date: Wed, 30 Oct 2019 13:11:27 +0800 Subject: [PATCH 449/481] added contributors --- CONTRIBUTORS.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 5b882c25..310dd5a1 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -49,6 +49,7 @@ - [Emmanuel Ezenwigbo](https://github.com/SkyC0der) - [Erol Aliyev](https://github.com/erolaliyev) - [Everton Braga](https://github.com/evertonrbraga) +- [Fachrul Razi](https://github.com/mfachrulrazy) - [Gagandeep Sing](https://github.com/gagan0183) - [Hans](https://github.com/hungvu193) - [Harsh Tank](https://github.com/harshtank) From c87f9aaafded54be23f130e925ee71d04e7fc8df Mon Sep 17 00:00:00 2001 From: muh fachrul razy Date: Wed, 30 Oct 2019 13:19:36 +0800 Subject: [PATCH 450/481] add new hello world program --- code/Python/Hello_world_id.py | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 code/Python/Hello_world_id.py diff --git a/code/Python/Hello_world_id.py b/code/Python/Hello_world_id.py new file mode 100644 index 00000000..4bcf2a0a --- /dev/null +++ b/code/Python/Hello_world_id.py @@ -0,0 +1,3 @@ +#Print hello world in Indonesian Language +lang = 'Halo Dunia' +print(lang) From 4161dfcbefb11bd4c942f0782b36aa671e8e71be Mon Sep 17 00:00:00 2001 From: Rounak Agarwal Date: Wed, 30 Oct 2019 12:24:18 +0530 Subject: [PATCH 451/481] Rename hello world.cpp to helloworld.c --- code/C/{hello world.cpp => helloworld.c} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename code/C/{hello world.cpp => helloworld.c} (100%) diff --git a/code/C/hello world.cpp b/code/C/helloworld.c similarity index 100% rename from code/C/hello world.cpp rename to code/C/helloworld.c From 44dc7932dec974a6900e3ea29f0bf9c239dfc91d Mon Sep 17 00:00:00 2001 From: aditya041997 Date: Thu, 31 Oct 2019 08:26:29 +0530 Subject: [PATCH 452/481] Added hello_world_.py --- code/Python/hello_world_.py | 1 + 1 file changed, 1 insertion(+) create mode 100644 code/Python/hello_world_.py diff --git a/code/Python/hello_world_.py b/code/Python/hello_world_.py new file mode 100644 index 00000000..8e235769 --- /dev/null +++ b/code/Python/hello_world_.py @@ -0,0 +1 @@ +print("Hello World") \ No newline at end of file From 2aed1e602507a94de2df20ede6dfeccaf9b4ca12 Mon Sep 17 00:00:00 2001 From: Rounak Agarwal Date: Mon, 4 Nov 2019 11:37:23 +0530 Subject: [PATCH 453/481] Update CONTRIBUTORS.md --- CONTRIBUTORS.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index aecc23ae..cb4ca3c1 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -71,6 +71,7 @@ - [Sagar Yadav](https://github.com/itsnotsagar) - [Sahildeep Singh](https://github.com/sahilcodes) - [Samuel Tonini](https://github.com/samuel-tonini) +- [Sanatan Shrivastava](https://github.com/Sanatan-Shrivastava) - [Shridhar Ravi](https://github.com/shridharravi97) - [Shriram Navaratnalingam](https://github.com/ShriLingam23) - [Siddharth Raj](https://github.com/iamsidofficial) @@ -90,7 +91,5 @@ - [viewless](https://github.com/viewless) - [Vlad Zaporozhskyi](https://github.com/thezapovlad) - [Walter Brahman](https://github.com/veugelenw) -- [Sanatan Shrivastava](https://github.com/Sanatan-Shrivastava) - From 73099ea215939709bff6e51a091167a7f5a3dbbf Mon Sep 17 00:00:00 2001 From: Rounak Agarwal Date: Mon, 4 Nov 2019 11:59:12 +0530 Subject: [PATCH 454/481] Update CONTRIBUTORS.md --- CONTRIBUTORS.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 9e1da688..4e1e1400 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -52,8 +52,8 @@ - [nilesh](https://github.com/nileshsahitya9) - [Nishant Tilve](https://github.com/Antimatter98) - [Pragadeeswaran Gnanasekaran](https://github.com/pragapraga) -- [Ramy Fetteha](https://github.com/NoirFLamme) - [Prajjwal Yadav](https://github.com/prajjyadav) +- [Ramy Fetteha](https://github.com/NoirFLamme) - [Randil Tennakoon](https://github.com/randiltennakoon) - [Raul Gonzalez Cruz](https://github.com/raulgonzalezcz) - [Ricardo Borges](https://github.com/ricardo93borges) From 3b4f030d2d641e7808c8ce7877602bfb608df13c Mon Sep 17 00:00:00 2001 From: Rounak Agarwal Date: Mon, 4 Nov 2019 12:01:26 +0530 Subject: [PATCH 455/481] Rename HW Java to HW.Java --- code/Java/{HW Java => HW.Java} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename code/Java/{HW Java => HW.Java} (100%) diff --git a/code/Java/HW Java b/code/Java/HW.Java similarity index 100% rename from code/Java/HW Java rename to code/Java/HW.Java From 67e3b6750e1b885d022b86cdc2556e2e986457db Mon Sep 17 00:00:00 2001 From: valkyrienyanko Date: Tue, 5 Nov 2019 17:10:32 -0600 Subject: [PATCH 456/481] Create Valkyrie_Nyanko.md --- profiles/Valkyrie_Nyanko.md | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 profiles/Valkyrie_Nyanko.md diff --git a/profiles/Valkyrie_Nyanko.md b/profiles/Valkyrie_Nyanko.md new file mode 100644 index 00000000..084a1f2e --- /dev/null +++ b/profiles/Valkyrie_Nyanko.md @@ -0,0 +1,25 @@ +## Valkyrie Nyanko + +### Bio +I'm a student at the University of Manitoba studying to computer science. + +### Location +Canada + +### Projects +- IO Game - Syncronizing various RPG elements over the network. +- Match Maker - Chatting with someone else in a room. +- Space RPG Game - Strategy game in the making. +- Partner Bot - Automates partnerships in discord. +- Valk Core - Multipurpose core API for all mc plugins. +- And more! + +### Hobbies & Interests +Programming and cats. + +### Profiles +[![GitHub][github-img]](https://github.com/valkyrienyanko) + + +[twitter-img]: https://i.imgur.com/wWzX9uB.png +[github-img]: https://i.imgur.com/9I6NRUm.png From 3aef69bc82fa6e4b2edf05502e325c16a2b858d8 Mon Sep 17 00:00:00 2001 From: Rounak Agarwal Date: Thu, 7 Nov 2019 12:21:20 +0530 Subject: [PATCH 457/481] Rename contribute-hello-world to contribute-hello-world.py --- code/Python/{contribute-hello-world => contribute-hello-world.py} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename code/Python/{contribute-hello-world => contribute-hello-world.py} (100%) diff --git a/code/Python/contribute-hello-world b/code/Python/contribute-hello-world.py similarity index 100% rename from code/Python/contribute-hello-world rename to code/Python/contribute-hello-world.py From 57a40d645b44a1d5f7372b71fe5cfbfc4df05fb4 Mon Sep 17 00:00:00 2001 From: Rounak Agarwal Date: Thu, 7 Nov 2019 12:23:41 +0530 Subject: [PATCH 458/481] Rename helloWorld to helloWorld.c --- code/C/{helloWorld => helloWorld.c} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename code/C/{helloWorld => helloWorld.c} (100%) diff --git a/code/C/helloWorld b/code/C/helloWorld.c similarity index 100% rename from code/C/helloWorld rename to code/C/helloWorld.c From 333cd9641966bffb8ddfd517b65d0a5720d5ab7d Mon Sep 17 00:00:00 2001 From: Rounak Agarwal Date: Thu, 7 Nov 2019 12:24:29 +0530 Subject: [PATCH 459/481] Delete Julia --- code/Julia | 0 1 file changed, 0 insertions(+), 0 deletions(-) delete mode 100644 code/Julia diff --git a/code/Julia b/code/Julia deleted file mode 100644 index e69de29b..00000000 From 50924c5057bc4edd51928602827f3197f0ccbc9b Mon Sep 17 00:00:00 2001 From: Rounak Agarwal Date: Thu, 7 Nov 2019 12:24:50 +0530 Subject: [PATCH 460/481] Rename code/hello_world.jl to code/Julia/hello_world.jl --- code/{ => Julia}/hello_world.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename code/{ => Julia}/hello_world.jl (79%) diff --git a/code/hello_world.jl b/code/Julia/hello_world.jl similarity index 79% rename from code/hello_world.jl rename to code/Julia/hello_world.jl index adb5fa87..e7cea806 100644 --- a/code/hello_world.jl +++ b/code/Julia/hello_world.jl @@ -1,3 +1,3 @@ println("Hello World. This is JuliaLang, a language designed for high performance.") -println("It has the speed of C/C++ and the ease of Python. It is revolutionizing scientific coding.") \ No newline at end of file +println("It has the speed of C/C++ and the ease of Python. It is revolutionizing scientific coding.") From aa07dd7a54307673c19c9969405c43301b4bf718 Mon Sep 17 00:00:00 2001 From: Rounak Agarwal Date: Thu, 7 Nov 2019 12:27:38 +0530 Subject: [PATCH 461/481] Rename Hello_World to Hello_World_.py --- code/Python/{Hello_World => Hello_World_.py} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename code/Python/{Hello_World => Hello_World_.py} (100%) diff --git a/code/Python/Hello_World b/code/Python/Hello_World_.py similarity index 100% rename from code/Python/Hello_World rename to code/Python/Hello_World_.py From ff1a09b7ed9b2c510c8e36173d0793cc1ac7c9e0 Mon Sep 17 00:00:00 2001 From: Rounak Agarwal Date: Thu, 7 Nov 2019 12:28:42 +0530 Subject: [PATCH 462/481] Update Ankit_Aggarwal.md --- profiles/Ankit_Aggarwal.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/profiles/Ankit_Aggarwal.md b/profiles/Ankit_Aggarwal.md index 9874acdb..7218cc62 100644 --- a/profiles/Ankit_Aggarwal.md +++ b/profiles/Ankit_Aggarwal.md @@ -13,7 +13,7 @@ Scripting of various manual monitoring and automation. The super awesome things that intrigue you and bring you joy. ### Profiles -[![GitHub][]](https://github.com/0395ankit) +[![GitHub][github-img]](https://github.com/0395ankit) From 26d4716eefd6f8850fa6d0ba38a09a9312384eb0 Mon Sep 17 00:00:00 2001 From: Rounak Agarwal Date: Thu, 7 Nov 2019 12:29:03 +0530 Subject: [PATCH 463/481] Rename HeLLo World to HeLLoWorld.py --- code/Python/{HeLLo World => HeLLoWorld.py} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename code/Python/{HeLLo World => HeLLoWorld.py} (100%) diff --git a/code/Python/HeLLo World b/code/Python/HeLLoWorld.py similarity index 100% rename from code/Python/HeLLo World rename to code/Python/HeLLoWorld.py From 4af3ba1af2b227a261c869a89b98fcfca3731ae3 Mon Sep 17 00:00:00 2001 From: Rounak Agarwal Date: Sun, 10 Nov 2019 14:09:20 +0530 Subject: [PATCH 464/481] Update CONTRIBUTORS.md --- CONTRIBUTORS.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index a1c641fb..5430021f 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -132,7 +132,7 @@ - [Rory Coleman](https://github.com/RC61) - [Rosario Galioto](https://github.com/tirannosario) - [Rounak Agarwal](https://github.com/agarwalrounak) -- [Ryan Cumming] (https://github.com/Goslenator7) +- [Ryan Cumming](https://github.com/Goslenator7) - [Ryan Papazoglou](https://github.com/RyanPapazoglou) - [Sagar Yadav](https://github.com/itsnotsagar) - [Sahildeep Singh](https://github.com/sahilcodes) From 0c4bacb7ec158c6a7325d9259e927a5f2e687474 Mon Sep 17 00:00:00 2001 From: Piyush Singariya <50979887+piyushsingariya@users.noreply.github.com> Date: Wed, 18 Dec 2019 16:27:40 +0530 Subject: [PATCH 465/481] Added my contribution --- CONTRIBUTORS.md | 1 + Piyush_Singariya.md | 21 +++++++++++++++++++++ 2 files changed, 22 insertions(+) create mode 100644 Piyush_Singariya.md diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 98c34684..0d14d7a1 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -118,6 +118,7 @@ - [Nisheanthan Karthikeyan](https://github.com/Nisheanthan) - [Niz Arion](https://github.com/nizarion) - [nymika](https://github.com/nymika) +- [Piyush Singariya](https://github.com/piyushsinagiya) - [Pragadeeswaran Gnanasekaran](https://github.com/pragapraga) - [Pragyesh Jain](https://github.com/pragyeshjain) - [Prajjwal Yadav](https://github.com/prajjyadav) diff --git a/Piyush_Singariya.md b/Piyush_Singariya.md new file mode 100644 index 00000000..3609ea62 --- /dev/null +++ b/Piyush_Singariya.md @@ -0,0 +1,21 @@ +## Your Name +Piyush Singariya +### Bio +Just a random guy visiting Internet on daily basis to learn more and more about this stupid programming and other + +### Location +Bikaner, Rajasthan + +### Projects +I am learning Data Structures and You can visit my github and you would find some good projects regarding Django + +### Hobbies & Interests +Gaming, Music, Programming, Anime, Manga + +### Profiles +[![GitHub][github-img]](www.github.com/piyushsingariya) +[![Twitter][twitter-img]](www.twitter.com/piyushsingariya) + + +[twitter-img]: https://i.imgur.com/wWzX9uB.png +[github-img]: https://i.imgur.com/9I6NRUm.png \ No newline at end of file From 7fc2d63f0a8f137548fc9b7f6adc6f2da4175c65 Mon Sep 17 00:00:00 2001 From: Nectar Date: Wed, 25 Dec 2019 20:30:05 +0530 Subject: [PATCH 466/481] Added Piyush Singariya --- CONTRIBUTORS.md | 1 + profiles/Piyush_Singariya.md | 21 +++++++++++++++++++++ 2 files changed, 22 insertions(+) create mode 100644 profiles/Piyush_Singariya.md diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 98c34684..0d14d7a1 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -118,6 +118,7 @@ - [Nisheanthan Karthikeyan](https://github.com/Nisheanthan) - [Niz Arion](https://github.com/nizarion) - [nymika](https://github.com/nymika) +- [Piyush Singariya](https://github.com/piyushsinagiya) - [Pragadeeswaran Gnanasekaran](https://github.com/pragapraga) - [Pragyesh Jain](https://github.com/pragyeshjain) - [Prajjwal Yadav](https://github.com/prajjyadav) diff --git a/profiles/Piyush_Singariya.md b/profiles/Piyush_Singariya.md new file mode 100644 index 00000000..3609ea62 --- /dev/null +++ b/profiles/Piyush_Singariya.md @@ -0,0 +1,21 @@ +## Your Name +Piyush Singariya +### Bio +Just a random guy visiting Internet on daily basis to learn more and more about this stupid programming and other + +### Location +Bikaner, Rajasthan + +### Projects +I am learning Data Structures and You can visit my github and you would find some good projects regarding Django + +### Hobbies & Interests +Gaming, Music, Programming, Anime, Manga + +### Profiles +[![GitHub][github-img]](www.github.com/piyushsingariya) +[![Twitter][twitter-img]](www.twitter.com/piyushsingariya) + + +[twitter-img]: https://i.imgur.com/wWzX9uB.png +[github-img]: https://i.imgur.com/9I6NRUm.png \ No newline at end of file From 5102b7816e2ac164641c2476731c8c6b4772d89a Mon Sep 17 00:00:00 2001 From: Patryk Palej Date: Sun, 19 Jan 2020 09:19:38 +0100 Subject: [PATCH 467/481] Trial open source contribution --- CONTRIBUTORS.md | 1 + code/Python/hello.py | 1 + 2 files changed, 2 insertions(+) create mode 100644 code/Python/hello.py diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 98c34684..8af8a425 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -118,6 +118,7 @@ - [Nisheanthan Karthikeyan](https://github.com/Nisheanthan) - [Niz Arion](https://github.com/nizarion) - [nymika](https://github.com/nymika) +- [Patryk Palej](https://github.com/patrykpalej) - [Pragadeeswaran Gnanasekaran](https://github.com/pragapraga) - [Pragyesh Jain](https://github.com/pragyeshjain) - [Prajjwal Yadav](https://github.com/prajjyadav) diff --git a/code/Python/hello.py b/code/Python/hello.py new file mode 100644 index 00000000..6d95fe97 --- /dev/null +++ b/code/Python/hello.py @@ -0,0 +1 @@ +print("Hello world") \ No newline at end of file From 71ea62cfbfc5e6fa10d033c387db4a6d55c646ec Mon Sep 17 00:00:00 2001 From: Tomasz Kardel Date: Sun, 2 Feb 2020 12:21:39 +0100 Subject: [PATCH 468/481] Add awesome hello world program --- CONTRIBUTORS.md | 1 + code/JavaScript/t_helloWorld.js | 1 + profiles/Tomasz_Kardel.md | 19 +++++++++++++++++++ 3 files changed, 21 insertions(+) create mode 100644 code/JavaScript/t_helloWorld.js create mode 100644 profiles/Tomasz_Kardel.md diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 8af8a425..e8d8be30 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -169,6 +169,7 @@ - [Thomas Scharke](https://github.com/tscharke) - [Thomas Windt](https://github.com/WOLFI3654) - [Tim Solokha](https://github.com/TimSolokha) +- [Tomasz Kardel](https://github.com/tomeczek63960) - [tonzsm](https://github.com/tonzsm) - [Tooler](https://github.com/Tooler2) - [tulika kundu](https://github.com/tulikakundu) diff --git a/code/JavaScript/t_helloWorld.js b/code/JavaScript/t_helloWorld.js new file mode 100644 index 00000000..93b58193 --- /dev/null +++ b/code/JavaScript/t_helloWorld.js @@ -0,0 +1 @@ +console.log("Hello World!!!"); \ No newline at end of file diff --git a/profiles/Tomasz_Kardel.md b/profiles/Tomasz_Kardel.md new file mode 100644 index 00000000..83314354 --- /dev/null +++ b/profiles/Tomasz_Kardel.md @@ -0,0 +1,19 @@ +## Tomasz Kardel + +### Bio +Passionate Programmer + +### Location +Białystok Poland + +### Hobbies & Interests +- Sport +- Programming +- Food + +### Profiles +[![GitHub][github-img]](https://github.com/tomeczek63960) + + +[twitter-img]: https://i.imgur.com/wWzX9uB.png +[github-img]: https://i.imgur.com/9I6NRUm.png \ No newline at end of file From 4b90b77b67e5a40c62c6289c753960377219dc96 Mon Sep 17 00:00:00 2001 From: SAMRAT MITRA <34887181+lionelsamrat10@users.noreply.github.com> Date: Mon, 6 Apr 2020 01:29:17 +0530 Subject: [PATCH 469/481] Update CONTRIBUTORS.md --- CONTRIBUTORS.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 1af58fae..ad11cd65 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -119,6 +119,7 @@ - [Ryan Cumming] (https://github.com/Goslenator7) - [Sagar Yadav](https://github.com/itsnotsagar) - [Sahildeep Singh](https://github.com/sahilcodes) +- [Samrat Mitra](https://github.com/lionelsamrat10) - [Samuel Tonini](https://github.com/samuel-tonini) - [Sanatan Shrivastava](https://github.com/Sanatan-Shrivastava) - [Sangeeta Meena](https://github.com/sangeetameena580) From 36cb48230a7a7d185beb9316b0a9a6e2fbe47366 Mon Sep 17 00:00:00 2001 From: SAMRAT MITRA <34887181+lionelsamrat10@users.noreply.github.com> Date: Mon, 6 Apr 2020 01:31:33 +0530 Subject: [PATCH 470/481] Create Samrat_Hello_World.java --- code/Java/Samrat_Hello_World.java | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 code/Java/Samrat_Hello_World.java diff --git a/code/Java/Samrat_Hello_World.java b/code/Java/Samrat_Hello_World.java new file mode 100644 index 00000000..24f9ba11 --- /dev/null +++ b/code/Java/Samrat_Hello_World.java @@ -0,0 +1,7 @@ +class Hello +{ + public static void main(String args[]) + { + System.out.println("Hello World!"); + } +} From 9824eca27a43bddd980cabf275be5a11af676d7f Mon Sep 17 00:00:00 2001 From: SAMRAT MITRA <34887181+lionelsamrat10@users.noreply.github.com> Date: Mon, 6 Apr 2020 01:45:39 +0530 Subject: [PATCH 471/481] Create Samrat_Mitra.md --- profiles/Samrat_Mitra.md | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 profiles/Samrat_Mitra.md diff --git a/profiles/Samrat_Mitra.md b/profiles/Samrat_Mitra.md new file mode 100644 index 00000000..83205ed6 --- /dev/null +++ b/profiles/Samrat_Mitra.md @@ -0,0 +1,24 @@ +## Samrat Mitra + +### Bio +I am a third year Information Technology Undergrad from Jalpaiguri Government Engineering College. I am a budding MERN Stack Developer. +My research interests include Cryptography & Network Security, BioInformatics etc. Currently I am working on developing an MERN application, +which is for an online Merchandise shop. + +### Location +Jalpaiguri, West Bengal, India + +### Projects +From a very basic Calculator using JavaScript to a production scale E-Commerce Website from Scratch, I love to make web applications. + +### Hobbies & Interests +I am a hardcore football lover. I play football and also watch it during free time. + +### Profiles + +[![GitHub][github-img]](https://github.com/lionelsamrat10) + + + +[twitter-img]: https://i.imgur.com/wWzX9uB.png +[github-img]: https://i.imgur.com/9I6NRUm.png From c580e93f314f3a33caaaa6b56157cf191fa6398c Mon Sep 17 00:00:00 2001 From: Rounak Agarwal Date: Thu, 14 May 2020 02:24:54 +0530 Subject: [PATCH 472/481] Update CONTRIBUTORS.md --- CONTRIBUTORS.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index ad11cd65..59e0f9dd 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -103,7 +103,7 @@ - [Pragadeeswaran Gnanasekaran](https://github.com/pragapraga) - [Prajjwal Yadav](https://github.com/prajjyadav) - [Prateek kocher](https://github.com/prateekk2001) -- [Rachael Neff] (https://github.com/raneff) +- [Rachael Neff](https://github.com/raneff) - [Rachit Garg](https://github.com/rstar900) - [Ramy Fetteha](https://github.com/NoirFLamme) - [Randil Tennakoon](https://github.com/randiltennakoon) @@ -116,7 +116,7 @@ - [Rory Coleman](https://github.com/RC61) - [Rosario Galioto](https://github.com/tirannosario) - [Rounak Agarwal](https://github.com/agarwalrounak) -- [Ryan Cumming] (https://github.com/Goslenator7) +- [Ryan Cumming](https://github.com/Goslenator7) - [Sagar Yadav](https://github.com/itsnotsagar) - [Sahildeep Singh](https://github.com/sahilcodes) - [Samrat Mitra](https://github.com/lionelsamrat10) From 086dd652e111a303d268899a2916c121c3e201d2 Mon Sep 17 00:00:00 2001 From: Alka Trivedi Date: Wed, 10 Jun 2020 01:31:58 +0530 Subject: [PATCH 473/481] added my name to contributors list --- CONTRIBUTORS.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 1f6f3377..61fdafd4 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -1,4 +1,4 @@ - + - [AAMIR AHMAD](https://github.com/sickwiz) - [Aarya Kulkarni](https://github.com/aaryakulkarni) @@ -10,6 +10,7 @@ - [Ajey Prasand](https://github.com/ajeyprasand) - [Akshi Tak](https://github.com/akshitak) - [Alan Jereb](https://github.com/BirokratskaZila) +- [Alka Trivedi](https://github.com/Alka-git12) - [Allen P Biju](https://github.com/allenpbiju) - [Alyssa Columbus](https://github.com/acolum) - [Alok](https://github.com/Alokkumar8) From f53484bfd6c3a5bbe205c5274434774a32283cbf Mon Sep 17 00:00:00 2001 From: Rahulshah192006 Date: Wed, 21 Apr 2021 01:12:49 +0530 Subject: [PATCH 474/481] Rahul-Shah --- code/Python/Hello_World-Rahul.py | 1 + profiles/Rahul_Shah.md | 16 ++++++++++++++++ 2 files changed, 17 insertions(+) create mode 100644 code/Python/Hello_World-Rahul.py create mode 100644 profiles/Rahul_Shah.md diff --git a/code/Python/Hello_World-Rahul.py b/code/Python/Hello_World-Rahul.py new file mode 100644 index 00000000..8e235769 --- /dev/null +++ b/code/Python/Hello_World-Rahul.py @@ -0,0 +1 @@ +print("Hello World") \ No newline at end of file diff --git a/profiles/Rahul_Shah.md b/profiles/Rahul_Shah.md new file mode 100644 index 00000000..f36f6af4 --- /dev/null +++ b/profiles/Rahul_Shah.md @@ -0,0 +1,16 @@ +## Your Name +Rahul Shah +### Bio +I am Class 10th student Coding is love + +### Location +Indore + +### Projects +I am Learning AI and ML + +### Hobbies & Interests +Gaming,Coding + +### Profiles +[![GitHub][github-img]](https://github.com/Rahulshah192006/) From 110756f316aa9d308f140eb5a028a7825aeaa4f9 Mon Sep 17 00:00:00 2001 From: Rounak Agarwal Date: Wed, 21 Apr 2021 22:49:20 +0530 Subject: [PATCH 475/481] Update Rahul_Shah.md --- profiles/Rahul_Shah.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/profiles/Rahul_Shah.md b/profiles/Rahul_Shah.md index f36f6af4..ef3a4f02 100644 --- a/profiles/Rahul_Shah.md +++ b/profiles/Rahul_Shah.md @@ -14,3 +14,5 @@ Gaming,Coding ### Profiles [![GitHub][github-img]](https://github.com/Rahulshah192006/) + +[github-img]: https://i.imgur.com/9I6NRUm.png From 5de0d050819ca62bcd6f9a38ef6274956df91bc2 Mon Sep 17 00:00:00 2001 From: Prathima Kadari Date: Wed, 2 Jun 2021 18:49:29 +0530 Subject: [PATCH 476/481] Create hello-world.swift --- code/Swift/hello-world.swift | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 code/Swift/hello-world.swift diff --git a/code/Swift/hello-world.swift b/code/Swift/hello-world.swift new file mode 100644 index 00000000..730e9ab1 --- /dev/null +++ b/code/Swift/hello-world.swift @@ -0,0 +1,3 @@ +// PRATHIMA KADARI -"Hello, World!" in Swift + +print("Hello, World!") From 5a6f4f04bc45f1006edba674c76a1db6230ce961 Mon Sep 17 00:00:00 2001 From: Prathima Kadari Date: Wed, 2 Jun 2021 18:50:27 +0530 Subject: [PATCH 477/481] Added hello world --- code/Arduino/hello-world.ino | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 code/Arduino/hello-world.ino diff --git a/code/Arduino/hello-world.ino b/code/Arduino/hello-world.ino new file mode 100644 index 00000000..4566bcf4 --- /dev/null +++ b/code/Arduino/hello-world.ino @@ -0,0 +1,14 @@ +// Prathima Kadari - Hello World in Arduino - Display on Liquid Crystal + +#include + +LiquidCrystal lcd(12, 11, 5, 4, 3, 2); + +void setup() { + lcd.begin(16, 2); + lcd.print("Hello, World!"); +} + +void loop() { + lcd.setCursor(0, 1); + lcd.print(millis() / 1000); From 3b211439945fe1319f9888bed0491159cc069d5f Mon Sep 17 00:00:00 2001 From: Prathima Kadari Date: Wed, 2 Jun 2021 18:57:45 +0530 Subject: [PATCH 478/481] Added prathima kadari --- profiles/Prathima_Kadari.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 profiles/Prathima_Kadari.md diff --git a/profiles/Prathima_Kadari.md b/profiles/Prathima_Kadari.md new file mode 100644 index 00000000..96e2aad2 --- /dev/null +++ b/profiles/Prathima_Kadari.md @@ -0,0 +1,19 @@ +# Prathima Kadari + +## Bio +I am former embedded engineer who works on freelancing. I am an embedded development, pythonista, technical blogger, mentor, open source contributor etc. + +## Location +Hyderabad, Telangana, India + +## Projects +I love developing projects which serves purpose and gives real time solutions. + +## Hobbies & Interests +I am a sudoku lover. Passionate about travelling and reading is what I enjoy the most. + +## Profiles + +[LinkedIn](https://www.linkedin.com/in/prathima-kadari) + +[Twitter](https://www.twitter.com/prathimak88) From be1890fa7ed449bdfda1a70d7f521ed148180d2c Mon Sep 17 00:00:00 2001 From: Prathima Kadari Date: Sun, 6 Jun 2021 23:25:59 +0530 Subject: [PATCH 479/481] Updated hello world --- code/Arduino/hello-world.ino | 1 + 1 file changed, 1 insertion(+) diff --git a/code/Arduino/hello-world.ino b/code/Arduino/hello-world.ino index 4566bcf4..56b0cd80 100644 --- a/code/Arduino/hello-world.ino +++ b/code/Arduino/hello-world.ino @@ -12,3 +12,4 @@ void setup() { void loop() { lcd.setCursor(0, 1); lcd.print(millis() / 1000); +} From 619885ec7fba31ae07aad892bd9d84bcc29ee495 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dawid=20Ko=C5=82odziejczyk?= Date: Mon, 1 May 2023 20:51:53 +0200 Subject: [PATCH 480/481] Hello from Dave --- CONTRIBUTORS.md | 1 + code/Java/HelloWorldDave.java | 7 +++++++ 2 files changed, 8 insertions(+) create mode 100644 code/Java/HelloWorldDave.java diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 61fdafd4..05785434 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -50,6 +50,7 @@ - [Dallin Reeves](https://github.com/dallin91) - [dark-shadow7](https://github.com/dark-shadow7) - [Darren T](https://github.com/darrentrinh) +- [DaveKoly](https://github.com/DaveKoly) - [Dede Saepulloh](https://github.com/dedesaepulloh) - [Deeksha Agrawal](https://github.com/agrawal-deeksha) - [drmyuu](https://github.com/drmyuu) diff --git a/code/Java/HelloWorldDave.java b/code/Java/HelloWorldDave.java new file mode 100644 index 00000000..63576514 --- /dev/null +++ b/code/Java/HelloWorldDave.java @@ -0,0 +1,7 @@ +public class HelloWorldDave{ + + public static void main(String args[]){ + + System.out.println("Hello World From Dave :)"); + } +} \ No newline at end of file From b6f046b439d040854be85de8f20d7a06920416b2 Mon Sep 17 00:00:00 2001 From: BuildTools Date: Sun, 7 May 2023 15:14:50 +0530 Subject: [PATCH 481/481] Done --- code/Java/NamaskaramDuniya.java | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 code/Java/NamaskaramDuniya.java diff --git a/code/Java/NamaskaramDuniya.java b/code/Java/NamaskaramDuniya.java new file mode 100644 index 00000000..669d1ec6 --- /dev/null +++ b/code/Java/NamaskaramDuniya.java @@ -0,0 +1,7 @@ +class Main{ +public static void main(String[]args){ + System.out.println("Namaskaram Duniya"); + + + } +} \ No newline at end of file