Skip to content

Instantly share code, notes, and snippets.

[Informational 1xx]
100="Continue"
101="Switching Protocols"
[Successful 2xx]
200="OK"
201="Created"
202="Accepted"
203="Non-Authoritative Information"
204="No Content"
@qwersk
qwersk / gist:3c512cfd5aa3ee28db9b2dcf074975d7
Created April 16, 2018 05:06
Clear js, css cache in Symfony #Symfony
php bin/console assetic:watch
@qwersk
qwersk / download_image.php
Last active October 23, 2018 04:16
Read image file #PHP
<?php
$remoteImage = "http://domain.test/15234430911059048477.jpg";
$imginfo = getimagesize($remoteImage);
header('Content-Description: File Transfer');
header("Content-type: {$imginfo['mime']}");
header('Content-Disposition: attachment; filename="'.basename($remoteImage).'"');
header('Expires: 0');
header('Cache-Control: must-revalidate');

Option 1: Command-line download extension as zip and extract

extension_id=jifpbeccnghkjeaalbbjmodiffmgedin   # change this ID
curl -L -o "$extension_id.zip" "https://clients2.google.com/service/update2/crx?response=redirect&os=mac&arch=x86-64&nacl_arch=x86-64&prod=chromecrx&prodchannel=stable&prodversion=44.0.2403.130&x=id%3D$extension_id%26uc" 
unzip -d "$extension_id-source" "$extension_id.zip"

Thx to crxviewer for the magic download URL.

@qwersk
qwersk / geocoder_example.html
Created February 2, 2018 16:33 — forked from lazarofl/geocoder_example.html
Google Maps V3 - Geocoder example
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="initial-scale=1.0, user-scalable=no">
<meta charset="utf-8">
<title>Google Maps JavaScript API v3 Example: Geocoding Simple</title>
<link href="https://developers.google.com/maps/documentation/javascript/examples/default.css" rel="stylesheet">
<script src="https://maps.googleapis.com/maps/api/js?sensor=false"></script>
<script>
@qwersk
qwersk / multidimensional.php
Created December 15, 2017 07:18
Multidimensional array to single array #PHP
<?php
$single = array_reduce($multi, 'array_merge', array());
@qwersk
qwersk / date_range.php
Created November 28, 2017 11:01
Get date range between dates #PHP
<?php
function date_range($first, $last, $step = '+1 day', $output_format = 'Y-m-d' ) {
$dates = array();
$current = strtotime($first);
$last = strtotime($last);
while( $current <= $last ) {
@qwersk
qwersk / sort_array.php
Created November 14, 2017 04:26
Sort by date value in array #PHP
<?php
function sortFunction( $a, $b ) {
return strtotime($a->Date) - strtotime($b->Date);
}
usort($zone_slots, "sortFunction");
@qwersk
qwersk / get_custom_fields.php
Created October 11, 2017 17:04
Get custom article field in module #JOOMLA
<?php
JLoader::register('FieldsHelper', JPATH_ADMINISTRATOR . '/components/com_fields/helpers/fields.php');
$jcFields = FieldsHelper::getFields('com_content.article', $item, true);
$jsfields = json_decode(json_encode($jcFields), True);
@qwersk
qwersk / get_menu_item_params.php
Created October 5, 2017 02:53
Get menu item params #JOOMLA
<?php
$app = JFactory::getApplication();
$menu = $app->getMenu();
$active = $menu->getActive();
$params = $active->get("params");