- Clean pkg cache
- Remove unused packages (orphans)
- Clean cache in /home
- remove old config files
- Find and Remove
- duplicates
- empty files
- empty directories
- broken symlinks
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
# Anki Deadline | |
# Anki 2 plugin | |
# Author: EJS | |
# Version 0.1 | |
# Description: Adjusts 'New Cards per Day' setting of options group to ensure all cards | |
# are seen by deadline. | |
# License: GNU GPL v3 <www.gnu.org/licenses/gpl.html> | |
from __future__ import division | |
import datetime, time, math | |
from anki.hooks import wrap, addHook |
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
/** | |
* @type {import('prettier').Options} | |
*/ | |
module.exports = { | |
plugins: [require.resolve('prettier-plugin-astro')], | |
overrides: [ | |
{ | |
files: '**/*.astro', | |
options: { parser: 'astro' } |
OlderNewer