Merge branch 'master' into PotatoPuree/HelloWorld

This commit is contained in:
Luke Oliff 2018-10-03 14:21:57 -07:00 committed by GitHub
commit 984e61a3ce
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 38 additions and 0 deletions

View File

@ -254,10 +254,23 @@ Please note that this project is released with a [Code of Conduct](CODE_OF_CONDU
# G
### 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!
### Gleb
- Software engineer, Blockchain and .NET developer
- My first hacktoberfest!
- [![github-alt][github-img]](https://github.com/skibitsky)
# H
### Hafpaf
@ -378,6 +391,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)
@ -426,6 +443,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.
@ -460,6 +482,12 @@ Please note that this project is released with a [Code of Conduct](CODE_OF_CONDU
- Interactive Media MSc. student from Cork
- [![github-alt][github-img]](https://github.com/PotatoPuree)
### Pranav Singh
- Competitve Programmer
- Open Source Contributor
- Front End Developer
[![github-alt][github-img]](https://github.com/pranav0408)
### Pritish Thakkar
- I'm an undergraduate from Punjab engineering college
- My favourite programming language is C++ and I'm a sport programmer.

View File

@ -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!";
}
}