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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title>Hádanka</title> | |
<style type="text/css"> | |
.hidden { display: none; } | |
.d-flex { display: flex; } | |
.f-auto { flex: auto; } | |
.m-0 { margin: 0; } |
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 'net/telnet' | |
class Client | |
# Fetch weather forecast for NYC. | |
# | |
# @return [String] | |
def response | |
fetch_all_in_one_response | |
# fetch_multiple_responses | |
ensure |