$ openssl genrsa -out private.key 4096openssl req -new -sha256 \This is a proposal for a lightning talk at Reactive Conf. Please 🌟 this gist to push the proposal!
Do you test presentational logic of your components? No? Yes, but you feel like you are writing a lot of dummy tests? You even probably use snapshot tests for that, but don't feel like you make enought value from them..
If so, click 🌟 button on that Gist!
I'll talk how our team is using snapshot testing to iterate faster,
| # 0 is too far from ` ;) | |
| set -g base-index 1 | |
| # Automatically set window title | |
| set-window-option -g automatic-rename on | |
| set-option -g set-titles on | |
| set-option -ga terminal-overrides ",xterm-256color:Tc" | |
| set -g default-terminal screen-256color | |
| set -g status-keys vi |
Provozovatelé ssls.cz poslali e-mail zákazníkům, kteří od nich dříve kupovali certifikáty, ale přešli na certifikáty od Let's Encrypt. Ukázku toho e-mailu najdete na https://twitter.com/parisek/status/802847950863011840, podobná srovnávací tabulka je i na https://www.ssls.cz/lets-encrypt.html. Napsal jsem ssls.cz otevřenou odpověď, kterou najdete v nezměněné podobě níže. (Opravil jsem jen překlepy a chybějící interpunkční znaménka, díky za jejich nahlášení.)
Dobrý den,
(tuto odpověď píšu jako otevřený dopis, publikoval jsem ji také na https://gist.github.com/spaze/e081b948b8cd7d06dddbe9e6fa65c5ac)
díky za e-mail, jsem Vaším bývalým zákazníkem a podobným textem, který obsahuje zavádějící i nepravdivé informace, si mě nezískáte zpět. Pro mě
CODE!
I have two Github accounts: oanhnn (personal) and superman (for work). I want to use both accounts on same computer (without typing password everytime, when doing git push or pull).
Use ssh keys and define host aliases in ssh config file (each alias for an account).
EVENT HANDLING
First source file you should be reading when trying to understand React Event System is ReactBrowserEventEmitter.js.
ReactEventListener
First the event is captured at the top-level ReactEventListener.
API
| .flexbox-2016 { | |
| flex-justify: I am not justifying myself to you; | |
| column: I would like this column to be 50% only at certain time periods; | |
| column-start: one_colunn_to_rule_then_all 10 5%; | |
| flexify: true false Boolean 20 1012; | |
| flex—year: every-non-leap-year 5% 0 0 1; | |
| flexi—box: 129839021839128390128312; // support older browsers | |
| flex—box: initiate-the-flex 1 1 1 1 1 1 1 1 false 1; | |
| start-flex: inherit-face-render-DOM; | |
| space—between—flexbox-columns: coffee-cup; |
| // Have some complicated non-React widgets that manipulate DOM? | |
| // Do they manage a list of DOM elements? Here's how to wrap it | |
| // into a React component so you can "constantly rerender" it. | |
| // A dumb non-react widget that manually manage some DOM node that | |
| // represent a list of items | |
| function NonReactWidget(node) { | |
| this.node = node; | |
| } |
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.