The Sendt-3D designed rotary enclosure for your XTool D1\D1 Pro machine that you never thought you needed. The enclosure itself is made entirely out of 3/4" wood.
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 shutil | |
import os | |
import sys | |
''' | |
Place this script in the main project directory. This should be | |
the same directory as manage.py. | |
''' | |
# Get the file path of this script | |
root = sys.path[0] |
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
#! /bin/bash | |
n=32 | |
arg=setaf | |
text='Hello World! This is %s %d' | |
_help() | |
{ | |
printf 'usage: %s [--help|-H] [--16] [--256] [-t|--tiny] [--background|-b]\n' "$(basename $0)" | |
exit 0 |
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 requests | |
from datetime import datetime | |
def get_mega_millions_data(): | |
url = "https://api.opendatastack.com/v1/lottery/mega-millions" | |
response = requests.get(url) | |
if response.status_code == 200: | |
return response.json() | |
else: | |
raise Exception("Failed to fetch data") |
BE CAREFUL NOT TO OVERTIGHTEN ANY SCREWS INTERFACING WITH THE PRINTED PARTS
DO NOT WORK ON YOUR LASER WITH THE POWER ON
- 7x M3x10
- 2x M3x30
- Drag chain
A collection of Markdown code and tricks that were tested to work in Gist.
This and all public gists in https://gist.github.com/ww9 are Public Domain. Do whatever you want with it including , no need to credit me.
- Reformat this whole document and assimilate these:
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
https://forums.raspberrypi.com/viewtopic.php?f=28&t=62371&start=1550#p1898145 | |
sudo apt install git bc bison flex libssl-dev | |
git clone https://github.com/RPi-Distro/rpi-source | |
cd rpi-source | |
./rpi-source | |
git clone https://github.com/lwfinger/rtl8188eu | |
cd rtl8188eu | |
make | |
sudo make install | |
sudo modprobe 8188eu |
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 required module | |
import os | |
import cv2 | |
import exiftool | |
import rembg | |
# assign path variables | |
VERBOSE = False | |
BASE_DIRECTORY = os.getcwd() | |
DESKTOP_DIRECTORY = os.path.expanduser("~\\Desktop") |
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 os | |
import platform | |
from PIL import Image | |
''' | |
Run from parent directory. Folders and files expected in `./files/images` | |
''' | |
opsys = platform.system() | |
if opsys.lower() == 'windows': | |
SLASH = "\\" |
layout | title | tags | date |
---|---|---|---|
post |
How to Sync Microsoft OneDrive with Ubuntu 18.04 and 20.04 (64 bit) |
ubuntu-18.04, ubuntu-20.04 |
2020-04-23 |
There are many instructions to syncronize your files with OneDrive cloud-based storage in Linux. However they typically address multiple Linux distributions that often causes a confusion or an use of some commands which have not been actually tested before publishing. This instruction is for Ubuntu 18.04 and 20.04 (64 bit) only.
In order to install onedrive, first you need to install some dependencies and set up git.
NewerOlder