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
| ; Ender 3 Custom End G-code | |
| G4 ; Wait | |
| M220 S100 ; Reset Speed factor override percentage to default (100%) | |
| M221 S100 ; Reset Extrude factor override percentage to default (100%) | |
| G91 ; Set coordinates to relative | |
| G1 F1800 E-3 ; Retract filament 3 mm to prevent oozing | |
| G1 F3000 Z20 ; Move Z Axis up 20 mm to allow filament ooze freely | |
| G90 ; Set coordinates to absolute | |
| G1 X0 Y{machine_depth} F1000 ; Move Heat Bed to the front for easy print removal | |
| M106 S0 ; Turn off cooling fan |
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
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>Jigsaw puzzle</title> | |
| <script type="text/javascript"> | |
| function save(filename, data) | |
| { | |
| var blob = new Blob([data], {type: "text/csv"}); |
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
| # Show git branch name | |
| force_color_prompt=yes | |
| color_prompt=yes | |
| # Add git branch if its present to PS1 | |
| parse_git_branch() { | |
| git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/(\1)/' | |
| } | |
| if [ "$color_prompt" = yes ]; then | |
| PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[01;31m\]$(parse_git_branch)\[\033[00m\]\$ ' | |
| else |
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
| <?php | |
| namespace CheckInBundle\Form\Type; | |
| use Symfony\Component\Form\AbstractType; | |
| use Symfony\Component\OptionsResolver\OptionsResolver; | |
| class CheckBoxImgType extends AbstractType | |
| { | |
| public function configureOptions(OptionsResolver $resolver) |
NewerOlder