sudo add-apt-repository ppa:gnome-terminator
sudo apt-get update
sudo apt-get install terminatorTerminator should be setup as default now. Restart your terminal (shortcut: "Ctrl+Alt+T").
| Service | SSL | status | Response Type | Allowed methods | Allowed headers |
|---|
| const express = require('express'); | |
| const session = require('express-session'); | |
| const redis = require('redis'); | |
| const connectRedis = require('connect-redis'); | |
| const app = express(); | |
| // if you run behind a proxy (e.g. nginx) | |
| // app.set('trust proxy', 1); |
| using System; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using System.Threading.Tasks; | |
| using Microsoft.AspNetCore.Authentication; | |
| using Microsoft.AspNetCore.Authentication.Cookies; | |
| using Microsoft.AspNetCore.Authentication.OpenIdConnect; | |
| using Microsoft.AspNetCore.Builder; | |
| using Microsoft.AspNetCore.Hosting; | |
| using Microsoft.AspNetCore.HttpsPolicy; |
Nx is a suite of powerful, extensible dev tools to help you architect, test, and build at any scale — integrating seamlessly with modern technologies and libraries while providing a robust CLI, caching, dependency management, and more.
It has first-class support for many frontend and backend technologies, so its documentation comes in multiple flavours.
| import { BehaviorSubject, distinctUntilChanged, map, Observable } from "rxjs"; | |
| /** | |
| * A generic class to manage state in an asynchronous way. | |
| */ | |
| class Store<T> { | |
| /** | |
| * @private field to store and notify state changes | |
| * BehaviorSubject is a special type of Observable | |
| * that keeps hold of the current value |