This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[custom] | |
;这是一个外部配置文件示例 | |
;所有可能的自定义设置如下所示 | |
;用于自定义组的选项 会覆盖 主程序目录中的配置文件 里的内容 | |
;使用以下模式生成 Clash 代理组,带有 "[]" 前缀将直接添加 | |
;Format: Group_Name`select`Rule_1`Rule_2`... | |
; Group_Name`url-test|fallback|load-balance`Rule_1`Rule_2`...`test_url`interval[,timeout][,tolerance] | |
;Rule with "[]" prefix will be added directly. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# PHP CodeSniffer pre-commit hook for git | |
# | |
# @author Soenke Ruempler <[email protected]> | |
# @author Sebastian Kaspari <[email protected]> | |
# | |
# see the README | |
PHPCS_BIN=/usr/local/bin/phpcs | |
PHPCS_CODING_STANDARD=PSR2 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
type: 'common', label: '反馈图片', formatter: (row) => { | |
if (!row.images) { | |
return <div style='color: #999;'>未上传图片</div> | |
} | |
const res = [] | |
for (let i = 0; i < row.images.length; i++) { | |
const imageList = row.images.slice(i, row.images.length).concat(row.images.slice(0, i)) | |
res.push(<el-image style='width: 220px; display: inline-block; margin-bottom: 10px; margin-right: 10px' src={row.images[i]} | |
preview-src-list={imageList} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name skip weibo guide | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description 跳过微博向导 | |
// @author zedlz | |
// @match https://weibo.com/* | |
// @grant none | |
// ==/UserScript== |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
try { | |
DB::beginTransaction(); | |
DB::commit(); | |
} catch (Exception $e) { | |
Log::error($e->getMessage()); | |
DB::rollBack(); | |
throw new ExceptionBiz($e->getMessage()); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public function fans($userId) | |
{ | |
// 1.1 检查用户是否存在 | |
UserModel::mustExist(['id' => $userId, 'status' => BaseModel::ENABLED], '用户不存在或已被封禁'); | |
// 2.1 查 user_follow 表, 找出跟当前用户相关的记录 | |
$userFollows = UserFollowModel::where(['followed_user_id' => $userId])->paginate(request('pagesize', 20)); | |
// 2.2 查询本次需要查询的 user_id | |
$ids = array_map(function ($item) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace App\Listeners; | |
use Illuminate\Queue\InteractsWithQueue; | |
use Illuminate\Contracts\Queue\ShouldQueue; | |
use App\Common\Models\UserFollowModel; | |
use Illuminate\Support\Facades\Redis; | |
use App\Common\Models\UserModel; | |
use Log; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@RequestMapping("callback") | |
public void callback(HttpServletRequest request, HttpServletResponse response) throws Exception { | |
InputStream inputStream = request.getInputStream(); | |
//BufferedReader是包装设计模式,性能更搞 | |
BufferedReader in = new BufferedReader(new InputStreamReader(inputStream,"UTF-8")); | |
StringBuffer sb = new StringBuffer(); | |
String line ; | |
while ((line = in.readLine()) != null){ | |
sb.append(line); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import com.google.gson.Gson; | |
import org.apache.http.HttpEntity; | |
import org.apache.http.HttpResponse; | |
import org.apache.http.client.config.RequestConfig; | |
import org.apache.http.client.methods.CloseableHttpResponse; | |
import org.apache.http.client.methods.HttpGet; | |
import org.apache.http.client.methods.HttpPost; | |
import org.apache.http.entity.StringEntity; | |
import org.apache.http.impl.client.CloseableHttpClient; | |
import org.apache.http.impl.client.HttpClients; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import io.jsonwebtoken.Claims; | |
import io.jsonwebtoken.Jwts; | |
import io.jsonwebtoken.SignatureAlgorithm; | |
import net.xdclass.xdvideo.domain.User; | |
import java.util.Date; | |
/** | |
* jwt工具类 | |
*/ |
NewerOlder