Skip to content

Instantly share code, notes, and snippets.

View Altenrion's full-sized avatar

Nikita Altenrion

View GitHub Profile
@Altenrion
Altenrion / Yaahoooo
Last active August 9, 2018 09:38
Yaahoooo
<?
function MyFunc(){
echo 'Yaahoooo!';
}
MyFunc();
?>
@Altenrion
Altenrion / gist:a0fada2d3a9ac91435c16f38d71c4cd6
Last active October 25, 2017 13:09
tests for google map
var map,
EasingAnimator = function(opt){
opt = opt || {};
this.easingInterval = opt.easingInterval;
this.duration = opt.duration || 1000;
this.step = opt.step || 50;
this.easingFn = opt.easingFn || function easeInOutElastic(t, b, c, d) {
if ((t/=d/2) < 1) return c/2*t*t*t*t + b;
return -c/2 * ((t-=2)*t*t*t - 2) + b;
};
{
"openapi": "3.0.0",
"info": {
"title": "EASUP API",
"version": "1.0.0"
},
"servers": [
{
"url": "https://virtserver.swaggerhub.com/Altenrion/EASUP/1.0.0",
"description": "SwaggerHub API Auto Mocking"