Skip to content

Instantly share code, notes, and snippets.

View 3m1n3nc3's full-sized avatar
๐Ÿ˜œ
Not hearing word

Legacy 3m1n3nc3

๐Ÿ˜œ
Not hearing word
View GitHub Profile
@3m1n3nc3
3m1n3nc3 / currency_symbols.php
Created August 31, 2024 03:16 — forked from gibbs/currency_symbols.php
An array of currency symbols as HTML entities
<?php
$currency_symbols = array(
'AED' => '&#1583;.&#1573;', // ?
'AFN' => '&#65;&#102;',
'ALL' => '&#76;&#101;&#107;',
'AMD' => '',
'ANG' => '&#402;',
'AOA' => '&#75;&#122;', // ?
'ARS' => '&#36;',
'AUD' => '&#36;',
@3m1n3nc3
3m1n3nc3 / BlobImage.vue
Created August 31, 2022 03:28 — forked from nebaughman/BlobImage.vue
Load image with ajax (axios) as blob data in Vue component
<template>
<img ref="image" :src="blobUrl" @load="loaded"/>
</template>
<script>
import axios from "axios"
/**
* Load an image url as a blob
*/
@3m1n3nc3
3m1n3nc3 / 2019-https-localhost.md
Created May 6, 2022 01:26 — forked from hrace009/2019-https-localhost.md
How to create an HTTPS certificate for localhost domains

How to create an HTTPS certificate for localhost domains

This focuses on generating the certificates for loading local virtual hosts hosted on your computer, for development only.

Do not use self-signed certificates in production ! For online certificates, use Let's Encrypt instead (tutorial).

@3m1n3nc3
3m1n3nc3 / Kernel.php
Created November 14, 2021 16:08 — forked from davidrushton/Kernel.php
Laravel 5 Database Queue - Shared Hosting
<?php
namespace App\Console;
use Illuminate\Console\Scheduling\Schedule;
use Illuminate\Foundation\Console\Kernel as ConsoleKernel;
class Kernel extends ConsoleKernel
{
/**