Skip to content

Instantly share code, notes, and snippets.

View bunlongheng's full-sized avatar
💭
🍔 Eat. 🛌 Sleep. 💻 Code --> ☕️🧑🏻‍💻

Bunlong Heng bunlongheng

💭
🍔 Eat. 🛌 Sleep. 💻 Code --> ☕️🧑🏻‍💻
View GitHub Profile
@bunlongheng
bunlongheng / mp-timeline.less
Created June 30, 2015 18:22
Timeline UI, Sprites, and Mixin
@import '../bi.less';
/*==============================
= Header =
==============================*/
.mp-header{
margin-bottom : 23px;
padding-left : 28px;
@bunlongheng
bunlongheng / .bash_profile
Created July 1, 2015 12:53
My favorite .bash_profile
#================================================
# Bunlong Heng 4/23/2015 =
#================================================
#Environment Variables
export JAVA_HOME=$(/usr/libexec/java_home)
export PATH=~/.composer/vendor/bin:$PATH
@bunlongheng
bunlongheng / modal.php
Created January 28, 2016 17:10
1/28/2016
<div class="panel panel-default">
<div class="panel-heading">
<div class="panel-btns">
<a href="" class="panel-close">×</a>
<a href="" class="minimize">−</a>
</div><!-- panel-btns -->
<h3 class="panel-title">Web Policy</h3>
<p>Create / Read / Update / Delete</p>
</div>
<div class="panel-body">
<table class="table table-bordered mb30" id="example" class="display" cellspacing="0" width="100%">
<thead>
<tr>
<th>ID</th>
<th>Name</th>
</tr>
</thead>
<tbody>
<tr>
<?php
namespace App\Http\Controllers;
use Validator, Input, Auth, Redirect, Request, JavaScript, DateTime, Session, DB;
use App\VSE, App\Helper, App, App\Token, App\CURLexec, App\User;
class FacebookController extends Controller {
public function getToken(){
/*================================
= Facebook =
================================*/
Route::get('/facebook/callback', 'FacebookController@callback');
Route::get('/facebook/link', 'FacebookController@link');
Route::post('/facebook/activate', 'FacebookController@activate');
Route::get('/facebook/page/feed', 'FacebookController@pageFeed');
# Last updated : BH | 5/17/2016
import requests
import json
import os
import random
import re
import emoji
import sys
import math
#! /usr/bin/env python
import ipaddress
import netaddr
import requests
import sys
class MDU_SSC(TestCase):
'''
@bunlongheng
bunlongheng / Fortinet.php
Created March 6, 2018 19:33
Fortinet Model API between the portal
<?php
namespace App\Models;
use App\CURL;
use Redirect;
use Session;
//SSC.cfg
$GLOBALS['FG_API'] = 'http://172.18.58.25/jsonrpc';
$GLOBALS['PKG_NAME'] = 'CARWASH_PKG_VPN';
@bunlongheng
bunlongheng / fe.master.blade.php
Created March 20, 2017 20:42
Front End Master
<!doctype html>
<html>
<head>
@include('layouts.fe.meta')
@include('layouts.fe.links')
</head>