Skip to content

Instantly share code, notes, and snippets.

View mqtik's full-sized avatar
🙃

Mati mqtik

🙃
View GitHub Profile
@mqtik
mqtik / aws-couchdb-setup.md
Created July 24, 2024 06:41 — forked from Ravenstine/aws-couchdb-setup.md
Fast CouchDB setup in AWS

Fast CouchDB setup in AWS

CouchDB is a NoSQL database for storing JSON documents. It comes with a REST API out of the box so your client applications can persist data while requiring you to write little or no server-side code. CouchDB's killer feature is its ability to easily replicate, which allows for horizontal scaling, easy backup, and for client adapters to synchronize documents. This is perfect if you want to write an application that is offline-first. It's become my go-to database when creating new

@mqtik
mqtik / wildcard-ssl-certificate.md
Created October 11, 2018 19:28 — forked from talyguryn/wildcard-ssl-certificate.md
How to get a wildcard ssl certificate and set up Nginx.

How to get and install a wildcard SSL certificate

In this guide you can find how to resolve the following issues.

Feel free to ask any questions in the comments section below.

@mqtik
mqtik / notifications.ts
Created September 13, 2018 14:08 — forked from davorpeic/notifications.ts
OneSignal service
import { Injectable } from "@angular/core";
import * as application from 'application';
let TnsOneSignal = require('nativescript-onesignal').TnsOneSignal;
@Injectable()
export class NotificationService {
constructor() {}