// Laravel 7 example
namespace App\Http\Controllers;
class Contact extends Controller
{
// ...
/**
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
.grid | |
display: grid | |
// Grid template columns | |
.grid-cols-1 | |
grid-template-columns: repeat(1, minmax(0, 1fr)) | |
.grid-cols-2 | |
grid-template-columns: repeat(2, minmax(0, 1fr)) |
I'm using Manjaro but this is valid for Arch.
Install atftp
and net-tools
. I'm using trizen
and ohmyzsh aliases.
trin atftp net-tools
Install through the web interface a fresh jail of EmbyServer.
Connect to the NAS through SSH:
iocage console emby
service emby-server stop
cd /tmp
# latest releases can be found here: https://github.com/MediaBrowser/Emby.Releases/releases
fetch https://github.com/MediaBrowser/Emby.Releases/releases/download/4.2.1.0/emby-server-freebsd11_4.2.1.0_amd64.txz
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
https://www.europosters.ro/never-give-up-motivational-quote-f112518765 | |
https://www.europosters.ro/don-t-stop-when-you-re-tired-f163177255 - nu mai au varianta mea | |
https://www.europosters.ro/motivational-fitness-quote-f117808152 |
F 1 / 1 (100%)
Time: 2.52 seconds, Memory: 34.00MB
There was 1 failure:
1) Tests\Unit\Dispatcher\Engine\BatchingTest::batching_selects_the_closest_order_to_the_current_one
Failed asserting that 255 matches expected 251.
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
public function toFormattedDateString() | |
protected static $translator; | |
* | |
* Add weeks to the instance. Positive $value travels forward while | |
*/ | |
* Set last errors. | |
return $this->setDate($year, 12, 31)->endOfDay(); | |
static::$weekStartsAt = $day; | |
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 | |
// in App\Repo\Topic.php | |
interface Topic | |
{ | |
public function topics(); | |
} | |
// in App\Repo\TopicQuery.php |