Skip to content

Instantly share code, notes, and snippets.

View emb-karan's full-sized avatar

emb-karan

  • virim infotech
  • indore
View GitHub Profile
@101t
101t / Deployment Guide to Installing Odoo 14 on Ubuntu 20.04.md
Last active August 26, 2024 01:54
Deployment Guide to Installing Odoo 14 on Ubuntu 20.04
@eLement87
eLement87 / mqtt_tls_working.ino
Created December 10, 2017 13:12
ESP8266 Secure MQTT Connection with Client Certificate Authentication
#include <FS.h>
#include <ESP8266WiFi.h>
#include <WiFiClientSecure.h>
#include <PubSubClient.h>
#include <time.h>
// Insert your FQDN of your MQTT Broker
#define MQTT_SERVER "mqtt.srvx1.local"
const char* mqtt_server = MQTT_SERVER;