I hereby claim:
- I am r0b3rdv on github.
- I am robertv (https://keybase.io/robertv) on keybase.
- I have a public key ASBJ6yVAN-dSQjNIjsdCahhNlzGVk69Pi-1zKqvad_YzHAo
To claim this, I am signing this object:
; --- Start of custom END G-Code for Creality Ender 3 V2 with BL-Touch and latest https://github.com/Jyers/Marlin/releases UBL firmware installed and Cura Slicer --- | |
M400 ; Wait for current moves to finish | |
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 F2400 E-5 ; Retract filament 5mm at 40mm/s to prevent stringing | |
G0 F5000 Z20 ; Move Z Axis up 20mm to allow filament ooze freely |
<?php | |
function split_street(string $streetStr) :array { | |
$aMatch = array(); | |
$pattern = '#^([\w[:punct:] ]+) (\d{1,5})\s?([\w[:punct:]\-/]*)$#'; | |
preg_match($pattern, $streetStr, $aMatch); | |
$street = $aMatch[1] ?? $streetStr; | |
$number = $aMatch[2] ?? ''; | |
$numberAddition = $aMatch[3] ?? ''; | |
return array('street' => $street, 'number' => $number, 'numberAddition' => $numberAddition); | |
} |
I hereby claim:
To claim this, I am signing this object:
#!/bin/bash | |
# | |
# Credits to fuckbecauseican5 from https://www.reddit.com/r/hackintosh/comments/4s561a/macos_sierra_16a238m_install_success_and_guide/ | |
# Adapted to work with the official image available into Mac App Store | |
# | |
# Enjoy! | |
hdiutil attach /Applications/Install\ macOS\ Sierra.app/Contents/SharedSupport/InstallESD.dmg -noverify -nobrowse -mountpoint /Volumes/install_app | |
hdiutil create -o /tmp/Sierra.cdr -size 7316m -layout SPUD -fs HFS+J | |
hdiutil attach /tmp/Sierra.cdr.dmg -noverify -nobrowse -mountpoint /Volumes/install_build |
#!/bin/bash | |
################################ | |
# OS X Install ISO Creater # | |
# # | |
# Author: shela # | |
################################ | |
####################################### | |
# Declarations |
body(ng-app='app') | |
.container-fluid | |
p | |
form | |
.row(ng-controller='AppCtrl as app') | |
.col-md-6 | |
h4 | |
kbd Build Configurations | |
p | |
.row |
<?php | |
/** | |
* @author Atanas Vasilev | |
* @link http://pastebin.com/dHbqjUNy | |
* @see http://www.dotvoid.com/2010/04/detecting-utf-bom-byte-order-mark/ | |
* @version 1.1 | |
*/ | |
// SETTINGS |