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
| <!doctype html> | |
| <html> | |
| <head> | |
| <title>Frequency Domain Visualization</title> | |
| <style> | |
| canvas { | |
| border: 1px solid black; | |
| } | |
| </style> |
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
| package db | |
| import ( | |
| "context" | |
| "database/sql" | |
| "fmt" | |
| "log/slog" | |
| "net/url" | |
| "os" | |
| "runtime" |
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
| <!doctype html> | |
| <html> | |
| <head> | |
| <title>Frequency Domain Visualization</title> | |
| <style> | |
| canvas { | |
| border: 1px solid black; | |
| } | |
| </style> | |
| </head> |
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
| $ curl https://www.maine.gov/ifw/hunting-trapping/hunting/laws-rules/season-dates-bag-limits.html | | |
| llm -s "convert all the dates on this web page into an ICS file appropriate for import into google calendar" | |
| % Total % Received % Xferd Average Speed Time Time Time Current | |
| Dload Upload Total Spent Left Speed | |
| 100 45888 0 45888 0 0 314k 0 --:--:-- --:--:-- --:--:-- 313k | |
| Here is an ICS file containing all the date information from the webpage: | |
| ``` | |
| BEGIN:VCALENDAR | |
| VERSION:2.0 |
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
| ../api/node_modules/stripe/types/Tax/RegistrationsResource.d.ts:1224:20 - error TS2300: Duplicate identifier 'PlaceOfSupplyScheme'. | |
| 1224 type PlaceOfSupplyScheme = 'small_seller' | 'standard'; | |
| ~~~~~~~~~~~~~~~~~~~ | |
| ../../node_modules/stripe/types/Tax/RegistrationsResource.d.ts:345:20 | |
| 345 type PlaceOfSupplyScheme = 'small_seller' | 'standard'; | |
| ~~~~~~~~~~~~~~~~~~~ | |
| 'PlaceOfSupplyScheme' was also declared here. | |
| ../../node_modules/stripe/types/Tax/RegistrationsResource.d.ts:379:20 |
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
| commit-style = raw | |
| file-style = [34mblue[0m | |
| hunk-header-style = syntax | |
| minus-style = [48;2;63;0;1mnormal "#3f0001"[0m | |
| minus-non-emph-style = [48;2;63;0;1mnormal "#3f0001"[0m | |
| minus-emph-style = [48;2;144;16;17mnormal "#901011"[0m | |
| minus-empty-line-marker-style = [48;2;63;0;1mnormal "#3f0001"[0m | |
| zero-style = syntax | |
| plus-style = [48;2;0;40;0msyntax "#002800"[0m | |
| plus-non-emph-style = [48;2;0;40;0msyntax "#002800"[0m |
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
| ┌───────────┬────────────────────┬───────┐ | |
| │ id │ name │ type │ | |
| ├───────────┼────────────────────┼───────┤ | |
| │ abc123xyz │ something │ web │ | |
| │ abc124xyz │ something else │ web │ | |
| │ abc125def │ Martin Luther King │ pserv │ | |
| │ abc126xyz │ Abraham Lincoln │ web │ | |
| └───────────┴────────────────────┴───────┘ |
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
| $ ./test.sh | |
| node version: v22.4.0 | |
| python version: Python 3.12.2 | |
| go version: go version go1.22.6 darwin/arm64 | |
| rg version: ripgrep 14.1.0 | |
| features:-simd-accel,+pcre2 | |
| simd(compile):+NEON | |
| simd(runtime):+NEON |
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
| // Save test.mjs in the root of the repository, and run it as `node test.mjs` | |
| import {fromMarkdown} from 'mdast-util-from-markdown' | |
| import { | |
| gfmAutolinkLiteralFromMarkdown, | |
| gfmAutolinkLiteralToMarkdown | |
| } from './lib/index.js' | |
| const hundredA = 'a'.repeat(100) | |
| const fileWithBreaks = `${hundredA}\n`.repeat(800) | |
| const fileWithoutBreaks = `${hundredA}`.repeat(800) |
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
| name: Publish changes to the web | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| publish: |