南千秋

南千秋

南家三姐妹中的三妹,最小的孩子。眼睛半合状态似睡非睡,头上的一大坨呆毛“桃毛(みなみけ)”相当灵活,但其实很腹黑,自称为“公主”。
tg_channel
github
twitter

Get the list of articles from pinboard using jq and convert it to markdown format.

Mainly for the convenience of writing weekly reports, you can directly copy and paste.

Simplified Version#

export PINBOARD_TOKEN=your-api-token
curl -sS "https://api.pinboard.in/v1/posts/all?format=json&auth_token=$PINBOARD_TOKEN" \
    | jq -r '.[] | "- [\(.description)](\(.href)) - \(.extended)"'

The effect is to generate markdown lists in the following format

- [simonw/til: Today I Learned](https://github.com/simonw/til/blob/main/ab/apache-bench-length-errors.md) - You can consider using this format to write TIL, just pure markdown, and use external links for large blocks of code and images. The key is to write each idea completely, without padding. Then achieve a certain level of
- [Downloading a video should be “fair use” as recording a song from the radio | Hacker News](https://news.ycombinator.com/item?id=37112615) - Actually, I still don't understand whether this kind of download is illegal or something
- [A university teacher decides to deliver takeout](https://mp.weixin.qq.com/s/cSL-Inf0QDKOPJd4yzkAGw) - <blockquote>After years in the ivory tower, he wanted to break free from enclosure, arrogance, and a sense of superiority.</blockquote>
- [How China's Great Firewall Detects and Blocks Fully Encrypted Traffic](https://gfw.report/publications/usenixsecurity23/) -
- [You’re probably using the wrong dictionary « the jsomers.net blog](https://jsomers.net/blog/dictionary) - A good dictionary can have such a big impact
- [Using Automated Workflow to Aggregate Information Ingestion and Output | Reorx’s Forge](https://reorx.com/blog/sharing-my-footprints-automation/) - <blockquote>Show how I use n8n to synchronize the dynamics of services such as Twitter, YouTube, GitHub, Douban, etc. to Telegram Channel, and achieve the information aggregation of personal digital life.</blockquote>
- [nodebestpractices/README.chinese.md at master · goldbergyoni/nodebestpractices](https://github.com/goldbergyoni/nodebestpractices/blob/master/README.chinese.md) -
- [37% Rule - MBA Encyclopedia](https://wiki.mbalib.com/wiki/37%25%E6%B3%95%E5%88%99) - <blockquote>The 37% rule, also known as the 37% rule, comes from the book "The Beauty of Algorithms". It means that after the experiment by mathematician Euler, 37% is used as the dividing point, the previous time is used for observation, and the later time is used for decision-making. For example, if you want to buy a house and there are 30 houses in the entire area, you need to look at 37% of the houses first, which is 11 houses. The houses before 37% are only for viewing and not for buying, but you should remember what you think is the best. After reading it, only buy houses that are better than the previous best. </blockquote>
- [Basic Knowledge about Unicode that Every Software Developer Must Know in 2023](https://blog.xinshijiededa.men/unicode/) - <blockquote>Since then, Python has progressed, CD-ROMs have become obsolete, but the rest still remains in UTF-16 or even UCS-2. Therefore, UTF-16 exists as a memory representation.

PS. Note that a proxy is required to access pinboard.in in China.

Random idea: Would a better design be ny pinboard export --md? Automatically set up the proxy and token. Pinboard CLI (pseudo).

References#

Loading...
Ownership of this post data is guaranteed by blockchain and smart contracts to the creator alone.