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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> | |
<html xmlns="http://www.w3.org/1999/xhtml"> | |
<head> | |
<meta http-equiv="content-type" content="text/html; charset=utf-8"/> | |
<script | |
src="https://code.jquery.com/jquery-3.3.1.min.js" | |
integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8=" | |
crossorigin="anonymous"></script> | |
<script type="text/javascript"> | |
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
#!/usr/bin/env bash | |
# run this script from your home folder | |
# sudo bash | |
curl -O http://downloads.mongodb.org/linux/mongodb-linux-x86_64-2.6.12.tgz | |
tar -zxvf mongodb-linux-x86_64-2.6.12.tgz | |
cp mongodb-linux-x86_64-2.6.12/bin/* /usr/local/bin | |
groupadd mongodb | |
useradd --system --no-create-home -g mongodb mongodb |
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
deb http://mirrors.163.com/ubuntu/ raring main universe restricted multiverse | |
deb-src http://mirrors.163.com/ubuntu/ raring main universe restricted multiverse | |
deb http://mirrors.163.com/ubuntu/ raring-security universe main multiverse restricted | |
deb-src http://mirrors.163.com/ubuntu/ raring-security universe main multiverse restricted | |
deb http://mirrors.163.com/ubuntu/ raring-updates universe main multiverse restricted | |
deb http://mirrors.163.com/ubuntu/ raring-proposed universe main multiverse restricted | |
deb-src http://mirrors.163.com/ubuntu/ raring-proposed universe main multiverse restricted | |
deb http://mirrors.163.com/ubuntu/ raring-backports universe main multiverse restricted | |
deb-src http://mirrors.163.com/ubuntu/ raring-backports universe main multiverse restricted | |
deb-src http://mirrors.163.com/ubuntu/ raring-updates universe main multiverse restricted |
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
# This is a skeleton for testing models including examples of validations, callbacks, | |
# scopes, instance & class methods, associations, and more. | |
# Pick and choose what you want, as all models don't NEED to be tested at this depth. | |
# | |
# I'm always eager to hear new tips & suggestions as I'm still new to testing, | |
# so if you have any, please share! | |
# | |
# @kyletcarlson | |
# | |
# This skeleton also assumes you're using the following gems: |
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
task('increaseVersionCode') << { | |
def manifestFile = file("src/main/AndroidManifest.xml") | |
def pattern = Pattern.compile("versionCode=\"(\\d+)\"") | |
def matcher = pattern.matcher((CharSequence)manifestFile.getText()) | |
matcher.find() | |
def versionCode = Integer.parseInt(matcher.group(1)) | |
manifestFile.write(matcher.replaceAll("versionCode=\"" + ++versionCode + "\"")) | |
} | |
assembleDebug.dependsOn 'increaseVersionCode' |