I hereby claim:
- I am dr-dimitru on github.
- I am smart_egg (https://keybase.io/smart_egg) on keybase.
- I have a public key whose fingerprint is FD12 88FD AEE7 5AEC 7CEE 98E3 F554 6F8B 9B1B 179B
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
JSPerf string concatenation vs interpolation:
str1 + str2;
// vs.
`${str1}${str2}`
android_bundle/ | |
dev_bundle/ | |
docs/ | |
examples/ | |
packages/ | |
scripts/ | |
tools/ | |
!tools/*.js | |
!tools/isobuild/*.js | |
!tools/catalog/*.js |
prompt_git() { | |
local s=''; | |
local branchName=''; | |
# Check if the current directory is in a Git repository. | |
if [ $(git rev-parse --is-inside-work-tree &>/dev/null; echo "${?}") == '0' ]; then | |
# check if the current directory is in .git before running git checks | |
if [ "$(git rev-parse --is-inside-git-dir 2> /dev/null)" == 'false' ]; then |
<html xml:lang="en" lang="en"><head> | |
<link rel="stylesheet" type="text/css" class="__meteor-css__" href="/2c8b6834d526144a2436631d89efdcc132356af4.css?meteor_css_resource=true"> | |
<meta charset="UTF-8"> | |
<meta name="fragment" content="!"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<!-- Google Tag Manager --> | |
<script src="https://connect.facebook.net/signals/config/154349185271363?v=2.8.14&r=stable" async=""></script><script async="" src="https://connect.facebook.net/en_US/fbevents.js"></script><script type="text/javascript" async="" src="https://mc.yandex.ru/metrika/watch.js"></script><script type="text/javascript" async="" src="https://www.google-analytics.com/analytics.js"></script><script async="" src="https://www.googletagmanager.com/gtm.js?id=GTM-N48L7WH"></script><script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src |
A File Icon | |
ApacheConf | |
Babel | |
Babel Snippets | |
Better CoffeeScript | |
GitGutter | |
Haproxy | |
Jade | |
Material Theme | |
nginx |
Официальный ответ (на 12 мая 2017) от администрации ВК (vk.com), на вопрос почему при шеринге с мобильных утройств не подцепляется картинка указанная в og:image
теге:
В мобильной версии share картинка действительно не поддерживается.
Теплой и солнечной весны! Комманда поддержки ВКонтакте
Тем не менее опытным путем у нас получилось найти требования удовлетворяя которые все может заработать:
должно совпадать со значением в
import { Meteor } from 'meteor/meteor'; | |
import { _ } from 'meteor/underscore'; | |
import { FlowRouter } from 'meteor/ostrio:flow-router-extra'; | |
import { Template } from 'meteor/templating'; | |
import { check, Match } from 'meteor/check'; | |
import { ReactiveDict } from 'meteor/reactive-dict'; | |
// Active Route | |
// https://github.com/meteor-activeroute/legacy | |
// zimme:active-route |
if (window.requestAnimationFrame == null) { | |
window.requestAnimationFrame = (function() { | |
return window.requestAnimationFrame || window.webkitRequestAnimationFrame || window.mozRequestAnimationFrame || function(callback) { | |
window.setTimeout(callback, 1000 / 60); | |
}; | |
})(); | |
} | |
var getTime = function() { | |
return (performance && performance.now) ? performance.now() : +(new Date()); |