drawsvg
colormath
- Download
| from typing import Any | |
| import bitstream | |
| liukanshan = open("liukanshan.txt", "r").read() | |
| lks_lines = liukanshan.splitlines() | |
| rle = [] | |
| # do run-length encoding of the lines | |
| for line in lks_lines: | |
| rle_line = [] |
| [buildPlans.IosevkaMoe] | |
| family = "Iosevka Moe" | |
| spacing = "normal" | |
| serifs = "sans" | |
| noCvSs = true | |
| exportGlyphNames = false | |
| [buildPlans.IosevkaMoe.variants.design] | |
| capital-b = "more-asymmetric-interrupted-serifless" | |
| capital-c = "serifless" |
| // ==UserScript== | |
| // @name 学堂云/雨课堂(是雨课堂4.0,非雨课堂,题库自动搜集) | |
| // @namespace [email protected] | |
| // @version 1.2 | |
| // @description 雨课堂脚本 | |
| // @author sea of flowers | |
| // @match *://*.yuketang.cn/* | |
| // @match *://*.edu.cn/* | |
| // @connect huan.fm210.cn | |
| // @grant unsafeWindow |
| (* Calculate good rational representation of [value] within relative \ | |
| error [epsilon], with denominator not bigger than [limit]. | |
| Returns List[(approximation, relativeError, absoluteError)] | |
| *) | |
| RationalReprInside := Function[{limit, epsilon, value}, Module[ | |
| {reprs, real, approx, delta}, | |
| reprs = {}; | |
| (* For each denominator, | |
| find the appropriate approximation if possible *) |
| // Remove stock effects | |
| @PART[SSTU-SC-ENG-*]:AFTER[SSTU] | |
| { | |
| @EFFECTS | |
| { | |
| @running_closed | |
| { | |
| !MODEL_MULTI_PARTICLE,*{} | |
| } | |
| @running_main |
| from typing import List, Tuple | |
| from PIL import Image, ImageDraw, ImageColor | |
| import math | |
| import random | |
| from PIL.Image import new | |
| from PIL.ImageDraw import Draw | |
| def gen_saturated_color() -> Tuple[int, int, int]: |
| using BepInEx; | |
| using HarmonyLib; | |
| using System.Collections; | |
| using UnityEngine; | |
| using UnityEngine.SceneManagement; | |
| using System.Collections.Generic; | |
| namespace Karenia.FixKPlug | |
| { | |
| [BepInPlugin(id, projectName, version)] |
| # Shared Volume | |
| FROM busybox:buildroot-2014.02 | |
| VOLUME /data | |
| CMD ["/bin/sh"] |
| using System; | |
| using System.Threading; | |
| using System.IO; | |
| using System.Threading.Tasks; | |
| using System.Text.Unicode; | |
| using System.Text; | |
| using SharpCompress.Readers; | |
| using MicroKnights.IO.Streams; | |
| class Program |