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
@extends('layouts.internal.master')
@section('content')
<style type="text/css">
.btn-js{
display: none;
}
</style>
@bunlongheng
bunlongheng / my_network_page.blade.php
Last active May 2, 2018 21:39
Wifi SSDI, Passphrase, and State
// MHN Network Sub-Pages
public function create() {
$cpe_mac = Request::segment(1);
$p_24_wi = 10001 ;
$g_24_wi = 10101 ;
$p_50_wi = 10002 ;
$g_50_wi = 10102 ;
/*================================
= 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');
<?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(){
<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>
@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">
@bunlongheng
bunlongheng / rank.php
Last active March 1, 2019 18:54
10/1/2015
function containsKey($key_para, $array)
{
foreach ($array as $key => $value) {
if ($key_para === $key) {
return true;
}
}
return false;
}
@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
#!/bin/bash
function check_compression {
curl -I -H 'Accept-Encoding: gzip,deflate' $1 |grep "Content-Encoding"
}
check_compression http://www.bunlongheng.com/ ;
@bunlongheng
bunlongheng / Gruntfile.js
Last active March 1, 2019 18:52
I used this build system for my site : www.bunlongheng.com
/*
Grunt installation:
-------------------
npm install -g grunt-cli
npm install -g grunt-init
npm init (creates a `package.json` file)
Project Dependencies:
---------------------