mattzeunert.com mattzeunert.com

mattzeunert.com

Web App Development - Matt Zeunert

I'm a London-based web developer building web applications for mobile and desktop. I've built many websites from scratch, as well as working on larger projects. I love working on developer tools. I'm currently building a dynamic analysis tool called FromJS. Hire me: matt@mostlystatic.com. I've recently done work for these companies:. UK Regional Employment Map. See what industries people across the UK work in. Link generated page HTML back to JavaScript code. Display local tweet languages with Google Maps.

http://www.mattzeunert.com/

WEBSITE DETAILS
SEO
PAGES
SIMILAR SITES

TRAFFIC RANK FOR MATTZEUNERT.COM

TODAY'S RATING

>1,000,000

TRAFFIC RANK - AVERAGE PER MONTH

BEST MONTH

November

AVERAGE PER DAY Of THE WEEK

HIGHEST TRAFFIC ON

Monday

TRAFFIC BY CITY

CUSTOMER REVIEWS

Average Rating: 3.5 out of 5 with 11 reviews
5 star
2
4 star
4
3 star
4
2 star
0
1 star
1

Hey there! Start your review of mattzeunert.com

AVERAGE USER RATING

Write a Review

WEBSITE PREVIEW

Desktop Preview Tablet Preview Mobile Preview

LOAD TIME

0.3 seconds

FAVICON PREVIEW

  • mattzeunert.com

    16x16

  • mattzeunert.com

    32x32

  • mattzeunert.com

    64x64

  • mattzeunert.com

    128x128

  • mattzeunert.com

    160x160

  • mattzeunert.com

    192x192

  • mattzeunert.com

    256x256

CONTACTS AT MATTZEUNERT.COM

WHOISGUARD, INC.

WHOISGUARD PROTECTED

P.O. B●●●●●●-03411

PA●●MA , PANAMA, NA

PA

507.●●●●5503
51.1●●●●7182
51●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●@WHOISGUARD.COM

View this contact

WHOISGUARD, INC.

WHOISGUARD PROTECTED

P.O. B●●●●●●-03411

PA●●MA , PANAMA, NA

PA

507.●●●●5503
51.1●●●●7182
51●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●@WHOISGUARD.COM

View this contact

WHOISGUARD, INC.

WHOISGUARD PROTECTED

P.O. B●●●●●●-03411

PA●●MA , PANAMA, NA

PA

507.●●●●5503
51.1●●●●7182
51●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●●@WHOISGUARD.COM

View this contact

Login

TO VIEW CONTACTS

Remove Contacts

FOR PRIVACY ISSUES

DOMAIN REGISTRATION INFORMATION

REGISTERED
2013 September 07
UPDATED
2013 October 20
EXPIRATION
EXPIRED REGISTER THIS DOMAIN

BUY YOUR DOMAIN

Network Solutions®

DOMAIN AGE

  • 10

    YEARS

  • 8

    MONTHS

  • 24

    DAYS

NAME SERVERS

1
dns1.registrar-servers.com
2
dns2.registrar-servers.com
3
dns3.registrar-servers.com
4
dns4.registrar-servers.com
5
dns5.registrar-servers.com

REGISTRAR

ENOM, INC.

ENOM, INC.

WHOIS : whois.enom.com

REFERRED : http://www.enom.com

CONTENT

SCORE

6.2

PAGE TITLE
Web App Development - Matt Zeunert | mattzeunert.com Reviews
<META>
DESCRIPTION
I'm a London-based web developer building web applications for mobile and desktop. I've built many websites from scratch, as well as working on larger projects. I love working on developer tools. I'm currently building a dynamic analysis tool called FromJS. Hire me: matt@mostlystatic.com. I've recently done work for these companies:. UK Regional Employment Map. See what industries people across the UK work in. Link generated page HTML back to JavaScript code. Display local tweet languages with Google Maps.
<META>
KEYWORDS
1 matt zeunert
2 web app development
3 matt@mostlystatic com
4 recent projects
5 blog
6 github
7 stackoverflow
8 personal projects
9 javascript
10 view project
CONTENT
Page content here
KEYWORDS ON
PAGE
matt zeunert,web app development,matt@mostlystatic com,recent projects,blog,github,stackoverflow,personal projects,javascript,view project,fromjs,babel,chrome extension,twitter language map,google maps api,vannotate,nodejs,esprima,css todo app,immutablejs
SERVER
GitHub.com
CONTENT-TYPE
utf-8
GOOGLE PREVIEW

Web App Development - Matt Zeunert | mattzeunert.com Reviews

https://mattzeunert.com

I'm a London-based web developer building web applications for mobile and desktop. I've built many websites from scratch, as well as working on larger projects. I love working on developer tools. I'm currently building a dynamic analysis tool called FromJS. Hire me: matt@mostlystatic.com. I've recently done work for these companies:. UK Regional Employment Map. See what industries people across the UK work in. Link generated page HTML back to JavaScript code. Display local tweet languages with Google Maps.

INTERNAL PAGES

mattzeunert.com mattzeunert.com
1

Twitter Language Maps

http://www.mattzeunert.com/langmap/index.html

The following maps show the dominant language used on Twitter in a specific area. (Although results vary significantly between runs.). White areas indicate lack of tweets, unreliable language detection or languages that aren't listed. Made using the Twitter API. And a language detection API. Western Europe (South, ignoring English). South America (ignoring English). For comparison, with English:.

2

Writing

http://www.mattzeunert.com/writing.html

Trying to generate source maps by performing dynamic analysis on the compiler. Chrome DevTools: Show native functions in JS Profile. How much memory do JavaScript arrays take up in Chrome? Proxy objects, symbols, and string conversions. Using FromJS to understand Backbone TodoMVC. Resolving minified production stack traces with StackTrace.JS. Analyzing variable references with Tern. How is node - inspect different from using Node Inspector? Two mistakes I made working with Redux. How do source maps work?

UPGRADE TO PREMIUM TO VIEW 0 MORE

TOTAL PAGES IN THIS WEBSITE

2

LINKS TO THIS WEBSITE

rexamples.com rexamples.com

R Basics

http://www.rexamples.com/1/R%20Basics

How to run the code. To run the code paste it into an R console window. A - 42 A - a * 2 # R is case sensitive print(a) cat(A, n) # 84 is concatenated with n if(A a) # true, 84 42 { cat(A, , a, n) }. 1] 42 84 84 42. Don't call your variables any of the following:. Diff, length, mean, pi, range, rank, time, tree, var. If, function, NaN etc. Howard Seltman provides more information about reserved terms in this " Learning R. For variables and DoSomething. Comments start with a #. Can't be be done nicely.

rexamples.com rexamples.com

Match()

http://www.rexamples.com/12/Match()

How to run the code. Print(match(5, c(2,7,5,3) ) # 5 is in 3rd place print(seq(from=1,to=3,by=.5) %in% 1:3). 1] 3 [1] TRUE FALSE TRUE FALSE TRUE. Function find the first. Occurrence of the first argument in the second argument:. If no match for x is found in table. You can change this by using the nomatch. Match(1, 4:8, nomatch=-1). According to the documentation. The following two lines are equivalent:. Match(x, table, nomatch = 0) 0 x %in% table. R Language Definition (pdf). Made by Matt Zeunert.

rexamples.com rexamples.com

Lists

http://www.rexamples.com/7/Lists

How to run the code. Sum(0:9) append(LETTERS[1:13],letters[14:26]) c(1,6,4,9)*2 something - c(1,4,letters[2]) # indices start at one, you get (1,4,"b") length(something). Sum(0:9) [1] 45 append(LETTERS[1:13],letters[14:26]) [1] A B C D E F G H I J K L M n o [16] p q r s t u v w x y z c(1,6,4,9)*2 [1] 2 12 8 18 something - c(1,4,letters[2]) #indices start at one, you get (1,4,"b") length(something) [1] 3. You can use a colon to generate a list of numbers:. 1] -5 -4 -3 -2 -1 0 1 2 3 4 5. C(1,2,3) 3. 1] Jan...

rexamples.com rexamples.com

Filtering data

http://www.rexamples.com/11/Filtering%20data

How to run the code. This code uses a dataset file with population estimates. By the US Census Bureau (more info). Tbl - read.table(file.choose(),header=TRUE,sep=',') population - tbl[c(NAME,POPESTIMATE2009,NPOPCHG 2009)] smallest.state.pop - min(population$POPESTIMATE2009) print(population[population$POPESTIMATE2009= smallest.state.pop,]). NAME POPESTIMATE2009 NPOPCHG 2009 56 Wyoming 544270 11289. This piece of code extracts the data about the smallest state from the data frame. Let's use the head.

rexamples.com rexamples.com

Finding data sources

http://www.rexamples.com/13/Finding%20data%20sources

How to run the code. Here are a few data sets to play around with. This is a built-in data set. Use it for sorting, filtering etc. Quickly generating a data set. You can use matrix. To generate a quick dataset. The first argument must contain your data. You can use a distribution function or sample. Print(matrix(runif(6*3), nrow=6, ncol=3). Real US data: data.gov. The US government published data sets on data.gov. The UN publishes data at data.un.org. This data is also available in CSV format.

rexamples.com rexamples.com

Guess a random number game

http://www.rexamples.com/5/Guess%20a%20random%20number%20game

Guess a random number game. How to run the code. Guess a random number game. Use source("filename.r") to run this. Utility functions readinteger - function() { n - readline(prompt=Enter an integer: ) if(! Grepl( [0-9] $,n) { return(readinteger() } return(as.integer(n) } # real program start here num - round(runif(1) * 100, digits = 0) guess - -1 cat(Guess a number between 0 and 100. n) while(guess! N) } else if(guess num) { cat(It's smaller! Enter an integer: 20 It's bigger! Getting a random number.

rexamples.com rexamples.com

Reading user input

http://www.rexamples.com/4/Reading%20user%20input

How to run the code. Readinteger - function() { n - readline(prompt="Enter an integer: ") return(as.integer(n) } print(readinteger(). Enter an integer: 88 [1] 88. Lets the user enter a one-line string at the terminal. Argument is printed in front of the user input. It usually ends on ": ". The as.integer function. Makes an integer out of the string. Preventing failure if no number is entered. Right now if the user doesn't enter an integer, as.integer. Returns TRUE if the regular expression " [0-9] $".

rexamples.com rexamples.com

More Examples

http://www.rexamples.com/9

How to run the code. Plotting a uniform distribution. R Language Definition (pdf). Made by Matt Zeunert.

rexamples.com rexamples.com

Reading data

http://www.rexamples.com/10/Reading%20data

How to run the code. This code uses a dataset file with population estimates. By the US Census Bureau (more info). Tbl - read.table(file.choose(),header=TRUE,sep=,) population - tbl[POPESTIMATE2009] print(summary(population[-1:-5,]). Min 1st Qu. Median Mean 3rd Qu. Max. 544300 1734000 4141000 5980000 6613000 36960000. Reading a CSV file. Can read a variety of basic data formats into tables or "data frames". Specifies the separator for the data, which is a comma for CSV files. Is used to show a dialog.

rexamples.com rexamples.com

More Examples

http://www.rexamples.com/9/More%20Examples

How to run the code. Plotting a uniform distribution. R Language Definition (pdf). Made by Matt Zeunert.

UPGRADE TO PREMIUM TO VIEW 27 MORE

TOTAL LINKS TO THIS WEBSITE

37

SOCIAL ENGAGEMENT



OTHER SITES

mattzerrusen.com mattzerrusen.com

My Site

This is my site description. A website created by GoDaddy’s Website Builder.

mattzervos.tumblr.com mattzervos.tumblr.com

Straight Shootin'

These are my thoughts and opinions. Enjoy.or don't. Where There’s Smoke, There’s Fire". I remember receiving a lot of criticism for calling the Muslim based/inspired bombing in Boston as I saw it - a Muslim based/inspired bombing. I hate to say I told you so, but I told you so. These Muslim terrorists were and are Muslim terrorists. Hmmm…I see a theme developing…. Yep, bingo. Now that wasn’t so hard, was it? When the Pin Hits the Shell". Do you know how ridiculous you sound? Did you not think you were go...

mattzetm.skyrock.com mattzetm.skyrock.com

mattzetm's blog - Mathieu ze t'aimeuuh - Skyrock.com

Mathieu ze t'aimeuuh. Bin voila moi c'est Manon.Je consacre se blog a une personne qui met trés chère.Gros bizoux a toi mathieu.je t'aime trés fort mais chut fo pas le dire. 26/06/2006 at 1:29 PM. 30/07/2006 at 4:35 AM. Subscribe to my blog! Don't forget that insults, racism, etc. are forbidden by Skyrock's 'General Terms of Use' and that you can be identified by your IP address (66.160.134.11) if someone makes a complaint. Please enter the sequence of characters in the field below. Don't forget that ins...

mattzetm36.skyrock.com mattzetm36.skyrock.com

Blog de mattzetm36 - ***matt matt et rien que matt forever*** - Skyrock.com

Mot de passe :. J'ai oublié mon mot de passe. Matt matt et rien que matt forever* *. J'ai décidé de creer ce blog pour mettre en image et en couleurs l'amour et l'admiration ke g pour matt c vrément qq1 de formidable avc énormémen de talent gros gros bisouxxx a touxxx. OUBLIEZ PAS DE LACHEZ VOS COMMMSsSsSs! Mise à jour :. Abonne-toi à mon blog! Bijour les gens #. Ou poster avec :. Retape dans le champ ci-dessous la suite de chiffres et de lettres qui apparaissent dans le cadre ci-contre. Hautepierre, à S.

mattzettell.com mattzettell.com

Matt Zettell - Director and Producer

mattzeunert.com mattzeunert.com

Web App Development - Matt Zeunert

I'm a London-based web developer building web applications for mobile and desktop. I've built many websites from scratch, as well as working on larger projects. I love working on developer tools. I'm currently building a dynamic analysis tool called FromJS. Hire me: matt@mostlystatic.com. I've recently done work for these companies:. UK Regional Employment Map. See what industries people across the UK work in. Link generated page HTML back to JavaScript code. Display local tweet languages with Google Maps.

mattzewe.com mattzewe.com

zewe.com

mattzgames.com mattzgames.com

www

Including my latest creations, another variation of the unfair platformer, and a retro 2 bit game. Play gravity vortex can you master gravity vortex. My unfair platformer my version. Down load exe (7mb). Draw play draw your level! For more exciting games.

mattzgarage.com mattzgarage.com

MATTZ Garage - 8188 Alpine Ave Suites I & J, Sacramento, CA 95826

mattzger.blogspot.com mattzger.blogspot.com

Mattzger

Writings I hope will spark imagination. Friday, April 15, 2011. The One Whose Sin is Covered. Occasionally, I will remember something that I've heard or read hundreds of times, usually something from God's Word, and it will strike a tone that resonates very loudly in my mind and heart. Usually, it is so simple that it almost seems silly. Usually, it's the simple message of the gospel. I am forgiven of all my sins. I become doubtful and wonder, sometimes unaware that I'm doing so, "Is this real? If my lif...

mattzhair.com mattzhair.com

www.mattzhair.com

Your user agent does not support frames or is currently configured not to display frames. However you may visit the page that was supposed to be here.