- Ubuntu 20.04
- CUDA 10.2
- Docker Latest
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
| http://www.weather.gov.sg/files/dailydata/DAILYDATA_S44_201901.csv | |
| http://www.weather.gov.sg/files/dailydata/DAILYDATA_S44_201902.csv | |
| http://www.weather.gov.sg/files/dailydata/DAILYDATA_S44_201903.csv | |
| http://www.weather.gov.sg/files/dailydata/DAILYDATA_S44_201904.csv | |
| http://www.weather.gov.sg/files/dailydata/DAILYDATA_S44_201905.csv | |
| http://www.weather.gov.sg/files/dailydata/DAILYDATA_S44_201906.csv | |
| http://www.weather.gov.sg/files/dailydata/DAILYDATA_S44_201907.csv | |
| http://www.weather.gov.sg/files/dailydata/DAILYDATA_S44_201908.csv | |
| http://www.weather.gov.sg/files/dailydata/DAILYDATA_S44_201909.csv | |
| http://www.weather.gov.sg/files/dailydata/DAILYDATA_S44_201910.csv |
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
| /* Source: | |
| https://www.kaggle.com/nasa/astronaut-yearbook | |
| */ | |
| CREATE TABLE astronauts( | |
| Name TEXT PRIMARY KEY, | |
| Year INTEGER, | |
| GroupNum INTEGER, | |
| Status TEXT, | |
| Birth_Date TEXT, | |
| Birth_Place TEXT, |
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
| CREATE TABLE pokemon( | |
| Number INTEGER, | |
| Name TEXT PRIMARY KEY, | |
| Type_1 TEXT, | |
| Type_2 TEXT, | |
| Total INTEGER, | |
| HP INTEGER, | |
| Attack INTEGER, | |
| Defense INTEGER, | |
| Sp_Atk INTEGER, |
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
| import System.IO | |
| import Control.Monad | |
| type Node = Prelude.String | |
| -- singleton inductive, whose constructor was Node | |
| node_rect :: (Prelude.String -> a1) -> Node -> a1 | |
| node_rect f = | |
| f |
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
| From mathcomp Require Import all_ssreflect. | |
| From void Require Import void. | |
| From deriving Require Import deriving. | |
| Require Import Coq.Strings.String. | |
| Open Scope string_scope. | |
| (* Deriving the type structures of string *) | |
| Canonical string_indType := Eval hnf in IndType _ _ [indMixin for string_rect]. |
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
| From mathcomp Require Import all_ssreflect. | |
| From void Require Import void. | |
| From deriving Require Import deriving. | |
| Require Import Coq.Strings.String. | |
| Open Scope string_scope. | |
| (* Deriving the type structures of string *) | |
| Canonical string_indType := Eval hnf in IndType _ _ [indMixin for string_rect]. |
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
| From mathcomp Require Import all_ssreflect. | |
| From void Require Import void. | |
| From deriving Require Import deriving. | |
| Require Import Coq.Strings.String. | |
| Open Scope string_scope. | |
| (* Deriving the type structures of string *) | |
| Canonical string_indType := Eval hnf in IndType _ _ [indMixin for string_rect]. |
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
| From mathcomp Require Import all_ssreflect. | |
| From void Require Import void. | |
| From deriving Require Import deriving. | |
| Require Import Coq.Strings.String. | |
| Open Scope string_scope. | |
| Section uri. |
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
| From mathcomp Require Import all_ssreflect. | |
| Inductive Ting := a | b | c | d | aa | bb | cc | dd | default. | |
| Scheme Equality for Ting. | |
| Lemma eq_TingP : Equality.axiom Ting_beq. | |
| Proof. by do 2!case; constructor. Qed. | |
| Definition Ting_eqMixin := Equality.Mixin eq_TingP. | |
| Canonical Ting_eqType := Equality.Pack Ting_eqMixin Ting. | |
| Definition query_pred := pred Ting. |
NewerOlder