- 1.多参与群聊,多问有价值的问题,多提供有价值的答案
- 2.如果大家有收藏整理好的markdown文档资源,欢迎打包分享到群里,我会整理到本知识库中,比如大家看到好的gitbook、语雀、看云知识库,可以搬运到这里
- 3.如果大家会Git,可以直接下载本知识库的Github源文件 fishyer/MyLogseq,直接在本地用Logseq软件修改或添加笔记,然后给我提交pull request
This file contains hidden or 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
这是一个共建共享的工具和思维模型知识库 https://logseq.fishyer.com | |
## 1.我的愿景 | |
我希望通过微信群聊里的交流,建立一个共建共享的wiki知识库 | |
为大家提供各种目前来说最好用的信息管理工作流、工具、思维模型,帮助大家减少自己去折腾和探索的时间成本 | |
## 2.群聊建议 | |
你在本群的每一次发言,都可能被记录到本网站,成为知识库的一部分。 | |
本群有机器人自动整理,建议大家多用回复功能,微信群聊就是我们大家一起编辑的共享大纲。 | |
我们在群里的每一次聊天,就是在操作一个隐形的大纲 |
This file contains hidden or 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
{ | |
"disabled": false, | |
"autoUploading": true, | |
"uploadNetworkImage": false, | |
} |
This file contains hidden or 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
baseURL = "https://blog.fishyer.com" | |
languageCode = "zh-ch" | |
title = "Fishyer的认知账本" | |
theme = "ananke" |
This file contains hidden or 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
{:meta/version 1 | |
;; Currently, we support either "Markdown" or "Org". | |
;; This can overwrite your global preference so that | |
;; maybe your personal preferred format is Org but you'd | |
;; need to use Markdown for some projects. | |
;; :preferred-format "" | |
;; Preferred workflow style. | |
;; Value is either ":now" for NOW/LATER style, |
This file contains hidden or 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
/* 红粉黑主题:还不错,GitHub中实时更新*/ | |
@import url('https://cdn.jsdelivr.net/gh/LeonWong0609/logseq-default-dark-0-saturation@main/custom.css'); | |
/* 红粉黑主题:我上传,GitHub中固定版本*/ | |
/* @import url('https://cdn.jsdelivr.net/gh/springrain1/[email protected]/custom_favorite.css'); */ | |
/* 东京主题:我上传,GitHub中固定版本 | |
@import url('https://cdn.jsdelivr.net/gh/springrain1/[email protected]/tokyo.css'); | |
*/ | |
/* Roam主题:我上传,GitHub中固定版本 |
This file contains hidden or 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
{:meta/version 1 | |
;; Currently, we support either "Markdown" or "Org". | |
;; This can overwrite your global preference so that | |
;; maybe your personal preferred format is Org but you'd | |
;; need to use Markdown for some projects. | |
;; :preferred-format "" | |
;; Preferred workflow style. | |
;; Value is either ":now" for NOW/LATER style, |
This file contains hidden or 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
'use strict' | |
const webpack = require('webpack'), | |
WebpackDevServer = require('webpack-dev-server'), | |
config = require('./webpack.config.dev') | |
new WebpackDevServer(webpack(config), { | |
publicPath: config.output.publicPath, | |
hot: true, | |
noInfo: false, |
This file contains hidden or 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
user www www; | |
worker_processes auto; | |
error_log /www/wwwlogs/nginx_error.log crit; | |
pid /www/server/nginx/logs/nginx.pid; | |
worker_rlimit_nofile 51200; | |
events | |
{ | |
use epoll; | |
worker_connections 51200; |
This file contains hidden or 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
import uvicorn as uvicorn | |
from fastapi import FastAPI | |
import requests | |
from bs4 import BeautifulSoup | |
app = FastAPI() # 必须实例化该类,启动的时候调用 | |
git_token = "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" | |
s = requests.session() |