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
/* Darker Daterange Picker */ | |
.daterangepicker td.off, .daterangepicker td.off.in-range, .daterangepicker td.off.start-date, .daterangepicker td.off.end-date { | |
background-color: transparent; | |
color: rgba(200,200,200,0.5); | |
} | |
.daterangepicker { | |
background-color: inherit; | |
color: #ebf4f0; | |
} |
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 random | |
job_prefixes = ['part-time', 'freelance', 'stay-at-home', 'currently unemployed', 'job looking'] | |
jobs = ['squirrel tamer', 'leaf collector', 'tv-watcher', 'shitposter', 'meme developer', 'cat watcher', 'youtube video reviewer', 'angel energy streamer', 'bread eater', 'online arguer', 'sand eater'] | |
budjet = random.randint(75, 150) * 10000 | |
fjp = job_prefixes.pop(job_prefixes.index(random.choice(job_prefixes))) | |
fj = jobs.pop(jobs.index(random.choice(jobs))) | |
first = "Him: Hi! I'm {0} {1}".format(fjp, fj) | |
second = "Her: and I'm {0} {1}".format(random.choice(job_prefixes),random.choice(jobs)) |
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
""" | |
Gets today's Dilbert comic strip, and opens default browser directly to the image. | |
""" | |
import datetime | |
import requests | |
import webbrowser | |
BASEURL = "http://dilbert.com/strip/" | |
DATEPART = datetime.datetime.now().date() | |
URL = BASEURL+str(DATEPART) |