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
<?php | |
// mediawiki to dokuwiki url redirector | |
// use .htaccess to rewrite all requests to this file: | |
// RewriteEngine on | |
// RewriteCond %{REQUEST_FILENAME} !-f | |
// RewriteCond %{REQUEST_FILENAME} !-d | |
// RewriteRule ^(.*)$ /wiki/index.php [NC,L,QSA] | |
$prefix = '/wiki'; |
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
G21 ;metric values | |
G90 ;absolute positioning | |
M82 ;set extruder to absolute mode | |
M107 ;start with the fan off | |
M140 S60 ;start heating the bed to 60 | |
M104 S130 T0 ;start heating T0 to 130 | |
M117 Pre-Heating... | |
G28 X0 Y0 ;move X/Y to min endstops | |
G28 Z0 ;move Z to min endstops | |
G1 Z7 F600 ;move Z to 7mm |