Source : Learn to combine RxJs sequences with super intuitive interactive diagrams
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
<?xml version="1.0" encoding="UTF-8"?> | |
<ruleset name="Laravel"> | |
<description>The default PHP Code Style of my Laravel projects.</description> | |
<!-- Files to include. --> | |
<file>app</file> | |
<file>config</file> | |
<file>routes</file> | |
<file>tests</file> |
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 Tests\Authenticated; | |
use Illuminate\Support\Facades\Auth; | |
use Illuminate\Foundation\Testing\RefreshDatabase; | |
class ArticleUpdateTest extends TestCase | |
{ |
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
#!/usr/bin/env bash | |
function usage { | |
echo "An easy way to look at multiple data items in a Kubernetes secret." | |
echo " Usage: $(basename $0) <secret> <data ...>" | |
exit 1 | |
} | |
if [[ $# -eq 0 ]] ; then | |
usage |
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
import {_ as e, L as t} from "./index-4deec983.js"; | |
import {a as n, C as i} from "./Controller-26bd1e9e.js"; | |
import {S as s} from "./ScrollObserver-d0732a2c.js"; | |
import {F as o} from "./index-bee741e4.js"; | |
class r { | |
constructor(e, t, n, i=!1) { | |
const s = this | |
, o = -1 !== document.location.search.toLowerCase().indexOf("debug=webgl"); | |
s.canvas = e, | |
s.gl = s.canvas.getContext("webgl", { |
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
export function pipeline(initialValue, pipes, then) { | |
then = then ?? ((t) => t); | |
const pipelineCallback = pipes | |
.slice() | |
.reverse() | |
.reduce((next, pipe) => (passable) => pipe(passable, next), then); | |
return pipelineCallback(initialValue); | |
} |
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
<?xml version="1.0"?> | |
<ruleset name="Laravel Standards"> | |
<!-- | |
The name attribute of the ruleset tag is displayed | |
when running PHP_CodeSniffer with the -v command line | |
argument. The description tag below is not displayed anywhere | |
except in this file, so it can contain information for | |
developers who may change this file in the future. | |
--> |
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\Support\Jobs; | |
use Illuminate\Contracts\Queue\ShouldQueue; | |
class DebouncedJob implements ShouldQueue | |
{ | |
use \Illuminate\Foundation\Bus\DispatchesJobs; | |
use \App\Support\Cache\PrefixedCache; |
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
name: My Workflow | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
container: | |
image: lorisleiva/laravel-docker:7.4 | |
steps: | |
- uses: actions/checkout@v2 |
OlderNewer