Skip to content

Instantly share code, notes, and snippets.

View vsheyanov's full-sized avatar

Victor Sheyanov vsheyanov

View GitHub Profile
> METEOR_PROFILE=1 meteor --verbose
| (#1) Profiling: ProjectContext resolveConstraints
| Selecting package versions /
| ProjectContext resolveConstraints.............................7,827 ms (1)
| ├─ _initializeCatalog.............................................4 ms (1)
| │ └─ LocalCatalog#initialize.....................................3 ms (1)
| │ └─ addPatternsToList 2 ms (2)
| └─ _resolveConstraints........................................7,823 ms (1)
| ├─ bundler.readJsImage.......................................187 ms (1)
@vsheyanov
vsheyanov / child_component.css
Last active August 29, 2015 14:19
Shadowdom styling issue
div {
background-color: yellow;
}
@vsheyanov
vsheyanov / child_component.dart
Created April 14, 2015 11:18
@HtmlImport issue (working example)
import 'package:polymer/polymer.dart';
import 'data_vo.dart';
@CustomTag('child-component')
class ChildComponent extends PolymerElement{
@published DataVO selectedValue;
ChildComponent.created() : super.created(){
@vsheyanov
vsheyanov / child_component.dart
Created April 14, 2015 11:14
@HtmlImport issue 1 (doesn't work)
@HtmlImport('child_component.html')
library com.polymertest.childcomponent;
import 'package:polymer/polymer.dart';
import 'data_vo.dart';
@CustomTag('child-component')
class ChildComponent extends PolymerElement{
@published DataVO selectedValue;
@vsheyanov
vsheyanov / index.html
Created April 8, 2015 14:17
slider issue
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Polymer-Slider-Issue</title>
<link rel="import" href="packages/paper_elements/paper_slider.html">
<link rel="import" href="packages/paper_elements/roboto.html">