Skip to content

Instantly share code, notes, and snippets.

View Eyre-S's full-sized avatar
🍀
hope for a good life condition

A.C. Sukazyo Eyre Eyre-S

🍀
hope for a good life condition
View GitHub Profile
@Eyre-S
Eyre-S / config
Last active May 6, 2023 06:04
BAT (cat++) config
# This is `bat`s configuration file. Each line either contains a comment or
# a command-line option that you want to pass to `bat` by default. You can
# run `bat --help` to get a list of all possible configuration options.
# Specify desired highlighting theme (e.g. "TwoDark"). Run `bat --list-themes`
# for a list of all available themes
--theme="Solarized (light)"
--style=numbers,changes,header-filename,header-filesize
{
"$schema": "https://raw.githubusercontent.com/JanDeDobbeleer/oh-my-posh/main/themes/schema.json",
"blocks": [
{
"alignment": "left",
"newline": true,
"segments": [
{
"foreground": "#E5C07B",
"properties": {
@Eyre-S
Eyre-S / config.yaml
Created May 5, 2023 13:02
lsd (another ls++) configurations
# == Classic ==
# This is a shorthand to override some of the options to be backwards compatible
# with `ls`. It affects the "color"->"when", "sorting"->"dir-grouping", "date"
# and "icons"->"when" options.
# Possible values: false, true
# classic: false
# == Blocks ==
# This specifies the columns and their order when using the long and the tree
# layout.
@Eyre-S
Eyre-S / colorls_alias.ps1
Last active May 5, 2023 12:55
colorls alias & configs
# colorls
#source $(dirname $(gem which colorls))/tab_complete.sh
function cols {
colorls $args
}
function crls {
$args_new = @("--hyperlink", "--light", "--time-style=""+%y/%m-%d %H:%M""") + $args
cols @args_new
}
function ccls {
@Eyre-S
Eyre-S / github-labels-projects.xml
Last active December 21, 2021 09:15
properties
<Project>
<domain>suk-ws</domain>
<name>System-iCee</name>
<label.version>1.00</label.version>
</Project>
<Project>
<domain>Eyre-S</domain>
<name>Coeur-Morny-Cono</name>
<label.version>1.01</label.version>
@Eyre-S
Eyre-S / wallet.data.php
Last active December 26, 2020 11:50
Debug Stage
<?php
class WalletData {
private static WalletDataCurr $curr;
private static WalletDataRemain $remain;
private static WalletDataMonthList $month;
/**
* 添加一条账目信息
@Eyre-S
Eyre-S / state1-ores.xml
Last active December 9, 2020 16:09
GTNH Saves Data
<?xml version="1.0" encoding="GBK" standalone="no"?>
<Document>
<vein discovered="true">
<type>Fe—Cu</type>
<pos>-395, 49, -22</pos>
</vein>
<vein discovered="false">
<type>Sn</type>
<pos>600, 459, -57</pos>
</vein>
@Eyre-S
Eyre-S / ThreeOrderRubikCube.java
Created September 26, 2020 08:37
Rubik's Cube Simulate
package cc.sukazyo.things;
public class ThreeOrderRubikCube {
Face front;
Face up;
Face down;
Face back;
Face right;
Face left;
@Eyre-S
Eyre-S / RegexSpeedTest.java
Last active July 1, 2020 14:33
UtilsTest
package cc.sukazyo.test;
import java.util.Date;
public class RegexSpeedTest {
public static void main(String[] args) throws InterruptedException {
int countsTotal = 0;
long timeTotal = 0;