This file contains hidden or 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 | |
// This will create a product, apply a discount since it is a new | |
// product, and send a notification via email | |
public function store() | |
{ | |
// Create product from request | |
$product = Product::create($request->all()); | |
// Get the discount to be applied | |
$discount = Discount::byType('newProduct'); |
This file contains hidden or 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 | |
public function store() | |
{ | |
$product = $this->createProduct(); | |
$this->applyDiscount('newProduct', $product); | |
$this->notifyUsersVia('email'); | |
return 'Success'; | |
} |
This file contains hidden or 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> | |
<!-- root node required --> | |
<div> | |
<grid-layout :layout="layout" :col-num="12" :row-height="30" :is-draggable="true" :is-resizable="true" :vertical-compact="true" :margin="[10,10]" :use-css-transforms="true"> | |
<grid-item v-for="item in layout" :x="item.x" :y="item.y" :w="item.w" :h="item.h" :i="item.i"> | |
{{content[item.i].text}} | |
</grid-item> | |
</grid-layout> | |
</div> | |
</template> |
This file contains hidden or 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
let os = require('os') | |
let nativefier = require('nativefier').default | |
let c = require('colors') | |
let icon = './src/icon.png' | |
let options = { | |
name: 'Gmail Desktop', | |
targetUrl: 'https://mail.google.com/mail/mu/?mui=ca', |
This file contains hidden or 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
Array.prototype.aggregate = function (fn, initialValue) { | |
let current | |
const length = this.length | |
if (length == 0 && initialValue) return initialValue | |
else if (length == 0) throw 'Reduce of empty array with no initial value' | |
else if (length == 1 && initialValue) return fn(initialValue, this[0]) | |
else if (length == 1) return this[0] | |
else if (initialValue) current = fn(initialValue, this[0]) | |
else current = this[0] | |
This file contains hidden or 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> | |
<q-page padding> | |
<q-uploader ref="ecvUp" :url="url" extensions=".csv" auto-expand multiple @add="addedFiles" @uploaded="uploadedFile" :headers="{ Authorization: 'Bearer ' + $store.login.sessao.jwt, 'debug-token':'aaa'}"/> | |
<q-table :loading="table.loading" title="ECV" :data="table.data" :columns="table.columns" @request="request" :pagination.sync="table.pagination" row-key="name"/> | |
</q-page> | |
</div> | |
</template> |
This file contains hidden or 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
### Keybase proof | |
I hereby claim: | |
* I am insign on github. | |
* I am insign (https://keybase.io/insign) on keybase. | |
* I have a public key ASD95NwQFKpuJz0-odbZAo1vxi6q-CpaUFQ6VY7PUa9A3Ao | |
To claim this, I am signing this object: |
This file contains hidden or 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
#!/bin/sh | |
DPI=$(xfconf-query -c xsettings -p /Xft/DPI) | |
if [ $DPI -ne 192 ];then | |
xfconf-query -c xsettings -p /Xft/DPI -s 192 | |
xfconf-query -c xsettings -p /Gtk/CursorThemeName -s capitaine-cursors-hidpi | |
dconf write /net/launchpad/plank/docks/dock1/icon-size 120 | |
else |
This file contains hidden or 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> | |
<q-btn v-if="!$q.platform.is.mobile" | |
@click="$emit('click')" | |
:color="color" | |
:flat="flat" | |
:outline="outline" | |
:icon="icon" | |
:loading="loading" | |
:to="to" | |
> |
This file contains hidden or 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 | |
use Illuminate\Support\Facades\Schema; | |
use Illuminate\Database\Schema\Blueprint; | |
use Illuminate\Database\Migrations\Migration; | |
class AddRenewsAtColumnToSubscriptions extends Migration | |
{ | |
/** | |
* Run the migrations. |