Skip to content

Instantly share code, notes, and snippets.

View dividy's full-sized avatar
🎯
Focusing

David Rensonnet dividy

🎯
Focusing
View GitHub Profile
<?php
function liveExecuteCommand($cmd)
{
while (@ ob_end_flush()); // end all output buffers if any
$proc = popen("$cmd 2>&1 ; echo Exit status : $?", 'r');
$live_output = "";
$complete_output = "";
<?php
namespace App\Casts;
use Illuminate\Contracts\Database\Eloquent\CastsAttributes;
class ReadableNumber implements CastsAttributes
{
/**
* Prepare the given value for storage.
<?php
$source_dir = "_source";
echo "<div>";
// create source directory
mkdir($source_dir);
// get latest french WordPress file
$ch = curl_init();
@dividy
dividy / Response.php
Created April 13, 2021 13:40 — forked from jeffochoa/Response.php
Laravel HTTP status code
<?php
// This can be found in the Symfony\Component\HttpFoundation\Response class
const HTTP_CONTINUE = 100;
const HTTP_SWITCHING_PROTOCOLS = 101;
const HTTP_PROCESSING = 102; // RFC2518
const HTTP_OK = 200;
const HTTP_CREATED = 201;
const HTTP_ACCEPTED = 202;
@dividy
dividy / linux-packages
Created July 24, 2020 10:09 — forked from kozmonaut/linux-packages
Backup and restore installed packages inside Linux Debian
# Backup your packages list
# Get a packages list
dpkg --get-selections > ~/Package.list
# Copy list of repositories
sudo cp /etc/apt/sources.list ~/sources.list
# Export repo keys
sudo apt-key exportall > ~/Repo.keys