Skip to content

Instantly share code, notes, and snippets.

View iankuan's full-sized avatar

Ian Wu iankuan

View GitHub Profile
@iankuan
iankuan / snipper.php
Last active February 21, 2022 13:32
Please fill missing code. This is an excel exporter program.
<?php
class Plugin {
function __construct()
{
add_action('admin_menu', array($this, 'adminPage'));
add_action('admin_init', array($this, 'settings'));
}
function settings(){
add_settings_section('first_section', NULL, NULL, 'sub-excel-export');
@iankuan
iankuan / cheatsheet.cpp
Created June 11, 2019 00:23 — forked from satwikkansal/cheatsheet.cpp
C++ STL cheatsheet for competitive progrmming
/*
This a header file that includes every standard library.
You can use it to save time.
NOTE: This header file may not be recognized by compilers
other than gcc.
*/
#include <bits/stdc++.h>
/*
//Use this if the above header file doesn't work.