Speaker Rider
by Tatiana Mac
Before I'll agree to a speaking event, I try to do as much research I can around the event to ensure it aligns with my ethos. I want to share this in case it's helpful to any other speakers.
by Tatiana Mac
Before I'll agree to a speaking event, I try to do as much research I can around the event to ensure it aligns with my ethos. I want to share this in case it's helpful to any other speakers.
/* | |
html-webpack-plugin-lite | |
Usage: | |
new HtmlWebpackPluginLite({ | |
title: "Webpack demo", // Available in context | |
template: ({ css, js, title }) => ... html ... | |
}), | |
*/ |
I hereby claim:
To claim this, I am signing this object:
"use strict"; | |
const Mustache = require("mustache"); | |
const path = require("path"); | |
/** | |
* This plugin is used to generate an html file from a mustache template. | |
* @param {object} options | |
* - enabled {boolean} whether plugin is enabled | |
* - outputFile {string} the relative path to the html file result |
/* @flow */ | |
import React, { Component } from 'react'; | |
import Ruler from '../Ruler/Ruler.jsx'; | |
type Style = { | |
textColor?: string; | |
floatingLabelColor?: string; | |
}; |
The count of contributions (summary of Pull Requests, opened issues and commits) to public repos at GitHub.com from Fri, 12 Dec 2014 12:29:07 GMT till Sat, 12 Dec 2015 12:29:07 GMT.
Only first 1000 GitHub users according to the count of followers are taken. This is because of limitations of GitHub search. Sorting algo in pseudocode:
githubUsers
.filter(user => user.followers > 12)
{ | |
"env": { | |
"build": { | |
"stage": 2 | |
} | |
} | |
} |
IMPORTANT! This post has been moved to http://survivejs.com/blog/the-story-so-far/ . Feel free to comment there.
Given I'm a first time author I've done my fair share of mistakes with SurviveJS - Webpack and React. It was an attempt to change the direction of my career. Being a subcontractor's subcontractor provides income, sure, but was a dead end for me with no room to grow in an economy that keeps getting tougher. Interestingly the book has garnered a lot of attention and I believe some have found it useful. It has been bit of a disaster economically and it's hard to imagine I could keep a business like this up for long if something doesn't change.
The first steps towards the book were taken at the end of January. I happened upon [a blog post about Webpack by Christian Alfoni](https://christianalfoni.github.io/javascript/2014/12/13/did-you-know-webpack-and-react-is-awesome.htm
'use strict'; | |
var Reflux = require('reflux'); | |
var axios = require('axios'); | |
var Actions = Reflux.createActions({ | |
load: { | |
children: ['completed', 'failed'] | |
} | |
}); |
Moved to Antwar wiki
In this document I'll go through a possible design/features for Antwar based on my personal needs. My goal is to port my blog (~200 posts) to run on top of Antwar. The plan is to host it on top of gh-pages
. I'll want to reach feature parity with the current solution and then improve on that.
The current blog is quite simple. There's an index listing some of the recent posts (about five) in their entirety. In addition it is possible to navigate to a page of a specific post or tag.