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
"repositories": [ | |
{ | |
"type": "path", | |
"url": "../pkg/laravel-admin" | |
}, | |
{ | |
"type": "vcs", | |
"url": "[email protected]:vendor/my-private-repo.git" | |
} | |
] |
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
{"version":1,"resource":"file:///var/www/html/laravel/filament/app/Models/User.php","entries":[{"id":"gjXE.php","timestamp":1663760020239},{"id":"xJ9X.php","timestamp":1663760031893}]} |
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
Bulk Multiple cursor: | |
Mark all then Atl + shift + i |
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\Http\Controllers; | |
use GDText\Box; | |
use GDText\Color; | |
use App\Post; | |
use Illuminate\Http\Request; | |
use Illuminate\Support\Facades\Cache; |
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
var endDate = new Date("Feb 5, 2021 12:00:00 GMT-0800").getTime(); | |
var timer = setInterval(function() { | |
let now = new Date().getTime(); | |
let t = endDate - now; | |
if (t >= 0) { | |
let days = Math.floor(t / (1000 * 60 * 60 * 24)); |
OlderNewer