Name | Coordinates | Map |
---|---|---|
Hog's Back Falls | 45°22'16.6"N 75°41'49.2"W | link |
Hog's Back Park | 45°22'26.6"N 75°41'58.9"W | link |
Vimy Memorial Bridge | 45°16'12.1"N 75°42'17.8"W | link |
Greenbelt Pathway - Crossing | 45°19'54.1"N 75°51'17.0"W | link |
Greenbelt Pathway - Corn Field | 45°19'51.6"N 75°51'27.8"W | [link](https://www.google.ca/maps/place/45%C2%B019'51.6%22N+75%C2%B051'27.8%22W/@45.3309938,-75.8599107,17z/data=!3m1!4b1!4m2! |
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 id="restarget">Loading…</div> | |
<script id="restemplate" type="x-tmpl-mustache"> | |
<h1>{{ header.name }} | |
<h2>{{ header.title }} | |
<h3> {{ header.email }} | |
<p>{{ overview.text }} | |
</script> |
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
{ | |
products: [ | |
'{{repeat(10, 10)}}', | |
{ | |
_id: '{{objectId()}}', | |
index: '{{index()}}', | |
guid: '{{guid()}}', | |
isActive: '{{bool()}}', | |
img_preview: 'http://placehold.it/32x32', | |
img_main: 'http://placehold.it/64x64', |
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
RAILS | |
rails new ApplicationName – Create a new application | |
rails generate/g model ModelName – Creates a model with the specified model_name | |
rails generate/g controller ControllerName – Creates a controller with the specified controller_name | |
rails generate/g migration MigrationName – Creates a migration with the specified migration_name | |
rails generate migration AddPartNumberToProducts | |
rails generate/g scaffold ModelName ControllerName – A shortcut for creating your controller, model and view files etc | |
rails g scaffold Admin::FileShare location:string access_type:string - Prefix a namespace for a model | |
rails generate resource NAME - Stubs out a controller without any actions and no views, but does include routes and tests .. |
NewerOlder