Skip to content

Instantly share code, notes, and snippets.

View cubap's full-sized avatar

Patrick Cuba cubap

  • Saint Louis University
  • 63103 USA
  • 07:06 (UTC -05:00)
View GitHub Profile
@cubap
cubap / weather-data.json
Last active April 11, 2026 11:55
METER KCPS/KSTL
{
"lastUpdated": "2026-04-11T11:55:23.766202+00:00",
"kcps": {
"metar": "KCPS 111053Z AUTO 05003KT 10SM BKN095 09/08 A3035 RMK AO2 SLP275 T00940078 $",
"windDirection": 50,
"windSpeed": 3,
"windGust": null,
"visibility": 10,
"temperatureC": 9,
"dewPointC": 8,
@cubap
cubap / fb.js
Last active July 27, 2018 21:32
fizzbin
for (let i=1;i<101;i++){
let log;
if(!(i%3))log="fizz";
if(!(i%5))log=log?"fizzbuzz":"buzz";
console.log(log||i);
}