This file contains 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
// | |
// UndoAssertManager.swift | |
// RetconTests | |
// | |
// Created by Nathan Manceaux-Panot on 2022-10-23. | |
// | |
import Foundation | |
import AppKit |
This file contains 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
body.unified-theme { | |
padding-top: 10px !important; | |
} | |
.unified-theme header { | |
display: none !important; | |
} | |
.unified-theme #left-sidebar { | |
display: none; |
This file contains 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
// Tasklemon | |
home.children.forEach(child => { | |
if (child.extension === 'tmp') child.delete(); | |
}); | |
// Node.js | |
const fs = require('fs'); | |
const os = require('os'); | |
const path = require('path'); |