Skip to content

Instantly share code, notes, and snippets.

View hildanku's full-sized avatar
🎯
Focusing

Hildan Kusto Utomo hildanku

🎯
Focusing
View GitHub Profile
@hildanku
hildanku / curl_example.cpp
Created July 7, 2023 16:27 — forked from alghanmi/curl_example.cpp
cURL C++ Example
#include <iostream>
#include <string>
#include <curl/curl.h>
static size_t WriteCallback(void *contents, size_t size, size_t nmemb, void *userp)
{
((std::string*)userp)->append((char*)contents, size * nmemb);
return size * nmemb;
}
@hildanku
hildanku / shell
Created May 31, 2023 10:54 — forked from onliniak/shell
CodeIgniter localhost to ngrok
php spark serve -host 0.0.0.0 -port 4000
ngrok http 0.0.0.0:4000
Inspired by Passenger Phusion Server