Skip to content

Instantly share code, notes, and snippets.

View zetaraku's full-sized avatar
🙃
(: uʍop ǝpᴉs dn

Raku Zeta zetaraku

🙃
(: uʍop ǝpᴉs dn
  • Taiwan
  • 02:23 (UTC +08:00)
View GitHub Profile
Difficulty Solved Accepted Rate
All 204/2668 ███████████████▉░░░░ 79.9%
Easy 106/660 █████████████████▏░░ 85.7%
Medium 87/1416 ███████████████░░░░░ 75.1%
Hard 11/592 ████████████████▋░░░ 83.6%
// ==UserScript==
// @name mai-tools
// @match https://maimaidx-eng.com/*
// @match https://maimaidx.jp/*
// @require https://myjian.github.io/mai-tools/scripts/all-in-one.js
// ==/UserScript==
// ==UserScript==
// @name chuni-tools
// @match https://chunithm-net-eng.com/*
// @require https://dogeon188.github.io/chuni-tools/scripts/chuni-tools.js
// ==/UserScript==
@zetaraku
zetaraku / .npmrc
Last active October 11, 2022 14:49
my .npmrc file
init-version=0.0.0
init-author-name=Raku Zeta
init-author-email=zetaraku@gmail.com
init-license=MIT
script-shell=bash
// elementary row operations
function interchange(A: number[][], i1: number, i2: number) {
[A[i1], A[i2]] = [A[i2], A[i1]];
}
function scaling(A: number[][], i: number, f: number = 1) {
const n = A[0].length;
for (let j = 0; j < n; j++) {
TypeScript 10 hrs 8 mins ██████████░░░░░░░░░░ 51.3%
YAML 4 hrs 26 mins ████░░░░░░░░░░░░░░░░ 22.5%
Other 3 hrs 9 mins ███░░░░░░░░░░░░░░░░░ 15.9%
JSON 35 mins █░░░░░░░░░░░░░░░░░░░ 3.0%
JavaScript 28 mins ░░░░░░░░░░░░░░░░░░░░ 2.4%
@zetaraku
zetaraku / .editorconfig
Last active June 14, 2024 12:36
my .editorconfig file
# EditorConfig is awesome: https://EditorConfig.org
# top-most EditorConfig file
root = true
[*]
charset = utf-8
end_of_line = lf
trim_trailing_whitespace = true
insert_final_newline = true
@zetaraku
zetaraku / .perltidyrc
Last active December 22, 2020 04:38
my .perltidyrc file
--converge
--maximum-line-length=100
--character-encoding=utf8
--preserve-line-endings
--indent-columns=2
--continuation-indentation=2
--extended-continuation-indentation
--minimum-space-to-comment=2
@zetaraku
zetaraku / .vimrc
Last active February 3, 2021 18:17
my .vimrc file
" vim: set ft=vim:
" Encoding / Language
set encoding=utf-8 nobomb
language en_US
set spell spelllang=en
" Color / Syntax Highlight
color default
set background=dark