Skip to content

Instantly share code, notes, and snippets.

View otengkwame's full-sized avatar
💭
Cooking some open source projects

Kwame Oteng Appiah-Nti otengkwame

💭
Cooking some open source projects
View GitHub Profile
@wildshark
wildshark / index.html
Created April 3, 2019 00:16
POS Receipt Template Html Css
<div id="invoice-POS">
<center id="top">
<div class="logo"></div>
<div class="info">
<h2>SBISTechs Inc</h2>
</div><!--End Info-->
</center><!--End InvoiceTop-->
@jeffreysbrother
jeffreysbrother / index.php
Last active March 11, 2020 10:22
Generators in PHP
<?php
$start_time = microtime(true);
$startMemoryUsage = memory_get_peak_usage();
/**********************************************
WITHOUT GENERATOR
**********************************************/
$array = [];
<?php
function event(string $name, array $data = [],callable $action = null,int $priority = 0){
static $events = [];
if($action){
$events[$name][]=[
'priority' => $priority,
'action' => $action
];
return null;
}