From 119621157b82d123f27db8995f0ba853ddcdea49 Mon Sep 17 00:00:00 2001 From: Ananya Singh <32653321+ananya1304@users.noreply.github.com> Date: Mon, 1 Oct 2018 18:06:06 +0530 Subject: [PATCH 01/39] Added name Added name to the contributors list. --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 2d0bfe0..572fb77 100644 --- a/README.md +++ b/README.md @@ -20,6 +20,7 @@ This repository is for anyone to create pull requests during Hacktoberfest 2018, ## Contributors List Start adding your names here: +Ananya ### Example Profile - I'm an example that you can copy, if you want :) From 15d1e89dcbfdc374fe32c57c04c9a8902f97a2be Mon Sep 17 00:00:00 2001 From: "Maurice T. Meyer" Date: Sun, 30 Sep 2018 23:29:17 +0200 Subject: [PATCH 02/39] Added mauricetmeyer.c to code samples --- code/mauricetmeyer.c | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 code/mauricetmeyer.c diff --git a/code/mauricetmeyer.c b/code/mauricetmeyer.c new file mode 100644 index 0000000..d74b779 --- /dev/null +++ b/code/mauricetmeyer.c @@ -0,0 +1,40 @@ +/** + * mauricetmeyer.c + * + * Author: Maurice T. Meyer + * E-Mail: maurice@lavireo.com + * + * Date: 01-10-2018 + */ + + +#include + +static char hello_world[] = { + 0x48, + 0x65, + 0x6c, + 0x6c, + 0x6f, + 0x2c, + 0x20, + 0x57, + 0x6f, + 0x72, + 0x6c, + 0x64, + 0x21, + 0xA, + 0x0 +}; + +int +main (void) +{ + char* ptr = hello_world; + do + { + printf("%c", *ptr++); + } while(*ptr != 0); + return 0; +} From 0b569633ea5446e44c4d17fb8ea8f78127522093 Mon Sep 17 00:00:00 2001 From: Aditya Choudhary Date: Mon, 1 Oct 2018 10:02:38 +0530 Subject: [PATCH 03/39] Create adich23.py --- code/adich23.py | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 code/adich23.py diff --git a/code/adich23.py b/code/adich23.py new file mode 100644 index 0000000..da0aed1 --- /dev/null +++ b/code/adich23.py @@ -0,0 +1,3 @@ +## +print('Hello, world!') +## From 9d2ba18844de1a595f8d98304b27eef5aaf72975 Mon Sep 17 00:00:00 2001 From: Ashik Paul Date: Mon, 1 Oct 2018 11:43:22 +0530 Subject: [PATCH 04/39] Create Ashik.js --- code/Ashik.js | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 code/Ashik.js diff --git a/code/Ashik.js b/code/Ashik.js new file mode 100644 index 0000000..c1cab36 --- /dev/null +++ b/code/Ashik.js @@ -0,0 +1,2 @@ +document.write("Hello World!"); +document.write("I am Ashik Paul. I am a Web Developer"); From 2e610d64e3ce6476ecb06b625dc8f84faa981426 Mon Sep 17 00:00:00 2001 From: BenTechy66 Date: Mon, 1 Oct 2018 08:36:26 +0100 Subject: [PATCH 05/39] Add me to README :) --- README.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/README.md b/README.md index 2d0bfe0..e1d4c00 100644 --- a/README.md +++ b/README.md @@ -31,6 +31,15 @@ Start adding your names here: [![tumblr-alt][tumblr-img]](https://example.tumblr.com) [![dribbble-alt][dribbble-img]](https://dribbble.com/example) [![github-alt][github-img]](https://github.com/example) + +### BenTechy66 +- I am a young developer in England interested in node.js, python, C, and front-end web development frameworks +- I'm currently a student! +- My hobbies include: + - Coding + - Gaming + - ~~Having a social life~~ + [![github-alt][github-img]](https://github.com/BenTechy66) ## How to Contribute From 0b19861c7066e4e4c956404dce20966c1508eeba Mon Sep 17 00:00:00 2001 From: dashaw92 Date: Mon, 1 Oct 2018 03:55:54 -0400 Subject: [PATCH 06/39] Add dashaw92.rs --- code/dashaw92.rs | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 code/dashaw92.rs diff --git a/code/dashaw92.rs b/code/dashaw92.rs new file mode 100644 index 0000000..f33fb97 --- /dev/null +++ b/code/dashaw92.rs @@ -0,0 +1,4 @@ +fn main() { + println!("Hello, world! I am dashaw92."); + println!("I am a young adult interested in computer science."); +} From 6b8a6a667f2ff38c14d24dc4aba4d7b4292541ab Mon Sep 17 00:00:00 2001 From: Karen Date: Mon, 1 Oct 2018 21:21:21 +1000 Subject: [PATCH 07/39] add Karen Geerts as contributor --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index e1d4c00..b300b90 100644 --- a/README.md +++ b/README.md @@ -20,6 +20,9 @@ This repository is for anyone to create pull requests during Hacktoberfest 2018, ## Contributors List Start adding your names here: +- Karen Geerts. I work for REA (https://www.rea-group.com/IRM/content/default.aspx) and am a junior Ruby developer. + [![twitter-alt][twitter-img]](https://twitter.com/GeekRanters) + [![github-alt][github-img]](https://github.com/karengeerts) ### Example Profile - I'm an example that you can copy, if you want :) From c5fa766e912236f648904c4f61c6c761c1674d06 Mon Sep 17 00:00:00 2001 From: Luke Oliff Date: Mon, 1 Oct 2018 05:41:26 -0700 Subject: [PATCH 08/39] Update README.md --- README.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index b300b90..4a0f6c1 100644 --- a/README.md +++ b/README.md @@ -20,8 +20,10 @@ This repository is for anyone to create pull requests during Hacktoberfest 2018, ## Contributors List Start adding your names here: -- Karen Geerts. I work for REA (https://www.rea-group.com/IRM/content/default.aspx) and am a junior Ruby developer. - [![twitter-alt][twitter-img]](https://twitter.com/GeekRanters) + +### Karen Geerts +- I work for REA (https://www.rea-group.com/IRM/content/default.aspx) and am a junior Ruby developer. +- [![twitter-alt][twitter-img]](https://twitter.com/GeekRanters) [![github-alt][github-img]](https://github.com/karengeerts) ### Example Profile From 8a444c50acafc07cac67d1cd40ce6fbdb04f7b24 Mon Sep 17 00:00:00 2001 From: Luke Oliff Date: Mon, 1 Oct 2018 05:44:13 -0700 Subject: [PATCH 09/39] Re-order and add my name as another example --- README.md | 23 ++++++++++++++--------- 1 file changed, 14 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 4a0f6c1..87fd7a5 100644 --- a/README.md +++ b/README.md @@ -21,10 +21,24 @@ This repository is for anyone to create pull requests during Hacktoberfest 2018, Start adding your names here: +### BenTechy66 +- I am a young developer in England interested in node.js, python, C, and front-end web development frameworks +- I'm currently a student! +- My hobbies include: + - Coding + - Gaming + - ~~Having a social life~~ + [![github-alt][github-img]](https://github.com/BenTechy66) + ### Karen Geerts - I work for REA (https://www.rea-group.com/IRM/content/default.aspx) and am a junior Ruby developer. - [![twitter-alt][twitter-img]](https://twitter.com/GeekRanters) [![github-alt][github-img]](https://github.com/karengeerts) + +### Luke Oliff +- Technical Writer working for @auth0 +- [![twitter-alt][twitter-img]](https://twitter.com/mroliff) + [![github-alt][github-img]](https://github.com/lukeoliff) ### Example Profile - I'm an example that you can copy, if you want :) @@ -36,15 +50,6 @@ Start adding your names here: [![tumblr-alt][tumblr-img]](https://example.tumblr.com) [![dribbble-alt][dribbble-img]](https://dribbble.com/example) [![github-alt][github-img]](https://github.com/example) - -### BenTechy66 -- I am a young developer in England interested in node.js, python, C, and front-end web development frameworks -- I'm currently a student! -- My hobbies include: - - Coding - - Gaming - - ~~Having a social life~~ - [![github-alt][github-img]](https://github.com/BenTechy66) ## How to Contribute From 05938253bbc7975088eae7c5d649568dfbce3f1a Mon Sep 17 00:00:00 2001 From: Luke Oliff Date: Mon, 1 Oct 2018 05:54:00 -0700 Subject: [PATCH 10/39] Add better example contribution --- CONTRIBUTING.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index dfec26a..3bbf130 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -9,7 +9,13 @@ That said, suggest ways to contribute include: ### Your name on the readme.md * Fork the project. -* Add your name to the readme.md using the example provided. +* Add your name to the readme.md using this example; +``` +### My Name +- Description about me +- [![twitter-alt][twitter-img]](https://twitter.com/example) + [![github-alt][github-img]](https://github.com/example) +``` * Commit and send a pull request. Bonus points for correctly named branches. ### A code sample From ea8cb5c796464085eaa2bf594f32b842ed992c7a Mon Sep 17 00:00:00 2001 From: bsilagani Date: Mon, 1 Oct 2018 18:34:28 +0530 Subject: [PATCH 11/39] typo fix --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 87fd7a5..5231d96 100644 --- a/README.md +++ b/README.md @@ -5,14 +5,14 @@ ![GitHub](https://img.shields.io/github/license/my-first-pr/hacktoberfest-2018.svg) ![GitHub forks](https://img.shields.io/github/forks/my-first-pr/hacktoberfest-2018.svg) ![GitHub issues](https://img.shields.io/github/issues/my-first-pr/hacktoberfest-2018.svg) -![GitHub pull requests](https://img.shields.io/github/issues-pr/my-first-pr/hacktoberfest-2018.svg) -![GitHub contributors](https://img.shields.io/github/contributors/my-first-pr/hacktoberfest-2018.svg) +![GitHub pull requests](https://img.shields.io/github/issues-pr/my-first-pr/hacktoberfest-2018.svg) +![GitHub contributors](https://img.shields.io/github/contributors/my-first-pr/hacktoberfest-2018.svg) ![GitHub commit activity the past week, 4 weeks, year](https://img.shields.io/github/commit-activity/w/my-first-pr/hacktoberfest-2018.svg) ![GitHub last commit](https://img.shields.io/github/last-commit/my-first-pr/hacktoberfest-2018.svg) ![GitHub top language](https://img.shields.io/github/languages/top/my-first-pr/hacktoberfest-2018.svg) ![GitHub language count](https://img.shields.io/github/languages/count/my-first-pr/hacktoberfest-2018.svg) -This repository is for anyone to create pull requests during Hacktoberfest 2018, with their name, code samples, etc. Any PRs outside of hacktoberfest will still be considered, but may not count towards your hacktofebest contributions. +This repository is for anyone to create pull requests during Hacktoberfest 2018, with their name, code samples, etc. Any PRs outside of hacktoberfest will still be considered, but may not count towards your hacktoberfest contributions. ![My First PR: Hacktoberfest](https://my-first-pr.github.io/assets/images/undraw_fall_is_coming_dg3x.svg) ![Hacktoberfest 2018](https://my-first-pr.github.io/assets/images/Hacktoberfest_2018_logo_lockup.png) @@ -27,14 +27,14 @@ Start adding your names here: - My hobbies include: - Coding - Gaming - - ~~Having a social life~~ + - ~~Having a social life~~ [![github-alt][github-img]](https://github.com/BenTechy66) ### Karen Geerts - I work for REA (https://www.rea-group.com/IRM/content/default.aspx) and am a junior Ruby developer. - [![twitter-alt][twitter-img]](https://twitter.com/GeekRanters) [![github-alt][github-img]](https://github.com/karengeerts) - + ### Luke Oliff - Technical Writer working for @auth0 - [![twitter-alt][twitter-img]](https://twitter.com/mroliff) From 98795565121242b0e6236ef0c66bac0f486dffaf Mon Sep 17 00:00:00 2001 From: duongoku Date: Mon, 1 Oct 2018 20:14:39 +0700 Subject: [PATCH 12/39] Fix typo and add my name in README.md --- README.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 87fd7a5..3758482 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ ![GitHub top language](https://img.shields.io/github/languages/top/my-first-pr/hacktoberfest-2018.svg) ![GitHub language count](https://img.shields.io/github/languages/count/my-first-pr/hacktoberfest-2018.svg) -This repository is for anyone to create pull requests during Hacktoberfest 2018, with their name, code samples, etc. Any PRs outside of hacktoberfest will still be considered, but may not count towards your hacktofebest contributions. +This repository is for anyone to create pull requests during Hacktoberfest 2018, with their name, code samples, etc. Any PRs outside of hacktoberfest will still be considered, but may not count towards your hacktoberbest contributions. ![My First PR: Hacktoberfest](https://my-first-pr.github.io/assets/images/undraw_fall_is_coming_dg3x.svg) ![Hacktoberfest 2018](https://my-first-pr.github.io/assets/images/Hacktoberfest_2018_logo_lockup.png) @@ -40,6 +40,13 @@ Start adding your names here: - [![twitter-alt][twitter-img]](https://twitter.com/mroliff) [![github-alt][github-img]](https://github.com/lukeoliff) +### duongoku +- I'm a student and I'm in last year of highschool. +- I'm interested in competitive programming, physics, calculus and tech stuff. +- I also like listening to music and playing games. +- [![twitter-alt][twitter-img]](https://twitter.com/duongoku) + [![github-alt][github-img]](https://github.com/duongoku) + ### Example Profile - I'm an example that you can copy, if you want :) - I work for... From 0779f3eabf8c4cbf9b6b5c66c66f667dbe14fae2 Mon Sep 17 00:00:00 2001 From: Luke Oliff Date: Mon, 1 Oct 2018 06:19:26 -0700 Subject: [PATCH 13/39] Update README.md --- README.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 6f2fdec..d018a9e 100644 --- a/README.md +++ b/README.md @@ -30,6 +30,13 @@ Start adding your names here: - ~~Having a social life~~ [![github-alt][github-img]](https://github.com/BenTechy66) +### duongoku +- I'm a student and I'm in last year of highschool. +- I'm interested in competitive programming, physics, calculus and tech stuff. +- I also like listening to music and playing games. +- [![twitter-alt][twitter-img]](https://twitter.com/duongoku) + [![github-alt][github-img]](https://github.com/duongoku) + ### Karen Geerts - I work for REA (https://www.rea-group.com/IRM/content/default.aspx) and am a junior Ruby developer. - [![twitter-alt][twitter-img]](https://twitter.com/GeekRanters) @@ -40,13 +47,6 @@ Start adding your names here: - [![twitter-alt][twitter-img]](https://twitter.com/mroliff) [![github-alt][github-img]](https://github.com/lukeoliff) -### duongoku -- I'm a student and I'm in last year of highschool. -- I'm interested in competitive programming, physics, calculus and tech stuff. -- I also like listening to music and playing games. -- [![twitter-alt][twitter-img]](https://twitter.com/duongoku) - [![github-alt][github-img]](https://github.com/duongoku) - ### Example Profile - I'm an example that you can copy, if you want :) - I work for... From d803f6704feccb4bc6bf44daaaa15935af61f8b5 Mon Sep 17 00:00:00 2001 From: Gursimran Singh Date: Mon, 1 Oct 2018 18:51:42 +0530 Subject: [PATCH 14/39] add --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index d018a9e..6ef0e37 100644 --- a/README.md +++ b/README.md @@ -47,6 +47,10 @@ Start adding your names here: - [![twitter-alt][twitter-img]](https://twitter.com/mroliff) [![github-alt][github-img]](https://github.com/lukeoliff) +### gursimran +- I am a young developer in india +- I'm currently a student! + ### Example Profile - I'm an example that you can copy, if you want :) - I work for... From 4421c49db88c551a53819ae4a669b54a9312bf3e Mon Sep 17 00:00:00 2001 From: Witaya Tospitakkul Date: Mon, 1 Oct 2018 20:24:12 +0700 Subject: [PATCH 15/39] add helloworld in golang --- code/wtospit.go | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 code/wtospit.go diff --git a/code/wtospit.go b/code/wtospit.go new file mode 100644 index 0000000..57f7ca4 --- /dev/null +++ b/code/wtospit.go @@ -0,0 +1,10 @@ +package main + +import ( + "fmt" +) + +func main() { + fmt.Println("Hello from Thailand") +} + From 9e1fd68cc0f0ea77ab4e6545dd25b89fc2800901 Mon Sep 17 00:00:00 2001 From: Rahman Younus Date: Mon, 1 Oct 2018 14:32:50 +0100 Subject: [PATCH 16/39] added code sample and updated readme --- README.md | 19 +++++++++++++++---- code/rahman95.php | 19 +++++++++++++++++++ 2 files changed, 34 insertions(+), 4 deletions(-) create mode 100644 code/rahman95.php diff --git a/README.md b/README.md index 87fd7a5..43c87aa 100644 --- a/README.md +++ b/README.md @@ -5,8 +5,8 @@ ![GitHub](https://img.shields.io/github/license/my-first-pr/hacktoberfest-2018.svg) ![GitHub forks](https://img.shields.io/github/forks/my-first-pr/hacktoberfest-2018.svg) ![GitHub issues](https://img.shields.io/github/issues/my-first-pr/hacktoberfest-2018.svg) -![GitHub pull requests](https://img.shields.io/github/issues-pr/my-first-pr/hacktoberfest-2018.svg) -![GitHub contributors](https://img.shields.io/github/contributors/my-first-pr/hacktoberfest-2018.svg) +![GitHub pull requests](https://img.shields.io/github/issues-pr/my-first-pr/hacktoberfest-2018.svg) +![GitHub contributors](https://img.shields.io/github/contributors/my-first-pr/hacktoberfest-2018.svg) ![GitHub commit activity the past week, 4 weeks, year](https://img.shields.io/github/commit-activity/w/my-first-pr/hacktoberfest-2018.svg) ![GitHub last commit](https://img.shields.io/github/last-commit/my-first-pr/hacktoberfest-2018.svg) ![GitHub top language](https://img.shields.io/github/languages/top/my-first-pr/hacktoberfest-2018.svg) @@ -27,19 +27,29 @@ Start adding your names here: - My hobbies include: - Coding - Gaming - - ~~Having a social life~~ + - ~~Having a social life~~ [![github-alt][github-img]](https://github.com/BenTechy66) ### Karen Geerts - I work for REA (https://www.rea-group.com/IRM/content/default.aspx) and am a junior Ruby developer. - [![twitter-alt][twitter-img]](https://twitter.com/GeekRanters) [![github-alt][github-img]](https://github.com/karengeerts) - + ### Luke Oliff - Technical Writer working for @auth0 - [![twitter-alt][twitter-img]](https://twitter.com/mroliff) [![github-alt][github-img]](https://github.com/lukeoliff) +### rahman95 +- Software Developer born in Germany raised in the UK. 🇩🇪 🇬🇧 +- Hobbies include: + - Coding + - Tinkering + - Photography + - Gastronomy +- [![twitter-alt][twitter-img]](https://twitter.com/rahman_younus) + [![github-alt][github-img]](https://github.com/rahman95) + ### Example Profile - I'm an example that you can copy, if you want :) - I work for... @@ -51,6 +61,7 @@ Start adding your names here: [![dribbble-alt][dribbble-img]](https://dribbble.com/example) [![github-alt][github-img]](https://github.com/example) + ## How to Contribute Please read our [contributing](CONTRIBUTING.md) guidelines before making your pull request. diff --git a/code/rahman95.php b/code/rahman95.php new file mode 100644 index 0000000..1c5838a --- /dev/null +++ b/code/rahman95.php @@ -0,0 +1,19 @@ +name = $name; + } + + public function sayHelloWorld() + { + return "Hello World from {$this->name} 👋"; + } +} + +$class = new HelloWorld('rahman95'); +echo $class->sayHelloWorld(); From a7545bf4d009ad993934663f96f8a9028bd223e3 Mon Sep 17 00:00:00 2001 From: Shubham Nishad Date: Mon, 1 Oct 2018 19:05:11 +0530 Subject: [PATCH 17/39] Update README.md --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index 6ef0e37..164eea8 100644 --- a/README.md +++ b/README.md @@ -51,6 +51,12 @@ Start adding your names here: - I am a young developer in india - I'm currently a student! +### Shubham Nishad +- Fourth year student in Computer Science. +- you can check my site [https://shubhamnishad.com/](https://shubhamnishad.com/) +- [![twitter-alt][twitter-img]](https://twitter.com/shubhamnishad97) + [![github-alt][github-img]](https://github.com/shubhamnishad97) + ### Example Profile - I'm an example that you can copy, if you want :) - I work for... From 7cedbdeb2031d81312c84d31a68b6d2cfb74a147 Mon Sep 17 00:00:00 2001 From: lunamana104 Date: Mon, 1 Oct 2018 20:59:23 +0700 Subject: [PATCH 18/39] Add lunamana104 to README.md --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index 71e5bcb..2aef417 100644 --- a/README.md +++ b/README.md @@ -47,6 +47,12 @@ Start adding your names here: - [![twitter-alt][twitter-img]](https://twitter.com/mroliff) [![github-alt][github-img]](https://github.com/lukeoliff) +### lunamana104 +- I am currently a student in highschool. +- I love physics, technology and IT-related stuff. +- I also like listening to music and watching movies. +- [![github-alt][github-img]](https://github.com/lunamana104) + ### gursimran - I am a young developer in india - I'm currently a student! From b1572c19036228177c4ce0a46d083448f0872603 Mon Sep 17 00:00:00 2001 From: cynferdd Date: Mon, 1 Oct 2018 16:02:49 +0200 Subject: [PATCH 19/39] udpated readme.md to add Cynferdd name, description, and links to twitter and github --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index 71e5bcb..46752fc 100644 --- a/README.md +++ b/README.md @@ -67,6 +67,12 @@ Start adding your names here: - [![twitter-alt][twitter-img]](https://twitter.com/shubhamnishad97) [![github-alt][github-img]](https://github.com/shubhamnishad97) +### Mathieu Jolivet (Cynferdd) +- Developper as a hobby since 1996, professionaly since 2005. +- Bass player, I also love reading, photography and beer. +- [![twitter-alt][twitter-img]](https://twitter.com/cynferdd) + [![github-alt][github-img]](https://github.com/cynferdd) + ### Example Profile - I'm an example that you can copy, if you want :) - I work for... From da016b3828ea8d09942bb9a5867ad5648244bae8 Mon Sep 17 00:00:00 2001 From: cynferdd Date: Mon, 1 Oct 2018 16:09:14 +0200 Subject: [PATCH 20/39] adding fibonacci.rb a fibonacci code in ruby. --- code/fibonacci.rb | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 code/fibonacci.rb diff --git a/code/fibonacci.rb b/code/fibonacci.rb new file mode 100644 index 0000000..72c9d8c --- /dev/null +++ b/code/fibonacci.rb @@ -0,0 +1,21 @@ +##################### +# Fibonacci in Ruby # +##################### + # main fibonacci function +def CalculateFibonacci(n) + if (n == 0) + return 0 + elsif (n <= 2) + return 1 + else + return CalculateFibonacci(n - 1) + CalculateFibonacci(n - 2) + end +end + # execution with check regarding the amount of args +if(ARGV.length < 1) + puts "argument needed. term number to iterate to, with 0 as the first term number" +else + for arg in ARGV + puts arg.to_s + ": " + CalculateFibonacci(arg).to_s + end +end From cbd99af202c75c1144a85c365830f05e6a2458f7 Mon Sep 17 00:00:00 2001 From: Anush Indrajith Date: Mon, 1 Oct 2018 20:41:13 +0530 Subject: [PATCH 21/39] anush93 --- README.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/README.md b/README.md index 71e5bcb..7be2eb7 100644 --- a/README.md +++ b/README.md @@ -61,6 +61,15 @@ Start adding your names here: - [![twitter-alt][twitter-img]](https://twitter.com/rahman_younus) [![github-alt][github-img]](https://github.com/rahman95) + ### Anush93 + - I am a young developer in Sri Lanka + - I'm currently a undergraduate + - My hobbies include: + - Coding + - Gaming + -Nature Photography + [![github-alt][github-img]](https://github.com/Anush93) + ### Shubham Nishad - Fourth year student in Computer Science. - you can check my site [https://shubhamnishad.com/](https://shubhamnishad.com/) From 049b48e39f7b76137d399ba393eca96f28a34a30 Mon Sep 17 00:00:00 2001 From: Aditya Choudhary Date: Mon, 1 Oct 2018 20:46:42 +0530 Subject: [PATCH 22/39] Update README.md --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index 71e5bcb..5cb085f 100644 --- a/README.md +++ b/README.md @@ -66,6 +66,11 @@ Start adding your names here: - you can check my site [https://shubhamnishad.com/](https://shubhamnishad.com/) - [![twitter-alt][twitter-img]](https://twitter.com/shubhamnishad97) [![github-alt][github-img]](https://github.com/shubhamnishad97) + +### Aditya Choudhary +- Software Engineer in India +- [![twitter-alt][twitter-img]](https://twitter.com/webmasteradi) + [![github-alt][github-img]](https://github.com/adich23) ### Example Profile - I'm an example that you can copy, if you want :) From 88a2916a37628db8c78eb44f09d03124472310da Mon Sep 17 00:00:00 2001 From: pankhuri kasliwal Date: Mon, 1 Oct 2018 20:50:55 +0530 Subject: [PATCH 23/39] Update README.md --- README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/README.md b/README.md index 71e5bcb..6261311 100644 --- a/README.md +++ b/README.md @@ -60,6 +60,14 @@ Start adding your names here: - Gastronomy - [![twitter-alt][twitter-img]](https://twitter.com/rahman_younus) [![github-alt][github-img]](https://github.com/rahman95) + + +### pankhuri22 +- Computer Science Undergraduate +- [![twitter-alt][twitter-img]](https://twitter.com/pankhuri221198) + [![github-alt][github-img]](https://github.com/pankhuri2211) + + ### Shubham Nishad - Fourth year student in Computer Science. From c59f09542863f48cb9c28ad92f6bd8dd10a6543d Mon Sep 17 00:00:00 2001 From: Luke Oliff Date: Mon, 1 Oct 2018 08:30:25 -0700 Subject: [PATCH 24/39] Update README.md --- README.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 7be2eb7..9004d81 100644 --- a/README.md +++ b/README.md @@ -61,14 +61,14 @@ Start adding your names here: - [![twitter-alt][twitter-img]](https://twitter.com/rahman_younus) [![github-alt][github-img]](https://github.com/rahman95) - ### Anush93 - - I am a young developer in Sri Lanka - - I'm currently a undergraduate - - My hobbies include: - - Coding - - Gaming - -Nature Photography - [![github-alt][github-img]](https://github.com/Anush93) +### Anush93 +- I am a young developer in Sri Lanka +- I'm currently a undergraduate +- My hobbies include: + - Coding + - Gaming + - Nature Photography +- [![github-alt][github-img]](https://github.com/Anush93) ### Shubham Nishad - Fourth year student in Computer Science. From 2b7c4efc39c119cf4136a3c00d63c10f2b3d7b51 Mon Sep 17 00:00:00 2001 From: Vaibhav Agarwal Date: Mon, 1 Oct 2018 21:24:05 +0530 Subject: [PATCH 25/39] Update README.md --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index 0435186..2e63ad9 100644 --- a/README.md +++ b/README.md @@ -95,6 +95,11 @@ Start adding your names here: - [![twitter-alt][twitter-img]](https://twitter.com/webmasteradi) [![github-alt][github-img]](https://github.com/adich23) +### Vaibhav Agarwal +- Fourth year undergraduate at IIT Mandi, Computer Science. +- [![twitter-alt][twitter-img]](https://twitter.com/vaibhav_a1997) + [![github-alt][github-img]](https://github.com/vaibhavagarwal220) + ### Mathieu Jolivet (Cynferdd) - Developper as a hobby since 1996, professionaly since 2005. - Bass player, I also love reading, photography and beer. From 31de6277d1eb3c8952df6e32ef9c62d033cabaff Mon Sep 17 00:00:00 2001 From: UtkarshKunwar Date: Mon, 1 Oct 2018 21:39:12 +0530 Subject: [PATCH 26/39] Just passing through. --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index 0435186..76414d4 100644 --- a/README.md +++ b/README.md @@ -101,6 +101,10 @@ Start adding your names here: - [![twitter-alt][twitter-img]](https://twitter.com/cynferdd) [![github-alt][github-img]](https://github.com/cynferdd) +### Utkarsh Kunwar +- Fourth year student in Mechanical Engineering. +- [![github-alt][github-img]](https://github.com/UtkarshKunwar) + ### Example Profile - I'm an example that you can copy, if you want :) - I work for... From 10d9279a92049385010b9e15068c264051b1edc8 Mon Sep 17 00:00:00 2001 From: Ananya Singh <32653321+ananya1304@users.noreply.github.com> Date: Mon, 1 Oct 2018 21:41:10 +0530 Subject: [PATCH 27/39] Modified Name --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index 572fb77..a5490c9 100644 --- a/README.md +++ b/README.md @@ -21,6 +21,11 @@ This repository is for anyone to create pull requests during Hacktoberfest 2018, Start adding your names here: Ananya +-I'm a junior year student. +-I am an Android Developer. I also work on other technologies such as web development using Django and Machine Learning. +-I like to listen to music while I code. +-[![facebook-alt][facebook-img]](https://www.facebook.com/ac.ananya) + [![github-alt][github-img]](https://github.com/ananya1304) ### Example Profile - I'm an example that you can copy, if you want :) From ae688e1e1ea8dbeea0c830ee690eed7f9ec80e50 Mon Sep 17 00:00:00 2001 From: Janice Kim Date: Mon, 1 Oct 2018 16:13:05 +0000 Subject: [PATCH 28/39] Added Github info --- README.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 0435186..acd40e7 100644 --- a/README.md +++ b/README.md @@ -52,7 +52,13 @@ Start adding your names here: - I love physics, technology and IT-related stuff. - I also like listening to music and watching movies. - [![github-alt][github-img]](https://github.com/lunamana104) - +- +### janicek1m +- I am currently a high school student. +- I love robotics, programming, and web-development. +- I also like playing the cello, watching shows on Netflix, and cooking. +- [![github-alt][github-img]](https://github.com/janicek1m) +- ### gursimran - I am a young developer in india - I'm currently a student! From 957cfb2b694094bdcb70882b0c34f12dcef68d9e Mon Sep 17 00:00:00 2001 From: Ananya Singh <32653321+ananya1304@users.noreply.github.com> Date: Mon, 1 Oct 2018 21:50:25 +0530 Subject: [PATCH 29/39] Update README.md --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index a5490c9..210c3d2 100644 --- a/README.md +++ b/README.md @@ -20,12 +20,12 @@ This repository is for anyone to create pull requests during Hacktoberfest 2018, ## Contributors List Start adding your names here: -Ananya --I'm a junior year student. --I am an Android Developer. I also work on other technologies such as web development using Django and Machine Learning. --I like to listen to music while I code. --[![facebook-alt][facebook-img]](https://www.facebook.com/ac.ananya) - [![github-alt][github-img]](https://github.com/ananya1304) +### Ananya +- I'm a junior year student. +- I am an Android Developer. I also work on other technologies such as web development using Django and Machine Learning. +- I like to listen to music while I code. +- [![facebook-alt][facebook-img]](https://www.facebook.com/ac.ananya) + [![github-alt][github-img]](https://github.com/ananya1304) ### Example Profile - I'm an example that you can copy, if you want :) From 8d874184c3630c002ded9894227c1409bcb681b2 Mon Sep 17 00:00:00 2001 From: arjunrajpal Date: Mon, 1 Oct 2018 21:55:06 +0530 Subject: [PATCH 30/39] update readme --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index 0435186..d2f4d91 100644 --- a/README.md +++ b/README.md @@ -101,6 +101,10 @@ Start adding your names here: - [![twitter-alt][twitter-img]](https://twitter.com/cynferdd) [![github-alt][github-img]](https://github.com/cynferdd) +### Arjun Rajpal +- Software Engineer and a ML Enthusiast +- [![github-alt][github-img]](https://github.com/arjunrajpal) + ### Example Profile - I'm an example that you can copy, if you want :) - I work for... From c28d79edaf2acbd14e1a0dee6e989b5729e24e82 Mon Sep 17 00:00:00 2001 From: Suvin Nimnaka Date: Mon, 1 Oct 2018 22:09:35 +0530 Subject: [PATCH 31/39] Added myself --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index 0435186..2993d18 100644 --- a/README.md +++ b/README.md @@ -111,6 +111,11 @@ Start adding your names here: [![tumblr-alt][tumblr-img]](https://example.tumblr.com) [![dribbble-alt][dribbble-img]](https://dribbble.com/example) [![github-alt][github-img]](https://github.com/example) + + ### Suvin Nimnaka +- A Student from Sri Lanka +- [![twitter-alt][twitter-img]](https://twitter.com/tikirimaarie) + [![github-alt][github-img]](https://github.com/suvink) ## How to Contribute From 74e3aee918028d5c17d65bf678ab484feb8c6ada Mon Sep 17 00:00:00 2001 From: Ayush Arora Date: Mon, 1 Oct 2018 22:24:50 +0530 Subject: [PATCH 32/39] adding sample code --- pr.cpp | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 pr.cpp diff --git a/pr.cpp b/pr.cpp new file mode 100644 index 0000000..66e6e0c --- /dev/null +++ b/pr.cpp @@ -0,0 +1,22 @@ +#include +using namespace std; + +bool isOverlap(pair p1,pair p2,pair p3,pair p4){ + if(p1.first>p4.first || p2.firstp3.second) return false; + return true; +} + +int main(){ + int t; + cin>>t; + while(t--){ + pair p1,p2,p3,p4; + cin>>p1.first>>p1.second; + cin>>p2.first>>p2.second; + cin>>p3.first>>p3.second; + cin>>p4.first>>p4.second; + cout< Date: Mon, 1 Oct 2018 22:30:22 +0530 Subject: [PATCH 33/39] Added my name Yash Agrawal --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index 0435186..193d00b 100644 --- a/README.md +++ b/README.md @@ -21,6 +21,12 @@ This repository is for anyone to create pull requests during Hacktoberfest 2018, Start adding your names here: +### Yash Agrawal +- I am a student at IIT Mandi persuin B.Tech. in computer science. +- I like more of competitive programming. +- I am the co-ordinator of programming club, IIT Mandi. + [![github-alt][github-img]](https://github.com/YashAgrawal0) + ### BenTechy66 - I am a young developer in England interested in node.js, python, C, and front-end web development frameworks - I'm currently a student! From 05208c2e704b9b4ab00b5dbb9e121376319b09b9 Mon Sep 17 00:00:00 2001 From: Alok Rajasukumaran <41146867+bitwise2012@users.noreply.github.com> Date: Mon, 1 Oct 2018 23:02:20 +0530 Subject: [PATCH 34/39] Commit from alok thank you for this repo and your hardwork. Have added the details as per the guidelines. --- README.md | 7 +++++++ code/alok.js | 3 +++ 2 files changed, 10 insertions(+) create mode 100644 code/alok.js diff --git a/README.md b/README.md index 0435186..d55c534 100644 --- a/README.md +++ b/README.md @@ -112,6 +112,13 @@ Start adding your names here: [![dribbble-alt][dribbble-img]](https://dribbble.com/example) [![github-alt][github-img]](https://github.com/example) + +### Alok Rajasukumaran +- AI Architect by profession +- [!Know more at](https://alokraj68.in) +- [![twitter-alt][twitter-img]](https://twitter.com/alokraj68) + [![github-alt][github-img]](https://github.com/alokraj68) + ## How to Contribute Please read our [contributing](CONTRIBUTING.md) guidelines before making your pull request. diff --git a/code/alok.js b/code/alok.js new file mode 100644 index 0000000..fdf5fb0 --- /dev/null +++ b/code/alok.js @@ -0,0 +1,3 @@ +document.write("Hello World!"); +document.write("I am Alok Rajasukumaran. I am a Human"); +document.write("Know more here ==> https://alokraj68.in"); From 190efe883455a2a87d41e3557098451014cb5470 Mon Sep 17 00:00:00 2001 From: Akshay N Shaju Date: Mon, 1 Oct 2018 23:02:50 +0530 Subject: [PATCH 35/39] Create Aksh.py Aksh will help you to print hello world using python --- code/aksh.py | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 code/aksh.py diff --git a/code/aksh.py b/code/aksh.py new file mode 100644 index 0000000..da0aed1 --- /dev/null +++ b/code/aksh.py @@ -0,0 +1,3 @@ +## +print('Hello, world!') +## From f21c506a6a2427c785faad897d371d333d9c7c5d Mon Sep 17 00:00:00 2001 From: Akshay N Shaju Date: Mon, 1 Oct 2018 23:05:29 +0530 Subject: [PATCH 36/39] Update README.md --- README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/README.md b/README.md index 0435186..b6c32dc 100644 --- a/README.md +++ b/README.md @@ -21,6 +21,14 @@ This repository is for anyone to create pull requests during Hacktoberfest 2018, Start adding your names here: +### Akshay N Shaju +- Software Developer From India.🇧 +- Hobbies: + - Coding + - Gaming +- [![twitter-alt][twitter-img]](https://twitter.com/akshaynshaju) + [![github-alt][github-img]](https://github.com/Akshay-N-Shaju) + ### BenTechy66 - I am a young developer in England interested in node.js, python, C, and front-end web development frameworks - I'm currently a student! From 4ffab71760c189618a08f19c447827146465b5bf Mon Sep 17 00:00:00 2001 From: Akshay N Shaju Date: Mon, 1 Oct 2018 23:05:44 +0530 Subject: [PATCH 37/39] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b6c32dc..c3d1c70 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ Start adding your names here: ### Akshay N Shaju - Software Developer From India.🇧 - Hobbies: - - Coding + - Coding, - Gaming - [![twitter-alt][twitter-img]](https://twitter.com/akshaynshaju) [![github-alt][github-img]](https://github.com/Akshay-N-Shaju) From 09faf205b68d3bd0165ac6a7733e646afdda1d06 Mon Sep 17 00:00:00 2001 From: Jillian Anderson Slate Date: Mon, 1 Oct 2018 20:13:51 +0200 Subject: [PATCH 38/39] Add Jillian Anderson Slate as a contributor --- README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/README.md b/README.md index 0435186..ad21a9e 100644 --- a/README.md +++ b/README.md @@ -21,6 +21,14 @@ This repository is for anyone to create pull requests during Hacktoberfest 2018, Start adding your names here: +### JillianAndersonSlate +- I am a 25-year-old from the United States of America, and I recently moved with my husband to Barcelona, Spain. +- As part of the move I have decided to pursue coding as a new career! +- I am working toward a junior-level position doing front-end work with HTML, CSS, JavaScript, and React. +- My other hobbies include reading, rock climbing, and re-watching 30 Rock and The Office :stuck_out_tongue_winking_eye: +- [![twitter-alt][twitter-img]](https://twitter.com/Jillifish17) + [![github-alt][github-img]](https://github.com/jillianandersonslate) + ### BenTechy66 - I am a young developer in England interested in node.js, python, C, and front-end web development frameworks - I'm currently a student! From 60dff63859791bf3cd68a2669dcca3462e8a157c Mon Sep 17 00:00:00 2001 From: Luke Oliff Date: Mon, 1 Oct 2018 14:05:52 -0700 Subject: [PATCH 39/39] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index acd40e7..3ae8c3a 100644 --- a/README.md +++ b/README.md @@ -52,13 +52,13 @@ Start adding your names here: - I love physics, technology and IT-related stuff. - I also like listening to music and watching movies. - [![github-alt][github-img]](https://github.com/lunamana104) -- + ### janicek1m - I am currently a high school student. - I love robotics, programming, and web-development. - I also like playing the cello, watching shows on Netflix, and cooking. - [![github-alt][github-img]](https://github.com/janicek1m) -- + ### gursimran - I am a young developer in india - I'm currently a student!