These are NOT product / license keys that are valid for Windows activation.
These keys only select the edition of Windows to install during setup, but they do not activate or license the installation.
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
// Defines the stored mask value. | |
var mask = 194; | |
// Returns a array of reversed bit orders. | |
var a = parseInt(mask,10).toString(2).split('').reverse(); | |
console.log(a); | |
// Encodes the bitorder back into a stored mask value. | |
var x = parseInt(a.reverse().join('').toString(), 2); | |
console.log(x); |
;---Start GCODE CURA for CETUS MKII--
M104 S{material_print_temperature}; set the extruder temperature and go on
M109 S{material_print_temperature}; set the extruder temperature and wait
M82 ; absolute extrusion mode
M204 P3000; set acceleration
G90; sets motion in absolute mode
G92 E0 ; reset step E
G1 Z0 F2000 ;home Z
G28 ; home all axes
M117 Purge extruder
G92 E0 ; reset extruder
G1 Z1.0 F3000 ; move z up little to prevent scratching of surface
G1 X2 Y20 Z0.3 F5000.0 ; move to start-line position
G1 X2 Y200.0 Z0.3 F1500.0 E15 ; draw 1st line
G1 X2 Y200.0 Z0.4 F5000.0 ; move to side a little
G1 X2 Y20 Z0.4 F1500.0 E30 ; draw 2nd line
Machinekit is in here because these should also apply for other platforms and in general machinekit is more suited for tinkering than linuxcnc at this point in time. Mainly due to the cleaned up repositories and the seperation between hal and cnc. That is all i will get into the politics of these projects..
To run these you should use Debian Buster 10, and using a realtime kernel. To install a realtime kernel just run this command
sudo apt-get update
sudo apt-get install linux-image-rt-amd64 linux-headers-rt-amd64
Reboot..
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
apiVersion: v1 | |
kind: Service | |
metadata: | |
name: nginx-nodeport | |
namespace: default | |
spec: | |
ports: | |
- port: 80 | |
protocol: TCP | |
targetPort: 80 |
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
# Shadow | |
shadow = true; | |
no-dnd-shadow = true; | |
no-dock-shadow = true; | |
clear-shadow = true; | |
shadow-radius = 12; | |
shadow-offset-x = -15; | |
shadow-offset-y = -15; | |
# shadow-opacity = 0.7; | |
# shadow-red = 0.0; |
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
#!/bin/bash | |
# Openbox Pipe Menu for xcompmgr | |
# Written for CrunchBang Linux <http://crunchbang.org/projects/linux/> | |
# by Philip Newborough (aka corenominal) <[email protected]> | |
# Set xcompmgr command options | |
#EXEC='xcompmgr -c -t-5 -l-5 -r4.2 -o.55' #basic | |
EXEC='xcompmgr -cCfF -t-5 -l-5 -r4.2 -o.11 -D7 -m.86' # more bling | |
# Toggle compositing. Call with "xcompmgr_openbox --startstop" |
NewerOlder