Skip to content

klssmith/100lines

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

35 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Esri UK's 100 Lines or Less Developer Challenge 2017!

Have you got what it takes to create an app in 100 lines or less using the ArcGIS JavaScript API? If shortlisted will be given the opportunity to showcase your app on the developer floor at Esri UK’s Annual Conference. Get creative!

Rules

  1. Maximum of 100 Lines of beautified JavaScript code. (Your CSS and HTML code can be as long as you want).
  2. Maximum of 100 characters per line.
  3. Using Esri's ArcGIS API for JavaScript.
  4. Each project must contain an index.html file and a seperate js file.(see example).
  5. Data must be publically accessible.
  6. Applications must be freely distributable via apache 2.0 license.
  7. Applicants must be 18+ and be living in the UK.
  8. Able to attend the Esri UK Annual Conference on the 16th May 2017.
  9. You may only enter this competition if you are a resident of the United Kingdom and are aged 18 years or over. Employees (and employees immediate family and their household members) of ESRI (UK) Limited, ESRI Ireland, ESRI Holdings Group and ESRI Inc. may not apply.
By submitting your application you're agreeing to the terms and conditions. Full list of which can be found here.

Verification

To verify the code is 100 lines or less we are using this beautifier. We recommend you use this as you go along to test your code. Using the following settings. Indent with a tab character. Remove all extra new lines. Wrap lines to near 110 character (Although remember only 100 characters per line.) Braces with control statement.

Contest Period

  • Starts: 17:00 GMT Tuesday 21th March 2017
  • Closes: 23:59 BST Sunday 23rd April, 2017 (No entries will be accepted after this time.)

You will be contacted via email by 28th of April if you've been shortlisted, see note section below.

The winners will be announced at the Esri UK Annual Conference 16th May 2017.

How to Enter

  1. Fork and then clone this repo.
  2. Add a sub-folder in submissions with your app in it (see example).
  3. Make a pull request on the master branch to submit your entry.

This request represents your agreement to the Terms and Conditions.

NOTE:

  • Be sure to Pull and Merge from this repo to get the latest before making your pull request! We'll publish the app for you.
  • If you don't have a public email on your github account, can you please either email me or leave your email as a comment in the code. Otherwise we cannot contact you!

What can I win?

  • Registration, Flights and accommodation to the Esri European Developer Summit in Berlin (24th - 26th October)
  • iPad
  • £100 Amazon voucher

Judging Criteria

  1. Effective use of the ArcGIS API for JavaScript
  2. UX and UI
  3. Coding style
  4. Responsive design
  5. The concept or idea

Example Entry

Follow the structure of this example. View it live here.

\project\
\project\index.html
\project\js\main.js
\project\css\style.css
\project\images\
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="initial-scale=1,maximum-scale=1,user-scalable=no">
  <title>SampleSubmission</title>

  <link rel="stylesheet" href="https://js.arcgis.com/4.3/esri/css/main.css">
  <link rel="stylesheet" href="css/style.css">
  
  <script src="https://js.arcgis.com/4.3/"></script>
  <script src="js/main.js"></script>

</head>

<body>
  <div id="viewDiv"></div>
  <div id="info">
    <span id="name"></span><br>
    <span id="category"></span><br>
    <span id="wind"></span>
  </div>
</body>

</html>

Any questions or queries please feel free to email smcgee@esriuk.com

Good luck!

Resources

Licensing

Copyright 2017 Esri UK

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

A copy of the license is available in the repository's license.txt file.

About

Esri UK's 100 Lines Or Less Developer Challenge 2017

Resources

License

Apache-2.0, Apache-2.0 licenses found

Licenses found

Apache-2.0
LICENSE
Apache-2.0
license.txt

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 63.1%
  • HTML 28.0%
  • CSS 8.9%