Skip to content

Instantly share code, notes, and snippets.

View Cemu0's full-sized avatar
🕹️
OMG

Quoc Anh Cemu0

🕹️
OMG
  • Spent so much time in startup...
  • VN
  • 01:22 (UTC +07:00)
View GitHub Profile
@Cyclenerd
Cyclenerd / AccessPoint.ino
Created July 26, 2017 19:46
ESP8266 : Create a WiFi access point and provide a DNS and web server on it, catch all traffic
/* Create a WiFi access point and provide a web server on it. */
#include <ESP8266WiFi.h>
#include "./DNSServer.h" // Patched lib
#include <ESP8266WebServer.h>
const byte DNS_PORT = 53; // Capture DNS requests on port 53
IPAddress apIP(10, 10, 10, 1); // Private network for server
DNSServer dnsServer; // Create the DNS object
ESP8266WebServer webServer(80); // HTTP server
@enzo-santos
enzo-santos / playstore_flutter_gitlabci.md
Last active April 28, 2024 03:44
Play Store + GitLab CI tutorial

Play Store + GitLab CI tutorial

This tutorial will teach you how to deploy a Flutter-based app to Play Store using GitLab CI.

Glossary

If you encounter a variable you don't recognize while reading, take a look here.

Variable name Description