- Layout vs style
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<style> | |
#map { | |
height: 400px; | |
width: 100%; | |
} | |
#searchTextField { |
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
title: "Intro to Jess and JavaScript" | |
author: "Ferran Maylinch" | |
lessonVersion: "1.0" | |
minAppVersion: "1.4" | |
exercises: | |
- title: "Intro to Jess" |
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.util.*; | |
public class Example { | |
public static void main(String[] args) { | |
System.out.println("I'm an example"); | |
} | |
} |
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
title: Sample Lesson | |
author: Ferran Maylinch | |
# Minimum app version needed for this lesson | |
minAppVersion: "1.0" | |
exercises: | |
- title: Sample Exercise |
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 static com.mongodb.QueryOperators.*; | |
@Override | |
public List<Coupon> findBuyersByMktc(String mktc, Date start, Date end) | |
{ | |
final DBCursor cursor = coupons.find(obj() | |
.append(FIELD_MKTC, mktc) | |
.append(FIELD_PURCHASED_ON, obj(GTE, start).append(LT, end))); |
Common code statements in different languages for quick reference and comparison: Java, JavaScript, Kotlin, Objective-C, Python, Ruby, Scala, Swift.
In this article I’ll explain about the relationship between callbacks, promises and observable streams (AKA reactive programming).
Some of the examples in this document are written in this jsbin for you to try.
This document was written using the wonderful Markdown editor classeur.io.
NewerOlder