- Use ES2015 features to write more concise Javascript
A collection of nodes (starting at a root node), where each node is a data structure consisting of a value, together with a list of references to nodes (the "children"), with the constraints that no reference is duplicated (a child can only have 1 parent), and none points to the root.
- One node is designated as the root
- The root node can have many children (nodes)
Two popular IDEs for Java are Eclipse IDE for Java Developers and IntelliJ IDEA
Heroku has plenty of resources for deploying Java applications.
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
<div class="col-md-2 col-xs-4" style="padding:20px;"> | |
<img ng-src="{{book.cover_url}}" class="img-responsive" alt="" /> | |
</div> | |
<div class="col-md-10 col-xs-8"> | |
<h3>{{book.title}}</h3> | |
<p><em>{{book.genre}}</em></p> | |
<p> | |
{{book.description}} | |
</p> | |
</div> |
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> | |
<meta charset="utf-8"> | |
<title></title> | |
<style media="screen"> | |
.main { | |
display: none; | |
} |
NewerOlder