- Go to https://github.com/tscheipel/HaDes-V, click
Use this templatebutton and make a private repository (don't try to fork the repository because GitHub won't let you make it private). - Give the following users read/write access to your repo:
- Read the Instruction Guide.
- Start working on the implementation and push to your repository's
mainbranch.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- a/ext/openssl/extconf.rb | |
| +++ b/ext/openssl/extconf.rb | |
| @@ -122,8 +122,11 @@ | |
| have_func("SSL_is_server") | |
| # added in 1.1.0 | |
| +if !have_struct_member("SSL", "ctx", "openssl/ssl.h") || | |
| + try_static_assert("LIBRESSL_VERSION_NUMBER >= 0x2070000fL", "openssl/opensslv.h") | |
| + $defs.push("-DHAVE_OPAQUE_OPENSSL") | |
| +end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| require 'nokogiri' | |
| page = Nokogiri::HTML(open('attendees.html')) | |
| page.css('li.attendee').each do |attendee| | |
| name = attendee.css('.attendee__name > a:first-child').text.strip | |
| email = attendee.to_s.scan(/mailto:([^"]+)/)[0][0] | |
| puts "\"#{name}\",#{email}" | |
| end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| require 'open-uri' | |
| require 'json' | |
| MAXPOS = 21261 | |
| STEP = 20 | |
| def getUrl(pos) | |
| "http://code.google.com/codejam/contest/2270488/scoreboard/do/?cmd=GetScoreboard&start_pos=#{pos}" | |
| end |