Skip to content

Instantly share code, notes, and snippets.

View hinex's full-sized avatar
🚀
Remote worker

Roman Hinex hinex

🚀
Remote worker
View GitHub Profile
@patrickcoombe
patrickcoombe / jobPosting.js
Last active August 13, 2019 04:43
Example json-ld for a job posting
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "JobPosting",
"baseSalary": "100000",
"jobBenefits": "Health Insurance",
"datePosted": "2011-10-31",
"description": "Looking for good work for cheap.",
"educationRequirements": "Bachelors Degree",
"employmentType": "Full-time",
@gre
gre / easing.js
Last active May 17, 2024 03:33
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 = {