Skip to content

Instantly share code, notes, and snippets.

View rsodre's full-sized avatar

roger_s rsodre

View GitHub Profile
@mfd
mfd / gotham.md
Last active June 19, 2024 01:40
Gotham font
https://cdn.rawgit.com/mfd/f3d96ec7f0e8f034cc22ea73b3797b59/raw/856f1dbb8d807aabceb80b6d4f94b464df461b3e/gotham.css

<link rel="https://cdn.rawgit.com/mfd/f3d96ec7f0e8f034cc22ea73b3797b59/raw/856f1dbb8d807aabceb80b6d4f94b464df461b3e/gotham.css">

@dimitre
dimitre / digitalkarma.md
Last active July 14, 2018 00:00
Digital Karma License

You can try, experiment, use in mockups or personal projects, free of charge. Once it is used and approved in a commercial project or personal one that returns income, you should donate a small amount to the licensor. (1% suggested)

It is a practical way of saying thank you and Cosmos will provide you back.

Money is like blood, to be alive it has to circulate.

@tylerneylon
tylerneylon / animated_svg.html
Created March 17, 2016 20:49
Example of an animated geometric figure
<!DOCTYPE HTML>
<html>
<body>
<svg width="600" height="600" vertion="1.1"
id="svg" xmlns="http://www.w3.org/2000/svg">
<defs>
<clipPath id="angleClip">
<polygon id="atriangle" />
</clipPath>
@gre
gre / easing.js
Last active June 27, 2024 15:37
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 = {