npm install --save ng-pick-datetimeAdd the component in this gist to your project Add to your smart table settings:
| # Advanced config for NGINX | |
| server_tokens off; | |
| add_header X-XSS-Protection "1; mode=block"; | |
| add_header X-Content-Type-Options nosniff; | |
| # Redirect all HTTP traffic to HTTPS | |
| server { | |
| listen 80; | |
| server_name www.domain.com domain.com; | |
| return 301 https://$host$request_uri; |
| import {Injectable, provide} from 'angular2/core'; | |
| import {Observable} from 'rxjs'; | |
| const GEOLOCATION_ERRORS = { | |
| 'errors.location.unsupportedBrowser': 'Browser does not support location services', | |
| 'errors.location.permissionDenied': 'You have rejected access to your location', | |
| 'errors.location.positionUnavailable': 'Unable to determine your location', | |
| 'errors.location.timeout': 'Service timeout has been reached' | |
| }; |
| // FROM: http://www.mongodb.org/display/DOCS/Updating#Updating-update%28%29 | |
| // | |
| // db.collection.update( criteria, objNew, upsert, multi ) | |
| // criteria - query which selects the record to update; | |
| // objNew - updated object or $ operators (e.g., $inc) which manipulate the object | |
| // upsert - if this should be an "upsert"; that is, if the record does not exist, insert it | |
| // multi - if all documents matching criteria should be updated | |
| // | |
| // SQL VERSION: | |
| // UPDATE myTable SET dateField = '2011-01-01' WHERE condField = 'condValue' |
| const QString Item::type() const | |
| { | |
| const QMetaObject &mo = Item::staticMetaObject; | |
| int index = mo.indexOfEnumerator("Type"); | |
| QMetaEnum metaEnum = mo.enumerator(index); | |
| return metaEnum.valueToKey(m_type); | |
| } | |
| void Item::setType(const QString &type) |
| import { Subject } from 'rxjs/Subject'; | |
| import { Store } from '@ngrx/store'; | |
| import { Component, OnInit, OnDestroy, AfterViewInit } from '@angular/core'; | |
| import { AppState } from '../../../root.reducer'; | |
| @Component({ | |
| selector: 'my-map-example', | |
| template: ` | |
| <sebm-google-map |
| // config/passport.js | |
| // load all the things we need | |
| var LocalStrategy = require('passport-local').Strategy; | |
| var mysql = require('mysql'); | |
| var connection = mysql.createConnection({ | |
| host : 'localhost', | |
| user : 'root', |
| // Somewhere in your controllers for this given example | |
| // Example functions | |
| $scope.itemOnLongPress = function(id) { | |
| console.log('Long press'); | |
| } | |
| $scope.itemOnTouchEnd = function(id) { | |
| console.log('Touch end'); | |
| } |
| /* | |
| In the node.js intro tutorial (http://nodejs.org/), they show a basic tcp | |
| server, but for some reason omit a client connecting to it. I added an | |
| example at the bottom. | |
| Save the following server in example.js: | |
| */ | |
| var net = require('net'); |