-
Go to the tModLoader install folder
-
Replace the number inside the steam_appid.txt file with 105600 (Terraria's steam id)
-
This would make your play time go to Terraria
-
If you want to go back with this settings then TModLoader steam id is 1281930
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
sudo xattr -rd com.apple.quarantine /Applications/app_name.app |
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
""" | |
python convert_srt.py from.srt to.srt | |
default frame rate for most movies is: 23.976 | |
encoding is set to: windows-1250 (usually non-english subtitles have frame based subtitling) | |
Example "from.srt": | |
{0}{100}Hello, world! | |
{101}{300}This is a frame-based subtitle file. |
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
# Full list of checks, without small window \w scroll | |
github.com##div.merge-status-list:style(max-height: unset !important;) | |
# Move failed checks to the top | |
github.com##div.merge-status-list:style(display: flex; flex-direction: column;) | |
github.com##div.merge-status-item:has(.color-fg-danger):style(order: -2;) | |
# Move currently running checks to the top | |
github.com##div.merge-status-item:has(.anim-rotate):style(order: -1;) |
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
// count time needed to execute a function | |
// precisition is 0.0001 ms | |
const countTime = (func) => { | |
const startTime = performance.now(); | |
func(); | |
const endTime = performance.now(); | |
const timeNeeded = endTime - startTime; | |
console.log(`${func.name} needed ${timeNeeded.toFixed(4)} ms`); | |
} |