Skip to content

Instantly share code, notes, and snippets.

@flier268
flier268 / Spotify中文版黑畫面修復.bat
Created February 11, 2022 02:29
Spotify中文版黑畫面修復
@echo off
setlocal enabledelayedexpansion
::variable
set fileName=prefs
set "appendLine=language="zh-TW""
cd /d %appdata%\..\Local\Packages\SpotifyAB.SpotifyMusic_zpdnekdrzrea0\LocalState\Spotify
@flier268
flier268 / demo.html
Created June 5, 2018 02:05
Get real font-size(Wkhtmltox)
<html id="html">
<body>
<div style="width:100%" id="ruler"></div>
<div style="width:50%">
<p style="font-size:1rem;">This is 1 rem</p>
</div>
<script>
function w3_getStyleValue(elmnt,style) {
if (window.getComputedStyle) {
return window.getComputedStyle(elmnt,null).getPropertyValue(style);
@flier268
flier268 / SimpleLogger.cs
Last active July 2, 2017 08:49 — forked from heiswayi/SimpleLogger.cs
C# Super simple logger class
using System;
using System.IO;
using System.Reflection;
using System.Text;
namespace HeiswayiNrird.SimpleLogger
{
public class SimpleLogger
{
private string DatetimeFormat;