This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
import sqlite3 | |
import json | |
import datetime | |
from pathlib import Path | |
import sys | |
def get_chat_data_from_db(db_path) -> list[dict]: | |
"""Extract chat data from the SQLite database""" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Omnivore Everything | |
// @namespace Violentmonkey Scripts | |
// @version 0.8 | |
// @description save all browsing history to Omnivore | |
// @author fankaidev | |
// @match *://*/* | |
// @exclude *://omnivore.app/* | |
// @exclude *://cubox.pro/* | |
// @exclude *://readwise.io/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Sync Twitter To Flomo | |
// @namespace http://tampermonkey.net/ | |
// @version 0.4 | |
// @description create a flomo note of current twitter thread, need flomo api | |
// @author fankaidev | |
// @match https://x.com/* | |
// @connect flomoapp.com | |
// @grant GM_xmlhttpRequest | |
// @license MIT |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
# 需要安装一些依赖 pip3 install openai langchain chromadb pypdf sentence_transformers | |
from langchain.chat_models import ChatOpenAI | |
from langchain.embeddings.openai import OpenAIEmbeddings | |
from langchain.embeddings import HuggingFaceEmbeddings | |
from langchain.vectorstores import Chroma | |
from langchain.text_splitter import CharacterTextSplitter, RecursiveCharacterTextSplitter | |
from langchain.document_loaders import TextLoader, PyPDFLoader | |
from langchain.chains.retrieval_qa.base import RetrievalQA |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package dev.fankai; | |
import org.springframework.beans.factory.annotation.Autowired; | |
import org.springframework.context.annotation.Bean; | |
import org.springframework.context.annotation.Configuration; | |
import org.springframework.context.annotation.DependsOn; | |
import org.springframework.stereotype.Service; | |
import javax.annotation.PostConstruct; |