Skip to content

Instantly share code, notes, and snippets.

@slavik925
slavik925 / normcore-llm.md
Created September 1, 2023 18:19 — forked from veekaybee/normcore-llm.md
Normcore LLM Reads
require 'getoptlong'
require 'net/http'
require 'json'
require 'time'
require 'date'
opts = GetoptLong.new(['--country', '-c', GetoptLong::REQUIRED_ARGUMENT])
country_slug = nil
original_contry = nil
import clc from "https://deno.land/x/color/index.ts";
interface ICovidReportApp {
country: string | null;
}
interface ICovidResponse {
Country: string;
CountryCode: string;
Cases: number;