Skip to content

Instantly share code, notes, and snippets.

View Warafux's full-sized avatar
⚔️
Learning

Alex Paredes Martinez Warafux

⚔️
Learning
  • Catalonia, Spain
View GitHub Profile
@Warafux
Warafux / CallCommandJob.php
Created November 2, 2021 08:53
Call Laravel Command as JOB
<?php
namespace App\Jobs;
use Illuminate\Bus\Queueable;
use Illuminate\Queue\SerializesModels;
use Illuminate\Queue\InteractsWithQueue;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Foundation\Bus\Dispatchable;
use Illuminate\Support\Facades\Artisan;
@Warafux
Warafux / export-github-projects.js
Last active May 2, 2019 08:09
Web Scrapper Github Projects with JQuery
//get project name:
$("[data-hovercard-type=project]").html().trim()
//get project columns:
$("div.project-column")
//get boxes in columns:
$(column).find("div.pl-5")