source: https://github.com/burakcan/mb
var mb=p=>o=>p.map(c=>o=(o||{})[c])&&o
// in ES5:
var mb = function(pathArray) {
return function(obj) {
return pathArray.map(function(c) {
source: https://github.com/burakcan/mb
var mb=p=>o=>p.map(c=>o=(o||{})[c])&&o
// in ES5:
var mb = function(pathArray) {
return function(obj) {
return pathArray.map(function(c) {
Creative coding (yaratıcı programlama) işlevsel olmasından çok yaratıcılığı ön plana çıkarmak için bilgisayar programları yazma işine verilen isimdir. Ortaya çıkan sonuçlar işitsel, görsel ya da başka herhangi bir formda olabilir.
Otomat, sürekli CRUD uygulamalar yapmaktan sıkılmış geliştiriciler olarak birlikte çok ilginç projeler geliştireceğimiz bir hackathon/creative coding partisi. 19-20 Kasım tarihlerinde (gece dahil) bir araya gelerek çok güzel görsel/işitsel ürünler üretip, çok güzel sohbetler edeceğiz.
Ne yapmak istiyorsanız! Yapılacak şey ve konu üzerine herhangi bir sınırlandırmamız yok. Ama etkinlik günü söyleyeceğimiz bazı teknik sınırlandırmalarımız olacak :) Bireysel olarak ya da grup olarak katılımak konusunda serbestsiniz. Hatta en güzeli herkesle yardımlaşmanız :)
module SafeInt exposing (SafeInt, fromInt, get, map, map2, andThen, (+!), (-!), (*!), (//!), (%!), (^!)) | |
type SafeInt | |
= Safe Int | |
| Invalid | |
fromInt : Int -> SafeInt | |
fromInt i = |
Elm is a statically typed functional language that compiles to JavaScript. It's well-known for its developer experience: the compiler provides nice error messages, the package system enforces semantic versioning for all published packages and makes sure every exposed value or type has some documentation and type annotations.
$.fn.clearAll = function() { | |
this.each(function(){ | |
var $this = $(this); | |
var resultText = ''; | |
var oldText = $this.val(); | |
$this.on('focus',function(){ | |
resultText = ($this.val() === oldText) ? '' : $this.val(); | |
$this.val(resultText); | |
}); |
<body> | |
<div id="container"> | |
<input type="checkbox" id="checkbox" name="checkbox"> | |
<label for="checkbox"> | |
<div id="plus">+</div> | |
<div class="image" id="one"></div> | |
<div class="image" id="two"></div> | |
<div class="image" id="three"></div> | |
<div class="image" id="four"></div> | |
<div class="image" id="five"></div> |