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\Helpers; | |
use Session; | |
/** | |
* Created by PhpStorm. | |
* User: sam | |
* Date: 31/05/17 |
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\Traits; | |
use App\Role; | |
use App\UserRole; | |
trait HasRoles | |
{ |
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
$types = [ | |
'ABAP' => 'abap', | |
'Windows Bat' => 'bat', | |
'BibTeX' => 'bibtex', | |
'Clojure' => 'clojure', | |
'Coffeescript' => 'coffeescript', | |
'C' => 'c', | |
'C++' => 'cpp', | |
'C#' => 'csharp', | |
'CSS' => 'css', |
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
<!-- USAGE --> | |
<drag-drop-file-upload ref="dragDropFileUpload" @handleInput="changeImage"></drag-drop-file-upload> | |
//Handle image change/upload etc | |
changeImage({file, filePreview}) { | |
console.log({file, filePreview}); | |
}, | |
//Clear files added/dropped onto component? |
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\Services\YouTube; | |
use Str; | |
class YoutubeUrl | |
{ | |
private string $url; |
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 Vue from 'vue'; | |
class SomeState { | |
constructor() | |
{ | |
this.state = Vue.observable({}); | |
} | |
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 class="bg-white rounded shadow flex items-center justify-center mt-6 p-4" | |
v-if="pagination.total > pagination.per_page"> | |
<ul class=" flex flex-wrap gap-1"> | |
<li v-if="pagination.current_page > 1"> | |
<a class="bg-white block px-4 py-3 text-sm border rounded hover:bg-gray-100" | |
href="javascript:void(0)" | |
aria-label="Previous" | |
v-on:click.prevent="changePage(pagination.current_page - 1)"> | |
<span aria-hidden="true">«</span> |
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
type ClientLogic struct { | |
Client *twitchgo.Client | |
} | |
func Main() { | |
clientLogic := ClientLogic{ | |
Client: twitchClient, | |
} | |
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
const mix = require('laravel-mix'); | |
const {exec} = require('child_process'); | |
mix.extend('ziggy', new class { | |
register(config = {}) | |
{ | |
this.watch = config.watch ?? ['routes/**/*.php']; | |
this.enabled = config.enabled ?? !Mix.inProduction(); | |
} |
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
// Slapped this together real-quick for some one :D | |
const colors = []; | |
const themeData = JSON.parse('{"name":"Aurora X","type":"dark","colors":{"icon.foreground":"#576daf","activityBar.background":"#07090F","activityBar.foreground":"#86A5FF","activityBar.inactiveForeground":"#576dafc5","activityBarBadge.background":"#86A5FF","activityBarBadge.foreground":"#07090F","badge.background":"#86A5FF","badge.foreground":"#07090F","breadcrumb.activeSelectionForeground":"#86A5FF","breadcrumb.focusForeground":"#576daf","breadcrumb.foreground":"#576dafa6","breadcrumbPicker.background":"#07090F","button.background":"#86A5FF","button.foreground":"#07090F","button.hoverBackground":"#A8BEFF","diffEditor.insertedTextBackground":"#64d3892c","diffEditor.removedTextBackground":"#dd50742c","diffEditor.diagonalFill":"#15182B","descriptionForeground":"#576daf79","dropdown.background":"#15182B","dropdown.foreground":"#c7d5ff99","editor.background":"#07090F","editorCodeLens.foreground":"#262E47","editorGroup.background":"#07090F" |
OlderNewer