Skip to content

Instantly share code, notes, and snippets.

View yinan-c's full-sized avatar
🏠
Working from home

Yinan yinan-c

🏠
Working from home
View GitHub Profile
@yinan-c
yinan-c / readme.md
Created October 25, 2023 19:53 — forked from firexcy/readme.md
DIY a Rewind.ai

This Gist provides a solution to periodically capture screenshots of your Mac, and create therefrom a searchable PDF archive so that you can always get an answer to the “what, when, and where” questions about your usages.

To use these scripts:

  1. Download the shell script rewind, then:
    1. put it under ~/bin (or other fixed path you prefer);
    2. execute
@yinan-c
yinan-c / RSS.md
Created October 4, 2023 22:28 — forked from thefranke/RSS.md
A list of RSS endpoints, readers and resources

The RSS Endpoint List

Please refer to this blogpost to get an overview.

Replace *-INSTANCE with one of the public instances listed in the scrapers section. Replace CAPITALIZED words with their corresponding identifiers on the website.

Social Media

Twitter

@yinan-c
yinan-c / export_reeder_stars.py
Last active September 20, 2023 22:09
Export Reeder 5 starred items to csv and bookmark.HTML
# %%
import pandas as pd
import numpy as np
df = pd.read_csv('Item.csv')
df.columns
df.head()
# %%
starred = df[df['starred'] == "1"]