Implementing end-to-end HTTPS encryption with CloudFlare for Google App Engine applications.
Register the root domain with Google Cloud Platform at the following:
https://github.com/PacktPublishing free to download books code by Packet
https://github.com/EbookFoundation/free-programming-books Very immense
(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 udp = require('dgram'); | |
| // --------------------creating a udp server -------------------- | |
| // creating a udp server | |
| var server = udp.createSocket('udp4'); | |
| // emits when any error occurs | |
| server.on('error',function(error){ | |
| console.log('Error: ' + error); |
Picking the right architecture = Picking the right battles + Managing trade-offs
| import { Test, TestingModule } from '@nestjs/testing' | |
| import { INestApplication, LoggerService } from '@nestjs/common' | |
| import * as request from 'supertest' | |
| import { AppModule } from './../src/app.module' | |
| class TestLogger implements LoggerService { | |
| log(message: string) {} | |
| error(message: string, trace: string) {} | |
| warn(message: string) {} | |
| debug(message: string) {} |
| const makeBold = (strings, ...values) => { | |
| let str = ''; | |
| strings.forEach((string, i) => { | |
| str += `${string} ${values[i] ? `<strong>${values[i]}<strong>` : ''}`; | |
| }); | |
| return str; | |
| } | |
| const name = 'Kannan'; | |
| const role = 'Javascript developer'; |
| const generateIntro = (strings, ...values) => { | |
| console.log(strings); // [ 'My name is ', ' and I am a ', '' ] | |
| console.log(values); // [ 'Kannan', 'Javascript developer' ] | |
| let str = ''; | |
| strings.forEach((string, i) => { | |
| str += string + (values[i] || ''); | |
| }); | |
| return str; | |
| } |
| const Button = styled.button` | |
| color: blue; | |
| `; | |
| const userQuery = gql` | |
| { | |
| users { | |
| firstName | |
| } | |
| } |