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
@przetestersmakow @przemikser
Feature: Przemikser - zgล‚oszenie konkursowe
Rule: ลปebym mรณgล‚ skorzystaฤ‡ z tej funkcji muszฤ™:
* byฤ‡ zarejestrowanym uลผytkownikiem
* podaฤ‡ prawidล‚owy kod spod kapsla
Rule: Tylko raz mogฤ™ przemiksowaฤ‡ Desperados
#010
@emendelski
emendelski / info.md
Last active July 20, 2021 11:44
Duet DatePicker - polish localization | polska lokalizacja
<section class="c-floating">
<div class="container">
<div class="row justify-content-center">
<div class="col-md-10 col-lg-8 col-xl-7">
<div class="c-floating__box w-100" data-skew-padding>
<div class="c-floating__inner">
<div class="text">
<!-- WYSIWYG -->
</div>
</div>
@emendelski
emendelski / currency_symbols.php
Last active March 4, 2019 15:55 — forked from dieppon/currency_symbols.php
An array of currency symbols as HTML entities
<?php
$currency_symbols = array(
'AED' => '&#1583;.&#1573;', // ?
'AFN' => '&#65;&#102;',
'ALL' => '&#76;&#101;&#107;',
'AMD' => '&#1380;',
'ANG' => '&#402;',
'AOA' => '&#75;&#122;', // ?
'ARS' => '&#36;',
'AUD' => '&#36;',
@emendelski
emendelski / emoji-cheatsheet.md
Last active January 18, 2019 10:08
Github Emoji Cheatsheet ๐Ÿ˜›๐Ÿ˜ณ๐Ÿ˜—๐Ÿ˜“๐Ÿ™‰๐Ÿ˜ธ๐Ÿ™ˆ๐Ÿ™Š๐Ÿ˜ฝ๐Ÿ’€๐Ÿ’ข๐Ÿ’ฅโœจ๐Ÿ’๐Ÿ‘ซ๐Ÿ‘„๐Ÿ‘ƒ๐Ÿ‘€๐Ÿ‘›๐Ÿ‘›๐Ÿ—ผ๐Ÿ”ฎ๐Ÿ”ฎ๐ŸŽ„๐ŸŽ…๐Ÿ‘ป

People

Emoji
:bowtie: - :bowtie: ๐Ÿ˜„ - :smile: ๐Ÿ˜† - :laughing:
๐Ÿ˜Š - :blush: ๐Ÿ˜ƒ - :smiley: โ˜บ๏ธ - :relaxed:
๐Ÿ˜ - :smirk: ๐Ÿ˜ - :heart_eyes: ๐Ÿ˜˜ - :kissing_heart:
๐Ÿ˜š - :kissing_closed_eyes: ๐Ÿ˜ณ - :flushed: ๐Ÿ˜Œ - :relieved:
๐Ÿ˜† - :satisfied: ๐Ÿ˜ - :grin: ๐Ÿ˜‰ - :wink:
๐Ÿ˜œ - :stuck_out_tongue_winking_eye: ๐Ÿ˜ - :stuck_out_tongue_closed_eyes: ๐Ÿ˜€ - :grinning:
@emendelski
emendelski / Code.gs
Last active January 17, 2019 20:23 — forked from primaryobjects/Code.gs
Export a Google Drive spreadsheet to PDF in Google Drive in the same folder.
// Simple function to add a menu option to the spreadsheet "Export", for saving a PDF of the spreadsheet directly to Google Drive.
// The exported file will be named: SheetName and saved in the same folder as the spreadsheet.
// To change the filename, just set pdfName inside generatePdf() to something else.
// Running this, sends the currently open sheet, as a PDF attachment
function onOpen() {
var submenu = [{name:"Save PDF", functionName:"generatePdf"}];
SpreadsheetApp.getActiveSpreadsheet().addMenu('Export', submenu);
}
@emendelski
emendelski / replaced-jquery-with-vanilla-javascript.md
Last active January 23, 2019 16:00 — forked from joyrexus/README.md
Vanilla JS equivalents of jQuery methods

Sans jQuery

Events

// jQuery
$(document).ready(function() {
  // code
})
@emendelski
emendelski / sw.js
Created December 21, 2018 11:53 — forked from ireade/sw.js
Handle broken images with the service worker
self.addEventListener('install', (e) => {
e.waitUntil(
caches.open("precache").then((cache) => cache.add("/broken.png"))
);
});
function isImage(fetchRequest) {
return fetchRequest.method === "GET" && fetchRequest.destination === "image";
}
@emendelski
emendelski / library.scss
Created November 7, 2018 10:08 — forked from keeperofkeys/library.scss
URL-encode color SASS function / convert color to hex SASS function
//does not work with colors containing alpha
@function encodecolor($string) {
@if type-of($string) == 'color' {
@if $string != transparent {
$hex: str-slice(ie-hex-str($string), 4);
$string:unquote("#{$hex}");
$string: '%23' + $string;
}
}
@return $string;
@emendelski
emendelski / README.md
Created June 6, 2018 05:35 — forked from hofmannsven/README.md
My simply MySQL Command Line Cheatsheet