Skip to content

Instantly share code, notes, and snippets.

View thallium's full-sized avatar
🎯
Focusing

Gengchen Tuo thallium

🎯
Focusing
View GitHub Profile
@thallium
thallium / A.cpp
Created October 1, 2023 03:00
2023 NAQ Solutions
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
int main() {
ios::sync_with_stdio(false);
cin.tie(nullptr);
int n, k, c;
cin >> n >> k >> c;
@thallium
thallium / main.css
Last active August 11, 2022 01:44
disable bilibili background image
@media (prefers-color-scheme: dark) {
body {
background-color: rgb(24, 26, 27) !important;
background-image: none !important;
}
.fixed-bg[data-v-d112ac46] {
background-color: rgb(24, 26, 27) !important;
background-image: none !important;
}
}
@thallium
thallium / cnblog_clean_looking.user.js
Last active January 4, 2022 04:46
make 博客园(cnblog) looks clean
// ==UserScript==
// @name cnblog clean looking 博客园干净外观
// @namespace https://blog.csdn.net/qq1337715208/article/details/108289826
// @version 0.3
// @description disable user js and background image
// @author jin & Thallium54
// @match *://*.cnblogs.com/*
// @resource CSS main.css
// @grant GM_addStyle
// @grant GM_getResourceText
@thallium
thallium / codeforces_hide_tags.user.js
Last active November 2, 2021 04:51
hide codeforces problem tags except difficulty
// ==UserScript==
// @name codeforces hide tags but difficulty
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author Thallium
// @match https://codeforces.com/*
// @icon https://codeforces.org/s/74991/favicon-96x96.png
// @grant none
// ==/UserScript==