Ripped off from adrianshort.org
$ git remote -v
origin https://github.com/hakimel/reveal.js.git (fetch)
origin https://github.com/hakimel/reveal.js.git (push)
APPNAME=App | |
BUILDNUMBER=123 | |
CERTIFICATE="iPhone Distribution" | |
cp "${APPNAME}.ipa" "${APPNAME}.zip" | |
mkdir contents || true | |
unzip "${APPNAME}.zip" -d contents | |
codesign -d --entitlements :Entitlements.plist "contents/Payload/${APPNAME}.app" | |
plutil -replace CFBundleVersion -string "${BUILDNUMBER}" "contents/Payload/${APPNAME}.app/Info.plist" | |
rm -r "contents/Payload/${APPNAME}.app/_CodeSignature" |
var Sequelize = require('sequelize'); | |
module.exports = function(config) { | |
var models = {}; | |
sequelize = new Sequelize(config.database, config.username, config.password, config.options); | |
// Bootstrap models | |
fs.readdirSync(__dirname).forEach(function (file) { |
Sub ScalePictures40() | |
Dim i As Long | |
With ActiveDocument | |
For i = 1 To .InlineShapes.Count | |
With .InlineShapes(i) | |
.ScaleHeight = 40 | |
.ScaleWidth = 40 | |
End With | |
Next i | |
End With |
Ripped off from adrianshort.org
$ git remote -v
origin https://github.com/hakimel/reveal.js.git (fetch)
origin https://github.com/hakimel/reveal.js.git (push)