Creation

Focus on

projects

table 
from -"templates"  
where type = "project" or type="product"

Archived

table  
from -"templates" 
where type = "project/done" or type="product/done"
Link to original

Writings

Consume

Animes

animes

Tip

我就是喜欢纸片人。他们是点阵、是数据、这种事情我知道。 那你喜欢的那个男孩又是什么? 蛋白质? 钙? 重要的是充满爱的心啊。

https://bgm.tv/character/780

table
	( "![](" + cover +")" ) as Cover,
	aliases as Naming,
	rating as Rating
from -"templates"
where 
	type = "anime" 
Link to original

Books

books

Tip

读书和抽鸦片是一样的,都是捧着植物尸体产生幻觉

https://www.v2ex.com/t/1006112

table 
	( "![](" + cover +")" ) as Cover,
	rating as Rating
from -"templates"
where 
    type = "book" 
    or type="book/dev"
    or type = "weread-notes"
sort readingDate desc
Link to original

Games

games

table 
	( "![](" + cover +")" ) as Cover,
	rating as Rating
from -"templates"
where type = "game" or type="galgame"
sort rating desc
Link to original

Video

videos

table 
	( "![](" + cover +")" ) as Cover
from -"templates"
where type = "video" 
    and !contains(tags, "NSFW")
sort created desc
Link to original

Podcasts

podcasts

table 
	( "![](" + cover +")" ) as Cover
from -"templates"
where type = "podcast-episode" 
sort created desc
Link to original

AVs

javs

table 
	( "![](" + cover +")" ) as Cover,
	description,
	telegram
from -"templates"
where type = "video" 
    and contains(tags, "NSFW")
sort created desc
Link to original

Archives

Webpages

archives

table title
from -"templates"
where type = "archive-web" 
sort created desc
Link to original

Projects

Archived

table  
from -"templates" 
where type = "project/done" or type="product/done"
Link to original

Star Repo

repo

table 
    description,
	( "![](https://img.shields.io/github/stars/" + title + "?style=for-the-badge&label=stars)" ) as Star,
	( "![](https://img.shields.io/github/repo-size/" + title + "?style=for-the-badge&label=size)" ) as Size,
    ( "![](https://img.shields.io/github/created-at/" + title + "?style=for-the-badge&label=date)" ) as Created-at,
    "#"+tags
from -"templates" 
where type = "repo"
Link to original

TODO

list 
from -"templates" 
where type = "hobby"

11 items under this folder.