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
一些简单的想法……《朝生暮往》 | |
> 「同一个世界,同一个梦想」是2008年于北京举办的奥林匹克运动会所提出的官方口号。 | |
> 我认为这一愿景在 2020 年后仍值得相信。 | |
> 这会不会也是一种拨乱反正呢? | |
当丰川祥子在巨额赔偿金的逼迫下乞求,并最终得到了来自婆家的接济后,她即被安排在结束了于日本的最后一个学期后前往瑞士留学。Ave Mujica 因成员意向而宣告无限期暂停活动后,「难道我与她们……终究不是一个世界的人吗?」这一思绪,始终萦绕在她的脑海里。说到底,Ave Mujica 即使短暂的麻痹了自己所厌恶的麻木神经,一如父亲放弃了他的产业,抱着自己过往的积蓄,泡在浮满酒精的浴缸里浑浑噩噩。「像要在深海里溺亡了一样。」 | |
曾固执的仅坚信自己的臂膀与才干,失利而愿景破落一地的境况,失魂落魄与自我放弃,这对父女如出一辙的相似…… | |
但她还有一件事没能做到,尽管每天都能见到这股执着所欲倾诉的对象 —— 毕竟她还有她们什么也没有做错……“是我咎由自取” —— | |
现在,她依然如自己所预想的那样度过在那两个让人失魂落魄的夜晚,之后的每一天与每一刻。 |
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
diff --git a/schema.json b/schema.json | |
index 9791e4b..90a96ba 100644 | |
--- a/schema.json | |
+++ b/schema.json | |
@@ -32,6 +32,11 @@ | |
}, | |
"default": [] | |
}, | |
+ "build_on_save_alternative_watch": { | |
+ "description": "Whether to force zls to use the alternative watch mode for build-on-save. Works on some systems where the default watch mode is not supported.", |
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
[tool.ruff] | |
line-length = 135 | |
[tool.ruff.lint] | |
select = [ | |
"F", # pyflakes | |
"E", # pycodestyle errors | |
"W", # pycodestyle warnings | |
"I", # isort | |
"N", # PEP8-naming |
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
# /// script | |
# dependencies = [ | |
# "executing>=2.1.0" | |
# ] | |
# /// | |
import ast | |
import sys | |
from dataclasses import dataclass |
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
{ | |
"pid":"15e", | |
"name":"RK R75", | |
"enabled":true, | |
"keyMapEnabled":true, | |
"lightEnabled":true, | |
"rgb":true, | |
"top":[37, 49], | |
"bottom":[808, 345], | |
"keys":[ |
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
<?xml version="1.0"?> | |
<AndroidAttestation><NumberOfKeyboxes>1</NumberOfKeyboxes><Keybox DeviceID="0"><Key algorithm="ecdsa"><PrivateKey format="pem"> | |
-----BEGIN EC PRIVATE KEY----- | |
MHcCAQEEIITtDeCxHmadsR64nZgJmqW/tuWN2vjvpKHQc+ZK16vCoAoGCCqGSM49 | |
AwEHoUQDQgAEze1OfhlNmrrghv23VH1080nuiOHTkE6U6UafCefyO9AeJb3ZjzTr | |
jJ5sVXRQ8zoP0kea8mB2Cg2/acuzQIcJeg== | |
-----END EC PRIVATE KEY----- | |
</PrivateKey><CertificateChain><NumberOfCertificates>3</NumberOfCertificates><Certificate format="pem"> | |
-----BEGIN CERTIFICATE----- | |
MIIB8jCCAXmgAwIBAgIQFOOLOXnt7wbQ6VtxMaCLIjAKBggqhkjOPQQDAjA5MQww |
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
onedark: | |
name: "One Dark" | |
author: "Elaina <[email protected]>" | |
back_color: 0x352f32 | |
text_color: 0x000000 | |
candidate_text_color: 0xf8dee8 | |
hilited_candidate_back_color: 0x201b1d | |
hilited_candidate_text_color: 0xff7a81 |
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
from contextvars import ContextVar, Context | |
import gc | |
def get_current_context(): | |
local = ContextVar("#local") | |
token = local.set(1) | |
for i in gc.get_referents(token): | |
if isinstance(i, Context): | |
return i |
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
[package] | |
name = "metrics-ap-ar" | |
version = "0.1.0" | |
edition = "2021" | |
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | |
[dependencies] | |
ndarray = { version = "0.15.0", features = ["blas", "rayon", "serde"] } | |
serde = { version = "1.0.197", features = ["derive"] } |
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
from inspect import stack | |
def dbgstack(): | |
print("stack:") | |
for i in stack(1): | |
print(f" {i.function}@{i.filename}:{i.frame.f_lineno}") |
NewerOlder