Skip to content

Instantly share code, notes, and snippets.

@diderson
diderson / Configurations for Laravel app on Kubernetes - Dockerfile
Created August 27, 2021 17:26 — forked from CodingMonkTech/Configurations for Laravel app on Kubernetes - Dockerfile
Deploying laravel on kubernetes cluster - Ready to use configuration Files
FROM php:7.2-fpm
COPY app /var/www/
EXPOSE 9000
@diderson
diderson / fix_openssl_catalina.sh
Created November 27, 2020 07:00 — forked from llbbl/fix_openssl_catalina.sh
fix missing openssl files in catalina
#!/bin/bash
echo 'update brew'
brew update
echo 'upgrade brew'
brew upgrade
@diderson
diderson / gist:c1c9f6e4acec9ecc2cf63ef650a2a85c
Created November 21, 2017 07:32 — forked from joshuabaker/gist:313648
Get all images in a HTML string
<?php
/**
* Returns all img tags in a HTML string with the option to include img tag attributes
*
* @author Joshua Baker
*
* @example $post_images[0]->html = <img src="example.jpg">
* $post_images[0]->attr->width = 500
*