Install osxfuse (3.x.x) from https://github.com/osxfuse/osxfuse/releases.
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"brew update| .layout #layout-mainmenu.navbar { | |
| background-color: #FFF; | |
| border-bottom: 1px solid #DDD; | |
| } | |
| .layout #layout-mainmenu.navbar ul li { | |
| text-align: center; | |
| padding: 0 15px; | |
| margin-right: 3px; | |
| } | |
| nav#layout-mainmenu.navbar ul li.power-off a, nav#layout-mainmenu.navbar ul li.preview a { |
| // | |
| // Font Face mixin usage (https://github.com/perry/sass-font-face) | |
| // @include font-face($style-name, $file, $family, $category) | |
| // $style-name being the name of the font e.g. Helvetica | |
| // $file meaning the file name, without the file extensions | |
| // $family being the folder inside the fonts folder where the font files are | |
| // $category is serif or sans-serif or monospace etc. as a fall back in CSS | |
| // | |
| =font-face($style-name, $file, $family, $category: "", $weight: "", $style: "") |
| // | |
| // Font Smoothing mixin usage | |
| // @include font-smoothing($value) | |
| // | |
| =font-smoothing($value: antialiased) | |
| @if $value == antialiased | |
| -webkit-font-smoothing: antialiased | |
| -moz-osx-font-smoothing: grayscale | |
| @else |
| // | |
| // Returns string after joining list elements with a glue string. | |
| // Similar to PHP's implode function | |
| // | |
| @function implode($list, $glue: '', $is-nested: false) | |
| $result: null | |
| @for $i from 1 through length($list) | |
| $e: nth($list, $i) |
| // | |
| // Returns list after splitting a string by a delimiter string. | |
| // Similar to PHP's explode function | |
| // | |
| @function explode($string, $delimiter: "", $separator: "space") | |
| @if type-of($string) != "string" | |
| @warn "`explode` function expecting a string; #{type-of($string)} given." | |
| @return null | |
| @if type-of($delimiter) != "string" | |
| @warn "`explode` function expecting a string; #{type-of($delimiter)} given." |
osxfuse (3.x.x) from https://github.com/osxfuse/osxfuse/releases.ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"brew update| /** | |
| * The Task Below uses the Dex Tool to create classes.dex file for the archive | |
| * This dex file can be then be loaded at runtime to prevent the 64K Dalvik Method Limit | |
| */ | |
| import org.apache.tools.ant.taskdefs.condition.Os | |
| android.libraryVariants.all { variant -> | |
| def name = variant.buildType.name | |
| if (name.equals(com.android.builder.BuilderConstants.DEBUG)) { | |
| return; // Skip debug builds. | |
| } |
| diff --git i/facebook-android-sdk-3.6.0/facebook/src/com/facebook/widget/WebDialog.java w/facebook-android-sdk-3.6.0/facebook/src/com/facebook/widget/WebDialog.java | |
| index 70ac868..c2c9af0 100644 | |
| --- i/facebook-android-sdk-3.6.0/facebook/src/com/facebook/widget/WebDialog.java | |
| +++ w/facebook-android-sdk-3.6.0/facebook/src/com/facebook/widget/WebDialog.java | |
| @@ -17,6 +17,7 @@ | |
| package com.facebook.widget; | |
| import android.annotation.SuppressLint; | |
| +import android.app.AlertDialog; | |
| import android.app.Dialog; |
| //JS Version | |
| var charSet = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789', | |
| randomString = '' | |
| for (var i = 0; i < length; i++) { | |
| var randomPos = Math.floor(Math.random() * charSet.length) | |
| randomString += charSet.substring(randomPos, randomPos + 1) | |
| } | |
| return randomString |
| #!/bin/sh | |
| remote="$1" | |
| url="$2" | |
| message=$(git log -1 HEAD --pretty=format:%s) | |
| public_repo="/Users/Moz/Desktop/public" | |
| [ -d lang ] && yes | cp -rf lang/* $public_repo/lang | |
| [ -d updates ] && yes | cp -rf updates/* $public_repo/updates | |
| cd $public_repo |