Skip to content

Instantly share code, notes, and snippets.

View DorKatzir's full-sized avatar
🏠
Working from home

Dror DorKatzir

🏠
Working from home
View GitHub Profile
@DorKatzir
DorKatzir / awesome.md
Created July 12, 2024 12:32 — forked from joshuamabina/awesome.md
My curated list of awesome things!

AWESOME

My curated list of awesome things!

Project Management and Code Collaboration

  • Dive into Git & GitHub
    • Simple Guide - Just a simple guide for getting started with Git. No deep shit ;)
    • Git Handbook - 10 minute read about Git & GitHub.
    • How to GitHub - Fork, Branch, Track, Squash and Pull Request
@DorKatzir
DorKatzir / A_Directory_Example.md
Created November 11, 2023 11:59 — forked from Repox/A_Directory_Example.md
Laravel 7 - Alternative public folder for shared hosting

The point of this Gist is to help setting up Laravel on a shared hosting setup, where you'd might need to have your ./public folder in another structure due to the hosting setup, but still keep the application itself out of the document root/public html folder.

The directory structure presented below is just an example, showing the document root/public html folder next to the Laravel application. The configurations displayed in the files below matches this structure.

Additionally, the changes in server.php allows for you to have the same directory structure when working locally with artisan serve (if you are using this).

I've added // comments in the files below on the lines where I changed any references and I've marked, in the tree structure below, where you find the files you need to update.

shared_hosting/ <- Your root directory (not document root/public html folder).
/* v5.0.0 */
.accordion
.active
.alert
.alert-danger
.alert-dark
.alert-dismissible
.alert-heading
.alert-info
.alert-light
@DorKatzir
DorKatzir / easings.css
Created August 5, 2020 05:05 — forked from argyleink/easings.css
Handy CSS properties for easing functions
:root {
--ease-in-quad: cubic-bezier(0.55, 0.085, 0.68, 0.53);
--ease-in-cubic: cubic-bezier(0.55, 0.055, 0.675, 0.19);
--ease-in-quart: cubic-bezier(0.895, 0.03, 0.685, 0.22);
--ease-in-quint: cubic-bezier(0.755, 0.05, 0.855, 0.06);
--ease-in-expo: cubic-bezier(0.95, 0.05, 0.795, 0.035);
--ease-in-circ: cubic-bezier(0.6, 0.04, 0.98, 0.335);
--ease-out-quad: cubic-bezier(0.25, 0.46, 0.45, 0.94);
--ease-out-cubic: cubic-bezier(0.215, 0.61, 0.355, 1);
--ease-out-quart: cubic-bezier(0.165, 0.84, 0.44, 1);
@DorKatzir
DorKatzir / css-media-queries-cheat-sheet.css
Created November 16, 2019 13:22 — forked from bartholomej/css-media-queries-cheat-sheet.css
CSS Media Query Cheat Sheet (with Foundation)
/*------------------------------------------
Responsive Grid Media Queries - 1280, 1024, 768, 480
1280-1024 - desktop (default grid)
1024-768 - tablet landscape
768-480 - tablet
480-less - phone landscape & smaller
--------------------------------------------*/
@media all and (min-width: 1024px) and (max-width: 1280px) { }
@media all and (min-width: 768px) and (max-width: 1024px) { }