This file contains 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
Paxman the Peacemaker as he grills feuding Japan and China ambassadors in SEPARATE rooms | |
Russian President Vladimir Putin wants to start World War Three, says Ukraine PM | |
Putin's nuclear threat: Russian leader nearly started World War Three over the Crimea war | |
Putin has started a 'war with the whole civilised world' which could leave MILLIONS dead | |
Russia's chilling THREAT to the West: Putin's army chief warns of 'how it will all END' | |
World War Three in SPACE? Fears over rise in anti-satellite weapons created by Russia | |
Migrant crisis and Euro tensions threaten to trigger catastrophic conflict claim experts | |
World War Three could begin TOMORROW - and UK's armed forces 'are woefully unprepared' | |
WW3 THREAT: Ex-Navy chief calls presence of Russia's SAMs in Syria 'extremely dangerous' | |
Turkey threatens to SHOOT DOWN Putin's planes as it drags West closer to war with Russia |
This file contains 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 fs from 'fs-extra' | |
import Twitter from 'twitter-v2' | |
const n = '213' | |
const query = `"wordle ${n}" -RT` | |
const auth = fs.readJSONSync('auth-node.json') | |
const client = new Twitter(auth) |
This file contains 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 { Transform } from 'stream' | |
import inputStream from 'input-stream' | |
import outputStream from 'output-stream' | |
inputStream('input.csv') | |
.pipe( | |
Transform({ | |
readableObjectMode: true, | |
writableObjectMode: true, | |
transform: (chunk, encoding, callback) => { |
This file contains 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 node:16 | |
WORKDIR /usr/src/app | |
ENV NODE_ENV=production | |
COPY package*.json ./ | |
RUN npm ci | |
COPY . . | |
CMD [ "npm", "run", "start" ] |
This file contains 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
.container { | |
height: 100%; | |
overflow: hidden; | |
display: grid; | |
grid-template-columns: 1fr 1fr; | |
grid-template-rows: auto 1fr auto; | |
column-gap: 5px; | |
} | |
@media (max-width: 800px) { |
This file contains 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 biomsa from 'biomsa' | |
import fetch from 'node-fetch' | |
const sequence = async (id) => { | |
const params = new URLSearchParams({ | |
db: 'nuccore', | |
retmode: 'text', | |
rettype: 'fasta', | |
id, | |
}) |
This file contains 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
/static/* | |
Cache-Control: max-age=31536000 |
This file contains 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 fs from 'fs-extra' | |
import Twitter from 'twitter-v2' | |
const usernames = [] | |
const auth = fs.readJSONSync('auth.json') | |
const client = new Twitter(auth) | |
for (const username of usernames) { |
This file contains 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
curl -L https://data.usaid.gov/api/views/b6qu-bswt/rows.csv?accessType=DOWNLOAD | sqlite-utils insert predict.db event-dwellings - --csv --pk=PREDICT_EventID | |
curl -L https://data.usaid.gov/api/views/dsdz-699h/rows.csv?accessType=DOWNLOAD | sqlite-utils insert predict.db event-value-chain - --csv --pk=PREDICT_EventID | |
curl -L https://data.usaid.gov/api/views/ganm-umas/rows.csv?accessType=DOWNLOAD | sqlite-utils insert predict.db pcr-tests - --csv --pk=PREDICT_TestID --pk=PREDICT_SampleID | |
curl -L https://data.usaid.gov/api/views/y7ch-pxe8/rows.csv?accessType=DOWNLOAD | sqlite-utils insert predict.db site-event-characterization - --csv --pk=PREDICT_EventID | |
sqlite-utils create-index predict.db pcr-tests ViralFamilyTested | |
sqlite-utils create-index predict.db pcr-tests TestResult | |
sqlite-utils enable-fts predict.db pcr-tests Interpretation | |
datasette publish cloudrun predict.db --service=predict --memory=1Gi --metadata=metadata.json |
This file contains 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
@font-face { | |
font-family: "STIX Two Text"; | |
src: url("https://raw.githubusercontent.com/stipub/stixfonts/master/fonts/variable_ttf_woff2/STIXTwoText%5Bwght%5D.woff2") | |
format("woff2-variations"); | |
font-weight: 125 950; | |
font-stretch: 75% 125%; | |
font-style: normal; | |
} |