😎
- 1 November 2014 | 08:30 - 17:00
- Ballroom Menara Bank Mega Lantai 3 Jl. Kapten Tendean 12-14A Jakarta
- Peta: http://goo.gl/9goGZq
- http://panadaframework.com/event/2014/conference.html
- laravel
# mhaidarh's .gitignore | |
# https://gist.github.com/mhaidarh/5170182 | |
############ | |
# Git Common | |
############ | |
# SVN | |
.svn/ |
/** | |
* impress.js | |
* | |
* impress.js is a presentation tool based on the power of CSS3 transforms and transitions | |
* in modern browsers and inspired by the idea behind prezi.com. | |
* | |
* | |
* Copyright 2011-2012 Bartek Szopka (@bartaz) | |
* | |
* Released under the MIT and GPL Licenses. |
<!DOCTYPE html> | |
<meta charset="utf-8"> | |
<style> | |
.node rect { | |
cursor: pointer; | |
fill: #fff; | |
fill-opacity: .5; | |
stroke: #3182bd; | |
stroke-width: 1.5px; |
😎
public class Grade { | |
public String gradeScore(int score) { | |
String result = ""; | |
if (score >= 60) { | |
result = "lulus"; | |
} else if (score >= 40) { | |
result = "nyaris lulus"; |
Verifying my Blockstack ID is secured with the address 13kZVSMFeDCYxR3BmcK6rsN6as8MzpKxCy https://explorer.blockstack.org/address/13kZVSMFeDCYxR3BmcK6rsN6as8MzpKxCy |
const adviseMe = weather => { | |
switch (weather) { | |
case 'Rainy': | |
case 'Rain': | |
return 'bawa payung atau gunakan jas hujan' | |
break | |
case 'Stormy': | |
return 'kabarin keluarga yak' | |
break | |
case 'Sunny': |
const myDailySteps = [ | |
{ | |
day: 1, | |
steps: 1900 | |
}, | |
{ | |
day: 2, | |
steps: 2200 | |
}, | |
{ |
I hereby claim:
To claim this, I am signing this object:
All libraries have subtle rules that you have to follow for them to work well. Often these are implied and undocumented rules that you have to learn as you go. This is an attempt to document the rules of React renders. Ideally a type system could enforce it.
A number of methods in React are assumed to be "pure".
On classes that's the constructor, getDerivedStateFromProps, shouldComponentUpdate and render.