some todos

This commit is contained in:
Jordan 2023-05-13 23:00:11 -07:00
parent 21a4034710
commit 11dabeb169
2 changed files with 15 additions and 0 deletions

8
README.org Normal file
View File

@ -0,0 +1,8 @@
#+title: Readme
* TODO figure out how to authorize once and be done with it
* TODO threading and scheduling
* TODO use a real temp directory
* TODO keep track of the last sync?
make insta_feed.py accept time-range arguments rather than just taking the last hour,
to make sure we get every post
* TODO remove secrets and change my insta password lol

View File

@ -1,3 +1,8 @@
(require 'tooter)
(require 'uiop)
(require 'cl-ppcre)
(require 'cl-json)
(defvar *client* (make-instance 'tooter:client
:base "https://pleroma.1of444.top"
:name "insta2toot"))
@ -34,3 +39,5 @@
(loop for post-prefix in (get-post-prefixes)
collect (repost-post post-prefix))
(require 'bordeaux-threads)