The notes taken here apply as of version version 4.24.3 of Unreal Engine for Linux.
- Shift + End - Snap object to the ground
--- 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 |
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 |
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 |