Skip to content

Instantly share code, notes, and snippets.

View dannystyleart's full-sized avatar
:octocat:

Dániel Sebestyén dannystyleart

:octocat:
View GitHub Profile
@rrd108
rrd108 / xdebug.ini
Last active October 27, 2021 11:23
xdebug 3 setup
;read this for more info: https://xdebug.org/docs/upgrade_guide
zend_extension=xdebug.so
;mode is a new setting. debug let us use debugger in an IDE, develop enhances var_dump output
xdebug.mode=debug,develop
;default port changed to 9003, so we should change this in our IDE also
xdebug.client_port=9003
;trigger it via get variable or cookie
xdebug.start_with_request=trigger
xdebug.remote_log="/tmp/xdebug.log"
xdebug.cli_color=2
@gre
gre / easing.js
Last active September 5, 2025 07:01
Simple Easing Functions in Javascript - see https://github.com/gre/bezier-easing
/*
* This work is free. You can redistribute it and/or modify it under the
* terms of the Do What The Fuck You Want To Public License, Version 2,
* as published by Sam Hocevar. See the COPYING file for more details.
*/
/*
* Easing Functions - inspired from http://gizma.com/easing/
* only considering the t value for the range [0, 1] => [0, 1]
*/
EasingFunctions = {