Skip to content

Instantly share code, notes, and snippets.

View hustlyt's full-sized avatar
🎯
Focusing

hustlyt

🎯
Focusing
View GitHub Profile
@ninehills
ninehills / chatglm-openai-api.ipynb
Last active April 16, 2024 01:15
chatglm-openai-api.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@lewangdev
lewangdev / Step-1.js
Last active July 3, 2023 13:17
Get Twitter followings and add them to your private list
(function(window) {
function saveAsLocalStorage(username) {
// 将 Set 转换为 Array
let followerIdsArray = Array.from(followerIds);
// 存储到localStorage
localStorage.setItem('MyFollowingIds', JSON.stringify(followerIdsArray));
}
function saveAsCSV(username) {