Skip to content

Instantly share code, notes, and snippets.

@rozklad
rozklad / BatchOutline.js
Created August 4, 2019 08:57
Batch Outline stroke all SVG files in folder using Adobe Illustrator
/**
* Batch Outline stroke all SVG files in folder using Adobe Illustrator.
*
* Usage:
* 1) Adjust location and outputLocation variables and save as BatchOutline.js anywhere
* 2) File > Scripts > Other script (CMD + F12) and open BatchOutline.js
*
* @credits https://forums.adobe.com/thread/2395503
* @version 1.1
*/
@rozklad
rozklad / die_dump.php
Created April 12, 2018 06:23
The one and only Die Dump a.k.a. Dump and Die
<?php
/**
* Die dump
*
* @return void
*/
if (!function_exists('dd'))
{
function dd()
@trevorgreenleaf
trevorgreenleaf / px-rem-tw.csv
Last active April 1, 2024 15:42
PX to REM'S to TAILWIND CSS
PX REM TW
4 0.25 1
8 0.5 2
16 1 4
32 2 8
48 3 12
64 4 16
80 5 20
96 6 24
112 7 28
@milesw
milesw / StaticCorsValetDriver.php
Created December 3, 2016 08:02
Laravel Valet driver that serves static files with CORS header
<?php
class StaticCorsValetDriver extends BasicValetDriver
{
/**
* Determine if the driver serves the request.
*
* @param string $sitePath
* @param string $siteName
* @param string $uri
@SimonJThompson
SimonJThompson / flightpath.css
Last active November 30, 2021 19:18
Google Maps Animated Flight Paths
@charset "utf-8";
/*! normalize.css v1.1.0 | MIT License | git.io/normalize */
article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block}audio,canvas,video{display:inline-block;*display:inline;*zoom:1}audio:not([controls]){display:none;height:0}[hidden]{display:none}html{font-size:100%;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}html,button,input,select,textarea{font-family:sans-serif}body{margin:0}a:focus{outline:thin dotted}a:active,a:hover{outline:0}h1{font-size:2em;margin:.67em 0}h2{font-size:1.5em;margin:.83em 0}h3{font-size:1.17em;margin:1em 0}h4{font-size:1em;margin:1.33em 0}h5{font-size:.83em;margin:1.67em 0}h6{font-size:.67em;margin:2.33em 0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:bold}blockquote{margin:1em 40px}dfn{font-style:italic}hr{-moz-box-sizing:content-box;box-sizing:content-box;height:0}mark{background:#ff0;color:#000}p,pre{margin:1em 0}code,kbd,pre,samp{font-family:monospace,serif;_font-family:'courier new',monospace;f
@iwyg
iwyg / DatabaseAwareTestTrait.php
Last active April 16, 2019 15:51
Mocking the database. Laravel Testing.
<?php
use \PDO;
use \Mockery as m;
use \Illuminate\Container\Container;
use \Illuminate\Database\DatabaseManager;
use \Illuminate\Database\Connectors\ConnectionFactory;
use \Illuminate\Database\Schema\Builder as SchemaBuilder;
trait DatabaseAwareTestTrait
@koomai
koomai / PhpStorm Keyboard Shortcuts.md
Last active May 25, 2024 01:05
Frequently Used PhpStorm Keyboard Shortcuts

Note: Some of these shortcuts have been remapped for my own convenience (Preferences->Keymap). These are Mac shortcuts, just use the Windows/Linux equivalent of the Cmd/Option/Ctrl/Del keys.

####Search, Go to, Navigation ####

Cmd + P - Search file

Cmd + Shift + O - Search everywhere

(I swapped the above two recently because I use Cmd + P to search for files most of the time).

@rozklad
rozklad / dog_calendar.json
Created October 22, 2013 13:28
Dog calendar in cs-cz, psí kalendář v češtině, jeden z mnoha dostupných online :)
{
"1": {
"1":
"Agga",
"2":
"Joe",
"3":
"Jack",
"4":
"Ťapka",
@msurguy
msurguy / eloquent.md
Last active February 8, 2022 03:13
Laravel 4 Eloquent Cheat Sheet.

Conventions:

Defining Eloquent model (will assume that DB table named is set as plural of class name and primary key named "id"):

class Shop extends Eloquent {}

Using custom table name

protected $table = 'my_shops';

USABILITY CHECKLIST beta (http://userium.com/)

Catch common usability problems before user testing.

USER EXPERIENCE

Personalized features. Currency, language, country specific deals, taxes, or delivery options are changed based on user's location.