This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo off | |
setlocal enabledelayedexpansion | |
::variable | |
set fileName=prefs | |
set "appendLine=language="zh-TW"" | |
cd /d %appdata%\..\Local\Packages\SpotifyAB.SpotifyMusic_zpdnekdrzrea0\LocalState\Spotify |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.IO; | |
using System.Reflection; | |
using System.Text; | |
namespace HeiswayiNrird.SimpleLogger | |
{ | |
public class SimpleLogger | |
{ | |
private string DatetimeFormat; |