I hereby claim:
- I am jlyman on github.
- I am jlyman (https://keybase.io/jlyman) on keybase.
- I have a public key whose fingerprint is 781B 049D 725E 25DC 4023 FC46 D243 7CE2 FFE0 4A5D
To claim this, I am signing this object:
import assign from 'lodash/assign'; | |
/** | |
* Converts one type of object to another, in this case to/from our Models to | |
* plain API response objects. | |
* @param {object} sourceObj The source object, either a Model or a plain API response object | |
* @param {array} mapping An array of arrays, the inner arrays containing key mappings between objects. | |
* Inner array format can be either ['modelPropertyKey', ['apiPropertyKey'] or | |
* ['modelPropertyKey', apiToModelTransformer(), modelToApiTransformer()] | |
* @param {bool} isMappingModelToApi True if we are taking a Model object an |
{ | |
"presets": ["react-native"] | |
} |
/** | |
* A near straight copy of the default NavigationLinearPanResponder, | |
* but restricts the recognition of the gesture to coming from just the | |
* side of the screen, as iOS does by default | |
* | |
* @providesModule iOSSidePanResponder | |
* @flow | |
* @typechecks | |
*/ | |
const Animated = require('Animated') |
# Invoke this script with a relative `.app` path | |
# EX: | |
# codesign.sh "dist/osx/MyApp-darwin-x64/MyApp.app" | |
# I had better luck using the iPhoneOS codesign_allocate | |
export CODESIGN_ALLOCATE="/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/codesign_allocate" | |
#export CODESIGN_ALLOCATE="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/codesign_allocate" | |
# Next two are specified in Apple docs: | |
# export CODESIGN_ALLOCATE="/Applications/Xcode.app/Contents/Developer/usr/bin/codesign_allocate" |
I hereby claim:
To claim this, I am signing this object:
Creating your own, personal LogMeIn like network.
class Program | |
{ | |
public class YourMessage { public string Text { get; set; } } | |
static void Main(string[] args) | |
{ | |
string newMessageId = ""; | |
Bus.Initialize(sbc => | |
{ |
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
using MassTransit; | |
namespace JMMQConsoleApp | |
{ | |
class Program | |
{ |