dnf config-manager --add-repo http://developer.download.nvidia.com/compute/cuda/repos/rhel8/x86_64/cuda-rhel8.repo
dnf install -y cuda
cat <<EOF > /etc/profile.d/cuda.sh
export PATH=/usr/local/cuda/bin${PATH:+:${PATH}}
export LD_LIBRARY_PATH=/usr/local/cuda/lib64${LD_LIBRARY_PATH:+:${LD_LIBRARY_PATH}}
EOF
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
dist | |
Configurations | |
Marlin | |
BIGTREETECH-TouchScreenFirmware |
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
#!/usr/bin/env bash | |
MONGO_URL="mongodb://192.168.1.100/" | |
BACKUP_PARENT_DIR="/tmp/mongo-backups" | |
BACKUP_DIR="mongobackup-`date +%Y-%m-%d-%H-%M-%S`" | |
BACKUP_COLLECTION_PARALLELISM="4" | |
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
{ | |
"data-root": "/mnt/disk1/docker", | |
"storage-driver": "overlay2", | |
"insecure-registries" : [ | |
"192.168.1.200:5000" | |
], | |
"dns": [ | |
"192.168.1.1" | |
], | |
"registry-mirrors" : [ |
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
import tweepy | |
consumer_key = "" | |
consumer_secret = "" | |
access_token = "" | |
access_token_secret = "" | |
try: | |
auth = tweepy.OAuthHandler(consumer_key, consumer_secret) | |
auth.set_access_token(access_token, access_token_secret) |
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
import pysolr | |
import time | |
import json | |
import os | |
import threading | |
from datetime import datetime | |
from datetime import timedelta | |
############################################################################## |
A clean and native interface to Google Meet (https://meet.google.com) using nativefier.
Supports dark and light mode on macOS Mojave.
To build the application, nativefier will be used with the following commands: