Skip to content

Instantly share code, notes, and snippets.

View jonathanpeppers's full-sized avatar
🌶️
spicy!

Jonathan Peppers jonathanpeppers

🌶️
spicy!
View GitHub Profile
Oct 14 14:56:05 iPad locationd[63] <Notice>: Location icon should now be in state 'Inactive'
Oct 14 14:56:12 iPad kernel[0] <Notice>: 035404.878747 wlan0.A[16543] AppleBCMWLANNetManager::updateLinkQualityMetrics(): Report LQM to User Land 100, fAverageRSSI -65
Oct 14 14:56:44 iPad ubd[749] <Warning>: iCloud Documents through ubd is deactivated, using bird instead (Aug 6 2014 : 17:25:24).
Oct 14 14:56:51 iPad streaming_zip_conduit[624] <Warning>: LaunchServices: installing app for existing placeholder <LSApplicationProxy: 0x14d1a9b0> com.hitcents.hanx
Oct 14 14:56:51 iPad streaming_zip_conduit[624] <Warning>: LaunchServices: Not creating progress for <LSApplicationProxy: 0x14d1a9b0> com.hitcents.hanx since it is not a placeholder.
Oct 14 14:56:51 iPad installd[591] <Notice>: 0x503000 -[MIClientConnection _doBackgroundInstallationForPath:withOptions:completion:]: Install of "/var/mobile/Media/PublicStaging/HanxiOS.app" type Developer requested by streaming_zip_conduit (pid 624)
Oct 14 14:56:51 iPad installd[59
Building: Hanx.iOS.Extension (Ad-Hoc|iPhone)
Build started 10/14/2014 2:56:24 PM.
__________________________________________________
Project "/Users/jonathanpeppers/Desktop/MonoTouch/HanxTypewriter/Hanx.iOS.Extension/Hanx.iOS.Extension.csproj" (Build target(s)):
Target _DetectSigningIdentity:
GenerateBundleName Task
ProjectName: Hanx.iOS.Extension
@jonathanpeppers
jonathanpeppers / build.fsx
Created March 2, 2015 20:27
Basic FAKE Script
#r @".nuget/FAKE.3.5.4/tools/FakeLib.dll"
open Fake
open BuildHelpers
open Fake.XamarinHelper
//A list of constants here
Target "server-tests" (fun () ->
MSBuild "" "Build" testParameters [ serverSolution ] |> ignore
)
@jonathanpeppers
jonathanpeppers / build.bat
Created March 2, 2015 20:29
Windows FAKE runner
@echo off
.nuget\NuGet.exe install FAKE -Version 3.5.4
packages\FAKE.3.5.4\tools\FAKE.exe build.fsx %1
@jonathanpeppers
jonathanpeppers / build.sh
Created March 2, 2015 20:30
Mac OS X FAKE runner
#!/bin/bash
mono --runtime=v4.0 .nuget/nuget.exe install FAKE -Version 3.5.4
mono --runtime=v4.0 packages/FAKE.3.5.4/tools/FAKE.exe build.fsx $@
@jonathanpeppers
jonathanpeppers / ios-example.fsx
Created March 2, 2015 20:38
Xamarin.iOS FAKE example
open Fake.XamarinHelper
//Our variables such as project, solution, etc.
Target "ios" (fun () ->
iOSBuild (fun defaults ->
{defaults with
ProjectPath = solution
Configuration = "Ad-Hoc|iPhone"
Target = "Build"
@jonathanpeppers
jonathanpeppers / android-example.fsx
Created March 2, 2015 20:39
Xamarin.Android FAKE example
let androidPrameters = [
("Configuration", "Release")
("AndroidKeyStore", "True")
("AndroidSigningKeyStore", "PathToOurKeystore.keystore")
("AndroidSigningStorePass", "OurPassword")
("AndroidSigningKeyAlias", "OurKeyAlias")
("AndroidSigningKeyPass", "OurPassword")
]
//Other variables
@jonathanpeppers
jonathanpeppers / windows-example.fsx
Created March 2, 2015 20:40
Windows Universal FAKE example
let winParameters = [
("Configuration", "Release")
("AppxBundle", "Auto")
("AppxBuildConfigurationSelection", "neutral")
("AppxPackage", "True")
("AppxPackageIsForStore", "True")
("AppxPackageDir", "../../../build/")
("AppxPackageDirWasSpecified", "true")
("AppVersion", versionNumber)
]
@jonathanpeppers
jonathanpeppers / azure-example.fsx
Created March 2, 2015 20:41
Windows Azure FAKE example
let serverParameters = [
("Configuration", "Release")
("Platform", "AnyCPU")
("DeployOnBuild", "True")
("PublishProfile", "myprofile.pubxml")
("VisualStudioVersion", "12.0")
]
//Other variables
Target "server" (fun () ->
@jonathanpeppers
jonathanpeppers / example-profile.xml
Last active August 29, 2015 14:16
Windows Azure Publish Profile
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<!-- Existing stuff is here -->
<_SavePWD>True</_SavePWD>
<Password>PASSWORD_YOU_CAN_FIND_ON_PORTAL</Password>
</PropertyGroup>
</Project>