Skip to content

Instantly share code, notes, and snippets.

View brucewu16899's full-sized avatar

Bruce.Wu brucewu16899

  • Hsinchu, Taiwan
View GitHub Profile
# Remove index.php$
if ($request_uri ~* "^(.*/)index\.php$") {
    return 301 $1;
}

location / {
    try_files $uri $uri/ /index.php?$query_string;

    # Remove from everywhere index.php

if ($request_uri ~* "^(./)index.php(/?)(.)") {

@brucewu16899
brucewu16899 / LowercaseRoutes.php
Created December 11, 2020 03:23 — forked from coreywelch/LowercaseRoutes.php
Here is a middleware class for laravel 5 that takes incoming routes and forces them to lowercase.
<?php
namespace App\Http\Middleware;
use Closure;
use \Illuminate\Support\Facades\Redirect;
class LowercaseRoutes
{
/**
@brucewu16899
brucewu16899 / deploy.sh
Created November 24, 2020 00:54 — forked from BenSampo/deploy.sh
Laravel deploy script
# Change to the project directory
cd /home/forge/domain.com
# Turn on maintenance mode
php artisan down || true
# Pull the latest changes from the git repository
# git reset --hard
# git clean -df
git pull origin master
@brucewu16899
brucewu16899 / ha.cf
Created November 18, 2020 08:36 — forked from moomindani/ha.cf
ha.cf (using ucast)
pacemaker on
#
# There are lots of options in this file. All you have to have is a set
# of nodes listed {"node ...} one of {serial, bcast, mcast, or ucast},
# and a value for "auto_failback".
#
# ATTENTION: As the configuration file is read line by line,
# THE ORDER OF DIRECTIVE MATTERS!
#
# In particular, make sure that the udpport, serial baud rate
@brucewu16899
brucewu16899 / HasWithCountScope.php
Created November 5, 2020 08:02 — forked from vluzrmos/HasWithCountScope.php
Laravel 5.1 withCount(relation) method.
<?php
namespace App;
use Illuminate\Database\Eloquent\Builder as EloquentBuilder;
use Illuminate\Database\Eloquent\Relations\HasMany;
use Illuminate\Database\Eloquent\Relations\HasOneOrMany;
use Illuminate\Database\Eloquent\Relations\Relation;
use Illuminate\Database\Query\Builder as QueryBuilder;
use Illuminate\Database\Query\Expression;
$value = array(
"deep"=>1,
"data"=>null,
"node"=>array(
"deep"=>2,
"data"=>null,
"node"=>array(
"deep"=>3
)
),
@brucewu16899
brucewu16899 / xls2csv
Created May 21, 2020 06:48 — forked from AnthonyNystrom/xls2csv
XLS to CSV
# -*- coding:utf-8 -*-
# Author : JEANNENOT Stephane
# Mail : [email protected]
# History
# + 10 january 2008
# --> Version : 0.1 : first try of creating a program that feets my objectives : convert
# easily xls sheets into csv with my favorite language ;)
# + 24 may 2009
@brucewu16899
brucewu16899 / index.html
Created March 31, 2020 08:57 — forked from jirawatee/index.html
LIFF v2 - Query String
<script>
const medium = 'https://medium.com/linedevth/';
const queryString = decodeURIComponent(window.location.search).replace("?liff.state=", "");
const params = new URLSearchParams(queryString);
const id = params.get('id');
if (id != null && id != '') {
window.location.assign(medium + id);
} else {
window.location.assign("https://developers.line.biz");
}
@brucewu16899
brucewu16899 / README
Created March 6, 2020 01:26 — forked from CrBoy/README
範例:使用 PHPMailer 透過 Gmail 寄送信件
本範例使用 PHPMailer (http://sourceforge.net/projects/phpmailer/) 發送 email。
首先需要注意的是,下載時有可能讓人困惑,我下載的是 http://sourceforge.net/projects/phpmailer/files/phpmailer%20for%20php5_6/PHPMailer%20v5.1/ 這個版本。
執行方式:使用 command line php 直接執行 `$ php ezgmail.php`
範例中包含設定方式、訊息樣板 (msg)、簡單樣板引擎 (fill_template)、名單的 parser (parse_name_list_tsv)與自動根據名單發信的範例,皆相當容易修改。
需注意的是,Gmail 有發送郵件相關的限制,若超過限制,帳號會被暫時停用一天。