Instantly share code, notes, and snippets.
Program or be programmed
- Appraisal Inbox
- Florida, USA
- https://www.appraisalinbox.com
- https://kur.ee/cpursley
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
| # You will need to install https://github.com/cpursley/html2markdown | |
| defmoduleWebpagedo | |
| @moduledocfalse | |
| defstruct[:url,:title,:description,:summary,:page_age] | |
| end | |
| defmoduleWebSearchdo | |
| @moduledoc """ | |
| Web search summarization chain |
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
| See:https://github.com/cpursley/vecto |
cpursley /batch_data.json
Last activeAugust 27, 2023 20:25
Batch Data: 6701 W 64th St, Mission, KS 66202 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
| { | |
| "status": { | |
| "code":200, | |
| "text":"OK" | |
| }, | |
| "results": { | |
| "properties": [ | |
| { | |
| "_id":"00c72799d8c05b7158357c3bf4d0906b", | |
| "dateModified":"2023-07-07T03:40:17.731Z", |
cpursley /QuickBooks Online V3 API OpenAPI.json
CreatedOctober 24, 2022 15:09 — forked fromkinlane/QuickBooks Online V3 API OpenAPI.json
QuickBooks Online V3 API OpenAPI 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
| { | |
| "swagger": "2.0", | |
| "info": { | |
| "version": "1.0", | |
| "title": "QuickBooks Online V3API Collections - OAuth2", | |
| "description": "The QuickBooks Online Accounting API is a RESTful API that is used to access QuickBooks companies.\n\nDocs Ref - https://developer.intuit.com/docs/api/accounting" | |
| }, | |
| "host": "DefaultParameterValue", | |
| "basePath": "/v3/company/DefaultParameterValue", | |
| "securityDefinitions": { |
Do you really need Elastic Search?
- https://www.postgresql.org/docs/current/pgtrgm.html
- https://scoutapm.com/blog/how-to-make-text-searches-in-postgresql-faster-with-trigram-similarity
- https://about.gitlab.com/blog/2016/03/18/fast-search-using-postgresql-trigram-indexes/
- https://mazeez.dev/posts/pg-trgm-similarity-search-and-fast-like
- https://alexklibisz.com/2022/02/18/optimizing-postgres-trigram-search.html
- https://www.freecodecamp.org/news/fuzzy-string-matching-with-postgresql/