diff --git a/README.md b/README.md index 736ab4d..996c005 100644 --- a/README.md +++ b/README.md @@ -15,6 +15,8 @@ Formatting to follow for profile and hello_world is below under `Format` 1. Add your Profile Page in the respective `Profiles-Year` directory 2. In your preferred language create a simple `Hello World` script in the respective `Hello-World-Year` directory +- Even if you don't want to code `Hello World` in your preferred language because it's already done, please still contribute your piece. Your way of writing in a language may differ from another person's way. + Make a Pull Request for your changes and wait to be merged. # How to Begin @@ -22,7 +24,7 @@ Make a Pull Request for your changes and wait to be merged. 2. Clone your fork down to your local environment ```markdown -git clone https://github.com/your-username/hacktoberfest17-beginner.get +git clone https://github.com/your-username/hacktoberfest-beginner.git ``` 3. Create a branch @@ -41,7 +43,7 @@ git push origin your-branch-name - Create a new Pull Request from your forked repository, click the `New Pull Request` button located at the top of your repository - Wait for you PR to be reviewed and merge approval -- Star this repository if you had fun! +- :star::star::star: Star this repository if you had fun! :star::star::star: # Format diff --git a/hello_world/Hello-World-2017/hello_world_glanger.c b/hello_world/Hello-World-2017/hello_world_glanger.c deleted file mode 100644 index da00d3e..0000000 --- a/hello_world/Hello-World-2017/hello_world_glanger.c +++ /dev/null @@ -1,10 +0,0 @@ -AUTHOR: Gabriel Langer -LANGUAGE: C -GITHUB: https://github.com/gablanger - -#include - -int main() { - printf("Hello World\n"); - return 0; -} diff --git a/hello_world/Hello-World-2018/Hello.py b/hello_world/Hello-World-2018/Hello.py new file mode 100644 index 0000000..c25990e --- /dev/null +++ b/hello_world/Hello-World-2018/Hello.py @@ -0,0 +1,21 @@ + + +#AUTHOR: Ariel Roque +#LANGUAGE: Python +#GITHUB: https://github.com/arielroque + +from tkinter import* + +gui = Tk() + +gui.geometry("320x420") + +texto = Label(gui,text="Olá meu nome é Ariel!") + +texto.place(x=90,y=100) + +texto1 = Label(gui,text="I love Python!") + +texto1.place(x=120,y=120) + +gui.mainloop() diff --git a/hello_world/Hello-World-2018/hello_world_agopinathan.py b/hello_world/Hello-World-2018/hello_world_agopinathan.py new file mode 100644 index 0000000..ba27168 --- /dev/null +++ b/hello_world/Hello-World-2018/hello_world_agopinathan.py @@ -0,0 +1,5 @@ +#AUTHOR: Aswin Gopinathan +#LANGUAGE: Python +#GITHUB: https://github.com/infiniteoverflow + +print("Hello, World!") diff --git a/hello_world/Hello-World-2018/hello_world_ayahya.rb b/hello_world/Hello-World-2018/hello_world_ayahya.rb new file mode 100644 index 0000000..ecbcfd8 --- /dev/null +++ b/hello_world/Hello-World-2018/hello_world_ayahya.rb @@ -0,0 +1,5 @@ +# Author: Alavia Yahya +# Language: Ruby +# Github: https://github.com/alavia/ + +puts "Hello World!" diff --git a/hello_world/Hello-World-2018/hello_world_kreopelle.rb b/hello_world/Hello-World-2018/hello_world_kreopelle.rb index 4b4ec43..e81c5ed 100644 --- a/hello_world/Hello-World-2018/hello_world_kreopelle.rb +++ b/hello_world/Hello-World-2018/hello_world_kreopelle.rb @@ -1,5 +1,5 @@ # AUTHOR: Kayla Reopelle # LANGUAGE: Ruby -# GITHUB: https://github.com/mekowalski +# GITHUB: https://github.com/kreopelle puts 'Hello, World!' diff --git a/hello_world/Hello-World-2018/hello_world_mconway.html b/hello_world/Hello-World-2018/hello_world_mconway.html index 6217965..3a23671 100644 --- a/hello_world/Hello-World-2018/hello_world_mconway.html +++ b/hello_world/Hello-World-2018/hello_world_mconway.html @@ -1,3 +1,8 @@ + diff --git a/hello_world/Hello-World-2018/hello_world_pranoppal.c b/hello_world/Hello-World-2018/hello_world_pranoppal.c new file mode 100644 index 0000000..6a56fab --- /dev/null +++ b/hello_world/Hello-World-2018/hello_world_pranoppal.c @@ -0,0 +1,10 @@ +/* +Author: Pranoppal Kalita +Language: C +Github: https://github.com/pranoppal +*/ + +#include +void main(){ + printf("Hello world"); +} diff --git a/hello_world/Hello-World-2018/hello_world_rtjandra.py b/hello_world/Hello-World-2018/hello_world_rtjandra.py new file mode 100644 index 0000000..ab08471 --- /dev/null +++ b/hello_world/Hello-World-2018/hello_world_rtjandra.py @@ -0,0 +1,5 @@ +#AUTHOR: Rebecca +#LANGUAGE: Tjandra +#GITHUB: https://github.com/rebaka + +print("Hello, World!") diff --git a/hello_world/Hello-World-2019/hello_world_aashokan.py b/hello_world/Hello-World-2019/hello_world_aashokan.py new file mode 100644 index 0000000..8eba5d6 --- /dev/null +++ b/hello_world/Hello-World-2019/hello_world_aashokan.py @@ -0,0 +1,5 @@ +#AUTHOR: Anjali V Ashokan +#LANGUAGE: Python +#GITHUB: https://github.com/AbhayVAshokan + +print("Hello World") diff --git a/hello_world/Hello-World-2019/hello_world_abarul.php b/hello_world/Hello-World-2019/hello_world_abarul.php new file mode 100644 index 0000000..635cb4c --- /dev/null +++ b/hello_world/Hello-World-2019/hello_world_abarul.php @@ -0,0 +1,7 @@ + + + diff --git a/hello_world/Hello-World-2019/hello_world_adutta.cpp b/hello_world/Hello-World-2019/hello_world_adutta.cpp new file mode 100644 index 0000000..c544234 --- /dev/null +++ b/hello_world/Hello-World-2019/hello_world_adutta.cpp @@ -0,0 +1,13 @@ +// AUTHOR: Amit Dutta +// LANGUAGE: C++ +// GITHUB: https://github.com/Amitdutta7 + +#include + +using namespace std; + +int main() +{ + cout << "Hello World" << endl; + return 0; +} diff --git a/hello_world/Hello-World-2019/hello_world_agarg.kt b/hello_world/Hello-World-2019/hello_world_agarg.kt new file mode 100644 index 0000000..43e8ba0 --- /dev/null +++ b/hello_world/Hello-World-2019/hello_world_agarg.kt @@ -0,0 +1,7 @@ +// AUTHOR: Aayush Garg +// LANGUAGE: Kotlin +// GITHUB: https://github.com/aayushgarg-03 + +fun main(args: Array) { + println("Hello World!") +} diff --git a/hello_world/Hello-World-2019/hello_world_atargett.hs b/hello_world/Hello-World-2019/hello_world_atargett.hs new file mode 100644 index 0000000..99555c6 --- /dev/null +++ b/hello_world/Hello-World-2019/hello_world_atargett.hs @@ -0,0 +1,6 @@ +-- AUTHOR: Antony Targett +-- LANGUAGE: Haskell +-- GITHUB: https://github.com/AntTargett + +main :: IO () +main = putStrLn "Hello, World!" diff --git a/hello_world/Hello-World-2019/hello_world_avictor.js b/hello_world/Hello-World-2019/hello_world_avictor.js new file mode 100644 index 0000000..af141fe --- /dev/null +++ b/hello_world/Hello-World-2019/hello_world_avictor.js @@ -0,0 +1,5 @@ +//AUTHOR: Amintas Victor +//LANGUAGE: JavaScript +//GITHUB: https://github.com/amintasvrp + +console.log("Hello World"); diff --git a/hello_world/Hello-World-2019/hello_world_ayahya.py b/hello_world/Hello-World-2019/hello_world_ayahya.py new file mode 100644 index 0000000..030607e --- /dev/null +++ b/hello_world/Hello-World-2019/hello_world_ayahya.py @@ -0,0 +1,5 @@ +#AUTHOR: Alavia Yahya +#LANGUAGE: Python +#GITHUB: https://github.com/AbhayVAshokan + +print("Hello World") diff --git a/hello_world/Hello-World-2019/hello_world_bacchu.c b/hello_world/Hello-World-2019/hello_world_bacchu.c new file mode 100644 index 0000000..dcbdba7 --- /dev/null +++ b/hello_world/Hello-World-2019/hello_world_bacchu.c @@ -0,0 +1,10 @@ +//AUTHOR: Barath-Acchu +//LANGUAGE: C +//GITHUB: https://github.com/bharath-acchu + +#include +int main() +{ + printf("\nHello world"); + return 0; +} diff --git a/hello_world/Hello-World-2019/hello_world_doni.cs b/hello_world/Hello-World-2019/hello_world_doni.cs new file mode 100644 index 0000000..1384973 --- /dev/null +++ b/hello_world/Hello-World-2019/hello_world_doni.cs @@ -0,0 +1,20 @@ +// AUTHOR: Doni Kusuma +// LANGUAGE: C# +// GITHUB: https://github.com/btrx + + using System; + +namespace HelloWorl { + + class Hello { + + static void Main(string[] args) { + + Console.WriteLine("Hello World!"); + + // To prevents the screen from + // running and closing quickly + Console.ReadKey(); + } + } +} diff --git a/hello_world/Hello-World-2019/hello_world_echen.js b/hello_world/Hello-World-2019/hello_world_echen.js new file mode 100644 index 0000000..dab39f6 --- /dev/null +++ b/hello_world/Hello-World-2019/hello_world_echen.js @@ -0,0 +1,5 @@ +// AUTHOR: Ellie Chen +// LANGUAGE: JavaScript +// GITHUB: https://github.com/ellieya + +console.log("Helloooooooooo world!"); \ No newline at end of file diff --git a/hello_world/Hello-World-2019/hello_world_fhellscream.cs b/hello_world/Hello-World-2019/hello_world_fhellscream.cs new file mode 100644 index 0000000..5c27267 --- /dev/null +++ b/hello_world/Hello-World-2019/hello_world_fhellscream.cs @@ -0,0 +1,16 @@ +//AUTHOR: Ferib Hellscream +//LANGUAGE: C# +//GITHUB: https://github.com/ferib + +using System; + +namespace HelloWorld +{ + class Program + { + static void Main(string[] args) + { + Console.WriteLine("Hello World!"); + } + } +} diff --git a/hello_world/Hello-World-2019/hello_world_gbarbosa.py b/hello_world/Hello-World-2019/hello_world_gbarbosa.py new file mode 100644 index 0000000..5401a39 --- /dev/null +++ b/hello_world/Hello-World-2019/hello_world_gbarbosa.py @@ -0,0 +1,5 @@ +#AUTHOR: Giovanne Barbosa +#LANGUAGE: Python +#GITHUB: https://github.com/g-barbosa + +print("Hello world") diff --git a/hello_world/Hello-World-2019/hello_world_gbhuvan.cpp b/hello_world/Hello-World-2019/hello_world_gbhuvan.cpp new file mode 100644 index 0000000..4d0f219 --- /dev/null +++ b/hello_world/Hello-World-2019/hello_world_gbhuvan.cpp @@ -0,0 +1,9 @@ +//AUTHOR: GANGADHAR BHUVAN +//LANGUAGE: C++ +//GITHUB: https://github.com/Gangadharbhuvan + +#include +void main() +{ + cout<<"Hello world"< + +int main() { + printf("Hello World\n"); + + //added a hindi word Namaskar, used to greet people in India. + printf("Namaskar\n"); + return 0; +} diff --git a/hello_world/Hello-World-2019/hello_world_gsingh.cpp b/hello_world/Hello-World-2019/hello_world_gsingh.cpp new file mode 100644 index 0000000..4d19f50 --- /dev/null +++ b/hello_world/Hello-World-2019/hello_world_gsingh.cpp @@ -0,0 +1,12 @@ +/* + AUTHOR: Gaurav Singh + LANGUAGE: C++ + GITHUB: https://github.com/saintpopo +*/ + +#include +using namespace std; +int main(){ + cout << "Hello World" << endl; + return 0; +} diff --git a/hello_world/Hello-World-2019/hello_world_hcumaraswamy.js b/hello_world/Hello-World-2019/hello_world_hcumaraswamy.js new file mode 100644 index 0000000..d25aee2 --- /dev/null +++ b/hello_world/Hello-World-2019/hello_world_hcumaraswamy.js @@ -0,0 +1,13 @@ +// AUTHOR: Haripriya Cumaraswamy +// LANGUAGE: js +// GITHUB: https://github.com/echpee + + + + + + diff --git a/hello_world/Hello-World-2019/hello_world_hiftikhar.cpp b/hello_world/Hello-World-2019/hello_world_hiftikhar.cpp new file mode 100644 index 0000000..2fbd709 --- /dev/null +++ b/hello_world/Hello-World-2019/hello_world_hiftikhar.cpp @@ -0,0 +1,13 @@ +// AUTHOR: Hasan Iftikhar +// LANGUAGE: C++ +// GITHUB: https://github.com/hasaniftikhar + +#include + +using namespace std; + +int main() +{ + cout << "Hello world!" << endl; + return 0; +} diff --git a/hello_world/Hello-World-2019/hello_world_jdawny.html b/hello_world/Hello-World-2019/hello_world_jdawny.html new file mode 100644 index 0000000..aeb1620 --- /dev/null +++ b/hello_world/Hello-World-2019/hello_world_jdawny.html @@ -0,0 +1,15 @@ + + + + + Hello World + + + +

Hello World

+ + diff --git a/hello_world/Hello-World-2019/hello_world_jevason.cs b/hello_world/Hello-World-2019/hello_world_jevason.cs new file mode 100644 index 0000000..afdc50e --- /dev/null +++ b/hello_world/Hello-World-2019/hello_world_jevason.cs @@ -0,0 +1,16 @@ +//AUTHOR: Jonathan Evason +//LANGUAGE: C# +//GITHUB: https://github.com/Jevason90 + +using System; + +namespace hello_world_jevason +{ + class Program + { + static void Main(string[] args) + { + Console.WriteLine("Hello World!"); + } + } +} \ No newline at end of file diff --git a/hello_world/Hello-World-2019/hello_world_jmiyumo.py b/hello_world/Hello-World-2019/hello_world_jmiyumo.py new file mode 100644 index 0000000..8df41a4 --- /dev/null +++ b/hello_world/Hello-World-2019/hello_world_jmiyumo.py @@ -0,0 +1,5 @@ +#AUTHOR: Julius Miyumo +#LANGUAGE: Python +#GITHUB: https://github.com/Julius-777 + +print("hello world") diff --git a/hello_world/Hello-World-2019/hello_world_jsanchez.js b/hello_world/Hello-World-2019/hello_world_jsanchez.js new file mode 100644 index 0000000..877453a --- /dev/null +++ b/hello_world/Hello-World-2019/hello_world_jsanchez.js @@ -0,0 +1,5 @@ +//AUTHOR: Jennifer Sanchez +//LANGUAGE: JavaScript +//GITHUB: https://github.com/jennisu + +console.log("Hello World! :)") diff --git a/hello_world/Hello-World-2019/hello_world_jschuurmans.rb b/hello_world/Hello-World-2019/hello_world_jschuurmans.rb new file mode 100644 index 0000000..2f5cbb6 --- /dev/null +++ b/hello_world/Hello-World-2019/hello_world_jschuurmans.rb @@ -0,0 +1,6 @@ +# AUTHOR: Jeremy Schuurmans +# LANGUAGE: Ruby +# GITHUB: https://github.com/palledorous + + +puts "Hello World!" diff --git a/hello_world/Hello-World-2019/hello_world_kpramana.php b/hello_world/Hello-World-2019/hello_world_kpramana.php new file mode 100644 index 0000000..50b042d --- /dev/null +++ b/hello_world/Hello-World-2019/hello_world_kpramana.php @@ -0,0 +1,7 @@ + + + diff --git a/hello_world/Hello-World-2019/hello_world_kumam.php b/hello_world/Hello-World-2019/hello_world_kumam.php new file mode 100644 index 0000000..10bbb61 --- /dev/null +++ b/hello_world/Hello-World-2019/hello_world_kumam.php @@ -0,0 +1,11 @@ + + + diff --git a/hello_world/Hello-World-2019/hello_world_lprentis.py b/hello_world/Hello-World-2019/hello_world_lprentis.py new file mode 100644 index 0000000..52b6a1b --- /dev/null +++ b/hello_world/Hello-World-2019/hello_world_lprentis.py @@ -0,0 +1,5 @@ +#Author: Lauren Prentis +#Language: Python +#Github: https://github.com/leprentis + +print("Hello World!") diff --git a/hello_world/Hello-World-2019/hello_world_masterik.py b/hello_world/Hello-World-2019/hello_world_masterik.py new file mode 100644 index 0000000..654fbf6 --- /dev/null +++ b/hello_world/Hello-World-2019/hello_world_masterik.py @@ -0,0 +1,5 @@ +#AUTHOR: Mariya Asterisk +#LANGUAGE: Python +#GITHUB: https://github.com/MariyaAsterisk + +print("Hello, World!") diff --git a/hello_world/Hello-World-2019/hello_world_mkulmie.html b/hello_world/Hello-World-2019/hello_world_mkulmie.html new file mode 100644 index 0000000..6efaa4c --- /dev/null +++ b/hello_world/Hello-World-2019/hello_world_mkulmie.html @@ -0,0 +1,27 @@ + + + + +Hello World! + + +

Hello World!

+ + \ No newline at end of file diff --git a/hello_world/Hello-World-2019/hello_world_msudyanto.cpp b/hello_world/Hello-World-2019/hello_world_msudyanto.cpp new file mode 100644 index 0000000..60b1919 --- /dev/null +++ b/hello_world/Hello-World-2019/hello_world_msudyanto.cpp @@ -0,0 +1,24 @@ +// AUTHOR: Morgen Sudyanto +// LANGUAGE: Ruby +// GITHUB: https://github.com/moondemon68 + +#include +#define fi first +#define se second +#define pb push_back +#define mp make_pair +#define MOD 1000000007 +#define INF 1234567890 +#define pii pair +#define LL long long +using namespace std; + +int main () { + //clock_t start = clock(); + ios_base::sync_with_stdio(false); + cin.tie(NULL); + cout.tie(NULL); + cout << "Hello World!" << endl; + //cerr << fixed << setprecision(3) << (clock()-start)*1./CLOCKS_PER_SEC << endl; + return 0; +} diff --git a/hello_world/Hello-World-2019/hello_world_ndionisiev.cs b/hello_world/Hello-World-2019/hello_world_ndionisiev.cs new file mode 100644 index 0000000..632859f --- /dev/null +++ b/hello_world/Hello-World-2019/hello_world_ndionisiev.cs @@ -0,0 +1,16 @@ +//AUTHOR: Nikola Dionisiev +//LANGUAGE: C# +//GITHUB: https://github.com/viewless + +using System; + +namespace hello_world +{ + class Program + { + static void Main(string[] args) + { + Console.WriteLine("Hello World!"); + } + } +} diff --git a/hello_world/Hello-World-2019/hello_world_nnini.js b/hello_world/Hello-World-2019/hello_world_nnini.js new file mode 100644 index 0000000..38ccb55 --- /dev/null +++ b/hello_world/Hello-World-2019/hello_world_nnini.js @@ -0,0 +1,9 @@ +// AUTHOR: Nub Nini +// LANGUAGE: JavaScript +// GITHUB: https://github.com/NubNini + +function HelloWorld() { + console.log("Hello world"); +} + +HelloWorld(); diff --git a/hello_world/Hello-World-2019/hello_world_npatil.py b/hello_world/Hello-World-2019/hello_world_npatil.py new file mode 100644 index 0000000..b5d30cd --- /dev/null +++ b/hello_world/Hello-World-2019/hello_world_npatil.py @@ -0,0 +1,5 @@ +# AUTHOR: Neelakanta Gouda Patil +# LANGUAGE: Python +# GITHUB: https://github.com/NEELAKANTAGOUDAPATIL + +print("Hello World!") diff --git a/hello_world/Hello-World-2019/hello_world_nreddy.js b/hello_world/Hello-World-2019/hello_world_nreddy.js new file mode 100644 index 0000000..0e8ffb1 --- /dev/null +++ b/hello_world/Hello-World-2019/hello_world_nreddy.js @@ -0,0 +1,5 @@ +// AUTHOR: Naveen Reddy +// LANGUAGE: JavaScript +// GITHUB: https://github.com/naveenreddy2000 + +console.log('Hello World !!!'); diff --git a/hello_world/Hello-World-2019/hello_world_paich.java b/hello_world/Hello-World-2019/hello_world_paich.java new file mode 100644 index 0000000..b507db4 --- /dev/null +++ b/hello_world/Hello-World-2019/hello_world_paich.java @@ -0,0 +1,11 @@ +// AUTHOR: Pratilipi Aich +// LANGUAGE: Java +// GITHUB: https://github.com/PratilipiAich + +class TestClass +{ + public static void main(String[] args) + { + System.out.println("Hello World"); + } +} diff --git a/hello_world/Hello-World-2019/hello_world_pdhariwal.cpp b/hello_world/Hello-World-2019/hello_world_pdhariwal.cpp new file mode 100644 index 0000000..8bc7f37 --- /dev/null +++ b/hello_world/Hello-World-2019/hello_world_pdhariwal.cpp @@ -0,0 +1,9 @@ +//Author: Priyanshu Dhariwal +//Language: C++ +//Github: https://github.com/priyanshu666 +#include +int main() +{ + cout<<"Hello World!"; + return 0; +} diff --git a/hello_world/Hello-World-2019/hello_world_rpatnecha.py b/hello_world/Hello-World-2019/hello_world_rpatnecha.py new file mode 100644 index 0000000..b18c02a --- /dev/null +++ b/hello_world/Hello-World-2019/hello_world_rpatnecha.py @@ -0,0 +1,5 @@ +#AUTHOR: Raghav Patnecha +#LANGUAGE: Python +#GITHUB: https://github.com/raghavpatnecha + +print("hello world") diff --git a/hello_world/Hello-World-2019/hello_world_sagnihotri.py b/hello_world/Hello-World-2019/hello_world_sagnihotri.py new file mode 100644 index 0000000..0a2e7f0 --- /dev/null +++ b/hello_world/Hello-World-2019/hello_world_sagnihotri.py @@ -0,0 +1,5 @@ +#AUTHOR: Saumya Agnihotri +#LANGUAGE: Python 2 +#GITHUB: https://github.com/saumyaagnihtori + +print "Hello, World!" diff --git a/hello_world/Hello-World-2019/hello_world_shrangi.js b/hello_world/Hello-World-2019/hello_world_shrangi.js new file mode 100644 index 0000000..9166aaa --- /dev/null +++ b/hello_world/Hello-World-2019/hello_world_shrangi.js @@ -0,0 +1,5 @@ +// AUTHOR: Shrangi +// LANGUAGE: JavaScript +// GITHUB: https://github.com/shrangi + +console.log("Hello, World!") diff --git a/hello_world/Hello-World-2019/hello_world_shreya.py b/hello_world/Hello-World-2019/hello_world_shreya.py new file mode 100644 index 0000000..3036d5b --- /dev/null +++ b/hello_world/Hello-World-2019/hello_world_shreya.py @@ -0,0 +1,6 @@ +#AUTHOR: Shreya +#LANGUAGE: Python +#GITHUB: https://github.com/shreya2211 + +print("Hello, World!") +print("nice meeting you") diff --git a/hello_world/Hello-World-2019/hello_world_shrikha.cpp b/hello_world/Hello-World-2019/hello_world_shrikha.cpp new file mode 100644 index 0000000..9e50b6e --- /dev/null +++ b/hello_world/Hello-World-2019/hello_world_shrikha.cpp @@ -0,0 +1,10 @@ +//Author: Shrikha +//Language: C++ +//Github: https://github.com/Shrikha1 +#include //including pre-processor for using cout. + +int main() // Starting main function. +{ + std::cout<<"Hello World!!"< +int main() +{ + printf("\nHello World!"); + return 0; +} diff --git a/hello_world/Hello-World-2019/hello_world_ybabu.html b/hello_world/Hello-World-2019/hello_world_ybabu.html new file mode 100644 index 0000000..f70cd61 --- /dev/null +++ b/hello_world/Hello-World-2019/hello_world_ybabu.html @@ -0,0 +1,18 @@ + + + + + + + + + Hello World + + +

Hello World!

+ + diff --git a/hello_world/Hello-World-2019/hello_world_ycourteau.java b/hello_world/Hello-World-2019/hello_world_ycourteau.java new file mode 100644 index 0000000..a2e06f0 --- /dev/null +++ b/hello_world/Hello-World-2019/hello_world_ycourteau.java @@ -0,0 +1,11 @@ +// AUTHOR: Yves Courteau +// LANGUAGE: Java +// GITHUB: https://github.com/kourto + +public class HelloWorld { + + public static void main(String[] args) { + System.out.println("Hello World!"); + } + +} \ No newline at end of file diff --git a/profiles/Profiles-2018/Alavia_Yahya.md b/profiles/Profiles-2018/Alavia_Yahya.md new file mode 100644 index 0000000..1a2dca4 --- /dev/null +++ b/profiles/Profiles-2018/Alavia_Yahya.md @@ -0,0 +1,26 @@ +# Alavia Yahya + +### Location +Raleigh, NC, USA + +### Associated Organization +- Flatiron School + +### Academics +- Flatiron School +- North Carolina State University + +### Non-Coding Interests +- Watching college basketball and The Office +- Music +- Baking +- All things Harry Potter + +### Why Do You Love Coding? +I love being able to create anything that comes to mind, whether it may solve a tiny problem or a massive one! + +### Your Favorite Animal +Otter + +### Your Favorite Dessert +Chocolate chip cookies! diff --git a/profiles/Profiles-2018/Aman_Kumar.md b/profiles/Profiles-2018/Aman_Kumar.md new file mode 100644 index 0000000..caa2fed --- /dev/null +++ b/profiles/Profiles-2018/Aman_Kumar.md @@ -0,0 +1,24 @@ +# Aman Kumar (Rockindash) + +### Location +India + +### Associated Organization +- None + +### Academics +- Punjab University + +### Non-Coding Interests +- Video Games +- Movies +- Food + +### Why Do You Love Coding? +I love problem solving and it allows me to create what I have in mind. + +### Your Favorite Animal +Dogs, Golden Retriever. + +### Your Favorite Dessert +Cinnamon Roll and Brownie. \ No newline at end of file diff --git a/profiles/Profiles-2018/HarshUpadhyay.md b/profiles/Profiles-2018/HarshUpadhyay.md new file mode 100644 index 0000000..56e5b2c --- /dev/null +++ b/profiles/Profiles-2018/HarshUpadhyay.md @@ -0,0 +1,23 @@ +# Harsh Upadhyay (HarshUpadhyay) + +### Location +Jaipur,India + +### Associated Organization +- None + +### Academics +-LNMIIT + +### Non-Coding Interests +- Music +- Cricket + +### Why Do You Love Coding? +I love challenges and problem solving. + +### Your Favorite Animal +Dogs! I especially love the pitterbulls! + +### Your Favorite Dessert +Gulab Jamun and Cream ice cream diff --git a/profiles/Profiles-2018/Rebecca_Tjandra.md b/profiles/Profiles-2018/Rebecca_Tjandra.md new file mode 100644 index 0000000..3212e7e --- /dev/null +++ b/profiles/Profiles-2018/Rebecca_Tjandra.md @@ -0,0 +1,22 @@ +# Rebecca Tjandra + +### Location +- Vancouver, BC, Canada + +### Academics +- Simon Fraser University + +### Non-Coding Interests +- Drawing +- Photography +- Watching movies +- Gaming + +### Why Do You Love Coding? +You can create things and solve problems. + +### Your Favorite Animal +Cats + +### Your Favorite Dessert +Matcha Mille Crepe Cake diff --git a/profiles/Profiles-2019/Aayush_Garg.md b/profiles/Profiles-2019/Aayush_Garg.md new file mode 100644 index 0000000..32c8834 --- /dev/null +++ b/profiles/Profiles-2019/Aayush_Garg.md @@ -0,0 +1,19 @@ +# Aayush Garg + +### Location +Ranchi,Jharkhand,India + +### Academics +- Birla Institute of Techology,Mesra +- Neerja Modi School,Jaipur + +### Non-Coding Interests +- Music +- Sports + +### Why Do You Love Coding? +Because we keep on learning day-by-day + +### Your Favorite Animal +Lion + diff --git a/profiles/Profiles-2019/Alavia_Yahya.md b/profiles/Profiles-2019/Alavia_Yahya.md new file mode 100644 index 0000000..7ef5a1b --- /dev/null +++ b/profiles/Profiles-2019/Alavia_Yahya.md @@ -0,0 +1,25 @@ +# Alavia Yahya + +### Location +Thrissur, Kerala, India + +### Associated Organization +- Government Engineering College, Thrissur + +### Academics +- Kendriya Vidyalaya Puranattukara, Thrissur +- Government Engineering College, Thrissur + +### Non-Coding Interests +- Watching F.R.I.E.N.D.S +- Youtube +- Music + +### Why Do You Love Coding? +Coding is everything. My dream is to work in Google. + +### Your Favorite Animal +Cat + +### Your Favorite Dessert +Panji Mittayi diff --git a/profiles/Profiles-2019/Amintas_Victor.md b/profiles/Profiles-2019/Amintas_Victor.md new file mode 100644 index 0000000..11b0ef7 --- /dev/null +++ b/profiles/Profiles-2019/Amintas_Victor.md @@ -0,0 +1,22 @@ +# Amintas Victor + +### Location +- Campina Grande, PB, Brazil + +### Academics +- Federal University of Campina Grande + +### Non-Coding Interests +- Psychology +- Philosophy +- Culinary +- Cine + +### Why Do You Love Coding? +I can generate not just products, but also solutions for problems around me. + +### Your Favorite Animal +Cats. + +### Your Favorite Dessert +Pave. diff --git a/profiles/Profiles-2019/Amit_Dutta.md b/profiles/Profiles-2019/Amit_Dutta.md new file mode 100644 index 0000000..6289413 --- /dev/null +++ b/profiles/Profiles-2019/Amit_Dutta.md @@ -0,0 +1,25 @@ +# Amit Dutta + +### Location +Ranchi, Jharkhand, India + +### Associated Organization +- Student at Birla Institute of Technology, Mesra, Jharkhand +- Member at IEEE Student's Chapter BIT Mesra + +### Academics +- Sophomore in CSE from Birla Institue Of Technology, Mesra, Jharkhand +- Completed High school from Delhi Public School, Ranchi, Jharkhand + +### Non-Coding Interests +- Playing Basketball +- Listening Music + +### Why Do You Love Coding? +I was introduced to coding(programming in general) in my freshman year and I instantly fell in love with it. The power to build anything right after you learn something was truly fascinating. + +### Your Favorite Animal +Husky + +### Your Favorite Dessert +Black Forest Cake diff --git a/profiles/Profiles-2019/Anjali_Ashokan.md b/profiles/Profiles-2019/Anjali_Ashokan.md new file mode 100644 index 0000000..ad8548a --- /dev/null +++ b/profiles/Profiles-2019/Anjali_Ashokan.md @@ -0,0 +1,23 @@ +# Anjali Ashokan + +### Location +Kerala, India + +### Associated Organization +- Sri Kerala Varma College + +### Academics +- MA English (Literature) + +### Non-Coding Interests +- Singing +- Art + +### Why Do You Love Coding? +My brother is cool. + +### Your Favorite Animal +Humans + +### Your Favorite Dessert +Sahara diff --git a/profiles/Profiles-2019/Aswin_Gopinathan.md b/profiles/Profiles-2019/Aswin_Gopinathan.md new file mode 100644 index 0000000..bf598a7 --- /dev/null +++ b/profiles/Profiles-2019/Aswin_Gopinathan.md @@ -0,0 +1,25 @@ +# First and Last Name +Aswin Gopinathan + +### Location +Bangalore,Karnataka,India + +### Associated Organization +- Girlscript Bangalore +- Glug MVIT + +### Academics +- KV No. 1 Calicut (1st to 12th grade) +- SirMVIT (UG) + +### Non-Coding Interests +- Cricket + +### Why Do You Love Coding? +My Interest to build something for the society + +### Your Favorite Animal +Dog + +### Your Favorite Dessert +Anything :) diff --git a/profiles/Profiles-2019/Bharath_Acchu.md b/profiles/Profiles-2019/Bharath_Acchu.md new file mode 100644 index 0000000..0018002 --- /dev/null +++ b/profiles/Profiles-2019/Bharath_Acchu.md @@ -0,0 +1,26 @@ +# Bharath Acchu + +### Location +Banglore,Karnataka,India + +### Associated Organization +- Sir MVIT + +### Academics +- Sri Devraj Urs International Residential school +- Sir MVIT + +### Non-Coding Interests +- Watching college basketball and The Office +- Music +- Baking +- All things Harry Potter + +### Why Do You Love Coding? +I love being able to create anything that comes to mind, whether it may solve a tiny problem or a massive one! + +### Your Favorite Animal +Elephants and Pandas + +### Your Favorite Dessert +Chocolate chip cookies! diff --git a/profiles/Profiles-2019/Bruhn_Khan.md b/profiles/Profiles-2019/Bruhn_Khan.md new file mode 100644 index 0000000..304c002 --- /dev/null +++ b/profiles/Profiles-2019/Bruhn_Khan.md @@ -0,0 +1,25 @@ +# Bruhn Khan + +### Location +Sofia, Bulgaria + +### Associated Organization +- MVIT + +### Academics +- MVIT + +### Non-Coding Interests +- Watching college basketball and The Office +- Music +- Baking +- All things Harry Potter + +### Why Do You Love Coding? +I love being able to create anything that comes to mind, whether it may solve a tiny problem or a massive one! + +### Your Favorite Animal +Monkeys + +### Your Favorite Dessert +Red fruit Cake diff --git a/profiles/Profiles-2019/Doni_Kusuma.md b/profiles/Profiles-2019/Doni_Kusuma.md new file mode 100644 index 0000000..9e9b3b1 --- /dev/null +++ b/profiles/Profiles-2019/Doni_Kusuma.md @@ -0,0 +1,24 @@ +# Doni Adi Kusuma + +### Location +Semarang, Central Java, Indonesia + +### Associated Organization +- Students + +### Academics +- Semarang State University + +### Non-Coding Interests +- Watching Anime(s) +- Reading Manga(s) +- Listening some japanese music + +### Why Do You Love Coding? +I want to make my own games and sell it on steam or maybe console exclusive + +### Your Favorite Animal +Cat + +### Your Favorite Dessert +Pudding diff --git a/profiles/Profiles-2019/Ellie_Chen.md b/profiles/Profiles-2019/Ellie_Chen.md new file mode 100644 index 0000000..036bcc0 --- /dev/null +++ b/profiles/Profiles-2019/Ellie_Chen.md @@ -0,0 +1,24 @@ +# Ellie Chen + +### Location +New York, NY, USA + +### Associated Organization +- CUNY College of Staten Island +- CUNY Tech Prep + +### Academics +- CUNY College of Staten Island + +### Non-Coding Interests +- Baking +- Management + +### Why Do You Love Coding? +I love coding because I love making other people's lives easier through software. + +### Your Favorite Animal +Dog + +### Your Favorite Dessert +Donuts \ No newline at end of file diff --git a/profiles/Profiles-2019/Ferib_Hellscream.md b/profiles/Profiles-2019/Ferib_Hellscream.md new file mode 100644 index 0000000..84f0aa3 --- /dev/null +++ b/profiles/Profiles-2019/Ferib_Hellscream.md @@ -0,0 +1,16 @@ +# Ferib Hellscream + +### Location +Belgium + +### Non-Coding Interests +- Gym + +### Why Do You Love Coding? +To automate my habits and be even more lazy + +### Your Favorite Animal +Penguins ;) + +### Your Favorite Dessert +Pizza Hawaii (with pineapple) \ No newline at end of file diff --git a/profiles/Profiles-2019/Gangadhar_Bhuvan.md b/profiles/Profiles-2019/Gangadhar_Bhuvan.md new file mode 100644 index 0000000..e76ead6 --- /dev/null +++ b/profiles/Profiles-2019/Gangadhar_Bhuvan.md @@ -0,0 +1,25 @@ +# Gangadhar Bhuvan + +### Location +Banglore,Karnataka,India + +### Associated Organization +- Presidency university + +### Academics +- Presidency university + +### Non-Coding Interests +- Watching college basketball and The Office +- Music +- Baking +- All things Harry Potter + +### Why Do You Love Coding? +I love being able to create anything that comes to mind, whether it may solve a tiny problem or a massive one! + +### Your Favorite Animal +Elephants + +### Your Favorite Dessert +Chocolate chip cookies! diff --git a/profiles/Profiles-2019/Gildas_Morel_des_Vallons.md b/profiles/Profiles-2019/Gildas_Morel_des_Vallons.md new file mode 100644 index 0000000..f599e9d --- /dev/null +++ b/profiles/Profiles-2019/Gildas_Morel_des_Vallons.md @@ -0,0 +1,25 @@ +# Gildas Morel des Vallons + +### Location +Nantes, France + +### Associated Organization +- SFEIR + +### Academics +- EPITA 2003 + +### Non-Coding Interests +- Video games +- Music / hellfest +- Cinema +- Running + +### Why Do You Love Coding? +I was introduced to coding when I was young + +### Your Favorite Animal +Dog + +### Your Favorite Dessert +Cheesecake \ No newline at end of file diff --git a/profiles/Profiles-2019/Hasan_Iftikhar.md b/profiles/Profiles-2019/Hasan_Iftikhar.md new file mode 100644 index 0000000..671514b --- /dev/null +++ b/profiles/Profiles-2019/Hasan_Iftikhar.md @@ -0,0 +1,23 @@ +# Hasan Iftikhar + +### Location +Delhi, India + +### Associated Organization +- None + +### Academics +- School + +### Non-Coding Interests +- Games +- Movies + +### Why Do You Love Coding? +Building programs and being attached to computer is my dream. Seeing my code work, I feel happy and motivates me to write even better codes. :) + +### Your Favorite Animal +Rhinoceros + +### Your Favorite Dessert +Aflatoon \ No newline at end of file diff --git a/profiles/Profiles-2019/Jennifer_Sanchez.md b/profiles/Profiles-2019/Jennifer_Sanchez.md new file mode 100644 index 0000000..930c5bc --- /dev/null +++ b/profiles/Profiles-2019/Jennifer_Sanchez.md @@ -0,0 +1,25 @@ +# Jennifer Sanchez + +### Location +Madrid, Spain + +### Associated Organization +- None + +### Academics +- College + +### Non-Coding Interests +- Philosophy +- Music + +### Why Do You Love Coding? +I really like the logic of solving puzzles (like Professor Layton, yay! I love that game). + +It's a challenging for me and my brain. I'd love in future to coding something can make easier the life of the people too. + +### Your Favorite Animal +Ducks, and more ducks! + +### Your Favorite Dessert +Puddin :3 \ No newline at end of file diff --git a/profiles/Profiles-2019/Jeremy_Schuurmans.md b/profiles/Profiles-2019/Jeremy_Schuurmans.md new file mode 100644 index 0000000..860862c --- /dev/null +++ b/profiles/Profiles-2019/Jeremy_Schuurmans.md @@ -0,0 +1,26 @@ +# Jeremy Schuurmans + +### Location +Portland, Oregon, United States + +### Associated Organization +- Flatiron School + +### Academics +- Flatiron School + +### Non-Coding Interests +- Reading +- Biking +- Cooking +- Music (especially classical) +- Hanging out with my family + +### Why Do You Love Coding? +I love creating things from scratch. Coding is a lot like cooking for me in that way, making something great out of raw ingredients. + +### Your Favorite Animal +Dog + +### Your Favorite Dessert +Ice Cream diff --git a/profiles/Profiles-2019/Jerrin_Dawny.md b/profiles/Profiles-2019/Jerrin_Dawny.md new file mode 100644 index 0000000..153cea4 --- /dev/null +++ b/profiles/Profiles-2019/Jerrin_Dawny.md @@ -0,0 +1,21 @@ +# Jerrin Dawny + +### Location +India + +### Academics +Karunya University + +### Non-Coding Interests +- Music Reading +- Video Games +- Learning Languages + +### Why Do You Love Coding? +There's nothing more satisfying that getting a machine to solve a problem. + +### Your Favorite Animal +Puppies + +### Your Favorite Dessert +Anything with Chocolate in it! diff --git a/profiles/Profiles-2019/Jonathan_Evason.md b/profiles/Profiles-2019/Jonathan_Evason.md new file mode 100644 index 0000000..9447b12 --- /dev/null +++ b/profiles/Profiles-2019/Jonathan_Evason.md @@ -0,0 +1,22 @@ +# Jonathan Evason + +### Location +Manchester, England + +### Academics +- Salford University + +### Non-Coding Interests +- Music (Playing and Listening) +- Homebrew +- Video Games +- Learning Languages + +### Why Do You Love Coding? +There's nothing more satisfying that getting a machine to solve a problem. + +### Your Favorite Animal +Domestic animal a Dog, wild animal a Snake. + +### Your Favorite Dessert +Anything with Chocolate in it! diff --git a/profiles/Profiles-2019/Julius_Miyumo.md b/profiles/Profiles-2019/Julius_Miyumo.md new file mode 100644 index 0000000..9ecf1fa --- /dev/null +++ b/profiles/Profiles-2019/Julius_Miyumo.md @@ -0,0 +1,23 @@ +# Julius Miyumo + +### Location +Melbourne, Australia + +### Associated Organizatio +- None + +### Academics +- BA Electrical Engineering + +### Non-Coding Interests +- Dance +- Soccer + +### Why Do You Love Coding? +Its like playing video games.... I like playsation. + +### Your Favorite Animal +Eagle + +### Your Favorite Dessert +ice cream diff --git a/profiles/Profiles-2019/Khoerul_Umam.md b/profiles/Profiles-2019/Khoerul_Umam.md new file mode 100644 index 0000000..5456f95 --- /dev/null +++ b/profiles/Profiles-2019/Khoerul_Umam.md @@ -0,0 +1,25 @@ +# Khoerul Umam + +### Location +Brebes, Jawa Tengah, Indonesia + +### Associated Organization +- Computer Science, Universitas Negeri Semarang, Indonesia + +### Academics +- Computer Science, Universitas Negeri Semarang, Indonesia + +### Non-Coding Interests +- Youtube +- Video Editing +- Graphic Designer +- Public Speaking + +### Why Do You Love Coding? +coding is a perfection in logic, I like everything about logic + +### Your Favorite Animal +Cat + +### Your Favorite Dessert +Everthing diff --git a/profiles/Profiles-2019/Lauren_Prentis.md b/profiles/Profiles-2019/Lauren_Prentis.md new file mode 100644 index 0000000..b0ac225 --- /dev/null +++ b/profiles/Profiles-2019/Lauren_Prentis.md @@ -0,0 +1,26 @@ +# First and Last Name +Lauren Prentis + +### Location +Stony Brook, NY, USA + +### Associated Organization +- Stony Brook University + +### Academics +- B.S. at University of Massachuetts, Amherst +- PhD Candidate at Stony Brook University + +### Non-Coding Interests +- Videogames +- Mountain Biking +- American Football + +### Why Do You Love Coding? +I love coding, because I create something that makes my life easier + +### Your Favorite Animal +Two toed sloth + +### Your Favorite Dessert +Chocolate Cheesecake diff --git a/profiles/Profiles-2019/Magnus_Paulsen.md b/profiles/Profiles-2019/Magnus_Paulsen.md new file mode 100644 index 0000000..e0ac3cc --- /dev/null +++ b/profiles/Profiles-2019/Magnus_Paulsen.md @@ -0,0 +1,22 @@ +# Magnus Paulsen + +### Location +Norway + +### Academics +- Norwegian university of science and technology + +### Non-Coding Interests +- Youtube +- Music +- Gaming +- Friends + +### Why Do You Love Coding? +It gives me the satisfaction of creating something that's actually useful + +### Your Favorite Animal +Cat + +### Your Favorite Dessert +Flan diff --git a/profiles/Profiles-2019/Maryama_Kulmie.md b/profiles/Profiles-2019/Maryama_Kulmie.md new file mode 100644 index 0000000..0dbd7e1 --- /dev/null +++ b/profiles/Profiles-2019/Maryama_Kulmie.md @@ -0,0 +1,23 @@ +# Maryama Kulmie + +### Location +Grantsburg, Wisconsin, United States + +### Associated Organization +- None + +### Academics +- High School + +### Non-Coding Interests +- Drawing +- Gaming + +### Why Do You Love Coding? +I love the diverse amount of stuff you can do with code, and how it presents a challenge to those willing to accept it. + +### Your Favorite Animal +Ferrets + +### Your Favorite Dessert +Donuts diff --git a/profiles/Profiles-2019/Morgen_Sudyanto.md b/profiles/Profiles-2019/Morgen_Sudyanto.md new file mode 100644 index 0000000..9b005ca --- /dev/null +++ b/profiles/Profiles-2019/Morgen_Sudyanto.md @@ -0,0 +1,22 @@ +# Morgen Sudyanto + +### Location +Bandung, Indonesia + +### Associated Organization +- Students + +### Academics +- Institut Teknologi Bandung + +### Non-Coding Interests +- dota 2 + +### Why Do You Love Coding? +I enjoy solving algorithmic puzzles. + +### Your Favorite Animal +Dog + +### Your Favorite Dessert +Ice Cream diff --git a/profiles/Profiles-2019/Naveen_Reddy.md b/profiles/Profiles-2019/Naveen_Reddy.md new file mode 100644 index 0000000..a9f235d --- /dev/null +++ b/profiles/Profiles-2019/Naveen_Reddy.md @@ -0,0 +1,24 @@ +# Naveen Reddy + +### Location +Guntur , Andhra Pradesh , India + +### Associated Organization +- Student at National Institute of Technology , Durgapur + +### Academics +- Completed High school from Raman Bhavan , Vijayawada , Andhra Pradesh + +### Non-Coding Interests +- Playing Cricket +- Listening Music + +### Why Do You Love Coding? +I was introduced to coding (programming in general) in my freshman year and I instantly fell in love with it. The power to build anything right after you learn something was truly fascinating. + +### Your Favorite Animal +Tiger + +### Your Favorite Dessert +Chocolate Ice-Cream + diff --git a/profiles/Profiles-2019/Nikola_Dionisiev.md b/profiles/Profiles-2019/Nikola_Dionisiev.md new file mode 100644 index 0000000..939ff76 --- /dev/null +++ b/profiles/Profiles-2019/Nikola_Dionisiev.md @@ -0,0 +1,22 @@ +# Nikola Dionisiev + +### Location +- Bulgaria, Sofia + +### Academics +- New Bulgarian University + +### Non-Coding Interests +- Psychology +- Philosophy +- Science +- Chess + +### Why Do You Love Coding? +You have the free to do whatever you want. + +### Your Favorite Animal +Every animal + +### Your Favorite Dessert +I don't eat desserts diff --git a/profiles/Profiles-2019/Pratilipi_Aich.md b/profiles/Profiles-2019/Pratilipi_Aich.md new file mode 100644 index 0000000..62fe368 --- /dev/null +++ b/profiles/Profiles-2019/Pratilipi_Aich.md @@ -0,0 +1,28 @@ +# Pratilipi Aich + +### Location +Bangalore, Karnataka, India + +### Associated Organization +- Sir M. Visvesvaraya Institute of Technology, Bangalore + +### Academics +- Kendriya Vidyalaya DRDO, Banaglore +- Sir M. Visvesvaraya Institute of Technology, Bangalore + +### Non-Coding Interests +- Reading +- Singing +- Painting and Sketching +- Dancing +- Writing + +### Why Do You Love Coding? +Coding lets me build something worth developing. + +### Your Favorite Animal +Dog ;) + +### Your Favorite Dessert +- Ice Cream +- Chocolate :P diff --git a/profiles/Profiles-2019/Priyanshu_Dhariwal.md b/profiles/Profiles-2019/Priyanshu_Dhariwal.md new file mode 100644 index 0000000..44a6923 --- /dev/null +++ b/profiles/Profiles-2019/Priyanshu_Dhariwal.md @@ -0,0 +1,23 @@ +# Priyanshu Dhariwal + +### Location +New Delhi, India + +### Associated Organization +- None + +### Academics +- Air Force Golden Jubilee Institute (12th Standard) + +### Non-Coding Interests +- Football +- Watching movies + +### Why Do You Love Coding? +Coding improves my problem solving skills and i enjoy it as well. + +### Your Favorite Animal +Tiger + +### Your Favorite Dessert +Ice Cream diff --git a/profiles/Profiles-2019/Raghav_Patnecha.md b/profiles/Profiles-2019/Raghav_Patnecha.md new file mode 100644 index 0000000..a26c9cb --- /dev/null +++ b/profiles/Profiles-2019/Raghav_Patnecha.md @@ -0,0 +1,22 @@ +# Raghav Patnecha + +### Location +- Pune, Maharashtra, India + +### Academics +- Symbiosis International University + +### Non-Coding Interests +- Music Production +- Philosophy +- Culinary +- Dancing + +### Why Do You Love Coding? +Because it is the only thing after films which can help you turn imaginations into reality. + +### Your Favorite Animal +Pandas. + +### Your Favorite Dessert +Macarons. diff --git a/profiles/Profiles-2019/Saumya_Agnihotri.md b/profiles/Profiles-2019/Saumya_Agnihotri.md new file mode 100644 index 0000000..87b6358 --- /dev/null +++ b/profiles/Profiles-2019/Saumya_Agnihotri.md @@ -0,0 +1,26 @@ +# Saumya Agnihotri + +### Location +Kanpur, Uttar Pradesh, India + +### Associated Organization +- PSIT Kanpur + +### Academics +- Pranveer Singh Institute Of Technology, Kanpur +- Kendriya Vidyalaya OEF, Kanpur + +### Non-Coding Interests +- Reading Novels +- Sketching +- Travelling + + +### Why Do You Love Coding? +I love being able to create anything that comes to mind, whether it may solve a tiny problem or a massive one! + +### Your Favorite Animal +Rabbit + +### Your Favorite Dessert +Chocolate chip cookies! diff --git a/profiles/Profiles-2019/Shrangi_Soni.md b/profiles/Profiles-2019/Shrangi_Soni.md new file mode 100644 index 0000000..125d5c5 --- /dev/null +++ b/profiles/Profiles-2019/Shrangi_Soni.md @@ -0,0 +1,22 @@ +# Shrangi Soni + +### Location +- Indore, India + +### Academics +- Indore Professional Studies + +### Non-Coding Interests +- Swimming +- Gaming +- Music +- Lawn Tennis + +### Why Do You Love Coding? +I love solving problems and creating things from ideas. + +### Your Favorite Animal +Owl and Python + +### Your Favorite Dessert +Rasgulla :D diff --git a/profiles/Profiles-2019/Shreya_P.md b/profiles/Profiles-2019/Shreya_P.md new file mode 100644 index 0000000..d640889 --- /dev/null +++ b/profiles/Profiles-2019/Shreya_P.md @@ -0,0 +1,23 @@ +# Shreya P + +### Location +BANGALORE, KARNATAKA,INDIA + +### Associated Organization +- NONE + +### Academics +- SMVIT + + +### Non-Coding Interests +- DANCING +- READING +### Why Do You Love Coding? +I love challenges and problem solving. + +### Your Favorite Animal +DOGS + +### Your Favorite Dessert +ICE CREAMS diff --git a/profiles/Profiles-2019/Shrikha.md b/profiles/Profiles-2019/Shrikha.md new file mode 100644 index 0000000..e02c511 --- /dev/null +++ b/profiles/Profiles-2019/Shrikha.md @@ -0,0 +1,26 @@ +# Shrikha + +### Location +Delhi, India + +### Associated Organization +- None + +### Academics +- Indian Institute of Technology + +### Non-Coding Interests +- Sketching +- Watching movies mainly Sci-Fi +- Solving puzzles +- Reading blogs, books. +- Listening to music + +### Why Do You Love Coding? +- Coding is very similar to solving puzzles. It is challenging. It enchances problem solving ability. + +### Your Favorite Animal +Sea lion + +### Your Favorite Dessert +Chocolate truffle Cake \ No newline at end of file diff --git a/profiles/Profiles-2019/Souvik_Mondal.md b/profiles/Profiles-2019/Souvik_Mondal.md new file mode 100644 index 0000000..0f4e51e --- /dev/null +++ b/profiles/Profiles-2019/Souvik_Mondal.md @@ -0,0 +1,18 @@ +# Souvik Mondal + +### Location +Kolkata, India + +### Non-Coding Interests +- Music +- sports +- books + +### Why Do You Love Coding? +to make lives better + +### Your Favorite Animal +Chitah + +### Your Favorite Dessert +frozen yoghurt diff --git a/profiles/Profiles-2019/Xaca_Rana.md b/profiles/Profiles-2019/Xaca_Rana.md new file mode 100644 index 0000000..a7b180f --- /dev/null +++ b/profiles/Profiles-2019/Xaca_Rana.md @@ -0,0 +1,24 @@ +# Xaca Rana + +### Location +- Medellin, Colombia + +### Academics +- Universidad Pontificia Bolivariana + +### Non-Coding Interests +- Diseño gráfico +- Spinning +- Gaffiti +- Libros +- Dibujo + +### Why Do You Love Coding? +La mejor forma de aprender es enseñar, me gusta programar y sobretodo enseñar a programar. +Coding love , Progra-amando + +### Your Favorite Animal +Perro + +### Your Favorite Dessert +Milhoja \ No newline at end of file diff --git a/profiles/Profiles-2019/Yathin_Babu.md b/profiles/Profiles-2019/Yathin_Babu.md new file mode 100644 index 0000000..48d0434 --- /dev/null +++ b/profiles/Profiles-2019/Yathin_Babu.md @@ -0,0 +1,20 @@ +# Yathin Babu + +### Location +- Tumkur, Karnataka, India + +### Academics +- Channabasaveshwara Institute of Techonology + +### Non-Coding Interests +- Space enthusiastic +- Agriculture + +### Why Do You Love Coding? +I love to learn about websites and create it. + +### Your Favorite Animal +Siberian husky + +### Your Favorite Dessert +Jamun \ No newline at end of file diff --git a/profiles/Profiles-2019/Yves_Courteau.md b/profiles/Profiles-2019/Yves_Courteau.md new file mode 100644 index 0000000..7f93c6a --- /dev/null +++ b/profiles/Profiles-2019/Yves_Courteau.md @@ -0,0 +1,23 @@ +# Yves Courteau + +### Location +Trois-Rivieres, Quebec, Canada + +### Associated Organization +- Will be student at UQTR university + +### Academics +- Will be student soon + +### Non-Coding Interests +- Japanese anime +- Listening Music and watching movies + +### Why Do You Love Coding? +I was introduced to coding when I was young + +### Your Favorite Animal +Cat + +### Your Favorite Dessert +All what my wife do \ No newline at end of file