mirror of
https://github.com/by-jp/www.byjp.me.git
synced 2025-08-11 20:05:36 +01:00
A first pass at importing my tweets. Includes the code I used to do it. I've made some manual edits (to add code fence blocks, and fix some annoying encoding issues), but this should be a decent start.
14 lines
272 B
Modula-2
14 lines
272 B
Modula-2
module github.com/by-jp/www.byjp.me/tools/archive/twitter
|
|
|
|
go 1.20
|
|
|
|
require (
|
|
github.com/PuerkitoBio/goquery v1.8.1
|
|
golang.org/x/text v0.9.0
|
|
gopkg.in/yaml.v2 v2.4.0
|
|
)
|
|
|
|
require (
|
|
github.com/andybalholm/cascadia v1.3.1 // indirect
|
|
golang.org/x/net v0.7.0 // indirect
|
|
)
|