Skip to content

Instantly share code, notes, and snippets.

@Bluefissure
Bluefissure / xml
Last active July 27, 2019 11:32
HuntTrigger
<?xml version="1.0"?>
<TriggernometryExport Version="1">
<ExportedFolder FFXIVJobFilterEnabled="false" FFXIVJobFilter="0" ZoneFilterEnabled="false" EventFilterEnabled="false" Id="b79b0e84-ee56-4cb9-8192-eed2bdf6470c" Name="狩猎" Enabled="true">
<Folders />
<Triggers>
<Trigger Enabled="true" Name="跨界传送" Id="2c039a9c-1a6d-42fe-8594-8fd5a7073dbc" RegularExpression="0039:使用跨界传送移动到了(?&lt;world&gt;(.*))。" DebugLevel="Inherit" PrevActions="Keep" PrevActionsRefire="Allow" Scheduling="FromFire" PeriodRefire="Allow" RefirePeriodExpression="0">
<Actions>
<Action OrderNumber="1" AuraImageMode="Normal" TextAuraAlignment="MiddleCenter" TextAuraFontSize="9" TextAuraEffect="None" ActionType="UseTTS" ExecutionDelayExpression="0" DebugLevel="Inherit" SystemBeepFreqExpression="1000" SystemBeepLengthExpression="100" PlaySoundVolumeExpression="100" UseTTSTextExpression="跨界传送到了${world}" UseTTSVolumeExpression="100" UseTTSRateExpression="0" LaunchProcessWindowStyle="Normal" ExecScriptType="CSharp" Me
Accuracy matrix:
Train en de es fr it ru zh
en: 91.48 87.65 75.48 84.00 71.18 66.58 76.65
de: 78.23 93.50 81.40 81.50 74.53 64.58 73.20
es: 71.62 84.00 93.73 78.90 73.38 53.28 55.83
fr: 81.25 88.75 80.12 90.85 72.58 67.35 79.40
it: 74.33 83.53 80.58 79.78 84.48 66.45 63.35
ru: 72.68 81.70 65.73 71.43 63.40 85.65 59.93
zh: 74.98 81.35 72.20 73.28 70.08 66.23 88.30
@Bluefissure
Bluefissure / waymark.md
Last active June 14, 2020 13:20
Waymark

Alt text

data_flow digraph G { size ="4,4"; ff14 [label="ff14 服务器"] ff14 -> ACT [label="网络数据"] network [label="网络日志文件"]
import pyautogui
import time
import smtplib
from email.mime.text import MIMEText
from email.header import Header
from email.utils import formataddr
import requests
import base64,json
from io import BytesIO
import os
@Bluefissure
Bluefissure / add_cn_timeline.py
Created July 20, 2020 13:02
add_cn_timeline
import argparse
import csv
import os
import requests
import codecs
import random
import re
import json
from collections import defaultdict
@Bluefissure
Bluefissure / matcha2dc.py
Last active January 16, 2021 21:16
matcha2dc
#!/usr/bin/env python3
"""
Very simple HTTP server in python for logging requests
Usage::
./matcha2dc.py [<port>]
"""
from http.server import BaseHTTPRequestHandler, HTTPServer
import logging, json
import requests
@Bluefissure
Bluefissure / smartvote
Created March 22, 2021 22:57
SmartVote
[
{
"Author": "Bluefissure",
"Name": "SmartVote",
"InternalName": "SmartVote",
"AssemblyVersion": "1.0.1.0",
"Description": "Smart Vote the Mvp in player commendation for you.",
"ApplicableVersion": "any",
"RepoUrl": "https://github.com/Bluefissure/SmartVote",
"DalamudApiLevel": 2,
@Bluefissure
Bluefissure / varint.py
Last active December 1, 2021 20:07
Varint
def decodeVarint(x):
result = 0
exit = False
while not exit:
if (x & 0b10000000):
exit = False
else:
exit = True
low_byte = x & (0b11111111)
result = result << 7
@Bluefissure
Bluefissure / DalamudFontReplacer_repo.json
Created February 16, 2022 20:14
DalamudFontReplacer Single Repo
[{
"Author": "akira0245",
"Name": "DalamudFontReplacer",
"Punchline": "Replaces dalamud's default font",
"Description": "Replaces dalamud's default font(and glyph range) with NotoSansCJKsc-Medium 17pt in order to display Chinese characters properly.\nInstalling this and the font replacing effects immediately.\n If you don't want to replace font anymore, please disable this plugin and restart the game.\nFont size, path and glyph range can be changed in plugin config file.",
"InternalName": "DalamudFontReplacer",
"AssemblyVersion": "1.0.0.3",
"RepoUrl": "https://github.com/akira0245/DalamudCNAdapter",
"ApplicableVersion": "any",
"Tags": [