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
## Create a new task from Synology Settings via Task Scheduler. Copy this as a "user defined script", replacing the __variable__ with what it should be for your account/domain: | |
#!/usr/bin/bash | |
ip="$(curl -s http://whatismyip.akamai.com)"; url="http://dynamicdns.park-your-domain.com/update?host=__sub__&domain=__domain.net__&password=__BLAHBLAH__&ip=${ip}"; echo $ip ;echo $url ;curl -f -s $url > /dev/null |
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 re | |
import json | |
import requests | |
from argparse import ArgumentParser | |
from abc import abstractproperty | |
__version__ = "0.0.1" | |
__all__ = ['ClientException', 'Eero', 'SessionStorage', '__version__'] | |
''' |
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
We got a QiDi Tech X-one2 3D printer for Christmas. It came with a custom-skinned ancient version of Cura. I had a bit of difficulty finding the information needed to use the real Cura software, so I decided to post it online, here on my blog with zero Google fu that nobody will ever find. | |
(Tested with Cura 3.1.0. This information was found in the QiDi program folder in resources/definitions/fdmprinter.def.json and resources/definitions/x-one2.def.json) | |
In the Add Printer dialog, select "Other" and "Julia", enter a name, and click "Add Printer". | |
X (Width): 150mm | |
Y (Depth): 150mm | |
Z (Height): 145mm |
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
{ | |
"name": "Creality CR20 Pro", | |
"version": 2, | |
"inherits": "fdmprinter", | |
"metadata": { | |
"visible": true, | |
"author": "Michael Wildermuth", | |
"manufacturer": "Creality3D", | |
"file_formats": "text/x-gcode", | |
"preferred_quality_type": "draft", |
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
<?xml version="1.0"?> | |
<profile name="Creality CR-20 Pro" version="2018-01-19 08:00:00" app="S3D-Software 4.0.0"> | |
<baseProfile></baseProfile> | |
<printMaterial>PLA</printMaterial> | |
<printQuality>Medium</printQuality> | |
<printExtruders></printExtruders> | |
<extruder name="Primary Extruder"> | |
<toolheadNumber>0</toolheadNumber> | |
<diameter>0.4</diameter> | |
<autoWidth>0</autoWidth> |