Skip to content

Instantly share code, notes, and snippets.

@beansme
beansme / phpunit-xml
Created September 22, 2014 02:33
phpunit-xml
<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false"
backupStaticAttributes="false"
bootstrap="vendor/autoload.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="true"
// JavaScript Document
var maskTop = 1008;
(function($,window , undefined){
//ADS的命名空间
if(!window.ADS){window['ADS'] = {}}
//摇一摇
var shake = {
speed:10,
@beansme
beansme / 0_reuse_code.js
Created August 19, 2014 05:37
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
curl -s http://getcomposer.org/installer| php
sudo mv composer.phar /usr/bin/composer
@beansme
beansme / laravel-pagination
Created July 31, 2014 12:22
laravel-pagination
@for($i = 1; $i <= $fans->getLastPage(); $i++)
<span><a href="{{$fans->getUrl($i)}}" class="{{$fans->getCurrentPage() == $i ? 'active' : '' ;}}">{{$i}}</a></span>
@endfor
public function getBalance($user_id)
{
//查询进行中且未确认的众筹,存在则筹得的金额为冻结金额
$project = DB::connection('tcl_mysql')->table('tcl_projects')
->where('is_done', 0)
->where('user_id', $user_id)
->where('end_time', '<=',Carbon::now())
->first();
$amount_frozen = 0;
if($project){
public function getToken(){
$accessKey = '';
$secretKey = '';
$bucket = "";
$time = now() + 3600;
$data = array(
"scope"=>$bucket,