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
; Generate at http://www.escher3d.com/pages/wizards/wizardbed.php | |
; Auto calibration routine for delta printers | |
; Before running this, you should have set up your zprobe Z offset to suit your build, in the G31 command in config.g. | |
M561 ; clear any bed transform, otherwise homing may be at the wrong height | |
G31 X0 Y0 ; don't want any probe offset for this | |
G28 ; home the printer | |
; bed.g file for RepRapFirmware | |
; 13 points, 7 factors, probing radius: 140, probe offset (20, 20) |
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
; Homing file for RepRapFirmware on Mini Kossel | |
G91 ; use relative positioning | |
;******* Change F250 in the following line to F2500 when you are finished commissioning | |
;******* Change 650 in the following to a higher value if your Delta has taller towers | |
G1 S1 X650 Y650 Z650 F5000 ; move all carriages up 650mm, stopping at the endstops | |
G1 S2 X-4 Y-4 Z-4 ; move all carriages down 4mm | |
G1 S1 X8 Y8 Z8 F250 ; move carriages slowly up 8mm, stopping at the endstops | |
G1 Z-5 F2000 ; down a few mm so that we can centre the head | |
G90 ; back to absolute positioning | |
G1 X0 Y0 F2000 ; centre the head and set a reasonable feed rate |
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
SELECT DISTINCT fdfpmn.field_project_machine_name_value, pdd.dependency | |
FROM project_dependency_dependency pdd | |
LEFT JOIN project_dependency_component pdc ON pdc.component_id = pdd.component_id | |
LEFT JOIN field_data_field_release_project fdfrp ON fdfrp.entity_id = pdc.release_nid | |
LEFT JOIN field_data_field_project_machine_name fdfpmn on fdfpmn.entity_id = fdfrp.field_release_project_target_id | |
WHERE pdd.dependency IN (SELECT DISTINCT pdc.name FROM project_dependency_dependency pdd | |
LEFT JOIN project_dependency_component pdc ON pdc.component_id = pdd.component_id | |
LEFT JOIN field_data_field_release_project fdfrp ON fdfrp.entity_id = pdc.release_nid | |
LEFT JOIN field_data_field_project_machine_name fdfpmn on fdfpmn.entity_id = fdfrp.field_release_project_target_id | |
WHERE fdfpmn.field_project_machine_name_value = 'context') |
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
```css | |
/* | |
Github flavoured CSS for Quiver Note app. | |
http://happenapps.com) | |
https://github.com/HappenApps/Quiver | |
https://twitter.com/happenapps | |
Acknowledgments: | |
Modified version of https://gist.github.com/kcamcam/225a16f32409f0ae66f61569d6f706fc |
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
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); | |
/* This Source Code Form is subject to the terms of the Mozilla Public | |
* License, v. 2.0. If a copy of the MPL was not distributed with this | |
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */ | |
/* | |
* This style will hide the tab bar. For MacOS Big Sur | |
* | |
* Contributor(s): Isaac-Newt, Ivan0xFF, millerdev, AMomchilov | |
*/ |
OlderNewer