$ | config.h | Shapeoko XXL Defaults | Description |
---|---|---|---|
$0 | DEFAULT_STEP_PULSE_MICROSECONDS | 10 | Step pulse, microseconds |
$1 | DEFAULT_STEPPER_IDLE_LOCK_TIME | 255 | Step idle delay, milliseconds |
$2 | DEFAULT_STEPPING_INVERT_MASK | 0 | Step port invert, mask |
$3 | DEFAULT_DIRECTION_INVERT |
The given solution does not work when using a package that does a lot of the work after you define the with()
relations like datatables
here is a solution that works for any model.
<?php
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 | |
/** | |
* notes | |
* | |
* decent tutorial on load data... | |
* https://tenerant.com/blog/using-load-data-local-infile-in-a-laravel-migration/ | |
* | |
* simple example | |
* https://gist.github.com/Xeoncross/2012182 | |
* |
ruby-build 2.3.6 ~/.rubies/2.3.6
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 | |
/** | |
* --- STOP! --- | |
* Get the latest version: | |
* https://gravitywiz.com/documentation/gravity-forms-ecommerce-fields/ | |
* ------------- | |
* | |
* Calculation Subtotal Merge Tag | |
* | |
* Adds a {subtotal} merge tag which calculates the subtotal of the form. This merge tag can only be used |
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 | |
use Illuminate\Http\Request; | |
// api auth routes... | |
Route::group(['middleware' => ['auth:api']], function () { | |
// unversioned api routes | |
Route::get('/user', function (Request $request) { | |
return $request->user(); | |
}); |
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 App; | |
use Illuminate\Support\Facades\Input; | |
use Illuminate\Validation\Validator; | |
/** | |
* Class Extend | |
*/ | |
class Extend |
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 Artistan\ZeroNullDates\Tests; | |
use Illuminate\Foundation\Application as IllApplication; | |
class Application extends IllApplication | |
{ | |
/** | |
* The custom configuration path defined by the developer. |
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/sh | |
######################################################################################## | |
# I do not need to use the ngrok subdomains... | |
# start ngrok for my local box (vagrant homestead) in th background | |
# get the cname from command line for the ngrok alias | |
# update my subdomain cname to point at new ngrok name | |
# use it!!! | |
######################################################################################## | |
# requires ngrok and jq installed. |
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 My\Database; | |
trait Upsert { | |
/** | |
* @requires @param string $primaryKey | |
* OR | |
* @requires @param array $unique_keys | |
* |