Skip to content

Instantly share code, notes, and snippets.

View AlbertoGuilherme's full-sized avatar

Alberto Guilherme Airosa AlbertoGuilherme

  • Alberto Guilherme Airosa
  • Angola
View GitHub Profile
@atomjar
atomjar / product_style
Last active August 13, 2024 11:34
Stylesheet for Vue Mastery's Intro to Vue course
body {
font-family: tahoma;
color:#282828;
margin: 0px;
}
.nav-bar {
background: linear-gradient(-90deg, #84CF6A, #16C0B0);
height: 60px;
margin-bottom: 15px;
@fraterblack
fraterblack / laravel-queue-em-hospedagem-compartilhada
Created June 9, 2017 17:50
Rodar Queues do Laravel em Hospedagem compartilhada - Cpanel
Rodar Queues do Laravel em Hospedagem compartilhada
//É necessário criar uma método em um controller para executar a queue
//Estou chamando a tarefa e dizendo para ser executada somente uma vez
public function queue()
{
Artisan::call('queue:restart', []);
Artisan::call('queue:work', [
'--timeout' => 60,
'--memory' => 150,