This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var wb = new xl.Workbook(); | |
const styleThinBorder = wb.createStyle({ | |
border: { | |
left: { | |
style: 'thin', | |
color: 'black', | |
}, | |
right: { | |
style: 'thin', |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- 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 { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'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 " | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$target = '/home/p146762461/domains/domain-name/laravel-app/public'; | |
$link = '/home/p146762461/domains/domain-name/public_html'; | |
symlink($target, $link); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace Infrastructure\Http\Middlewares; | |
use Closure; | |
class SwaggerProtect | |
{ | |
/** | |
* Handle an incoming request. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: SSH Laravel Deploy | |
on: | |
push: | |
branches: [ master ] | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function deleteCommentsFromFolder($dir) | |
{ | |
$di = new RecursiveDirectoryIterator($dir, RecursiveDirectoryIterator::SKIP_DOTS); | |
$it = new RecursiveIteratorIterator($di); | |
$fileArr = []; | |
foreach ($it as $file) { | |
if (pathinfo($file, PATHINFO_EXTENSION) == 'php') { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Autoexec file | |
// Download file | |
// Copy file to {SteamPath}\Steam\steamapps\common\Counter-Strike Global Offensive\csgo\cfg | |
// Open CSGO and run in console: exec autoexec | |
// General | |
sensitivity "2.0" | |
// Rates |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace Infrastructure\Http\Middlewares; | |
use Closure; | |
use DB; | |
use Illuminate\Http\Request; | |
use Log; | |
class Logger |
OlderNewer