Skip to content

Instantly share code, notes, and snippets.

View emendelski's full-sized avatar
👨‍🏭
FrontEnd Developer. In <3 with Vue.

Kamil Mendelski emendelski

👨‍🏭
FrontEnd Developer. In <3 with Vue.
View GitHub Profile
@emendelski
emendelski / easing.css
Created June 21, 2017 06:12 — forked from bendc/easing.css
Easing CSS variables
:root {
--ease-in-quad: cubic-bezier(.55, .085, .68, .53);
--ease-in-cubic: cubic-bezier(.550, .055, .675, .19);
--ease-in-quart: cubic-bezier(.895, .03, .685, .22);
--ease-in-quint: cubic-bezier(.755, .05, .855, .06);
--ease-in-expo: cubic-bezier(.95, .05, .795, .035);
--ease-in-circ: cubic-bezier(.6, .04, .98, .335);
--ease-out-quad: cubic-bezier(.25, .46, .45, .94);
--ease-out-cubic: cubic-bezier(.215, .61, .355, 1);
@emendelski
emendelski / buttons-kendo-grid.js
Created September 23, 2015 16:06
Name edit & destory are import to use default actions.
command: [
{
name: "edit",
text: "",
className: "btn-secondary btn-secondary--edit"
},
{
name: "destroy",
text: "",
className: "btn-secondary btn-secondary--destroy"
<div id="primary">
<?php
if ( have_posts() ) {
while ( have_posts() ) : the_post();
get_template_part( 'content', get_post_format() );
endwhile;
}
?>
</div>
{
"lubuskie": {
"Zamość": {
"Zamość, ul. Prymasa Stefana Wyszyńskiego 52": {
"people": [
{
"person": "Darczuk Renata",
"phone": 663981382
},
{
@emendelski
emendelski / response.js
Last active August 29, 2015 14:11
Zwracanie informacji nt. dodanego produktu
{
"status": "success" / "failure", // status wysyłki
"redirect_to": "" / "url", // adres url do przekierowania gdy success
"error": "" //opis błędu
}
class HelloWorldApp {
public static void main(String[] args) {
System.out.println("Hello World!");
}
}