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 | |
# .git/hooks/pre-commit | |
forbidJsx() | |
{ | |
# check the input diff text with ripgrep, if it contains `.jsx` or `.tsx`, finish the script | |
# otherwise, the script will continue to the next step. | |
local diff_text="$1" | |
if echo "$diff_text" | rg -q "^\+.*from '.*\w\.(j|t)sx'"; then | |
echo "Disallowed imports found:" >&2 |
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 | |
# Function to auto-generate commit messages with issue tag | |
autocommit() { | |
local ISSUE_TAG="" # Initialize variable | |
if [ -n "$1" ]; then | |
# Tag was provided as an argument | |
ISSUE_TAG="$1" | |
echo "Info: Using provided issue tag '$ISSUE_TAG'." |
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
/** | |
* 解析相对 css 文件的图片路径 | |
* | |
* @param baseurl | |
* @returns {undefined} | |
*/ | |
function resolveTo (baseurl) { | |
return function (relativePath) { | |
// 绝对路径 | |
if (relativePath[0] === '/') { |
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
.Ka-Ia-j::-webkit-scrollbar { | |
overflow: visible; | |
-webkit-border-radius: 4px; | |
border-radius: 4px; | |
border: solid 1px #a6a6a6 | |
} | |
.Ka-Ia-j::-webkit-scrollbar-thumb { | |
overflow: visible; | |
-webkit-border-radius: 4px; |
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
var RawSource = require('webpack-core/lib/RawSource') | |
function TestPlugin (options) { | |
} | |
var jsrg = /\.js($|\?)/i; | |
TestPlugin.prototype.apply = function (compiler) { | |
debugger; | |
compiler.plugin('compilation', function (compilation) { | |
debugger; |
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
function queueHandle(srcarr, distarr, handler) { | |
if (srcarr.length) { | |
var m = members.shift(); | |
util.reqUserInfo(m.member, function (userinfo) { | |
userinfo.IsLock = true; | |
distarr.push(userinfo); | |
queueHandle(srcarr, distarr, handler); | |
}) | |
} else { | |
handler(selected); |
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
PAC script: data:application/x-ns-proxy-autoconfig;base64,LypPbWVnYVByb2ZpbGUqIlx1MDAyZnU4MWVhXHUwMDJmdTUyYThcdTAwMmZ1NTIwN1x1MDAyZnU2MzYyIioxNTBkZGViZTQ1NyovdmFyIEZpbmRQcm94eUZvclVSTD1mdW5jdGlvbihpbml0LHByb2ZpbGVzKXtyZXR1cm4gZnVuY3Rpb24odXJsLGhvc3QpeyJ1c2Ugc3RyaWN0Ijt2YXIgcmVzdWx0PWluaXQsc2NoZW1lPXVybC5zdWJzdHIoMCx1cmwuaW5kZXhPZigiOiIpKTtkb3tyZXN1bHQ9cHJvZmlsZXNbcmVzdWx0XTtpZih0eXBlb2YgcmVzdWx0PT09ImZ1bmN0aW9uIilyZXN1bHQ9cmVzdWx0KHVybCxob3N0LHNjaGVtZSl9d2hpbGUodHlwZW9mIHJlc3VsdCE9PSJzdHJpbmcifHxyZXN1bHQuY2hhckNvZGVBdCgwKT09PTQzKTtyZXR1cm4gcmVzdWx0fX0oIitcdTgxZWFcdTUyYThcdTUyMDdcdTYzNjIiLHsiK1x1ODFlYVx1NTJhOFx1NTIwN1x1NjM2MiI6ZnVuY3Rpb24odXJsLGhvc3Qsc2NoZW1lKXsidXNlIHN0cmljdCI7aWYoL15odHRwczpcL1wvLipcLmNsb3VkZnJvbnRcLm5ldFwvLy50ZXN0KHVybCkpcmV0dXJuIitzaGFkb3dzb2NrcyI7aWYoL15mZWVkbHlcLmNvbSQvLnRlc3QoaG9zdCkpcmV0dXJuIitzaGFkb3dzb2NrcyI7aWYoL15tYWlsXC5nb29nbGVcLmNvbSQvLnRlc3QoaG9zdCkpcmV0dXJuIitzaGFkb3dzb2NrcyI7aWYoL153d3dcLmdvb2dsZVwuY29tJC8udGVzdChob3N0KSlyZXR1cm4iK3NoYWRvd3NvY2tzIjtpZigvXmNvZGVcLmdvb2dsZVwuY2 |
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
function uniqueArr(arr, juggfunc) { | |
var resArr = []; | |
var has = false; | |
for (var i = 0; i < arr.length; ++i) { | |
for (var j = 0; j < resArr.length; ++j) { | |
if( juggfunc(resArr[j], arr[i]) ){ | |
has = true; | |
} | |
} | |
if (has) { |
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
function uniqueAndCount(list) { | |
var index = 0, | |
num = 0; | |
var result = []; | |
for (var i = 0; i < list.length; i++) { | |
if ($.inArray(list[i], result) < 0) { | |
result.push(list[i]); | |
while ($.inArray(list[i], list, index) > -1) { | |
num++; | |
index = $.inArray(list[i], list, index) + 1; |
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
fun! s:use_eval(co) | |
let c = a:co | |
let r = eval('0x'.c[0].c[1]) | |
let g = eval('0x'.c[2].c[3]) | |
let b = eval('0x'.c[4].c[5]) | |
return [r,g,b] | |
endfunction | |
fun! s:without_eval(co) | |
let c = a:co |
NewerOlder