Skip to content

Instantly share code, notes, and snippets.

View tyan-boot's full-sized avatar
🦀
Creating a new world.

Tyan tyan-boot

🦀
Creating a new world.
  • RingNet
  • CN
  • 23:21 (UTC +08:00)
View GitHub Profile
@tyan-boot
tyan-boot / README.md
Created January 21, 2023 10:11 — forked from ZipFile/README.md
Pixiv OAuth Flow

Retrieving Auth Token

  1. Run the command:

    python pixiv_auth.py login

    This will open the browser with Pixiv login page.

@tyan-boot
tyan-boot / intellij-tokio-color.icls
Created October 23, 2020 10:31
intellij color theme based tokio.rs
<scheme name="IntelliJ Light copy" version="142" parent_scheme="Default">
<metaInfo>
<property name="created">2020-10-23T18:29:39</property>
<property name="ide">CLion</property>
<property name="ideVersion">2020.2.3.0.0</property>
<property name="modified">2020-10-23T18:29:43</property>
<property name="originalScheme">IntelliJ Light copy</property>
</metaInfo>
<colors>
<option name="CARET_ROW_COLOR" value="fcfaed" />
@tyan-boot
tyan-boot / ObjectPool.hpp
Created February 11, 2018 15:35
C++ Object Pool, Thread-Safe
//
// Created by tyan on 2/6/18.
//
#ifndef OBJECTPOOL_H
#define OBJECTPOOL_H
#include <memory>
#include <vector>
@tyan-boot
tyan-boot / fonts.conf
Created July 25, 2017 08:44
字体配置
<?xml version='1.0'?>
<!DOCTYPE fontconfig SYSTEM 'fonts.dtd'>
<fontconfig>
<!-- created by WenQuanYi FcDesigner v0.5 -->
<match>
<test name="family">
<string>sans-serif</string>
</test>
<edit name="family" binding="strong" mode="prepend">
<string>WenQuanYi Micro Hei</string>
@tyan-boot
tyan-boot / db.sql
Last active October 10, 2016 15:04
scan dytt download link
create DATABASE dytt
CREATE TABLE gndy
(
uid INT PRIMARY KEY NOT NULL AUTO_INCREMENT,
name TEXT,
url TEXT
)