Skip to content

Instantly share code, notes, and snippets.

View igorconde's full-sized avatar

Igor Conde igorconde

View GitHub Profile
@igorconde
igorconde / cors
Created November 5, 2021 17:57
web.xml
<?xml version="1.0" encoding="ISO-8859-1"?>
<!--
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
TypeScript 3 hrs 37 mins ███████▊░░░░░░░░░░░░░ 37.1%
JavaScript 2 hrs 32 mins █████▍░░░░░░░░░░░░░░░ 25.9%
Vue.js 1 hr 3 mins ██▎░░░░░░░░░░░░░░░░░░ 10.8%
XML 53 mins █▉░░░░░░░░░░░░░░░░░░░ 9.1%
Java 51 mins █▊░░░░░░░░░░░░░░░░░░░ 8.8%
@igorconde
igorconde / easings.css
Created July 21, 2020 08:13 — 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);