| Models | Examples |
|---|---|
| Display ads | Yahoo! |
| Search ads |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import java.io.*; | |
| import java.util.*; | |
| public class wordcount | |
| { | |
| public static class Word implements Comparable<Word> | |
| { | |
| String word; | |
| int count; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var gulp = require('gulp'); | |
| var es6ModuleTranspiler = require('gulp-es6-module-transpiler'); | |
| var browserify = require('gulp-browserify'); | |
| var through = require('through'); | |
| function transpileModuleSyntax(file) { | |
| var data = ''; | |
| return through(write, end); | |
| function write (buf) { data += buf } |
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.