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 | |
/** | |
* Created by: @danilopinotti | |
* Inspired in Laravel Model Caching article (https://laravel-news.com/laravel-model-caching). | |
*/ | |
trait CacheKeys | |
{ | |
/** | |
* Generates a key that is updated each time Model is updated. |
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 | |
namespace Tests; | |
use Illuminate\Contracts\Console\Kernel; | |
use Illuminate\Foundation\Testing\RefreshDatabase as RefreshDatabaseBase; | |
use Illuminate\Foundation\Testing\RefreshDatabaseState; | |
trait RefreshDatabase | |
{ |
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
<template> | |
<div class="relative text-right" :style="`height: ${height}; width: ${width}`"> | |
<div :style="`height: ${height}; width: ${width}`" class="overflow-hidden bg-none"> | |
<iframe :width="width" :height="height" | |
:src="mapUrl" | |
frameborder="0" scrolling="no" marginheight="0" marginwidth="0"></iframe> | |
</div> | |
</div> | |
</template> |
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 | |
/** | |
* A support class made to help with URLs | |
*/ | |
class UrlHelper | |
{ | |
/** | |
* Validate if param is a valid URL; | |
* |
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
#include <Led.h> | |
#include <WebServer.h> | |
#include <WiFiManager.h> // https://github.com/tzapu/WiFiManager | |
Led led(2); | |
WebServer webServer(80); | |
void setupWifi() { | |
WiFi.mode(WIFI_STA); | |
WiFiManager wifiManager; |
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
#include <WiFi.h> | |
#include <WiFiManager.h> // https://github.com/tzapu/WiFiManager | |
#include <PubSubClient.h> // https://github.com/knolleary/pubsubclient | |
#define BROKER_ADDRESS "broker.hivemq.com" | |
#define BROKER_PORT 1883 | |
#define MQTT_CLIENT_ID "arduinoClient-1A2B3C" | |
WiFiClient wifiClient; | |
PubSubClient mqttClient(wifiClient); |
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 | |
function tail($fn) | |
{ | |
$underCall = false; | |
$pool = []; | |
return function (...$args) use (&$fn, &$underCall, &$pool) { | |
$result = null; | |
$pool[] = $args; |
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 | |
namespace Tests; | |
use App\User; | |
use Tests\TestCase; | |
use Illuminate\Notifications\Notification; | |
class MyNotification extends Notification | |
{ |
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 | |
use Ds\Map; | |
function memo(callable $function): callable | |
{ | |
$cache = new Map(); | |
return function (mixed ...$args) use (&$cache, $function): mixed { | |
if (isset($cache[$args])) { | |
return $cache[$args]; |
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 | |
namespace App\QueryBuilderCriteria; | |
use App\Contracts\QueryBuilderCriteria; | |
use Illuminate\Database\PostgresConnection; | |
class OrderByPriorityTrendCriterion extends QueryBuilderCriteria | |
{ | |
public function apply($queryBuilder) |
OlderNewer