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
for package in $(apt list --upgradable | cut -d "/" -f1); do | |
sudo apt-get install --only-upgrade -y $package; | |
done; |
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
"""A method for inferring the data type of Series/ndarrays.""" | |
import pandas as pd | |
# the type cast methods to attempt (in order) | |
_TYPE_CASTS = [pd.to_datetime, pd.to_numeric, pd.to_timedelta] | |
def infer_column_dtype(column): | |
""" |
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
"""A tool for scraping images from DeviantArt.com""" | |
import argparse | |
import logging | |
import multiprocessing | |
import os | |
import shutil | |
import re | |
import bs4 | |
import requests | |
import tqdm |
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
[Unit] | |
Description=Dropbox as a system service user %i | |
After=network.target | |
[Service] | |
ExecStart=${HOME}/.dropbox-dist/dropboxd | |
ExecStop=cat ${HOME}/.dropbox/dropbox.pid | xargs kill | |
User=%i | |
Group=%i | |
PIDFile=${HOME}/.dropbox/dropbox.pid |
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
% multifile.sty | |
\typeout{A Package for reading subfiles 'multifile' <28 October 2019>} | |
\ProvidesPackage{multifile} | |
\usepackage{subfiles} | |
% a command to run shell commands | |
% USAGE: | |
% \app@exe{<command>} | |
% where: |
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
6963 6e73 0000 4e48 544f 4320 0000 0030 | |
6973 3332 0000 020f 7338 6d6b 0000 0108 | |
6963 3131 0000 0507 6963 3037 0000 1592 | |
6963 3133 0000 3060 6973 3332 0000 020f | |
8e00 030b 96c3 cd83 cf09 cec6 9c14 0000 | |
9576 1d05 8303 0905 1d76 9c00 00bc 1814 | |
2483 260b 2414 1dbc 0000 be05 24af 782e | |
8226 0a24 07be 0000 b903 2626 87da 8326 | |
0903 b900 00b2 0326 b078 2e83 2605 03b2 | |
0000 ab03 8126 01ff ff81 2605 03ab 0000 |
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
/* | |
EMBY THEME : piflix | |
# Table of Contents | |
1. ACCENT COLORS | |
1.1 Buttons | |
1.1.1 Checkboxes | |
1.1.2 Rectangles | |
1.1.3 Links & Text buttons |
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
/* | |
EMBY THEME : spotipi | |
# Table of Contents | |
1. ACCENT COLORS | |
1.1 Buttons | |
1.1.1 Checkboxes | |
1.1.2 Rectangles | |
1.1.3 Links & Text buttons |
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
/* Yamaha AV Receiver – Dark Mode */ | |
.gr__receiver_local, | |
.gr__receiver_local body, | |
.gr__receiver_local div, | |
.gr__receiver_local span, | |
.gr__receiver_local font, | |
.gr__receiver_local h1, | |
.gr__receiver_local h2, | |
.gr__receiver_local h3, |
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
tell application "Music" | |
-- get the selection | |
set theSongs to selection | |
end tell | |
-- setup the progress bar | |
set theSongCount to length of theSongs | |
set progress total steps to theSongCount | |
set progress completed steps to 0 | |
set progress description to "Refreshing Songs..." |