dustingetz.com dustingetz.com

dustingetz.com

Hyperfiddle

Hi, I'm Dustin Getz. I study emerging technologies as applied to application development. Datomic, Clojure, React.js, distributed systems, etc. I do consulting on the side: http:/ www.hyperfiddle-consulting.com/. I write about Clojure on reddit https:/ www.reddit.com/user/dustingetz/. Slides: Datomic vs failures of REST, Hypermedia and ORM. I practice pair programming. X2013; a grassroots strategy to re-structure business culture around values. I help out a local Philly startup incubator.

http://www.dustingetz.com/

WEBSITE DETAILS
SEO
PAGES
SIMILAR SITES

TRAFFIC RANK FOR DUSTINGETZ.COM

TODAY'S RATING

>1,000,000

TRAFFIC RANK - AVERAGE PER MONTH

BEST MONTH

November

AVERAGE PER DAY Of THE WEEK

HIGHEST TRAFFIC ON

Thursday

TRAFFIC BY CITY

CUSTOMER REVIEWS

Average Rating: 3.9 out of 5 with 9 reviews
5 star
6
4 star
0
3 star
1
2 star
0
1 star
2

Hey there! Start your review of dustingetz.com

AVERAGE USER RATING

Write a Review

WEBSITE PREVIEW

Desktop Preview Tablet Preview Mobile Preview

LOAD TIME

2.1 seconds

CONTACTS AT DUSTINGETZ.COM

Whois Privacy Protection Service, Inc.

Whois Agent

PO ●●●639

Kir●●●and , WA, 98083

US

1.42●●●●0657
1.42●●●●4730
du●●●●●●●●●●●●@protecteddomainservices.com

View this contact

Whois Privacy Protection Service, Inc.

Whois Agent

PO ●●●639

Kir●●●and , WA, 98083

US

1.42●●●●0657
1.42●●●●4730
du●●●●●●●●●●●●@protecteddomainservices.com

View this contact

Whois Privacy Protection Service, Inc.

Whois Agent

PO ●●●639

Kir●●●and , WA, 98083

US

1.42●●●●0657
1.42●●●●4730
du●●●●●●●●●●●●@protecteddomainservices.com

View this contact

Login

TO VIEW CONTACTS

Remove Contacts

FOR PRIVACY ISSUES

DOMAIN REGISTRATION INFORMATION

REGISTERED
2011 January 03
UPDATED
2013 December 10
EXPIRATION
EXPIRED REGISTER THIS DOMAIN

BUY YOUR DOMAIN

Network Solutions®

DOMAIN AGE

  • 14

    YEARS

  • 3

    MONTHS

  • 28

    DAYS

NAME SERVERS

1
ns1vwx.name.com
2
ns2dqx.name.com
3
ns3flt.name.com
4
ns4htz.name.com

REGISTRAR

NAME.COM, INC.

NAME.COM, INC.

WHOIS : whois.name.com

REFERRED : http://www.name.com

CONTENT

SCORE

6.2

PAGE TITLE
Hyperfiddle | dustingetz.com Reviews
<META>
DESCRIPTION
Hi, I'm Dustin Getz. I study emerging technologies as applied to application development. Datomic, Clojure, React.js, distributed systems, etc. I do consulting on the side: http:/ www.hyperfiddle-consulting.com/. I write about Clojure on reddit https:/ www.reddit.com/user/dustingetz/. Slides: Datomic vs failures of REST, Hypermedia and ORM. I practice pair programming. X2013; a grassroots strategy to re-structure business culture around values. I help out a local Philly startup incubator.
<META>
KEYWORDS
1 hyperfiddle
2 co founder and ceo
3 clojure
4 software
5 associations
6 radical decency
7 interests
8 world order
9 coupons
10 reviews
CONTENT
Page content here
KEYWORDS ON
PAGE
hyperfiddle,co founder and ceo,clojure,software,associations,radical decency,interests,world order
SERVER
openresty/1.13.6.1
POWERED BY
Express
CONTENT-TYPE
utf-8
GOOGLE PREVIEW

Hyperfiddle | dustingetz.com Reviews

https://dustingetz.com

Hi, I'm Dustin Getz. I study emerging technologies as applied to application development. Datomic, Clojure, React.js, distributed systems, etc. I do consulting on the side: http:/ www.hyperfiddle-consulting.com/. I write about Clojure on reddit https:/ www.reddit.com/user/dustingetz/. Slides: Datomic vs failures of REST, Hypermedia and ORM. I practice pair programming. X2013; a grassroots strategy to re-structure business culture around values. I help out a local Philly startup incubator.

INTERNAL PAGES

dustingetz.com dustingetz.com
1

Dustin Getz's blog

http://www.dustingetz.com/2013/09/11/promises-are-the-same-as-function-composition.html

Promises are the same as simple function composition. We have some functions:. Function onSuccess(val) { . } function onError(err) { . }. Here we compose the functions like always:. Try { onSuccess(g(f(42) ); / function composition } catch(e) { onError(e) }. Here we write the exact same thing except the functions can be asynchronous:. Qdelay(42, 1000).then(f).then(g).then(onSuccess, onError);. Promises let you compose async functions. Nothing more, nothing less. The promise library I use is called Q.

2

Dustin Getz's blog

http://www.dustingetz.com/2014/02/18/react-dynamic-forms.html

Building dynamic forms with Facebook React. In this post, I will demonstrate how to use Facebook React to build a simple form. It leverages the wingspan-forms library. Is a a dynamic form library for Facebook React, providing abstractions for building dynamic forms and controlled grids. Widgets are provided by Telerik's KendoUI. Here is a live demo of the form we will build:. Lets start with a basic React component. Component, with some minor enhancements. Prop for various optional metadata, like a label.

3

Dustin Getz's blog

http://www.dustingetz.com/2012/10/03/implement-python-generators-without-yield.html

Implement python generators without yield. Here are some python examples of how to actually implement generators. As if python did not provide syntactic sugar for them (or in a language without native syntax, like javascript). snippets from that link below. This code runs, type it into a repl. Fib as a python generator:. Python doesn’t have proper lexical closures, but Python3 has the. Keyword, which is close. Languages with proper lexical scope don’t need a special keyword. Lift vars to enclosing scope.

4

Dustin Getz's blog

http://www.dustingetz.com/2014/03/16/react-into-workshop-notes.html

That was one of the most useful meetups I ever attended. Thank you guys for great workshop, your project looks really promising and adds huge value on top of React.js. Looking forward to meet you again! This was definitely a step up from the average meetup content, practically a full day’s course in a few hours. I learned a ton! A javascript library for building browser UIs. Written in collaboration by Facebook and Instagram, used on facebook.com and instagram.com. Simplest possible react component.

5

Dustin Getz's blog

http://www.dustingetz.com/2013/09/12/comparison-knockout-angular-react.html

A very brief comparison of Knockout, Angular and Facebook React. MVVM: model change listeners on each state mutation: response to state mutation is immediate, never batch multiple listeners, requires dependency tracking (if the collection changed, then the count also changed). change listeners fire immediately and can trigger more change listeners. Lots of callbacks to keep track of and easy for things to get out of whack. (Backbone, Knockout, Knockback). Intro to React livecoding workshop - crib sheet.

UPGRADE TO PREMIUM TO VIEW 3 MORE

TOTAL PAGES IN THIS WEBSITE

8

OTHER SITES

dustingelegonya.com dustingelegonya.com

Dustin Gelegonya &VerticalLine; Commercial Photographer

Certified Google Maps Business View Trusted Photographer. Serving the Greater Lehigh Valley. To schedule a photoshoot for you business please apply here:.

dustingellman.com dustingellman.com

ノアンデの正しい使い方~ノアンデの効果を最大限にするために~

dustingenphoto.com dustingenphoto.com

Dustin Genereux

Nina x my coral home. Nick x my coral home. Sam mae x diesel. Nina x my coral home. Nick x my coral home. Sam mae x diesel.

dustingentadventures.com dustingentadventures.com

Site not found · DreamHost

Well, this is awkward. The site you're looking for is not here. Is this your site?

dustingenzlinger.com dustingenzlinger.com

dustingenzlinger

This is an example. Of a module being displayed inside the menu dropdowns. Multiple Layouts, Powered by. Advanced, CSS based, Responsive. Showcase layout type for images / content. Display your content in dynamic. Show content in static or dynamic. The layout adapts to mobile, tablet and desktop. Dropdown and SplitMenu , each with mobile support. An assortment of eight preset style variation. RokBooster compresses and consolidates CSS and Javascript files, to drastically improve site performance. Purpose...

dustingetz.com dustingetz.com

Hyperfiddle

Hi, I'm Dustin Getz. I study emerging technologies as applied to application development. Datomic, Clojure, React.js, distributed systems, etc. I do consulting on the side: http:/ www.hyperfiddle-consulting.com/. I write about Clojure on reddit https:/ www.reddit.com/user/dustingetz/. Slides: Datomic vs failures of REST, Hypermedia and ORM. I practice pair programming. X2013; a grassroots strategy to re-structure business culture around values. I help out a local Philly startup incubator.

dustingforfingerprints.wordpress.com dustingforfingerprints.wordpress.com

Dusting For Fingerprints | "Our regrets are as personal as our fingerprints." Margaret Culkin Banning

Our regrets are as personal as our fingerprints. Margaret Culkin Banning. Mystery Scenes and Chapters. The “F” Word by Rob Avery. Hi I’m glad you peeked in. I created this blog so I can write a murder mystery novel out loud, with you and other readers who happen by watching over my shoulder. You’ll find my chapters in progress on the Mystery Scenes and Chapters page–I welcome your comments, suggestions, and even your guesses about Who Done It. January 2, 2015 at 5:53 pm. Liked by 1 person. Notify me of n...

dustinggauge.com dustinggauge.com

R.A. Emerson & Company | Dusting/Surface Contamination Gauge | Paper Manufactures, Web Press Printers and Off Machine Coaters

Welcome to R.A. Emerson and Company. PAPER DUST/SURFACE CONTAMINATION GAUGE. An Exciting New Instrument for Evaluating Surface Debris on Paper. The Dusting/Surface Contamination Gauge is a new quality control tool for paper manufacturers, web press printers, paper coaters and paper mill suppliers. The Gauge allows non-destructive, fast, repeatable and consistent tests for surface contamination or dust caused by loose fiber filler, surface treatment or coating from the paper making process. Tests can be r...

dustingheaven.livejournal.com dustingheaven.livejournal.com

Your pocket of schemes has split at the seams

Upgrade to paid account! Your pocket of schemes has split at the seams. Dust out the demons inside). Resources, cut for your convenience ;). 20) The Super Hero Squad Show. 05) Miscellaneous (Captain America, Power Girl, Thor). 10) Miscellaneous (Joe the Barbarian, Stock, The Last Unicorn, X-Men Origins). 20) Aladdin (all of Genie). 20) Stock (primarily animals, and by this I mean mostly tawny frogmouths ♥ ♥). 05) Son of M. 06) Hi No Matoi. 09) X-Factor: The Quick and the Dead. 20) X-Men Manifest Destiny.

dustingiallanza.com dustingiallanza.com

Dustin Giallanza Photography

SHAPE/SHIFT REPORT - THE FUTURE ISSUE. LADYGUNN - EMILY WARREN. HARD TAIL FOREVER I. HARD TAIL FOREVER II. AG JEANS - CAPSULE COLLECTION. AG JEANS - LOOKBOOKS. STUDIO and STYLE II. STUDIO and STYLE I. LIFESTYLE and TONE II. LIFESTYLE and TONE I. Mdash; view —. Mdash; view —. SHAPE/SHIFT REPORT - THE FUTURE ISSUE. Mdash; view —. LADYGUNN - EMILY WARREN. Mdash; view —. HARD TAIL FOREVER I. Mdash; view —. Mdash; view —. HARD TAIL FOREVER II. Mdash; view —. Mdash; view —. Mdash; view —. Mdash; view —.

dustingib.blogspot.com dustingib.blogspot.com

The Financial Lobby

Friday, April 6, 2012. ALTVI Consumer Video now available! Here is a link to a CONSUMER APPROVED VIDEO on the ALTVI! Please feel free to share with your Clients: http:/ youtu.be/Pe-LWRghpsI. In addition to this video, we have a lot more TVA and ALTVI support materials coming your way soon. including an agent Powerpoint deck, explanation of ALTVI drawdowns and upside, a website dedicated to TVI Methodology, a video with Trader Vic himself and much more! Monday, February 13, 2012. 8226; Up to 10% bonus*.