Part of the component lifecycle, similar to created/mounted.
Part of the component lifecycle, similar to destroyed
<?php | |
namespace App\Features; | |
use App\Features\FirstTask; | |
use App\Features\SecondTask; | |
use Illuminate\Pipeline\Pipeline; | |
// *Naming things is hard* ... So, this is a class called `ProcessClass` that `run()` some text ¯\_(ツ)_/¯ | |
class ProcessClass |
<?php | |
use PhpCsFixer\Config; | |
use PhpCsFixer\Finder; | |
$rules = [ | |
'array_syntax' => ['syntax' => 'short'], | |
'binary_operator_spaces' => ['align_equals' => false], | |
'blank_line_after_namespace' => true, | |
'blank_line_after_opening_tag' => true, |
// 🔥 Node 7.6 has async/await! Here is a quick run down on how async/await works | |
const axios = require('axios'); // promised based requests - like fetch() | |
function getCoffee() { | |
return new Promise(resolve => { | |
setTimeout(() => resolve('☕'), 2000); // it takes 2 seconds to make coffee | |
}); | |
} |
Possible values for ext-name: | |
bcmath | |
bz2 | |
calendar | |
ctype | |
curl | |
dba | |
dom | |
enchant |
One day in your Laravel app, you were required to redirect all http
requests to https
but need to make a certain URL route accessible via http
for a certain reason; perhaps a portion of your javascript code needs to redirect to http
URL but it can't because redirection to secure URL to insecure is prohibited. Therefore, in cases like this, you need to just allow just one URL to make an http
connection.
NOTE: There are obvious security implications here so don't just follow this blindly and understand if this is really the solution you're looking for. The nginx config can somehow be improved, I just don't have the time yet. It sure do look redundant.
http
to https
<?php | |
/** | |
* Gera a paginação dos itens de um array ou collection. | |
* | |
* @param array|Collection $items | |
* @param int $perPage | |
* @param int $page | |
* @param array $options | |
* | |
* @return LengthAwarePaginator |
# ------------------------------------ | |
# Docker alias and function | |
# ------------------------------------ | |
# Get latest container ID | |
alias dl="docker ps -l -q" | |
# Get container process | |
alias dps="docker ps" |
var robot = require("robotjs"); | |
var sleep = require("sleep"); | |
robot.keyToggle('tab', true, 'command'); | |
robot.keyTap('tab', 'command'); | |
sleep.sleep(2); | |
robot.keyTap('tab', 'command'); | |
sleep.sleep(2); | |
robot.keyTap('tab', 'command'); |
<?php | |
namespace App\Providers; | |
use Illuminate\Support\ModuleServiceProvider; | |
class FooModuleServiceProvider extends ModuleServiceProvider | |
{ | |
protected $moduleName = 'Foo Module'; | |
protected $moduleNamespaces = ['App\FooModule']; | |