I use Namecheap.com as a registrar, and they resale SSL Certs from a number of other companies, including Comodo.
These are the steps I went through to set up an SSL cert.
I use Namecheap.com as a registrar, and they resale SSL Certs from a number of other companies, including Comodo.
These are the steps I went through to set up an SSL cert.
| platforms/ | |
| plugins/ |
| // 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'); | |
| } |
(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.
| var ParallaxManager, ParallaxPart; | |
| ParallaxPart = (function() { | |
| function ParallaxPart(el) { | |
| this.el = el; | |
| this.speed = parseFloat(this.el.getAttribute('data-parallax-speed')); | |
| this.maxScroll = parseInt(this.el.getAttribute('data-max-scroll')); | |
| } | |
| ParallaxPart.prototype.update = function(scrollY) { |
| CREATE TABLE accounts( | |
| id serial PRIMARY KEY, | |
| name VARCHAR(256) NOT NULL | |
| ); | |
| CREATE TABLE entries( | |
| id serial PRIMARY KEY, | |
| description VARCHAR(1024) NOT NULL, | |
| amount NUMERIC(20, 2) NOT NULL CHECK (amount > 0.0), | |
| -- Every entry is a credit to one account... |
This is a compiled list of falsehoods programmers tend to believe about working with time.
Don't re-invent a date time library yourself. If you think you understand everything about time, you're probably doing it wrong.
| /** | |
| * INSTALL: | |
| * ---- | |
| * > yarn add express request | |
| * | |
| * RUN: | |
| * ---- | |
| * > node ./audio-proxy-server | |
| */ | |
| const os = require('os'); |
| import * as fs from 'fs'; | |
| import { NestFactory } from '@nestjs/core'; | |
| import { DocumentBuilder, SwaggerDocument, SwaggerModule } from '@nestjs/swagger'; | |
| import * as commander from 'commander'; | |
| const program = new commander.Command(); | |
| program | |
| .name('single-app-swagger-json-generator') | |
| .arguments('--app-path <app-path> --app-version <app-version>') | |
| .requiredOption('-a, --app-path <path>', 'path to app\'s folder') |