Skip to content

Instantly share code, notes, and snippets.

View mfd's full-sized avatar

Kami mfd

  • Checkmagush
View GitHub Profile
@mfd
mfd / script.js
Last active April 9, 2019 11:44
Таблица умножения
var data = [];
for(let i = 1; i < 10; i++) {
data[i] = []
for(let j = 1; j < 10; j++) {
data[i].push(i*j);
}
}
console.table(data)
var html = '<table>';
@mfd
mfd / Google.js
Last active September 3, 2018 06:30
Custom maps for Strava
// https://github.com/shramov/leaflet-plugins/blob/master/layer/tile/Google.js
// MIT licensed
/*
* Google layer using Google Maps API
*/
/* global google: true */
L.Google = L.Class.extend({
@mfd
mfd / arg.json
Last active December 8, 2019 05:07
jwplayer captions for wesbos courses
{
"description": "FullStack Advanced React + GraphQL",
"title": "Advanced React + GraphQL",
"feedid": "ARG",
"kind": "DYNAMIC",
"playlist": [
{
"mediaid": "ARG_1",
"feedid": "ARG",
@mfd
mfd / _ps__Delivery__EDO@2x.png
Last active March 12, 2018 03:40
+psell - dashboard
_ps__Delivery__EDO@2x.png
@mfd
mfd / _portlet-zayavka__statuses.scss
Created December 28, 2017 20:29
+plussell --- zayaList
$color-orange: #ff9900;
$color-green: #48b04b;
$color-blue: #00ccff;
$color-purple: #6e4db0;
$color-gray: #5f7d8c;
$st_colors: $color-orange $color-green $color-blue $color-purple $color-gray $color-gray $color-gray $color-gray;
// ЗАКАЗЧИК
// .flabel__customer_formir
#!/usr/bin/env ruby
require 'open-uri'
require 'pathname'
require 'json'
def strip_hash(f)
ext = f.extname
if ext.include?("?")
@mfd
mfd / _svg-sprite.scss
Last active November 6, 2017 17:36
gulp tasks => svg icons sprite
.icon {
fill: currentColor;
}
<% _.each(icons, function(icon) { %>.<%= icon.name %> {
width: <%= icon.ratio %>em;
height: 1em;
}
<% }); %>
@mfd
mfd / arr.js
Last active August 2, 2018 08:01
js snipp
elems = document.querySelectorAll('ul.projects-list span.project-name');
for (var i in elems) {
arr.push(elems[i].innerText)
}
// delete similar
var uniq = arr
.map((name) => {
return {count: 1, name: name}
})
.reduce((a, b) => {
@mfd
mfd / multifields.js
Created October 24, 2017 10:08
multifields for x-editable
(function ($) {
"use strict";
var TwoFields = function (options) {
this.init('twofield', options, TwoFields.defaults);
};
//inherit from Abstract input
$.fn.editableutils.inherit(TwoFields, $.fn.editabletypes.abstractinput);
@mfd
mfd / Cera-OpenSans.css
Last active October 10, 2017 17:50
cera&opensans
/*
https://cdn.rawgit.com/mfd/d9c37ef7482ac74456b1bd022c4041ae/raw/6a757485691f8e8d0c31cd461cd48960dab5f5ad/%2520Cera-open.css
*/
@import "https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i,800,800i&amp;subset=cyrillic-ext"
@import "https://fonts.googleapis.com/css?family=Merriweather:300,300i,400,400i,700,700i,900,900i&amp;subset=cyrillic,cyrillic-ext"
@font-face {
font-family: 'Cera';
font-style: italic;