A Pen by Paul Brophy on CodePen.
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
cd /home/forge/.oh-my-zsh/custom | |
sudo -Hu forge git init | |
sudo -Hu forge git remote add origin https://github.com/nivv/operator-theme.git | |
sudo -Hu forge git fetch | |
sudo -Hu forge git checkout -t origin/master | |
sudo -Hu forge sed -i -e 's/ZSH_THEME="robbyrussell"/ZSH_THEME="operator"/g' /home/forge/.zshrc | |
sudo -Hu forge echo "source /home/forge/.oh-my-zsh/custom/aliases" >> /home/forge/.zshrc | |
sudo -Hu forge echo 'eval "$(fasd --init auto)"' >> /home/forge/.zshrc |
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
, |
The following debugging information was generated by Atom Beautify
on Thu Mar 23 2017 09:36:46 GMT+0100 (CET)
.
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\Providers; | |
use Illuminate\Routing\Router; | |
use Illuminate\Support\Facades\Route; | |
use Illuminate\Foundation\Support\Providers\RouteServiceProvider as ServiceProvider; | |
class RouteServiceProvider extends ServiceProvider | |
{ |
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
fetchArticles: function() { | |
this.$http.get({url: '/api/v2/articles'}).then( (response) => { | |
// success callback | |
this.$set('articles', response.data.data); | |
this.$set('appReady', true); | |
}, (response) => { | |
if (response.status == 401) { | |
//Seems like token is expired, refresh and retry | |
console.log('Should see if we can refresh the token!') | |
auth.handle(response); |
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> | |
<gphe-header></gphe-header> | |
<div class="container-fluid main" v-if="!loading" transition="drag"> | |
<h1>{{translate('title')}}</h1> | |
{{ currentPage.template.uuid }} | |
</div> | |
<script type="text/javascript">alert('heye')</script> | |
<gphe-footer :show-related="true" :tag-name="parent.name" :tags="parent.children"></gphe-footer> | |
</template> |
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
//Fel | |
id="”product-trigger”" | |
//Rätt | |
id="product-trigger" |
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 downloadFile($id) | |
{ | |
$file = File::findOrFail($id); | |
$contents = \Illuminate\Support\Facades\Storage::getDriver()->get('/'.$file->path); | |
return response()->download($contents, $file->name); | |
} |
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"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>author</key> | |
<string>Dmitri Voronianski (http://pixelhunter.me)</string> | |
<key>colorSpaceName</key> | |
<string>sRGB</string> | |
<key>gutterSettings</key> | |
<dict> |
NewerOlder