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
# Start docker container | |
docker run -p 5432:5432 -e POSTGRES_USER=postcodesio -e POSTGRES_DB=postcodesiodb -e POSTGRES_PASSWORD=password idealpostcodes/postcodes.io.db | |
# Generate postcode list | |
psql -h 0.0.0.0 -p 5432 --username postcodesio postcodesiodb -t -A -F"," -c "SELECT postcode FROM postcodes ORDER BY postcode" > postcodes.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
import * as fs from "fs"; | |
import * as path from "path"; | |
import * as csv from "fast-csv"; | |
interface NumberScore { | |
scores: number[]; | |
remainingString: string; | |
} | |
const extractNumbers = (input: string): NumberScore => { |
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
{ | |
"Buckinghamshire": "GB-BKM", | |
"Cambridgeshire": "GB-CAM", | |
"Cumbria": "GB-CMA", | |
"Derbyshire": "GB-DBY", | |
"Devon": "GB-DEV", | |
"Dorset": "GB-DOR", | |
"East Sussex": "GB-ESX", | |
"Essex": "GB-ESS", | |
"Gloucestershire": "GB-GLS", |
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 { Client } from "@ideal-postcodes/core-browser"; | |
import { AddressSuggestion, Address } from "@ideal-postcodes/api-typings"; | |
export class ApiCache { | |
private client: Client; | |
private cache: Record<string, AddressSuggestion[]>; | |
private prefix = "!"; | |
constructor(client: Client) { | |
this.client = client; |
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
const INPUT = { INPUT: { actions: "input" } }; | |
const CLOSE = { CLOSE: "closed" }; | |
const SUGGEST = { SUGGEST: "suggesting" }; | |
const NOTIFY = { NOTIFY: "notifying" }; | |
const fetchMachine = Machine({ | |
initial: "closed", | |
context: { | |
suggestions: [], |
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
{ | |
"AB13": "Aberdeenshire", | |
"AB14": "Aberdeenshire", | |
"AB15": "Aberdeenshire", | |
"AB21": "Aberdeenshire", | |
"AB24": "Aberdeenshire", | |
"AB99": "Aberdeenshire", | |
"AB30": "Kincardineshire", | |
"AB31": "Kincardineshire", | |
"AB32": "Aberdeenshire", |
OlderNewer