The travis gem includes both a command line client and a Ruby library to interface with a Travis CI service. Both work with travis-ci.org, travis-ci.com or any custom Travis CI setup you might have. Check out the installation instructions to get it running in no time.
This file contains 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
'------------------------------------------------------------------------------ | |
'名称:Reg2Bat_By Slore(生成同名bat文件,支持XP、WIN7、WIN7X64).vbs | |
'功能:REG文件转换为同名的BAT、CMD文件。 | |
'原文http://slore.blogbus.com/logs/52627038.html | |
' REG命令功能有限,仅支持常用类型。 | |
' (REG_SZ、REG_DWORD、REG_BINARY、 | |
' REG_EXPAND_SZ、REG_MULTI_SZ) | |
' | |
' By Slore 【修改by 代码飞扬】 | |
' 更新于:2017年2月16日 |
Git deployer plugin for [Hexo].
Update Git for Windows to the latest version. (Details)
This file contains 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
language: node_js | |
node_js: | |
- '6' | |
# 缓存依赖,节省持续集成时间 | |
cache: | |
directories: | |
- node_modules | |
- themes |
This file contains 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
//from https://gist.github.com/phawxby/9e41cb8d57ca5106046de80d8b24e308 | |
'use strict'; | |
// Based on https://gist.github.com/zhoujiealex/4d926889b02b85d4d8d73f036ef728eb | |
let Promise = require('bluebird'); | |
let gulp = require('gulp'); | |
let cssnano = require('gulp-cssnano'); | |
let uglify = require('gulp-uglify'); | |
let htmlmin = require('gulp-htmlmin'); | |
let htmlclean = require('gulp-htmlclean'); |
This file contains 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
表格受密码保护时,我们修改数据Excel弹出“您试图更改的单元格或图表受保护,因而是只读的。 | |
若要修改受保护单元格或图表,请先使用‘撤消工作表保护’命令(在‘审阅’选项卡的‘更改’组中)来取消保护。 | |
可能会提示输入密码。这时候我们可以用VBA宏代码破解法来破解表格保护密码: | |
第一步:打开该文件,先解除默认的“宏禁用”状态,方法是点击工具栏下的“选项”状态按钮, | |
打开“Microsoft Office安全选项”窗口,选择其中的“启用此内容”,“确定” | |
再切换到“视图”选项卡,点击“宏”→“录制宏”,出现“录制新宏”窗口,在“宏名”定义一个名称为: | |
PasswordBreaker,点击“确定”退出; | |
第二步:再点击“宏”→“查看宏”,选择“宏名”下的“PasswordBreaker”并点击“编辑”, | |
打开“Microsoft Visual Basic”编辑器,用如下内容替换右侧窗口中的所有代码: |
This file contains 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
inoreader.com##.ad_title | |
inoreader.com##.ad_footer_remove | |
inoreader.com##[id^="leaderboard_ad-"] | |
inoreader.com###all_gad_57994 | |
以下规则能够隐藏"AdBlock Detected"弹出框,但是快捷键会失效 | |
inoreader.com##[id$=_wrapper].inno_dialog_modal:not([id*=dialog]):not(#xconfirm_wrapper) | |
inoreader.com##[id$=_modal_overlay].inno_dialog_modal_overlay:not([id*=dialog]) | |
注意: |
This file contains 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 | |
cd ~/Library/Preferences/ | |
cp com.apple.HIToolbox.plist com.apple.HIToolbox.plist.bak | |
alias plistbuddy='/usr/libexec/PlistBuddy' | |
dict=$(plistbuddy -c "Print AppleEnabledInputSources" com.apple.HIToolbox.plist| grep -c "Dict") | |
for i in {0..$dict};do | |
if [ "$(plistbuddy -c "Print AppleEnabledInputSources:$i:KeyboardLayout\ Name" com.apple.HIToolbox.plist 2>/dev/null)" = "ABC" ] |
This file contains 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 I18N = {}; | |
I18N.conf = { | |
/** | |
* 要翻译的页面正则 | |
*/ | |
rePageClass: /\b(vis-public|page-(dashboard|profile|account|new-repo|create-org)|homepage|signup|session-authentication|oauth)\b/, | |
/** | |
* 匹配 pathname 页面的正则 |
OlderNewer