From 6ec61a3067ef34a66f3b1d9c4f3d88b7a26670fc Mon Sep 17 00:00:00 2001 From: Jason Brown Date: Tue, 2 Oct 2018 20:38:28 -0700 Subject: [PATCH 01/42] First PR. Name: Jason Brown Description: I just learned about how to make more than a "simple" commit message. I've been using "git commit -m ". However, if you just type "get commit", git will open your default text editor and allow a more descriptive message. Thank you Lisa Tagliaferri! https://www.digitalocean.com/community/tutorials/how-to-create-a-pull-request-on-github --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index a90cbc4..8627a51 100644 --- a/README.md +++ b/README.md @@ -359,6 +359,11 @@ Start adding your names here: - Currently learning the Rust programming language - [![github-alt][github-img]](https://github.com/GuineaPiet) +### My Name +- Description about me +- [![github-alt][github-img]](https://github.com/jcbrown602) +- ![freeCodeCamp](https://imgur.com/mFClFSE) + ### Example Profile - I'm an example that you can copy, if you want :) - I work for... From a8335b4482361f28feeafe3a6cef546607101ec9 Mon Sep 17 00:00:00 2001 From: Celso Antonio Uliana Junior <32890738+CelsoUliana@users.noreply.github.com> Date: Wed, 3 Oct 2018 00:55:20 -0300 Subject: [PATCH 02/42] Add myself --- README.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/README.md b/README.md index 2fdad90..ee2c812 100644 --- a/README.md +++ b/README.md @@ -57,6 +57,13 @@ Start adding your names here: - [![twitter-alt][twitter-img]](https://twitter.com/akshaynshaju) [![github-alt][github-img]](https://github.com/Akshay-N-Shaju) +### Celso Uliana +- Last year student. +- Perl and Node enthusiastic. +- Regex, automating and graphs. +- [![github-alt][github-img]](https://github.com/CelsoUliana) + [![facebook-alt][facebook-img]](https://www.facebook.com/profile.php?id=100009599017240&ref=bookmarks) + ### Alok Rajasukumaran - AI Architect by profession - [!Know more at](https://alokraj68.in) From 5608178ebef8d0ac83896558b90ef06bf2ae3fb3 Mon Sep 17 00:00:00 2001 From: Celso Antonio Uliana Junior <32890738+CelsoUliana@users.noreply.github.com> Date: Wed, 3 Oct 2018 00:59:02 -0300 Subject: [PATCH 03/42] Add a little graduation script. --- code/simcache.pl | 84 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 84 insertions(+) create mode 100644 code/simcache.pl diff --git a/code/simcache.pl b/code/simcache.pl new file mode 100644 index 0000000..f9ea20f --- /dev/null +++ b/code/simcache.pl @@ -0,0 +1,84 @@ +#!/usr/bin/perl -w +use strict; +use warnings; + +############################################################ +### Usage: simcache.pl n_blocks n_blocksPerSet(associativity) n_wordsPerBlock TracerFile +### ex : simcache.pl 128 1 4 trace1.txt +### output: n_access n_missRate n_substitutions +### ex : 300 20 35 +### +### Celso A. Uliana Junior - Aug 2016 +############################################################ + +die "Usage: simcache.pl n_blocks n_blocksPerSet(associativity) n_wordsPerBlock TracerFile\n " if ( @ARGV != 4 ); + + +my $n_set = ( my $blocks = shift) / ( my $assoc = shift); +my $n_words = shift; +my $tracerfile = shift; +my %cs; +my $i = 0, my $j = 0; +my $n_access, my $n_miss, my $n_substitutions, my $n_missRate; +my $n_log_words = log($n_words)/log(2); + +############################################################ +# If tracerfile is not .txt adds .txt to the string +############################################################ + +if($tracerfile !~ /^\w+\.(doc|txt)$/){ + $tracerfile = $tracerfile . ".txt"; +} + +############################################################ +# Reading tracer file +############################################################ + +open TRC , "$tracerfile" or die "Couldn't open the file $tracerfile\n" ; + + + +my $test = 0 ; +my $test2 = 0 ; +my $test3 = 0 ; + +my $hit = 0 ; +while( ){ + chomp ; + if( $n_set == $blocks ){ + if( $cs{int(($_ / 4) % $n_set)}[0] ){ + $test = int(($_ / 4) % $n_set); + $test2 = int( ($_ / 4) / $n_set ); + $test3 = $cs{int(($_ / 4) % $n_set)}[2] ; + print "indice = $test // tag esperada = $test2 // tag no hash = $test3 \n"; + if( $cs{int(($_ / 4) % $n_set)}[2] != int( ($_ / 4) / $n_set ) ){ + $n_miss++; + $n_substitutions++; + $cs{(int($_ / 4) % $n_set)}[2] = int( ($_ / 4) / $n_set ); + } + else{ + $hit++; + } + } + else{ + $cs{int(($_ / 4) % $n_set)}[0] = 1; + $n_miss++ ; + $cs{int(($_ / 4) % $n_set)}[2] = int( ($_ / 4) / $n_set); + + } + } + + $n_access++; +} + +print "hits = $hit // misses = $n_miss\n"; +close TRC; + +############################################################ +# Print the n_acess n_missrate n_substitutions +############################################################ + +printf ("%d %d %d \n", $n_access, (($n_miss / $n_access) * 100), $n_substitutions); + +exit(0); +############################################################ \ No newline at end of file From 8bb8e2b927dcf4c660f92a5906c13a9076e2fbdb Mon Sep 17 00:00:00 2001 From: ravikishorethella Date: Tue, 2 Oct 2018 23:00:58 -0500 Subject: [PATCH 04/42] Updated README.md with the new contributor --- README.md | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 2fdad90..2cbb95e 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ Start adding your names here: - Software Engineer in NZ - [![twitter-alt][twitter-img]](https://twitter.com/RuiLi15) [![github-alt][github-img]](https://github.com/gitruili) - + ### Aditya Kolsur - I'm a 3rd year student. - I am a web developer. @@ -123,7 +123,7 @@ Start adding your names here: - 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) - + ### festusdrakon - Interested in figuring out how to turn Data into Information, primarily to improve customer experiences on the web. - Permission Marketing FTW! (Just **never** at the cost of privacy invasion.) @@ -215,7 +215,7 @@ Start adding your names here: - I love Python :heart: - Connect with me on social media platform - [![twitter-alt][twitter-img]](https://twitter.com/rowhitswami) - [![facebook-alt][facebook-img]](https://facebook.com/rowhitswami) + [![facebook-alt][facebook-img]](https://facebook.com/rowhitswami) [![github-alt][github-img]](https://github.com/rowhitswami) ### Shubham Nishad @@ -278,7 +278,7 @@ Start adding your names here: - Computer science student - Nerd, geek, gamer, I love TLoK - [![github-alt][github-img]](https://github.com/frannievas) - + ### Naufal Yudhistira - Ordinary student. - Like to play with cats. @@ -414,6 +414,13 @@ Start adding your names here: - Engineer at heart, if it isn't broken, break it! - [![github-alt][github-img]](https://github.com/slouchd) +### Ravi Thella +- React Developer +- Hobbies: + - Programming + - Watching Tennis +- [![github-alt][github-img]](https://github.com/ravikishorethella) + ### Example Profile - I'm an example that you can copy, if you want :) - I work for... @@ -424,7 +431,7 @@ 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) - + ## How to Contribute From 8f0243e07cd2f5330c65d45cfff7532395155cd5 Mon Sep 17 00:00:00 2001 From: Lincoln Anders Date: Wed, 3 Oct 2018 00:14:34 -0400 Subject: [PATCH 05/42] Fixed many of the names out of order --- README.md | 206 +++++++++++++++++++++++++++--------------------------- 1 file changed, 104 insertions(+), 102 deletions(-) diff --git a/README.md b/README.md index 2fdad90..45828ad 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -![Open Source Love](https://img.shields.io/badge/Open%20Source-%E2%9D%A4-pink.svg) +![Open Source Love](https://img.shields.io/badge/Open%20Source-%E2%9D%A4-pink.svg) ![First Timers Only](https://img.shields.io/badge/first--timers--only-friendly-blue.svg?style=flat) ![Up For Grabs](https://img.shields.io/badge/up--for--grabs-friendly-green.svg?style=flat) @@ -21,48 +21,6 @@ This repository is for anyone to create pull requests during Hacktoberfest 2018, Start adding your names here: -### Rui Li -- Software Engineer in NZ -- [![twitter-alt][twitter-img]](https://twitter.com/RuiLi15) - [![github-alt][github-img]](https://github.com/gitruili) - -### Aditya Kolsur -- I'm a 3rd year student. -- I am a web developer. -- [![github-alt][github-img]](https://github.com/adikolsur) - -### Bir Singh -- I am a young developer in India interested in c++,html/css,java(android). -- I'm currently a computer science student! -- My hobbies include: - - Coding - - Gaming -- [![github-alt][github-img]](https://github.com/singhbir) - -### Hafpaf -- Software student -- Small electronics enthutiast. -- [![github-alt][github-img]](https://github.com/hafpaf) - -### Aditya Choudhary -- Software Engineer in India -- [![twitter-alt][twitter-img]](https://twitter.com/webmasteradi) - [![github-alt][github-img]](https://github.com/adich23) - -### 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) - -### 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) - ### 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. @@ -70,71 +28,115 @@ Start adding your names here: - [![facebook-alt][facebook-img]](https://www.facebook.com/ac.ananya) [![github-alt][github-img]](https://github.com/ananya1304) +### 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) + +### Lincoln Anders +- 1st year CS major at Georgia Tech +- MERN full stack, primary interest in backend APIs +- Node.js, Java, Bash, Swift +- [![twitter-alt][twitter-img]](https://twitter.com/lincolnanders5) + [![github-alt][github-img]](https://github.com/lincolnanders5) + +### 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) + +### BenoCD + - Final Year Computer Engineering student from Concepción, Chile + - Raspberry Pi Enthusiast + - First time participating in Hacktoberfest + - [![twitter-alt][twitter-img]](https://twitter.com/beno_cd) + [![github-alt][github-img]](https://github.com/benocd) + +### Anshima Chaudhary + - I'm a contributor :) + - I study CS + - My hobbies include coding, debating and dancing + - [![github-alt][github-img]](https://github.com/anshima1) + +### Aditya Choudhary + - Software Engineer in India + - [![twitter-alt][twitter-img]](https://twitter.com/webmasteradi) + [![github-alt][github-img]](https://github.com/adich23) + +### 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) + +### Dushyant + - Software Developer and a ML enthusiast. + - [![github-alt][github-img]](https://github.com/dushyantRathore) + +### festusdrakon + - Interested in figuring out how to turn Data into Information, primarily to improve customer experiences on the web. + - Permission Marketing FTW! (Just **never** at the cost of privacy invasion.) + - I share as I learn at [DIY DS](https://www.instagram.com/dodsyourself/) and [DIY CS](https://www.instagram.com/docsyourself/) on instagram. + - Started from the bottom, now we here: + [![github-alt][github-img]](https://github.com/festusdrakon) + +### Hafpaf + - Software student + - Small electronics enthutiast. + - [![github-alt][github-img]](https://github.com/hafpaf) + +### Rui Li +- Software Engineer in NZ +- [![twitter-alt][twitter-img]](https://twitter.com/RuiLi15) + [![github-alt][github-img]](https://github.com/gitruili) + +### Srishty Mittal + - I'm a contributor and web developer + - I study Electronics and Communication Engineering + - My hobbies include coding, debating and acting + - [![github-alt][github-img]](https://github.com/MittalS211) + +### 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) + +### Arjun Rajpal + - Software Engineer and a ML Enthusiast + - [![github-alt][github-img]](https://github.com/arjunrajpal) + +### Bir Singh + - I am a young developer in India interested in c++,html/css,java(android). + - I'm currently a computer science student! + - My hobbies include: + - Coding + - Gaming + - [![github-alt][github-img]](https://github.com/singhbir) + +### 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) + ### Anastasis Xouzafeiris (aka anksos) - I am a VMware engineer - I'm currently working as a Virtualization Specialist - [![twitter-alt][twitter-img]](https://twitter.com/ankso) [![github-alt][github-img]](https://github.com/anksos) -### Anshima Chaudhary -- I'm a contributor :) -- I study CS -- My hobbies include coding, debating and dancing -- [![github-alt][github-img]](https://github.com/anshima1) - -### Srishty Mittal -- I'm a contributor and web developer -- I study Electronics and Communication Engineering -- My hobbies include coding, debating and acting -- [![github-alt][github-img]](https://github.com/MittalS211) - -### 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) - -### Arjun Rajpal -- Software Engineer and a ML Enthusiast -- [![github-alt][github-img]](https://github.com/arjunrajpal) - -### 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) - -### BenoCD -- Final Year Computer Engineering student from Concepción, Chile -- Raspberry Pi Enthusiast -- First time participating in Hacktoberfest -- [![twitter-alt][twitter-img]](https://twitter.com/beno_cd) - [![github-alt][github-img]](https://github.com/benocd) - -### 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) - - ### festusdrakon -- Interested in figuring out how to turn Data into Information, primarily to improve customer experiences on the web. -- Permission Marketing FTW! (Just **never** at the cost of privacy invasion.) -- I share as I learn at [DIY DS](https://www.instagram.com/dodsyourself/) and [DIY CS](https://www.instagram.com/docsyourself/) on instagram. -- Started from the bottom, now we here: - [![github-alt][github-img]](https://github.com/festusdrakon) - -### Dushyant -- Software Developer and a ML enthusiast. -- [![github-alt][github-img]](https://github.com/dushyantRathore) - ### Danil Shankovskiy - I'm a student from Ukraine - Interested in Python, Django From ed3a9852df25d7d3fe69392868b430dd142707ec Mon Sep 17 00:00:00 2001 From: Karthik-0 <41418580+Karthik-0@users.noreply.github.com> Date: Wed, 3 Oct 2018 09:52:13 +0530 Subject: [PATCH 06/42] Update README.md --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index 2fdad90..e6cfcb1 100644 --- a/README.md +++ b/README.md @@ -414,6 +414,12 @@ Start adding your names here: - Engineer at heart, if it isn't broken, break it! - [![github-alt][github-img]](https://github.com/slouchd) + +### Karthik Raja T. +- A full stack developer. +- I like to code and build applications. +- [![github-alt][github-img]](https://github.com/Karthik-0) + ### Example Profile - I'm an example that you can copy, if you want :) - I work for... From ce9034cb01f90f0349d762cb885995a5efe46b6a Mon Sep 17 00:00:00 2001 From: Derek Reinhardt Date: Wed, 3 Oct 2018 00:37:11 -0400 Subject: [PATCH 07/42] Alphabetized the contributors lists and added letter headers for future needs --- README.md | 534 ++++++++++++++++++++++++++++++------------------------ 1 file changed, 294 insertions(+), 240 deletions(-) diff --git a/README.md b/README.md index 2fdad90..6b2e03f 100644 --- a/README.md +++ b/README.md @@ -17,38 +17,43 @@ This repository is for anyone to create pull requests during Hacktoberfest 2018, ![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) +# Getting Started + +### Example Profile +- I'm an example that you can copy, if you want :) +- I work for... +- My hobbies include... +- [![twitter-alt][twitter-img]](https://twitter.com/example) + [![facebook-alt][facebook-img]](https://facebook.com/example) + [![google-img][google-img]](https://plus.google.com/+Example) + [![tumblr-alt][tumblr-img]](https://example.tumblr.com) + [![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. + +## Code of Conduct + +Please note that this project is released with a [Code of Conduct](CODE_OF_CONDUCT.md). By participating in this project you agree to abide by its terms. + ## Contributors List Start adding your names here: -### Rui Li -- Software Engineer in NZ -- [![twitter-alt][twitter-img]](https://twitter.com/RuiLi15) - [![github-alt][github-img]](https://github.com/gitruili) - -### Aditya Kolsur -- I'm a 3rd year student. -- I am a web developer. -- [![github-alt][github-img]](https://github.com/adikolsur) - -### Bir Singh -- I am a young developer in India interested in c++,html/css,java(android). -- I'm currently a computer science student! -- My hobbies include: - - Coding - - Gaming -- [![github-alt][github-img]](https://github.com/singhbir) - -### Hafpaf -- Software student -- Small electronics enthutiast. -- [![github-alt][github-img]](https://github.com/hafpaf) +# A ### Aditya Choudhary - Software Engineer in India - [![twitter-alt][twitter-img]](https://twitter.com/webmasteradi) [![github-alt][github-img]](https://github.com/adich23) +### Aditya Kolsur +- I'm a 3rd year student. +- I am a web developer. +- [![github-alt][github-img]](https://github.com/adikolsur) + ### Akshay N Shaju - Software Developer From India.🇧 - Hobbies: @@ -57,6 +62,14 @@ Start adding your names here: - [![twitter-alt][twitter-img]](https://twitter.com/akshaynshaju) [![github-alt][github-img]](https://github.com/Akshay-N-Shaju) +### Alexandre Pereira Santos +- Student of Analysis and Development of Systems - Estácio de Sá University - Last Period +- Programmer at Stefanini - Working with Test Autamatization +- Passionate about Technologies - Java, Ruby, C, C ++, C #, Ruby and Python +- [![twitter-alt][twitter-img]](https://twitter.com/alexEndrios) + [![facebook-alt][facebook-img]](https://facebook.com/alex.endrios) + [![github-alt][github-img]](https://github.com/alexendrios) + ### Alok Rajasukumaran - AI Architect by profession - [!Know more at](https://alokraj68.in) @@ -82,12 +95,6 @@ Start adding your names here: - My hobbies include coding, debating and dancing - [![github-alt][github-img]](https://github.com/anshima1) -### Srishty Mittal -- I'm a contributor and web developer -- I study Electronics and Communication Engineering -- My hobbies include coding, debating and acting -- [![github-alt][github-img]](https://github.com/MittalS211) - ### Anush93 - I am a young developer in Sri Lanka - I'm currently a undergraduate @@ -101,6 +108,29 @@ Start adding your names here: - Software Engineer and a ML Enthusiast - [![github-alt][github-img]](https://github.com/arjunrajpal) +# B + +### Banso D. Wisdom +- Software Engineer, Gamer and Machine Learning Enthusiast +- Hobbies: + - Programming + - Gaming + - Netflix +- Works with .NET, .NET Core, Ionic and Angular +- [![github-alt][github-img]](https://github.com/Overrideveloper) + +### Ben C. +- A high school student who is a beginner at code. +- I like to code and play games. +- [![github-alt][github-img]](https://github.com/yopamuhanu) + +### BenoCD +- Final Year Computer Engineering student from Concepción, Chile +- Raspberry Pi Enthusiast +- First time participating in Hacktoberfest +- [![twitter-alt][twitter-img]](https://twitter.com/beno_cd) + [![github-alt][github-img]](https://github.com/benocd) + ### 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! @@ -110,12 +140,44 @@ Start adding your names here: - ~~Having a social life~~ - [![github-alt][github-img]](https://github.com/BenTechy66) -### BenoCD -- Final Year Computer Engineering student from Concepción, Chile -- Raspberry Pi Enthusiast -- First time participating in Hacktoberfest -- [![twitter-alt][twitter-img]](https://twitter.com/beno_cd) - [![github-alt][github-img]](https://github.com/benocd) +### Bir Singh +- I am a young developer in India interested in c++,html/css,java(android). +- I'm currently a computer science student! +- My hobbies include: + - Coding + - Gaming +- [![github-alt][github-img]](https://github.com/singhbir) + +### Brian Burress +- I'm Brian Burress, IT consultant with The Byte Stuff +- Currently learning to program under Adruino IDE as well as design simple circuits +- [![github-alt][github-img]](https://github.com/TheByteStuff ) + [![twitter-alt][twitter-img]](https://twitter.com/thebytestuff) + +# C + +### Charlye +- Student of Development of multiplatform applications - Last year. +- Working in the Povisa hospital (Programming and systems). +- Lover of programming, drums, cars, ping-pong and anime. +- [![github-alt][github-img]](https://github.com/costassolla) + +### CohheeTime +- I built my first website in 1999 +- [![github-alt][github-img]](https://github.com/CohheeTime) + +# D + +### Danil Shankovskiy +- I'm a student from Ukraine +- Interested in Python, Django +- [![github-alt][github-img]](https://github.com/BeAsYit) + +### Dmytro Litvinov +- Full Stack Python develop from Ukraine :snake: +- [My website](https://DmytroLitvinov.com) +- [![twitter-alt][twitter-img]](https://twitter.com/Dmytro_Litvinov) + [![github-alt][github-img]](https://github.com/DmytroLitvinov) ### duongoku - I'm a student and I'm in last year of highschool. @@ -123,27 +185,69 @@ Start adding your names here: - 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) - - ### festusdrakon -- Interested in figuring out how to turn Data into Information, primarily to improve customer experiences on the web. -- Permission Marketing FTW! (Just **never** at the cost of privacy invasion.) -- I share as I learn at [DIY DS](https://www.instagram.com/dodsyourself/) and [DIY CS](https://www.instagram.com/docsyourself/) on instagram. -- Started from the bottom, now we here: - [![github-alt][github-img]](https://github.com/festusdrakon) ### Dushyant - Software Developer and a ML enthusiast. - [![github-alt][github-img]](https://github.com/dushyantRathore) -### Danil Shankovskiy -- I'm a student from Ukraine -- Interested in Python, Django -- [![github-alt][github-img]](https://github.com/BeAsYit) +# E + +### Elijah Rwothoromo +- Software Developer +- I love movies, poetry and hangouts. +- [![twitter-alt][twitter-img]](https://twitter.com/rwothoromo) + [![github-alt][github-img]](https://github.com/rwothoromo) + +# F + +### festusdrakon +- Interested in figuring out how to turn Data into Information, primarily to improve customer experiences on the web. +- Permission Marketing FTW! (Just **never** at the cost of privacy invasion.) +- I share as I learn at [DIY DS](https://www.instagram.com/dodsyourself/) and [DIY CS](https://www.instagram.com/docsyourself/) on instagram. +- Started from the bottom, now we here: +[![github-alt][github-img]](https://github.com/festusdrakon) + +### Francisco Nievas (frannievas) +- Computer science student +- Nerd, geek, gamer, I love TLoK +- [![github-alt][github-img]](https://github.com/frannievas) + +# G ### gursimran - I am a young developer in india - I'm currently a student! +# H + +### Hafpaf +- Software student +- Small electronics enthutiast. +- [![github-alt][github-img]](https://github.com/hafpaf) + +### Helus +- I'm a mathematics student. +- I'm interested in data science. +- My hobbies include gaming and listening to classical music. +- [![github-alt][github-img]](https://github.com/example) + +# I + +### IGC +- I am a Spanish CS student and developer. +- I like Java and Python. +- I am looking foward learning Django. +- [![github-alt][github-img]](https://github.com/igcigc) + +### Izabela Cardozo +- I'm a Brazilian Electrical Engineer student and Friends lover, by the way, How u doin'? ;) +- My hobbies include: + - Watching spanish TV shows (please watch Gran Hotel); + - Listening to music. +- [![twitter-alt][twitter-img]](https://twitter.com/izabela963) + +# J + ### James - DevOps Engineer - Taking part in my first Hacktoberfest @@ -154,6 +258,14 @@ Start adding your names here: - I also like playing the cello, watching shows on Netflix, and cooking. - [![github-alt][github-img]](https://github.com/janicek1m) +### Jay Vasant +- Python enthusiast. +- My hobbies include: + - Competitive Programming + - Reading and Writing Blogs +- [![twitter-alt][twitter-img]](https://twitter.com/jayvasantjv) + [![github-alt][github-img]](https://github.com/jayvasantjv) + ### Jillian Anderson Slate - 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! @@ -162,6 +274,8 @@ Start adding your names here: - [![twitter-alt][twitter-img]](https://twitter.com/Jillifish17) [![github-alt][github-img]](https://github.com/jillianandersonslate) +# K + ### 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) @@ -173,6 +287,15 @@ Start adding your names here: - I love playing and making games. - [![github-alt][github-img]](https://github.com/kundan28) +# L + +### Lauren Reilly +- I'm a cat loving underwater gardener +- Currently studying web development at a coding bootcamp +- I love gaming and hope to become a game dev! +- [![twitter-alt][twitter-img]](https://twitter.com/WitchScript) + [![github-alt][github-img]](https://github.com/LaurenReilly) + ### Luke Oliff - Technical Writer working for @auth0 - [![twitter-alt][twitter-img]](https://twitter.com/mroliff) @@ -184,12 +307,41 @@ Start adding your names here: - I also like listening to music and watching movies. - [![github-alt][github-img]](https://github.com/lunamana104) +# M + ### 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) +# N + +### Naufal Yudhistira +- Ordinary student. +- Like to play with cats. +- [![github-alt][github-img]](https://github.com/yudhst) + +### Nha Huynh +- Backend developer +- Code, Football, Dota2 +- [![github-alt][github-img]](https://github.com/thanhnha1103) + +### Nievas Martin +- I'm an Electronic Engineer from Argentina. +- Currently pursuing a PhD scholarship. +- [![github-alt][github-img]](https://github.com/MartinNievas) + +### Nikhil Shrivastava +- I am a student at ILovely Professional University persuingmy B.Tech degree in computer science. +- I am very much passionate about programming. +- I am a member of Microsoft Technical Community , LPU +- [![github-alt][github-img]](https://github.com/NikhilShrivastava) + +# O + +# P + ### pankhuri22 - Computer Science Undergraduate - [![twitter-alt][twitter-img]](https://twitter.com/pankhuri221198) @@ -200,6 +352,15 @@ Start adding your names here: - I volunteer with High School students teaching them programming and robotics. - I will have each of them participate in Hacktoberfest tonight!! +### Petri-Johan Last +- I'm an Electronic Engineer and busy with a Masters degree in Machine Learning +- Currently learning the Rust programming language +- [![github-alt][github-img]](https://github.com/GuineaPiet) + +# Q + +# R + ### rahman95 - Software Developer born in Germany raised in the UK. 🇩🇪 🇬🇧 - Hobbies include: @@ -210,124 +371,6 @@ Start adding your names here: - [![twitter-alt][twitter-img]](https://twitter.com/rahman_younus) [![github-alt][github-img]](https://github.com/rahman95) -### Rohit Swami -- Data Science Aspirant -- I love Python :heart: -- Connect with me on social media platform -- [![twitter-alt][twitter-img]](https://twitter.com/rowhitswami) - [![facebook-alt][facebook-img]](https://facebook.com/rowhitswami) - [![github-alt][github-img]](https://github.com/rowhitswami) - -### 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) - -### Suvin Nimnaka -- A Student from Sri Lanka -- [![twitter-alt][twitter-img]](https://twitter.com/tikirimaarie) - [![github-alt][github-img]](https://github.com/suvink) - -### Tom Davis -- IT Manager in The United States -- I am an old computer guy wanting to learn new things -- [![twitter-alt][twitter-img]](https://twitter.com/kat35601) - [![github-alt][github-img]](https://github.com/kat35601) - -### Utkarsh Kunwar -- Fourth year student in Mechanical Engineering. -- [![github-alt][github-img]](https://github.com/UtkarshKunwar) - -### 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) - -### 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) - -### Nikhil Shrivastava -- I am a student at ILovely Professional University persuingmy B.Tech degree in computer science. -- I am very much passionate about programming. -- I am a member of Microsoft Technical Community , LPU -- [![github-alt][github-img]](https://github.com/NikhilShrivastava) - -### IGC -- I am a Spanish CS student and developer. -- I like Java and Python. -- I am looking foward learning Django. -- [![github-alt][github-img]](https://github.com/igcigc) - -### Nievas Martin -- I'm an Electronic Engineer from Argentina. -- Currently pursuing a PhD scholarship. - [![github-alt][github-img]](https://github.com/MartinNievas) - -### Izabela Cardozo -- I'm a Brazilian Electrical Engineer student and Friends lover, by the way, How u doin'? ;) -- My hobbies include: - - Watching spanish TV shows (please watch Gran Hotel); - - Listening to music. -- [![twitter-alt][twitter-img]](https://twitter.com/izabela963) - -### Francisco Nievas (frannievas) -- Computer science student -- Nerd, geek, gamer, I love TLoK -- [![github-alt][github-img]](https://github.com/frannievas) - -### Naufal Yudhistira -- Ordinary student. -- Like to play with cats. -- [![github-alt][github-img]](https://github.com/yudhst) - -### Nha Huynh -- Backend developer -- Code, Football, Dota2 -- [![github-alt][github-img]](https://github.com/thanhnha1103) - -### Dmytro Litvinov -- Full Stack Python develop from Ukraine :snake: -- [My website](https://DmytroLitvinov.com) -- [![twitter-alt][twitter-img]](https://twitter.com/Dmytro_Litvinov) - [![github-alt][github-img]](https://github.com/DmytroLitvinov) - -### Vishal Anand -- Student -- Programmer -- Cricketer -- Painter -- [![github-alt][github-img]](https://github.com/Vishal1541) - -### Jay Vasant -- Python enthusiast. -- My hobbies include: - - Competitive Programming - - Reading and Writing Blogs -- [![twitter-alt][twitter-img]](https://twitter.com/jayvasantjv) - [![github-alt][github-img]](https://github.com/jayvasantjv) - -### Alexandre Pereira Santos -- Student of Analysis and Development of Systems - Estácio de Sá University - Last Period -- Programmer at Stefanini - Working with Test Autamatization -- Passionate about Technologies - Java, Ruby, C, C ++, C #, Ruby and Python -- [![twitter-alt][twitter-img]](https://twitter.com/alexEndrios) - [![facebook-alt][facebook-img]](https://facebook.com/alex.endrios) - [![github-alt][github-img]](https://github.com/alexendrios) - -### Elijah Rwothoromo -- Software Developer -- I love movies, poetry and hangouts. -- [![twitter-alt][twitter-img]](https://twitter.com/rwothoromo) - [![github-alt][github-img]](https://github.com/rwothoromo) - -### Thomas Kulmbach (D0Tch) -- Webdeveloper working in Denmark -- [![github-alt][github-img]](https://github.com/d0tch) - ### Ravindra Kumar Meena - Computer Sciene & Engineering Student - Hobbies: @@ -337,61 +380,6 @@ Start adding your names here: - [![twitter-alt][twitter-img]](https://twitter.com/rmeena840) [![github-alt][github-img]](https://github.com/rmeena840) -### Charlye -- Student of Development of multiplatform applications - Last year. -- Working in the Povisa hospital (Programming and systems). -- Lover of programming, drums, cars, ping-pong and anime. -- [![github-alt][github-img]](https://github.com/costassolla) - -### Banso D. Wisdom -- Software Engineer, Gamer and Machine Learning Enthusiast -- Hobbies: - - Programming - - Gaming - - Netflix -- Works with .NET, .NET Core, Ionic and Angular -- [![github-alt][github-img]](https://github.com/Overrideveloper) - -### Lauren Reilly -- I'm a cat loving underwater gardener -- Currently studying web development at a coding bootcamp -- I love gaming and hope to become a game dev! -- [![twitter-alt][twitter-img]](https://twitter.com/WitchScript) - [![github-alt][github-img]](https://github.com/LaurenReilly) - -### Vidushi Jain -- I'm a computer science student -- Interested in app development -- I love coding. -- [![github-alt][github-img]](https://github.com/VidushiJain30) - -### Petri-Johan Last -- I'm an Electronic Engineer and busy with a Masters degree in Machine Learning -- Currently learning the Rust programming language -- [![github-alt][github-img]](https://github.com/GuineaPiet) - -### Helus -- I'm a mathematics student. -- I'm interested in data science. -- My hobbies include gaming and listening to classical music. -- [![github-alt][github-img]](https://github.com/example) - -### Brian Burress -- I'm Brian Burress, IT consultant with The Byte Stuff -- Currently learning to program under Adruino IDE as well as design simple circuits -- [![github-alt][github-img]](https://github.com/TheByteStuff ) - [![twitter-alt][twitter-img]](https://twitter.com/thebytestuff) - -### Utsha Sinha -- I'm an Information Technology third year student -- :heart: for tech and passionate about how it influences our everyday lives -- [![github-alt][github-img]](https://github.com/utsha1510) - -### Sho Tozuro -- Frontend Developer -- :heart: javascript enthusiast -- [![github-alt][github-img]](https://github.com/shotozuro) - ### Reesea - I'm an MBA student - Hobbies: @@ -400,40 +388,106 @@ Start adding your names here: - [![twitter-alt][twitter-img]](https://twitter.com/_reesea) [![github-alt][github-img]](https://github.com/reesea) -### CohheeTime -- I built my first website in 1999 - [![github-alt][github-img]](https://github.com/CohheeTime) +### Rohit Swami +- Data Science Aspirant +- I love Python :heart: +- Connect with me on social media platform +- [![twitter-alt][twitter-img]](https://twitter.com/rowhitswami) + [![facebook-alt][facebook-img]](https://facebook.com/rowhitswami) + [![github-alt][github-img]](https://github.com/rowhitswami) -### Ben C. -- A high school student who is a beginner at code. -- I like to code and play games. -- [![github-alt][github-img]](https://github.com/yopamuhanu) +### Rui Li +- Software Engineer in NZ +- [![twitter-alt][twitter-img]](https://twitter.com/RuiLi15) + [![github-alt][github-img]](https://github.com/gitruili) + +# S + +### Sho Tozuro +- Frontend Developer +- :heart: javascript enthusiast +- [![github-alt][github-img]](https://github.com/shotozuro) + +### 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) ### slouch - Linux Systems Administrator turning DevOps person - Engineer at heart, if it isn't broken, break it! - [![github-alt][github-img]](https://github.com/slouchd) -### Example Profile -- I'm an example that you can copy, if you want :) -- I work for... -- My hobbies include... -- [![twitter-alt][twitter-img]](https://twitter.com/example) - [![facebook-alt][facebook-img]](https://facebook.com/example) - [![google-img][google-img]](https://plus.google.com/+Example) - [![tumblr-alt][tumblr-img]](https://example.tumblr.com) - [![dribbble-alt][dribbble-img]](https://dribbble.com/example) - [![github-alt][github-img]](https://github.com/example) - +### Srishty Mittal +- I'm a contributor and web developer +- I study Electronics and Communication Engineering +- My hobbies include coding, debating and acting +- [![github-alt][github-img]](https://github.com/MittalS211) -## How to Contribute +### Suvin Nimnaka +- A Student from Sri Lanka +- [![twitter-alt][twitter-img]](https://twitter.com/tikirimaarie) + [![github-alt][github-img]](https://github.com/suvink) -Please read our [contributing](CONTRIBUTING.md) guidelines before making your pull request. +# T -## Code of Conduct +### Thomas Kulmbach (D0Tch) +- Webdeveloper working in Denmark +- [![github-alt][github-img]](https://github.com/d0tch) -Please note that this project is released with a [Code of Conduct](CODE_OF_CONDUCT.md). By participating in this project you agree to abide by its terms. +### Tom Davis +- IT Manager in The United States +- I am an old computer guy wanting to learn new things +- [![twitter-alt][twitter-img]](https://twitter.com/kat35601) + [![github-alt][github-img]](https://github.com/kat35601) +# U + +### Utkarsh Kunwar +- Fourth year student in Mechanical Engineering. +- [![github-alt][github-img]](https://github.com/UtkarshKunwar) + +### Utsha Sinha +- I'm an Information Technology third year student +- :heart: for tech and passionate about how it influences our everyday lives +- [![github-alt][github-img]](https://github.com/utsha1510) + +# V + +### 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) + +### Vidushi Jain +- I'm a computer science student +- Interested in app development +- I love coding. +- [![github-alt][github-img]](https://github.com/VidushiJain30) + +### Vishal Anand +- Student +- Programmer +- Cricketer +- Painter +- [![github-alt][github-img]](https://github.com/Vishal1541) + +# W + +# X + +# Y + +### 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) + +# Z + +------------ ## Copyright Copyright (c) 2018 My First PR. See [LICENSE](LICENSE) for details. From 19e8ce64b5845ce0b34f8db5ecee67187509c4d4 Mon Sep 17 00:00:00 2001 From: muhtarudinsiregar <6048482+muhtarudinsiregar@users.noreply.github.com> Date: Wed, 3 Oct 2018 11:43:07 +0700 Subject: [PATCH 08/42] Adding my name as constributor --- README.md | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 2fdad90..54c2545 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ Start adding your names here: - Software Engineer in NZ - [![twitter-alt][twitter-img]](https://twitter.com/RuiLi15) [![github-alt][github-img]](https://github.com/gitruili) - + ### Aditya Kolsur - I'm a 3rd year student. - I am a web developer. @@ -82,6 +82,11 @@ Start adding your names here: - My hobbies include coding, debating and dancing - [![github-alt][github-img]](https://github.com/anshima1) +### Ardin +- Software Engineer from Indonesia +- I solve problem and make stuff +- [![github-alt][github-img]](https://github.com/muhtarudinsiregar/) + ### Srishty Mittal - I'm a contributor and web developer - I study Electronics and Communication Engineering @@ -123,7 +128,7 @@ Start adding your names here: - 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) - + ### festusdrakon - Interested in figuring out how to turn Data into Information, primarily to improve customer experiences on the web. - Permission Marketing FTW! (Just **never** at the cost of privacy invasion.) @@ -215,7 +220,7 @@ Start adding your names here: - I love Python :heart: - Connect with me on social media platform - [![twitter-alt][twitter-img]](https://twitter.com/rowhitswami) - [![facebook-alt][facebook-img]](https://facebook.com/rowhitswami) + [![facebook-alt][facebook-img]](https://facebook.com/rowhitswami) [![github-alt][github-img]](https://github.com/rowhitswami) ### Shubham Nishad @@ -278,7 +283,7 @@ Start adding your names here: - Computer science student - Nerd, geek, gamer, I love TLoK - [![github-alt][github-img]](https://github.com/frannievas) - + ### Naufal Yudhistira - Ordinary student. - Like to play with cats. @@ -424,7 +429,7 @@ 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) - + ## How to Contribute From 45b8b96dc8e66b849a00672d294e7cf7cc2b036b Mon Sep 17 00:00:00 2001 From: Shweta Goyal <36664302+Shwetago@users.noreply.github.com> Date: Wed, 3 Oct 2018 10:17:45 +0530 Subject: [PATCH 09/42] Update README.md --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index 2fdad90..be7b1cd 100644 --- a/README.md +++ b/README.md @@ -414,6 +414,10 @@ Start adding your names here: - Engineer at heart, if it isn't broken, break it! - [![github-alt][github-img]](https://github.com/slouchd) +### Shweta Goyal +- Computer Science Graduate +- [![github-alt][github-img]](https://github.com/Shwetago) + ### Example Profile - I'm an example that you can copy, if you want :) - I work for... From 3e3d5509c2b4083c85309a9e29c34480d84b4f8a Mon Sep 17 00:00:00 2001 From: Shweta Goyal <36664302+Shwetago@users.noreply.github.com> Date: Wed, 3 Oct 2018 10:20:55 +0530 Subject: [PATCH 10/42] Create Shwetago.py --- code/Shwetago.py | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 code/Shwetago.py diff --git a/code/Shwetago.py b/code/Shwetago.py new file mode 100644 index 0000000..3a9e6e9 --- /dev/null +++ b/code/Shwetago.py @@ -0,0 +1,6 @@ +### + +s = 'Hello, world!' +str(s) + +### From 39ae95223cecc76e61ab0aa5384780d4320ac618 Mon Sep 17 00:00:00 2001 From: LemonPepsi <43800160+LemonPepsi@users.noreply.github.com> Date: Wed, 3 Oct 2018 14:44:12 +0930 Subject: [PATCH 11/42] Update README.md Just introducing myself --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index 2fdad90..d112877 100644 --- a/README.md +++ b/README.md @@ -414,6 +414,10 @@ Start adding your names here: - Engineer at heart, if it isn't broken, break it! - [![github-alt][github-img]](https://github.com/slouchd) +### LemonPepsi +- Electrical engineering student +- A fair bit rusty in coding, hope to get back into it + ### Example Profile - I'm an example that you can copy, if you want :) - I work for... From 85dca42eeb7181b542d4ae5b0f536cd9d8db7b53 Mon Sep 17 00:00:00 2001 From: Pritish Thakkar Date: Wed, 3 Oct 2018 11:06:01 +0530 Subject: [PATCH 12/42] added my details --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index 2fdad90..8bda3f5 100644 --- a/README.md +++ b/README.md @@ -414,6 +414,11 @@ Start adding your names here: - Engineer at heart, if it isn't broken, break it! - [![github-alt][github-img]](https://github.com/slouchd) +### Pritish Thakkar +- I'm an undergraduate from Punjab engineering college +- My favourite programming language is C++ and I'm a sport programmer. +- [![github-alt][github-img]](https://github.com/ma5terdrag0n) + ### Example Profile - I'm an example that you can copy, if you want :) - I work for... From e479fbdebeadeb5ba18a2195e8b52755dab60835 Mon Sep 17 00:00:00 2001 From: Thilina Dissanayake Date: Wed, 3 Oct 2018 11:37:27 +0530 Subject: [PATCH 13/42] Update README.md added contributor details --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index 2fdad90..5065cee 100644 --- a/README.md +++ b/README.md @@ -82,6 +82,11 @@ Start adding your names here: - My hobbies include coding, debating and dancing - [![github-alt][github-img]](https://github.com/anshima1) +### thilna +- I am a web developer. +- I like to listen to music while I code. + + ### Srishty Mittal - I'm a contributor and web developer - I study Electronics and Communication Engineering From 6dc2e4167762776ab6e7059619b71e2fcdbde6cd Mon Sep 17 00:00:00 2001 From: Jason Brown Date: Tue, 2 Oct 2018 23:28:26 -0700 Subject: [PATCH 14/42] Added imgs folder with freeCodeCamp icon --- imgs/freecodecamp.png | Bin 0 -> 611 bytes 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 imgs/freecodecamp.png diff --git a/imgs/freecodecamp.png b/imgs/freecodecamp.png new file mode 100644 index 0000000000000000000000000000000000000000..99d68a9da74ca88c36513f3f1d6f443f96d42119 GIT binary patch literal 611 zcmV-p0-XJcP)4i2*G+g$(v0q{vg zK~zY`wbo0BPGJ}a@ZTI`TxY0ptC^H6CYLZ9vQkJE6Qw9+VP~c6#ZGdGvQaiuNKsZq zu9Ko%vY=)mq)eER+lDfYIX2H%XHMVuop*|VozC;V=Xsw0d!E}lOvD`Aj;j&YpbxX9 z;S{c-qme=zz9PrMCXQy{8{Q@ouMeNk8!21~g;fd8j)(5eMDlH+f2sVSFCOfgMEG)y zp$oH+RoEO1n+?U#ea3)vybmYi;b<|ARoG_{YCfzhzZu^sb6URzG1HP_IId$?QJ z>p)8r`*D20yeukmB!P4qdJF5zaes%WA&(`b?F-toIK}it;?9tNU|-0Ka3S`F6NpEV zW%!7tiJ@+ZgZAQQ?CnNBe&c=u@!TMH9YYDEZFr3rXst8jzhh>?!S7%s3!%FZ#%3Wp zhbeX5stX6ARjP(a4_?A*{K5XjaG%EV(%!~|ky#r)Ikt$f4PkH+L*#HcQPDnS43^Vc z8=FV`KkO-t*a@fY$6jp3t&&kIPBzGIJzR_0sbOUltEq)jMWKU^B23wdZ)bw6OI4?002ovPDHLkV1hwB5*q*j literal 0 HcmV?d00001 From 7ca7603fd42b8a74a4ee3c0f3653d8286e39b67e Mon Sep 17 00:00:00 2001 From: Jason Brown Date: Tue, 2 Oct 2018 23:29:39 -0700 Subject: [PATCH 15/42] Added imgs folder with freeCodeCamp icon --- README.md | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 8627a51..ff47359 100644 --- a/README.md +++ b/README.md @@ -359,10 +359,14 @@ Start adding your names here: - Currently learning the Rust programming language - [![github-alt][github-img]](https://github.com/GuineaPiet) -### My Name -- Description about me +### Jason +- AI/ML enthusiast +- High-functioning Autistic +- I love languages, both the people kind and the computer kind +- I prefer the computer kind +- and cats. - [![github-alt][github-img]](https://github.com/jcbrown602) -- ![freeCodeCamp](https://imgur.com/mFClFSE) + ![Alt text](imgs/freecodecamp.png) ### Example Profile - I'm an example that you can copy, if you want :) From 95b5b958c71899d0ee393a3ee93a4eb4b03e27f9 Mon Sep 17 00:00:00 2001 From: Iqlaas Date: Wed, 3 Oct 2018 14:29:46 +0800 Subject: [PATCH 16/42] Add name and code --- README.md | 5 +++++ code/rubyhelloworld.rb | 11 +++++++++++ 2 files changed, 16 insertions(+) create mode 100644 code/rubyhelloworld.rb diff --git a/README.md b/README.md index 2fdad90..da1b233 100644 --- a/README.md +++ b/README.md @@ -414,6 +414,11 @@ Start adding your names here: - Engineer at heart, if it isn't broken, break it! - [![github-alt][github-img]](https://github.com/slouchd) +### Kamal Iqlaas +- Pursuing Master in Business Intelligence and Data Analytics +- Love tech, learn tech, use tech, teach tech. +- [![github-alt][github-img]](https://github.com/Iqlaas) + ### Example Profile - I'm an example that you can copy, if you want :) - I work for... diff --git a/code/rubyhelloworld.rb b/code/rubyhelloworld.rb new file mode 100644 index 0000000..f4a8b5e --- /dev/null +++ b/code/rubyhelloworld.rb @@ -0,0 +1,11 @@ +class HelloWorld + def initialize(name) + @name = name.capitalize + end + def say_hi + puts "Hello #{@name}!" + end +end + +hello = HelloWorld.new("World") +hello.say_hi From 3d86465cbb5c000f0d467aaa2040f5cd28ccfc4d Mon Sep 17 00:00:00 2001 From: Nabheet Madan Date: Wed, 3 Oct 2018 13:04:02 +0530 Subject: [PATCH 17/42] Update my(nabheet madan) info --- README.md | 14 ++++---------- 1 file changed, 4 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 2fdad90..c65470b 100644 --- a/README.md +++ b/README.md @@ -414,16 +414,10 @@ Start adding your names here: - Engineer at heart, if it isn't broken, break it! - [![github-alt][github-img]](https://github.com/slouchd) -### Example Profile -- I'm an example that you can copy, if you want :) -- I work for... -- My hobbies include... -- [![twitter-alt][twitter-img]](https://twitter.com/example) - [![facebook-alt][facebook-img]](https://facebook.com/example) - [![google-img][google-img]](https://plus.google.com/+Example) - [![tumblr-alt][tumblr-img]](https://example.tumblr.com) - [![dribbble-alt][dribbble-img]](https://dribbble.com/example) - [![github-alt][github-img]](https://github.com/example) +### Nabheet Madan +- I'm a SAP Technical Consultant interested in #Technical stuff. +- I like to code +- [![twitter-alt][twitter-img]](https://twitter.com/nabheet) ## How to Contribute From 55f84c8d85855da5ed21967112d47a8efa96226d Mon Sep 17 00:00:00 2001 From: Shiven Sinha Date: Wed, 3 Oct 2018 13:32:01 +0530 Subject: [PATCH 18/42] Added my details --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index 2fdad90..9c6172d 100644 --- a/README.md +++ b/README.md @@ -414,6 +414,12 @@ Start adding your names here: - Engineer at heart, if it isn't broken, break it! - [![github-alt][github-img]](https://github.com/slouchd) +### Shiven S. +- I'm a web developer and a high school student. +- I do freelance projects and involve myself in internships. +- [![twitter-alt][twitter-img]](https://twitter.com/sinha_shiven) + [![github-alt][github-img]](https://github.com/shivensinha4) + ### Example Profile - I'm an example that you can copy, if you want :) - I work for... From 3478819ebd6393e57cf7f73dc06ac5a40bbccf72 Mon Sep 17 00:00:00 2001 From: Aadesh Mirajkar <32631561+captainadsh@users.noreply.github.com> Date: Wed, 3 Oct 2018 14:19:42 +0530 Subject: [PATCH 19/42] Added my info --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index 2fdad90..9098e68 100644 --- a/README.md +++ b/README.md @@ -414,6 +414,10 @@ Start adding your names here: - Engineer at heart, if it isn't broken, break it! - [![github-alt][github-img]](https://github.com/slouchd) +### Aadesh Mirajkar +- Student, Code Ninza +- [![github-alt][github-img]](https://github.com/captainadsh) + ### Example Profile - I'm an example that you can copy, if you want :) - I work for... From 7ce3a4d90c0b36d1f143141345ef1a5efab494a8 Mon Sep 17 00:00:00 2001 From: Ben Mort <43807761+jmort125@users.noreply.github.com> Date: Wed, 3 Oct 2018 04:53:30 -0400 Subject: [PATCH 20/42] Added self to the read me just added small bio and social links --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index 2fdad90..d74a23e 100644 --- a/README.md +++ b/README.md @@ -414,6 +414,12 @@ Start adding your names here: - Engineer at heart, if it isn't broken, break it! - [![github-alt][github-img]](https://github.com/slouchd) +### Ben Mort +- New to code but want to learn a lot +- love games and league of legends +- [![twitter-alt][twitter-img]](https://twitter.com/Ben_Aaron_Mort) + [![github-alt][github-img]](https://github.com/jmort125) + ### Example Profile - I'm an example that you can copy, if you want :) - I work for... From 6e70e0d0176ae44884884accddd7fc7bd4cc84c6 Mon Sep 17 00:00:00 2001 From: Darshan Date: Wed, 3 Oct 2018 16:17:10 +0530 Subject: [PATCH 21/42] Update README.md --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index 2fdad90..b2f5e79 100644 --- a/README.md +++ b/README.md @@ -414,6 +414,12 @@ Start adding your names here: - Engineer at heart, if it isn't broken, break it! - [![github-alt][github-img]](https://github.com/slouchd) +### Darshan G +- Computer Science student +- Some of my hobbies include photography, math, writing code, video games and writing letters +- [![instagram-alt][instagram-img]](https://www.instagram.com/darsh4n/) + [![github-alt][github-img]](https://github.com/darshan934) + ### Example Profile - I'm an example that you can copy, if you want :) - I work for... From 9f7848bb482353f83ca6b557dac5e362dbf87ad7 Mon Sep 17 00:00:00 2001 From: Himanshu Nailwal Date: Wed, 3 Oct 2018 17:44:38 +0530 Subject: [PATCH 22/42] Update README.md Updated with my few personal details. --- README.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 2fdad90..85ebea9 100644 --- a/README.md +++ b/README.md @@ -402,13 +402,19 @@ Start adding your names here: ### CohheeTime - I built my first website in 1999 - [![github-alt][github-img]](https://github.com/CohheeTime) + -[![github-alt][github-img]](https://github.com/CohheeTime) ### Ben C. - A high school student who is a beginner at code. - I like to code and play games. - [![github-alt][github-img]](https://github.com/yopamuhanu) +### Himanshu Nailwal +- I'm pursuing my post graduation. +- I am an aspiring Data Scientist. +- [![github-alt][github-img]](https://github.com/ryokugyu) +- [![twitter-alt][twitter-img]](https://twitter.com/ryokugyu_) + ### slouch - Linux Systems Administrator turning DevOps person - Engineer at heart, if it isn't broken, break it! From 725094774ceb9ecaa2e533e54d77ff0bacf55330 Mon Sep 17 00:00:00 2001 From: Shivani Gupta <40537358+Gshivani1234@users.noreply.github.com> Date: Wed, 3 Oct 2018 18:41:16 +0530 Subject: [PATCH 23/42] Update README.md --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index 2fdad90..b420830 100644 --- a/README.md +++ b/README.md @@ -414,6 +414,12 @@ Start adding your names here: - Engineer at heart, if it isn't broken, break it! - [![github-alt][github-img]](https://github.com/slouchd) +### Shivani Gupta +- I'm a computer science student. +- I am Interested in Web Development. +- I love designing frontend Webpages and Coding. +- [![github-alt][github-img]](https://github.com/Gshivani1234) + ### Example Profile - I'm an example that you can copy, if you want :) - I work for... From b673c3063401a55372421ef680fb76f5c1fe869a Mon Sep 17 00:00:00 2001 From: Himanshu Aggarwal Date: Wed, 3 Oct 2018 19:03:24 +0530 Subject: [PATCH 24/42] Update README.md --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index 2fdad90..11cd59a 100644 --- a/README.md +++ b/README.md @@ -414,6 +414,12 @@ Start adding your names here: - Engineer at heart, if it isn't broken, break it! - [![github-alt][github-img]](https://github.com/slouchd) +### Himanshu Aggarwal (@haggcoder) +- 3rd year CS undergraduate at Delhi Technological University +- Microsoft Student Partner +- [![facebook-alt][facebook-img]](https://www.facebook.com/profile.php?id=100014377755202) + [![github-alt][github-img]](https://github.com/haggcoder) + ### Example Profile - I'm an example that you can copy, if you want :) - I work for... From 02ac4ab69fd76a3a179fa2fde2e1591496952f6c Mon Sep 17 00:00:00 2001 From: Jason Brown Date: Wed, 3 Oct 2018 07:17:26 -0700 Subject: [PATCH 25/42] Added bullet for freeCodeCamp to Example Profile section of README.md --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index ff47359..d4ed357 100644 --- a/README.md +++ b/README.md @@ -366,7 +366,7 @@ Start adding your names here: - I prefer the computer kind - and cats. - [![github-alt][github-img]](https://github.com/jcbrown602) - ![Alt text](imgs/freecodecamp.png) + [![freeCodeCamp](imgs/freecodecamp.png)](https://www.freecodecamp.org/jcbrown602) ### Example Profile - I'm an example that you can copy, if you want :) @@ -378,6 +378,7 @@ 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) + [![freeCodeCamp](imgs/freecodecamp.png)](https://www.freecodecamp.org/example) ## How to Contribute From 0a3a4d01d73deeada76d500bd0ef656b0bd6e2e4 Mon Sep 17 00:00:00 2001 From: Md Akram Kazmi Date: Wed, 3 Oct 2018 20:24:24 +0530 Subject: [PATCH 26/42] Name added to README.md --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index 0344918..499fd70 100644 --- a/README.md +++ b/README.md @@ -491,6 +491,11 @@ Start adding your names here: - Watching Tennis - [![github-alt][github-img]](https://github.com/ravikishorethella) +### Md Akram Kazmi +- Trying to learn what I can. +- Love to play games! +- [![github-alt][github-img]](https://github.com/akramkazmi71) + ### Example Profile - I'm an example that you can copy, if you want :) - I work for... From 961e9bc3f5376c745bef52a0dcdaf7bc887f3647 Mon Sep 17 00:00:00 2001 From: Luke Oliff Date: Wed, 3 Oct 2018 08:23:33 -0700 Subject: [PATCH 27/42] Update README.md --- README.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/README.md b/README.md index df38bf6..d71dc74 100644 --- a/README.md +++ b/README.md @@ -40,8 +40,6 @@ Please note that this project is released with a [Code of Conduct](CODE_OF_CONDU ## Contributors List -Start adding your names here: - # A ### Aditya Choudhary From 8077d5045674045dfabef22e6bd1522bad7b2b1d Mon Sep 17 00:00:00 2001 From: Luke Oliff Date: Wed, 3 Oct 2018 08:32:41 -0700 Subject: [PATCH 28/42] Rename rubyhelloworld.rb to kamaliqlaas.rb --- code/{rubyhelloworld.rb => kamaliqlaas.rb} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename code/{rubyhelloworld.rb => kamaliqlaas.rb} (100%) diff --git a/code/rubyhelloworld.rb b/code/kamaliqlaas.rb similarity index 100% rename from code/rubyhelloworld.rb rename to code/kamaliqlaas.rb From 9c1550c9072b207f7562a00cddc2e0922d5d0149 Mon Sep 17 00:00:00 2001 From: Luke Oliff Date: Wed, 3 Oct 2018 09:12:09 -0700 Subject: [PATCH 29/42] Rename pr.cpp to code/pr.cpp --- pr.cpp => code/pr.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename pr.cpp => code/pr.cpp (99%) diff --git a/pr.cpp b/code/pr.cpp similarity index 99% rename from pr.cpp rename to code/pr.cpp index 66e6e0c..02e49d0 100644 --- a/pr.cpp +++ b/code/pr.cpp @@ -19,4 +19,4 @@ int main(){ cout< Date: Wed, 3 Oct 2018 09:12:40 -0700 Subject: [PATCH 30/42] Rename first.txt to code/first.txt --- first.txt => code/first.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename first.txt => code/first.txt (77%) diff --git a/first.txt b/code/first.txt similarity index 77% rename from first.txt rename to code/first.txt index 274e6d6..03e5f25 100644 --- a/first.txt +++ b/code/first.txt @@ -1,2 +1,2 @@ -< \ No newline at end of file +< From aab54f0cc1774a3b559e11852e9adffc7c8533d4 Mon Sep 17 00:00:00 2001 From: Luke Oliff Date: Wed, 3 Oct 2018 09:13:30 -0700 Subject: [PATCH 31/42] Delete default.html --- default.html | 60 ---------------------------------------------------- 1 file changed, 60 deletions(-) delete mode 100644 default.html diff --git a/default.html b/default.html deleted file mode 100644 index d433193..0000000 --- a/default.html +++ /dev/null @@ -1,60 +0,0 @@ - - - - - - - - {% seo %} - - - - -
-
-

{{ site.title | default: site.github.repository_name }}

- - {% if site.logo %} - Logo - {% endif %} - -

{{ site.description | default: site.github.project_tagline }}

- -

Home

- -

Current Projects

- -

First Timers

-

Hacktoberfest 2018

-

24pullrequests 2018

- -

Want to know your first PR?

- -

firstpr.me

-
-
- - {{ content }} - -
- -
- -{% if site.google_analytics %} - -{% endif %} - - \ No newline at end of file From 97402088fa8e86c48ef0dd2caea0240f9e3732ab Mon Sep 17 00:00:00 2001 From: Nikhil Singh Date: Wed, 3 Oct 2018 21:48:15 +0530 Subject: [PATCH 32/42] Update README.md --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index 6e09401..231744b 100644 --- a/README.md +++ b/README.md @@ -399,6 +399,12 @@ Please note that this project is released with a [Code of Conduct](CODE_OF_CONDU # N +### Nikhil Singh +- I'm a full stack Blokchain and NodeJS Developer. +- I'm a huge Manchester United fan and an avid traveller. +- [![github-alt][github-img]](https://github.com/nikmufc7) + [![twitter-alt][twitter-img]](https://twitter.com/creativemartial) + ### Nabheet Madan - I'm a SAP Technical Consultant interested in #Technical stuff. - I like to code From aab7151cdd82d9f5a979804066c3dc7fe8e23964 Mon Sep 17 00:00:00 2001 From: Md Shahbaz Alam Date: Wed, 3 Oct 2018 21:54:25 +0530 Subject: [PATCH 33/42] add my name --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index 6e09401..d8fa637 100644 --- a/README.md +++ b/README.md @@ -397,6 +397,12 @@ Please note that this project is released with a [Code of Conduct](CODE_OF_CONDU - [![twitter-alt][twitter-img]](https://twitter.com/cynferdd) [![github-alt][github-img]](https://github.com/cynferdd) +### Md Shahbaz Alam +- I'm a Full Stack Developer, Technical Evangelist and Open Source enthusiast. +- I like to speak at conferences, events and meet-ups. +- [![twitter-alt][twitter-img]](https://twitter.com/mdsbzalam) + [![github-alt][github-img]](https://github.com/shahbaz17) + # N ### Nabheet Madan From c4dc24ab33ae8561bac2ba7f6a4ceb62767906a5 Mon Sep 17 00:00:00 2001 From: Galvarez Date: Wed, 3 Oct 2018 11:53:26 -0500 Subject: [PATCH 34/42] Add myself ;). --- README.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/README.md b/README.md index 286238a..df0dc44 100644 --- a/README.md +++ b/README.md @@ -258,6 +258,13 @@ Please note that this project is released with a [Code of Conduct](CODE_OF_CONDU - I am a young developer in india - I'm currently a student! +### Gerlis A.C :computer: (@gerlis18) +- I am from Colombia. +- I am a junior developer Java, Javascript, HTML. +- I :hearts: to play :guitar: +- [![twitter-alt][twitter-img]](https://twitter.com/geralvarez15) +[![github-alt][github-img]](https://github.com/gerlis18) + # H ### Hafpaf From 10697587b6f8c128157da43c6d2a976fb347abae Mon Sep 17 00:00:00 2001 From: niawkung Date: Thu, 4 Oct 2018 00:03:37 +0700 Subject: [PATCH 35/42] :tada: --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index 286238a..3535df7 100644 --- a/README.md +++ b/README.md @@ -426,6 +426,11 @@ Please note that this project is released with a [Code of Conduct](CODE_OF_CONDU - Code, Football, Dota2 - [![github-alt][github-img]](https://github.com/thanhnha1103) +### Niaw Junior +- I'm an Frontend Developer from Thailand. +- I like to code +- [![github-alt][github-img]](https://github.com/niawjunior) + ### Nievas Martin - I'm an Electronic Engineer from Argentina. - Currently pursuing a PhD scholarship. From b99eeb34f143d5a499579b8d69b8173998082c28 Mon Sep 17 00:00:00 2001 From: Galvarez Date: Wed, 3 Oct 2018 13:14:29 -0500 Subject: [PATCH 36/42] Update: moved to top of "G" section --- README.md | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index df0dc44..5958f41 100644 --- a/README.md +++ b/README.md @@ -254,17 +254,18 @@ Please note that this project is released with a [Code of Conduct](CODE_OF_CONDU # G -### gursimran -- I am a young developer in india -- I'm currently a student! - ### Gerlis A.C :computer: (@gerlis18) - I am from Colombia. - I am a junior developer Java, Javascript, HTML. +- I :hearts: the code :computer: - I :hearts: to play :guitar: - [![twitter-alt][twitter-img]](https://twitter.com/geralvarez15) [![github-alt][github-img]](https://github.com/gerlis18) +### gursimran +- I am a young developer in india +- I'm currently a student! + # H ### Hafpaf From 7f7e65a318fc7af65e8dfca33ddd1e176c82c1f1 Mon Sep 17 00:00:00 2001 From: Gleb Skibitsky Date: Wed, 3 Oct 2018 22:25:46 +0300 Subject: [PATCH 37/42] Add my name :) --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index 286238a..a734ccd 100644 --- a/README.md +++ b/README.md @@ -258,6 +258,11 @@ Please note that this project is released with a [Code of Conduct](CODE_OF_CONDU - I am a young developer in india - I'm currently a student! +### Gleb +- Software engineer, Blockchain and .NET developer +- My first hacktoberfest! +- [![github-alt][github-img]](https://github.com/skibitsky) + # H ### Hafpaf From ab5f357ff7cacc9c1747f1af322275f822c2fd78 Mon Sep 17 00:00:00 2001 From: Gleb Skibitsky Date: Wed, 3 Oct 2018 22:36:22 +0300 Subject: [PATCH 38/42] Create HelloHacktoberfest.sol --- code/HelloHacktoberfest.sol | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 code/HelloHacktoberfest.sol diff --git a/code/HelloHacktoberfest.sol b/code/HelloHacktoberfest.sol new file mode 100644 index 0000000..bde6431 --- /dev/null +++ b/code/HelloHacktoberfest.sol @@ -0,0 +1,10 @@ +pragma solidity ^0.4.20; + +// Hacktober greetings smart contract +contract HelloHacktoberfest { + + function Hello() external view returns (string) { + return "Hello Hacktoberfest 2018!"; + } + +} From 0cfc67b15c457e92d62c37a8f650a68943d319f2 Mon Sep 17 00:00:00 2001 From: lchaglla Date: Wed, 3 Oct 2018 22:00:18 +0200 Subject: [PATCH 39/42] Added my name to READE.md --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index 286238a..e2c6b53 100644 --- a/README.md +++ b/README.md @@ -378,6 +378,10 @@ Please note that this project is released with a [Code of Conduct](CODE_OF_CONDU - [![twitter-alt][twitter-img]](https://twitter.com/lincolnanders5) [![github-alt][github-img]](https://github.com/lincolnanders5) +### Luis Chaglla +- Software Engineer in Spain +- [![github-alt][github-img]](https://github.com/lchaglla) + ### Luke Oliff - Technical Writer working for @auth0 - [![twitter-alt][twitter-img]](https://twitter.com/mroliff) From e750ccd58412ce5b87404ae78443e35f92864822 Mon Sep 17 00:00:00 2001 From: PotatoPuree <37886297+PotatoPuree@users.noreply.github.com> Date: Wed, 3 Oct 2018 21:35:51 +0100 Subject: [PATCH 40/42] Added HelloWorld.py --- code/HelloWorld.py | 1 + 1 file changed, 1 insertion(+) create mode 100644 code/HelloWorld.py diff --git a/code/HelloWorld.py b/code/HelloWorld.py new file mode 100644 index 0000000..40cdeb7 --- /dev/null +++ b/code/HelloWorld.py @@ -0,0 +1 @@ +print ("Hello World") From 6965877d0b2dff3e0cb2464f30648a56999ec379 Mon Sep 17 00:00:00 2001 From: PotatoPuree <37886297+PotatoPuree@users.noreply.github.com> Date: Wed, 3 Oct 2018 22:13:39 +0100 Subject: [PATCH 41/42] Updated README.md --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index 286238a..f1a0170 100644 --- a/README.md +++ b/README.md @@ -456,6 +456,10 @@ Please note that this project is released with a [Code of Conduct](CODE_OF_CONDU - Currently learning the Rust programming language - [![github-alt][github-img]](https://github.com/GuineaPiet) +### PotatoPuree +- Interactive Media MSc. student from Cork +- [![github-alt][github-img]](https://github.com/PotatoPuree) + ### Pritish Thakkar - I'm an undergraduate from Punjab engineering college - My favourite programming language is C++ and I'm a sport programmer. From 6b5607feb5b0c57f89ed5d2830da64eee9452e4e Mon Sep 17 00:00:00 2001 From: Pranav Singh <32638990+pranav0408@users.noreply.github.com> Date: Thu, 4 Oct 2018 02:44:54 +0530 Subject: [PATCH 42/42] add detail --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index 08ae9d3..1bfe4c1 100644 --- a/README.md +++ b/README.md @@ -208,6 +208,12 @@ Start adding your names here: - Nerd, geek, gamer, I love TLoK [![github-alt][github-img]](https://github.com/frannievas) +### Pranav Singh +- Competitve Programmer +- Open Source Contributor +- Front End Developer + [![github-alt][github-img]](https://github.com/pranav0408) + ### Example Profile - I'm an example that you can copy, if you want :) - I work for...