Skip to content

Instantly share code, notes, and snippets.

View justinbmeyer's full-sized avatar

Justin Meyer justinbmeyer

View GitHub Profile

Easily build components

CanJS makes it really easy to build web components. Why easy:

A class-based, object oriented API

CanJS has a class-based, Object Oriented API:

class MyCounter extends StacheElement {
<body>
<script>
class HelloWorld extends HTMLElement {
constructor() {
super();
this.rendered = false;
this.depth = 0;
}

Way 1

CanJS starts easy and can get quite robust.

How easy

StacheElement {

}

Responsibilities

  • Help hire, train, retain design team
  • Discover ways of having the design team add value to our clients (win-wins)
  • Add credibility to sales team when closing deals
  • Grow sales / virtual profit

Other

  • Temporary (3-6 month) role. Will develop more solid KPIs around it.
  • Open to all designers at Bitovi.
<ul class="seasons">
  <li class="season" ng-repeat="season in seasons">
    Season {{season.seasonNumber}}
  </li>
</ul>
@justinbmeyer
justinbmeyer / prism-line-highlight.js
Created April 23, 2019 18:54
A faster version of prism line highlight.
(function(){
if (typeof self === 'undefined' || !self.Prism || !self.document || !document.querySelector) {
return;
}
function $$(expr, con) {
return Array.prototype.slice.call((con || document).querySelectorAll(expr));
}
show More Info

Todos

  • Inside vs outside sales numbers

Goal

Numbers

  • 95%/ Month retention (down from 99%)

tldr: Create a reoccurring online meetup for Bitovi's community.

The goal

  • Make Bitovi seem like the "cool" place it already is.
  • Meet other developers, get QSLs.

The problem

  • We have a lot of community outside just Chicago and LA
@justinbmeyer
justinbmeyer / can-bind.js
Last active October 30, 2018 14:54
can-bind.js
"use strict";
var canReflect = require("can-reflect");
var canSymbol = require("can-symbol");
var namespace = require("can-namespace");
var queues = require("can-queues");
var canAssign = require("can-assign");
//!steal-remove-start
if(process.env.NODE_ENV !== 'production') {
var canLog = require("can-log/dev/dev");