Total files with title or name meta tags: 5597
Files with more than one title tag: 469
/Users/ernesto/webmob-reports/webdevdata-latest//00/parcelmonkey.co.uk_00258938c78d758402a7157fbfe9d547.html.txt,meta,msapplication-starturl,http://www.parcelmonkey.co.uk | |
/Users/ernesto/webmob-reports/webdevdata-latest//00/xero.com_0043b9237e6b712ab1fc191cb6826929.html.txt,meta,msapplication-starturl,/?pinned=true | |
/Users/ernesto/webmob-reports/webdevdata-latest//01/donkiz.fr_017165c9107dec5a1d65817e28c0b65e.html.txt,meta,msapplication-starturl,http://www.donkiz.fr | |
/Users/ernesto/webmob-reports/webdevdata-latest//01/pizzahut.com_01eb225f350f043bf0744a325eb6644a.html.txt,meta,msapplication-starturl,//www.pizzahut.com/ | |
/Users/ernesto/webmob-reports/webdevdata-latest//03/pricespy.co.nz_03d1df9c01c40a42311e2ee75174342c.html.txt,meta,msapplication-starturl,/ | |
/Users/ernesto/webmob-reports/webdevdata-latest//03/yelp.nl_03044c564ceaac173b8659f001233e03.html.txt,meta,msapplication-starturl,http://www.yelp.nl/ | |
/Users/ernesto/webmob-reports/webdevdata-latest//05/wonobo.com_05d9df0d455f3cfc2a27bf8e6a46a39b.html.txt,meta,m |
# Top 400 meta tag names | |
**approximation** | |
60522 description | |
49058 keywords | |
21547 robots | |
15573 viewport | |
14236 generator | |
14167 google-site-verification |
Ideas are cheap. Make a prototype, sketch a CLI session, draw a wireframe. Discussions around concrete examples, not handy-waving abstractions. Don't say you did something, provide a URL that proves it.
Nothing is real until it's being used by a real user. This doesn't mean you make a prototype in the morning and blog about it in the evening. It means you find one person you believe your product will help and try to get them to use it.
# Gemfile for http://splitpay.at | |
source 'https://rubygems.org' | |
gem 'rails', '3.2.8' | |
gem 'rack-force_domain' | |
gem 'paypal_adaptive' | |
# Bundle edge Rails instead: | |
# gem 'rails', :git => 'git://github.com/rails/rails.git' |
#!/usr/bin/env osascript | |
# | |
# This AppleScript reloads Google Chrome. It can be used in combination kicker | |
# gem to automatically reload google chrome when you save a file from your app. | |
# | |
# Usage for a rails app: | |
# 1) Place this file in $RAILS_ROOT/script/reload_chrome | |
# 2) Install the kicker gem: gem install kicker | |
# 3) Run: kicker -e script/reload_chrome app public | |
# |
# Set prefix command to Ctrl-a | |
set -g prefix C-a | |
unbind C-b | |
# Reduce tmux delay for more responsiveness | |
set -sg escape-time 1 | |
# Window and pane index count starts in 1 rather tan 0 | |
set -g base-index 1 | |
setw -g pane-base-index 1 |
# History navigation: start writting the command you want to repeat and up/down | |
bind '"\e[A"':history-search-backward | |
bind '"\e[B"':history-search-forward |
A backup of http://sites.google.com/site/redcodenl/creating-shazam-in-java-1 just in case | |
Why is this necessary? Read http://sites.google.com/site/redcodenl/patent-infringement | |
Please fork, tweet about, etc. | |
---- | |
Creating Shazam in Java | |
A couple of days ago I encountered this article: How Shazam Works | |
This got me interested in how a program like Shazam works… And more importantly, how hard is it to program something similar in Java? |