<Additional information about your API call. Try to use verbs that match both request type (fetching vs modifying) and plurality (one vs multiple).>
-
URL
<The URL Structure (path only, no root url)>
-
Method:
People
![]() :bowtie: |
😄 :smile: |
😆 :laughing: |
---|---|---|
😊 :blush: |
😃 :smiley: |
:relaxed: |
😏 :smirk: |
😍 :heart_eyes: |
😘 :kissing_heart: |
😚 :kissing_closed_eyes: |
😳 :flushed: |
😌 :relieved: |
😆 :satisfied: |
😁 :grin: |
😉 :wink: |
😜 :stuck_out_tongue_winking_eye: |
😝 :stuck_out_tongue_closed_eyes: |
😀 :grinning: |
😗 :kissing: |
😙 :kissing_smiling_eyes: |
😛 :stuck_out_tongue: |
function logTimes(message) { | |
performance.mark(message); // this one is for WebPageTest | |
console.timeStamp(message); // this is for the Performance tab in Chrome DevTools | |
console.info(message, performance.now()); // this is for the console, duh | |
// this here is for Google Analytics | |
ga('send', { | |
hitType: 'timing', | |
timingCategory: 'Performance', | |
timingVar: message, |
import Quill from 'quill'; | |
import {TaskerFigure} from './TaskerFigure'; | |
import Parchment from 'parchment'; | |
export class FigureOptions { | |
quill: Quill; | |
figure; | |
overlay; | |
linkRange; |
trait CreatesWithLock | |
{ | |
public static function updateOrCreate(array $attributes, array $values = []) | |
{ | |
return static::advisoryLock(function () use ($attributes, $values) { | |
// emulate the code found in Illuminate\Database\Eloquent\Builder | |
return (new static)->newQuery()->updateOrCreate($attributes, $values); | |
}); | |
} |
<?php | |
namespace App\Jobs; | |
use App\Product; | |
use Illuminate\Bus\Queueable; | |
use Illuminate\Support\Facades\Redis; | |
use Illuminate\Queue\SerializesModels; | |
use Illuminate\Queue\InteractsWithQueue; | |
use Illuminate\Contracts\Queue\ShouldQueue; |
(function (window, document) { | |
'use strict'; | |
let className = 'tabbing'; | |
let handleFirstTab = function (e) { | |
if (e.keyCode === 9) { | |
document.body.classList.add(className); | |
window.removeEventListener('keydown', handleFirstTab); | |
window.addEventListener('mousedown', handleMouseDownOnce); |
<?php | |
use PhpCsFixer\Config; | |
use PhpCsFixer\Finder; | |
$rules = [ | |
'array_indentation' => true, | |
'array_syntax' => ['syntax' => 'short'], | |
'binary_operator_spaces' => [ | |
'default' => 'single_space', |
// ****************************** | |
// https://mineral-ui.com/color | |
// ****************************** | |
module.exports = { | |
colors: { | |
transparent: 'transparent', | |
black: '#1d1f24', | |
white: '#ffffff', |
const _ = require('lodash') | |
module.exports = function ({addBase, addUtilities, e, theme, variants}) { | |
const gridGaps = theme('gridGap', {}) | |
const gridTemplates = theme('gridTemplate', {}) | |
const gridGapVariants = variants('gridGap', []) | |
const gridTemplateVariants = variants('gridTemplate', []) | |
const gapUtilities = _.map(gridGaps, (size, name) => ({ | |
[`.grid-gap-${e(name)}`]: {gridGap: `${size}`}, |