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
| import os | |
| import sys | |
| import sqlite3 | |
| import time | |
| import uuid | |
| from functools import wraps | |
| DB_FILE = 'tester.db' | |
| FILE = 'tester.cache' |
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
| """ | |
| I wrote this script because I'm trying to figure out what day | |
| would be the best day to take off if I only want to work four days | |
| a week. | |
| The best day here means I will get the most time off in the year if | |
| I choose this day. | |
| The holidays are German holidays and the extra days are company | |
| holidays. |
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
| #!/usr/bin/env python3 | |
| """ | |
| 🦃 Thanksgiving Dinner Demo 🦃 | |
| Because why cook a real Thanksgiving dinner when you can just... | |
| run it with conda or pixi? | |
| How to use? | |
| With conda: |
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
| #! /bin/bash | |
| # | |
| # Strip Packages | |
| # | |
| # This is script that goes through all conda packages in the current | |
| # directory and removes everything except the essential "info" metadata | |
| # folder. It also updates the metadata so that this package can be installed | |
| # by conda without failing package validation. | |
| echo "Processing .conda files" |
OlderNewer