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
I. Thou shalt not jack another team’s public Slack channels for off-topic discussions.1 | |
II. Thou shalt not introduce thyself with “hi” at the start of every direct message. | |
III. Thou shalt not use sentence case unless thou art addressing a superior at least two tiers above thy level. | |
IV. Thou shalt not use @here or @channel unless thou has something truly pressing to say. | |
V. After five messages back and forth, thou shalt move a public one-on-one conversation to a private direct message. |
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\Console\Commands; | |
use Illuminate\Console\Command; | |
class ScrapeFunko extends Command | |
{ | |
/** | |
* The name and signature of the console command. |
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>{{ readingTime }} min read</div> | |
</template> | |
<script> | |
export default { | |
props: ['content'], | |
computed: { | |
readingTime () { | |
let minutes = 0 |
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
{ | |
"breeze": { | |
"name": "Breeze", | |
"background": { | |
"from": "rgba(207,47,152,1)", | |
"to": "rgba(106,61,236,1)" | |
}, | |
"syntax": { | |
"light": { | |
"background": "rgba 0,0,100,0.75", |