Skip to content

Instantly share code, notes, and snippets.

View gentritabazi's full-sized avatar
🎯
Focusing

Gentrit Abazi gentritabazi

🎯
Focusing
View GitHub Profile
'Main Function
Function SpellNumber(ByVal MyNumber)
Dim Dollars, Cents, Temp
Dim DecimalPlace, Count
ReDim Place(9) As String
Place(2) = " Thousand "
Place(3) = " Million "
Place(4) = " Billion "
Place(5) = " Trillion "
function create_thumbnail($max_width, $max_height, $source_file, $dst_dir)
{
$imgsize = getimagesize($source_file);
$width = $imgsize[0];
$height = $imgsize[1];
$mime = $imgsize['mime'];
switch ($mime) {
case 'image/png':
$image_create = 'imagecreatefrompng';
@gentritabazi
gentritabazi / copyDirectory.php
Last active May 25, 2020 21:06
Copy all files from one folder to another folder using PHP script
<!-- https://stackoverflow.com/a/25780354/6055141 -->
function copyDirectory($source, $destination)
{
$directory = opendir($source);
@mkdir($destination);
while (false !== ($file = readdir($directory))) {
if (($file != '.') && ($file != '..')) {
if (is_dir($source . '/' . $file)) {
copy_directory($source . '/' . $file, $destination . '/' . $file);
} else {
var wb = new xl.Workbook();
const styleThinBorder = wb.createStyle({
border: {
left: {
style: 'thin',
color: 'black',
},
right: {
style: 'thin',