原文:Linux中国
GitLab 是一个基于 git 的仓库管理程序,也是一个方便软件开发的强大完整应用。 GitLab 拥有一个“用户新人友好”的界面,通过图形界面和命令行界面,使你的工作更加具有效率。GitLab 不仅仅对开发者是一个有用的工具,它甚至可以被集成到你的整个团队中,使得每一个人获得一个独自唯一的平台。
-- Marcia Ramos
本文导航
-GitLab 工作流02%
var GB2260 = { | |
"110000": "北京市", | |
"110100": "北京市市辖区", | |
"110101": "北京市东城区", | |
"110102": "北京市西城区", | |
"110103": "北京市崇文区", | |
"110104": "北京市宣武区", | |
"110105": "北京市朝阳区", | |
"110106": "北京市丰台区", | |
"110107": "北京市石景山区", |
# Homebrew and Cask | |
Install the XCode command line tools by running `xcode-select --install` in the terminal. | |
Install Homebrew by following the instructions on the [homebrew website](http://brew.sh). | |
Install Cask by following the instructions on the [cask website](https://caskroom.github.io). | |
# Applications |
#!/bin/bash | |
DAEMON=/usr/local/Cellar/aria2/1.31.0/bin/aria2c | |
PID_NAME=aria2c | |
PID=$(ps ux | awk '/aria2c/ && !/awk/ {print $2}') | |
CONFIG_PATH='/path/to/aria2.conf' | |
TRACKER_URL='https://raw.githubusercontent.com/ngosang/trackerslist/master/trackers_all_ip.txt' | |
##### |
原文:Linux中国
GitLab 是一个基于 git 的仓库管理程序,也是一个方便软件开发的强大完整应用。 GitLab 拥有一个“用户新人友好”的界面,通过图形界面和命令行界面,使你的工作更加具有效率。GitLab 不仅仅对开发者是一个有用的工具,它甚至可以被集成到你的整个团队中,使得每一个人获得一个独自唯一的平台。
-- Marcia Ramos
本文导航
-GitLab 工作流02%
Because Travis CI can automatically execute scripts after successfully (or unsuccessfully!) executing tests, it is an obvious choice for a deployment tool. In order to deploy to a Git repository on a remote server, the process generally is as follows:
#!/bin/bash | |
# For use this script copy&paste this in your terminal: | |
# bash <(curl -s https://gist.githubusercontent.com/tomma5o/302be3dc6e2092743e6049570e102a09/raw/superShell.bash) | |
OPTIONS="OSX Debian" | |
SELECTED="null" | |
echo Where you want to activate zsh? | |
select opt in $OPTIONS; do |
先从windows系统复制文件simsun.ttf到你的虚拟机下(c:\windows\fonts\
),在CrossOver下打开regedit
(命令行方式)
找到HKEY_CURRENT_USER\Software\Wine\Fonts\Replacements
,删除下面的项目simsun 宋体 新宋体
'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'); | |
let imagemin = require('gulp-imagemin'); |