This repository has been archived by the owner on Nov 29, 2017. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
1057 lines (721 loc) · 43.3 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Gone Mobile Podcast</title>
<meta name="description" content="Gone Mobile is a podcast discussing the latest in mobile development, with a healthy bias towards Xamarin technologies. The podcast covers in-depth topics with guests ranging from Android, iOS, Windows Phone & Store development to mobile marketing and design, as well as other mobile or not so mobile related technologies.
">
<link rel="stylesheet" href="/css/main.css">
<link rel="canonical" href="http://gonemobile.io/">
<link rel="alternate" type="application/rss+xml" title="Gone Mobile Podcast" href="http://feed.gonemobile.io">
</head>
<body>
<header class="site-header">
<div class="wrapper">
<a class="site-title" href="/"><img src="/images/Gone.Mobile.Header.Logo.png" alt="Gone Mobile Podcast" title="Gone Mobile Podcast" /></a>
<nav class="site-nav">
<a href="#" class="menu-icon">
<svg viewBox="0 0 18 15">
<path fill="#424242" d="M18,1.484c0,0.82-0.665,1.484-1.484,1.484H1.484C0.665,2.969,0,2.304,0,1.484l0,0C0,0.665,0.665,0,1.484,0 h15.031C17.335,0,18,0.665,18,1.484L18,1.484z"/>
<path fill="#424242" d="M18,7.516C18,8.335,17.335,9,16.516,9H1.484C0.665,9,0,8.335,0,7.516l0,0c0-0.82,0.665-1.484,1.484-1.484 h15.031C17.335,6.031,18,6.696,18,7.516L18,7.516z"/>
<path fill="#424242" d="M18,13.516C18,14.335,17.335,15,16.516,15H1.484C0.665,15,0,14.335,0,13.516l0,0 c0-0.82,0.665-1.484,1.484-1.484h15.031C17.335,12.031,18,12.696,18,13.516L18,13.516z"/>
</svg>
</a>
<div class="trigger">
<a class="page-link" href="http://feed.gonemobile.io">
<span class="icon">
<svg viewBox="0 0 512 512"><path d="M201.8 347.2c0 20.3-16.5 36.8-36.8 36.8 -20.3 0-36.8-16.5-36.8-36.8s16.5-36.8 36.8-36.8C185.3 310.4 201.8 326.8 201.8 347.2zM128.2 204.7v54.5c68.5 0.7 124 56.3 124.7 124.7h54.5C306.7 285.3 226.9 205.4 128.2 204.7zM128.2 166.6c57.9 0.3 112.3 22.9 153.2 63.9 41 41 63.7 95.5 63.9 153.5h54.5c-0.3-149.9-121.7-271.4-271.6-271.9V166.6L128.2 166.6z" /></svg>
</span>
<span class="username">Podcast Feed</span>
</a>
<a class="page-link" href="https://twitter.com/gonemobilecast">
<span class="icon">
<svg viewBox="0 0 20 20">
<path fill="none" d="M18.258,3.266c-0.693,0.405-1.46,0.698-2.277,0.857c-0.653-0.686-1.586-1.115-2.618-1.115c-1.98,0-3.586,1.581-3.586,3.53c0,0.276,0.031,0.545,0.092,0.805C6.888,7.195,4.245,5.79,2.476,3.654C2.167,4.176,1.99,4.781,1.99,5.429c0,1.224,0.633,2.305,1.596,2.938C2.999,8.349,2.445,8.19,1.961,7.925C1.96,7.94,1.96,7.954,1.96,7.97c0,1.71,1.237,3.138,2.877,3.462c-0.301,0.08-0.617,0.123-0.945,0.123c-0.23,0-0.456-0.021-0.674-0.062c0.456,1.402,1.781,2.422,3.35,2.451c-1.228,0.947-2.773,1.512-4.454,1.512c-0.291,0-0.575-0.016-0.855-0.049c1.588,1,3.473,1.586,5.498,1.586c6.598,0,10.205-5.379,10.205-10.045c0-0.153-0.003-0.305-0.01-0.456c0.7-0.499,1.308-1.12,1.789-1.827c-0.644,0.28-1.334,0.469-2.06,0.555C17.422,4.782,17.99,4.091,18.258,3.266"></path>
</svg>
</span>
<span class="username">GoneMobileCast</span>
</a>
<!-- a class="page-link" href="http://plus.google.com/109259783757537595932">
<span class="icon">
<svg class="svg-icon" viewBox="0 0 20 20">
<path fill="none" d="M8.937,10.603c-0.383-0.284-0.741-0.706-0.754-0.837c0-0.223,0-0.326,0.526-0.758c0.684-0.56,1.062-1.297,1.062-2.076c0-0.672-0.188-1.273-0.512-1.71h0.286l1.58-1.196h-4.28c-1.717,0-3.222,1.348-3.222,2.885c0,1.587,1.162,2.794,2.726,2.858c-0.024,0.113-0.037,0.225-0.037,0.334c0,0.229,0.052,0.448,0.157,0.659c-1.938,0.013-3.569,1.309-3.569,2.84c0,1.375,1.571,2.373,3.735,2.373c2.338,0,3.599-1.463,3.599-2.84C10.233,11.99,9.882,11.303,8.937,10.603 M5.443,6.864C5.371,6.291,5.491,5.761,5.766,5.444c0.167-0.192,0.383-0.293,0.623-0.293l0,0h0.028c0.717,0.022,1.405,0.871,1.532,1.89c0.073,0.583-0.052,1.127-0.333,1.451c-0.167,0.192-0.378,0.293-0.64,0.292h0C6.273,8.765,5.571,7.883,5.443,6.864 M6.628,14.786c-1.066,0-1.902-0.687-1.902-1.562c0-0.803,0.978-1.508,2.093-1.508l0,0l0,0h0.029c0.241,0.003,0.474,0.04,0.695,0.109l0.221,0.158c0.567,0.405,0.866,0.634,0.956,1.003c0.022,0.097,0.033,0.194,0.033,0.291C8.752,14.278,8.038,14.786,6.628,14.786 M14.85,4.765h-1.493v2.242h-2.249v1.495h2.249v2.233h1.493V8.502h2.252V7.007H14.85V4.765z"></path>
</svg>
</span><span class="username">GoneMobile</span>
</a -->
</div>
</nav>
</div>
</header>
<div class="page-content">
<div class="wrapper">
<div class="home">
<p><i>Gone Mobile is a podcast discussing the latest in mobile development, with a healthy bias towards Xamarin technologies. The podcast covers in-depth topics with guests ranging from Android, iOS, Windows Phone & Store development to mobile marketing and design, as well as other mobile or not so mobile related technologies.</i></p>
<br />
<ul class="post-list">
<li>
<span class="post-meta">Aug 22, 2017</span>
<h2>
<a class="post-link" href="/blog/e0056.mvvmcross.updates.with.martijn.van.dijk/">Gone Mobile 56: MvvmCross Updates with Martijn van Dijk</a>
</h2>
<p>
It took a few years, but we finally did a show on MvvmCross! In this episode we're joined by Martjin van Dijk, one of the core maintainers of the project, to talk about where MvvmCross came from, what's new in it, and where it's heading!
<br />
<a href="/blog/e0056.mvvmcross.updates.with.martijn.van.dijk/">Listen Now →</a>
</p>
</li>
<li>
<span class="post-meta">Aug 14, 2017</span>
<h2>
<a class="post-link" href="/blog/e0055.embeddinating.net.everywhere.with.jonathan.peppers/">Gone Mobile 55: Embeddinating .NET Everywhere with Jonathan Peppers</a>
</h2>
<p>
Did you know that you can take your .NET code, including Xamarin.iOS and Xamarin.Android views, even Xamarin.Forms, and reference them from native Objective-C or Java applications? In this episode we talk to Jonathan Peppers, an engineer on the team at Microsoft working on this sorcery, and dig into how it works and where it's going. It's a brave new world!
<br />
<a href="/blog/e0055.embeddinating.net.everywhere.with.jonathan.peppers/">Listen Now →</a>
</p>
</li>
<li>
<span class="post-meta">Jul 24, 2017</span>
<h2>
<a class="post-link" href="/blog/e0054.visual.crash.reporting.and.bugsee.with.alex.fishman/">Gone Mobile 54: Visual Crash Reporting and Bugsee with Alex Fishman</a>
</h2>
<p>
There is no shortage of options out there for doing error and crash reporting for mobile apps, but Bugsee takes a different approach, providing a more visual and deeper set of reporting and diagnostics. In this episode we talk to Alex Fishman, founder and CEO of Bugsee, and dig into what they're offering for mobile developers.
<br />
<a href="/blog/e0054.visual.crash.reporting.and.bugsee.with.alex.fishman/">Listen Now →</a>
</p>
</li>
<li>
<span class="post-meta">Jul 13, 2017</span>
<h2>
<a class="post-link" href="/blog/e0053.xamarin.forms.update.with.david.ortinau/">Gone Mobile 53: Xamarin.Forms Update with David Ortinau</a>
</h2>
<p>
On this state of the Xamarin.Forms union, we are joined by long time Xamarin community member and now PM of the Xamarin.Forms team, David Ortinau. We discuss Xamarin.Forms becoming open source, XAML Standard, Forms Embedding (and Embedded Forms), Fast Renderers, and what's next for Xamarin.Forms.
<br />
<a href="/blog/e0053.xamarin.forms.update.with.david.ortinau/">Listen Now →</a>
</p>
</li>
<li>
<span class="post-meta">Jun 28, 2017</span>
<h2>
<a class="post-link" href="/blog/e0052.mobile.powered.baseball.scouting.with.jeremy.raadt/">Gone Mobile 52: Mobile-Powered Baseball Scouting with Jeremy Raadt</a>
</h2>
<p>
Some jobs are just mobile by definition, such as talent scouts for baseball teams. The Minnesota Twins organization recently decided to embrace this and built a new mobile app experience for their scouts to help make their jobs easier and allow for greater collaboration and coordination across the team. In this episode we put our personal baseball allegiances aside briefly to chat with Jeremy Raadt about the app they built, how they built it, and where they see it going in the future!
<br />
<a href="/blog/e0052.mobile.powered.baseball.scouting.with.jeremy.raadt/">Listen Now →</a>
</p>
</li>
<li>
<span class="post-meta">May 31, 2017</span>
<h2>
<a class="post-link" href="/blog/e0051.react.native.mobile.center.and.continuous.delivery.with.ryan.salva.and.joe.mellin/">Gone Mobile 51: React Native, Mobile Center, and Continuous Deployment with Ryan Salva and Joe Mellin</a>
</h2>
<p>
Heard of React Native but not sure what the hype is all about? We've got you covered! At Microsoft's Build conference we sat down with Ryan Salva and Joe Mellin from the Mobile Center team to chat through React Native, how it works, and how it compares to other approaches such as Xamarin. We also dig into the full app development lifecycle, and how React Native and Mobile Center can help you continuously deliver quality apps to your users.
<br />
<a href="/blog/e0051.react.native.mobile.center.and.continuous.delivery.with.ryan.salva.and.joe.mellin/">Listen Now →</a>
</p>
</li>
<li>
<span class="post-meta">May 22, 2017</span>
<h2>
<a class="post-link" href="/blog/e0050.building.great.app.experiences.with.matt.lacey/">Gone Mobile 50: Building Great App Experiences with Matt Lacey</a>
</h2>
<p>
Designing great mobile experiences is much easier said than done, but is critical to the success of an application. In this episode we sit down with Matt Lacey to talk through what makes a great app experience, as well as some practical approaches and patterns you can use to start to use to improve the experience for your users. Usability matters!
<br />
<a href="/blog/e0050.building.great.app.experiences.with.matt.lacey/">Listen Now →</a>
</p>
</li>
<li>
<span class="post-meta">May 15, 2017</span>
<h2>
<a class="post-link" href="/blog/e0049.bot.framework.with.david.hamilton/">Gone Mobile 49: Bot Framework with David Hamilton</a>
</h2>
<p>
Chat bots are everywhere these days! While at Microsoft's Build conference we sat down with David Hamilton to talk about Microsoft's Bot Framework, and how it can help you start creating chat-based experiences for your users on a variety of platforms. We also take a look at his gigseekr service which leverages the Bot Framework, including a live on-air demo of interacting with it via Cortana!
<br />
<a href="/blog/e0049.bot.framework.with.david.hamilton/">Listen Now →</a>
</p>
</li>
<li>
<span class="post-meta">May 9, 2017</span>
<h2>
<a class="post-link" href="/blog/e0048.mobile.app.security.testing.with.martin.alderson/">Gone Mobile 48: Mobile App Security Testing with Martin Alderson</a>
</h2>
<p>
How do you prevent your app from shipping with preventable security vulnerabilities? This episode we talk to Martin Alderson of Codified Security about their automated Mobile App Security testing service.
<br />
<a href="/blog/e0048.mobile.app.security.testing.with.martin.alderson/">Listen Now →</a>
</p>
</li>
<li>
<span class="post-meta">May 1, 2017</span>
<h2>
<a class="post-link" href="/blog/e0047.building.reactive.apps.with.xamarin.forms.and.fsharp.with.rob.lyndon/">Gone Mobile 47: Building Reactive Apps with Xamarin.Forms and F# with Rob Lyndon</a>
</h2>
<p>
In this episode we are joined by Rob Lyndon who is working on the Xamarin.Forms.Reactive.FSharp library. We talk to Rob about what Reactive programming is all about, and how it fits into mobile development. Rob goes into detail about what his library does, how it helps Xamarin.Forms developers, and why he created it.
<br />
<a href="/blog/e0047.building.reactive.apps.with.xamarin.forms.and.fsharp.with.rob.lyndon/">Listen Now →</a>
</p>
</li>
<li>
<span class="post-meta">Apr 12, 2017</span>
<h2>
<a class="post-link" href="/blog/e0046.visual.studio.mobile.center.with.simina.pasat.and.luke.kim/">Gone Mobile 46: Visual Studio Mobile Center with Simina Pasat and Luke Kim</a>
</h2>
<p>
When it comes to developing and maintaining mobile apps there's a lot to think about, between building, testing, distributing, monitoring, and more. In this episode we dig into Microsoft's new Visual Studio Mobile Center, which provides a solution to many of these lifecycle concerns in a single place.
<br />
<a href="/blog/e0046.visual.studio.mobile.center.with.simina.pasat.and.luke.kim/">Listen Now →</a>
</p>
</li>
<li>
<span class="post-meta">Mar 27, 2017</span>
<h2>
<a class="post-link" href="/blog/e0045.azure.iot.with.amanda.lange/">Gone Mobile 45: Azure IoT with Amanda Lange</a>
</h2>
<p>
Over the last few years the Internet of Things has taken over the world, but what is it and what can you do with it? In this episode we're joined by Amanda Lange to walk through what it is, what kinds of experiences you can enable, and how Azure can help you manage your devices and create applications.
<br />
<a href="/blog/e0045.azure.iot.with.amanda.lange/">Listen Now →</a>
</p>
</li>
<li>
<span class="post-meta">Mar 6, 2017</span>
<h2>
<a class="post-link" href="/blog/e0044.fluxing.up.your.xamarin.apps.with.alex.dunn/">Gone Mobile 44: Fluxing Up Your Xamarin Apps with Alex Dunn</a>
</h2>
<p>
The Flux architectural pattern has become increasingly common in front-end development, but did you know it's also applicable to mobile apps as well? In this episode we talk to Alex Dunn about Flux, what it is, why it's useful, and his experiences applying it to his Xamarin applications.
<br />
<a href="/blog/e0044.fluxing.up.your.xamarin.apps.with.alex.dunn/">Listen Now →</a>
</p>
</li>
<li>
<span class="post-meta">Jan 23, 2017</span>
<h2>
<a class="post-link" href="/blog/e0043.enhance.your.ide.with.mfractor.from.matthew.robbins/">Gone Mobile 43: Enhance your IDE with MFractor from Matthew Robbins</a>
</h2>
<p>
Ever wish you could automate more simple tasks in Xamarin Studio or Visual Studio for Mac? Matthew Robbins' MFractor Addin may be exactly what you're looking for with several enhancements designed to speed up the Xamarin.Forms developer experience.
<br />
<a href="/blog/e0043.enhance.your.ide.with.mfractor.from.matthew.robbins/">Listen Now →</a>
</p>
</li>
<li>
<span class="post-meta">Jan 12, 2017</span>
<h2>
<a class="post-link" href="/blog/e0042.surviving.the.app.store.with.amir.rajan/">Gone Mobile 42: Surviving The App Store with Amir Rajan</a>
</h2>
<p>
The App Store is a crazy place, so why not learn the ins and outs from someone who has been through it all? In this episode we sit down with Amir Rajan, developer of the hit game A Dark Room, to talk through his experiences building a successful game, backed by a mountain of data around metrics, revenue, and more.
<br />
<a href="/blog/e0042.surviving.the.app.store.with.amir.rajan/">Listen Now →</a>
</p>
</li>
<li>
<span class="post-meta">Dec 29, 2016</span>
<h2>
<a class="post-link" href="/blog/e0041.mobile.game.development.and.cocossharp.with.brent.edwards/">Gone Mobile 41: Mobile Game Development and CocosSharp with Brent Edwards</a>
</h2>
<p>
Interested in trying out some mobile game development but aren't sure where to start? In this episode we talk to Brent Edwards about how he got started, and how CocosSharp makes it easy to dive in and start creating the next big hit game!
<br />
<a href="/blog/e0041.mobile.game.development.and.cocossharp.with.brent.edwards/">Listen Now →</a>
</p>
</li>
<li>
<span class="post-meta">Dec 5, 2016</span>
<h2>
<a class="post-link" href="/blog/e0040.deep.linking.and.branch.with.sahil.verma/">Gone Mobile 40: Deep Linking and Branch with Sahil Verma</a>
</h2>
<p>
Deep linking is a great way to help provide engaging experiences for your users, but how do you get started? What can you actually do with deep links? In this episode we talk to Sahil Verma about deep linking and what Branch is doing to help app developers deliver personalized experience for their users.
<br />
<a href="/blog/e0040.deep.linking.and.branch.with.sahil.verma/">Listen Now →</a>
</p>
</li>
<li>
<span class="post-meta">Sep 14, 2016</span>
<h2>
<a class="post-link" href="/blog/e0039.serverless.and.azure.functions.with.donna.malayeri.and.fabio.cavalcante/">Gone Mobile 39: Serverless and Azure Functions with Donna Malayeri and Fabio Cavalcante</a>
</h2>
<p>
Want to know what this whole serverless thing is about? Learn all about it and what you can do with Azure Functions from Donna Malayeri and Fabio Cavalcante!
<br />
<a href="/blog/e0039.serverless.and.azure.functions.with.donna.malayeri.and.fabio.cavalcante/">Listen Now →</a>
</p>
</li>
<li>
<span class="post-meta">Aug 31, 2016</span>
<h2>
<a class="post-link" href="/blog/e0038.microsoft.graph.api.with.simon.jager/">Gone Mobile 38: Microsoft Graph API with Simon Jager</a>
</h2>
<p>
In this episode we learn all about the Microsoft Graph API from Simon Jager, and how you can build your mobile apps on top of its offerings.
<br />
<a href="/blog/e0038.microsoft.graph.api.with.simon.jager/">Listen Now →</a>
</p>
</li>
<li>
<span class="post-meta">Jul 25, 2016</span>
<h2>
<a class="post-link" href="/blog/e0037.hybrid.xamarin.apps.with.drew.colthorp.and.shawn.anderson/">Gone Mobile 37: Hybrid Xamarin Apps with Drew Colthorp and Shawn Anderson</a>
</h2>
<p>
Hybrid apps with Xamarin? You bet! In this episode we're joined by Drew Colthorp and Shawn Anderson to talk about why and how they converted their hybrid app, written in Ember, from Cordova to Xamarin.
<br />
<a href="/blog/e0037.hybrid.xamarin.apps.with.drew.colthorp.and.shawn.anderson/">Listen Now →</a>
</p>
</li>
<li>
<span class="post-meta">Jul 12, 2016</span>
<h2>
<a class="post-link" href="/blog/e0036.android.performance.tuning.with.rabeb.othmani/">Gone Mobile 36: Android Performance Tuning with Rabeb Othmani</a>
</h2>
<p>
In this episode we're joined by Rabeb Othmani to talk about Android Performance Tuning
<br />
<a href="/blog/e0036.android.performance.tuning.with.rabeb.othmani/">Listen Now →</a>
</p>
</li>
<li>
<span class="post-meta">Jul 5, 2016</span>
<h2>
<a class="post-link" href="/blog/e0035.mobile.testing.with.alexandra.marin/">Gone Mobile 35: Mobile Testing with Alexandra Marin</a>
</h2>
<p>
In this episode we're joined by Alexandra Marin to talk about Behavior Driven Development for Xamarin Developers
<br />
<a href="/blog/e0035.mobile.testing.with.alexandra.marin/">Listen Now →</a>
</p>
</li>
<li>
<span class="post-meta">Jun 14, 2016</span>
<h2>
<a class="post-link" href="/blog/e0034-raygun.pulse.with.john.daniel.trask/">Gone Mobile 34: Raygun Pulse with John-Daniel Trask</a>
</h2>
<p>
In this episode we're joined by John-Daniel Trask, founder and CEO of Raygun, to talk about Pulse - their Real User Monitoring solution for web and mobile apps.
<br />
<a href="/blog/e0034-raygun.pulse.with.john.daniel.trask/">Listen Now →</a>
</p>
</li>
<li>
<span class="post-meta">Jun 1, 2016</span>
<h2>
<a class="post-link" href="/blog/e0033-realm.with.tim.anglade.and.kristian.dupont/">Gone Mobile 33: Realm with Tim Anglade and Kristian Dupont</a>
</h2>
<p>
In this episode we're joined by Tim Anglade and Kristian Dupont from Realm, a mobile-focused database solution that recently launched support for Xamarin.
<br />
<a href="/blog/e0033-realm.with.tim.anglade.and.kristian.dupont/">Listen Now →</a>
</p>
</li>
<li>
<span class="post-meta">Apr 19, 2016</span>
<h2>
<a class="post-link" href="/blog/e0032-bitrise.with.barnabas.birmacher.and.daniel.balla/">Gone Mobile 32: Bitrise with Barnabas Birmacher and Daniel Balla</a>
</h2>
<p>
In this episode we're joined by Barnabas Birmacher and Daniel Balla to talk about their continunous integration solution for mobile apps. Looking to get started adding CI for your apps? Listen in to find out how!
<br />
<a href="/blog/e0032-bitrise.with.barnabas.birmacher.and.daniel.balla/">Listen Now →</a>
</p>
</li>
<li>
<span class="post-meta">Mar 23, 2016</span>
<h2>
<a class="post-link" href="/blog/e0031-freshmvvm.with.michael.ridland/">Gone Mobile 31: FreshMvvm with Michael Ridland</a>
</h2>
<p>
In this episode we talk to Michael Ridland about his experiences as a Xamarin consultant, and dig into his new MVVM framework made specifically for Xamarin Forms called FreshMvvm!
<br />
<a href="/blog/e0031-freshmvvm.with.michael.ridland/">Listen Now →</a>
</p>
</li>
<li>
<span class="post-meta">Feb 16, 2016</span>
<h2>
<a class="post-link" href="/blog/e0030-hexagonal.app.architecture.with.chris.williams/">Gone Mobile 30: Hexagonal App Architecture with Chris Williams</a>
</h2>
<p>
In this episode we talk to Chris Williams about hexagonal architectures and how it applies to building cross-platform mobile apps. We dig into what the architecture tries to achieve, the benefits you get from approaching software design with it in mind, and how you might already be doing it without even knowing it!
<br />
<a href="/blog/e0030-hexagonal.app.architecture.with.chris.williams/">Listen Now →</a>
</p>
</li>
<li>
<span class="post-meta">Jan 25, 2016</span>
<h2>
<a class="post-link" href="/blog/e0029-Push.Notifications/">Gone Mobile 29: Push Notifications</a>
</h2>
<p>
This episode covers pretty much everything there is to know about Push Notifications. From Apple’s APNS to Google’s C2DM and GCM, learn about what they are and how they work. We also discuss the benefits and disadvantages of roll your own with PushSharp and using services like Azure, Amazon EC2, Urbanairship and Parse.
<br />
<a href="/blog/e0029-Push.Notifications/">Listen Now →</a>
</p>
</li>
<li>
<span class="post-meta">Aug 26, 2015</span>
<h2>
<a class="post-link" href="/blog/e0028-Behind-the-Scenes-of-Xamarin-Forms/">Gone Mobile 28: Behind the Scenes of Xamarin.Forms with Jason Smith</a>
</h2>
<p>
In this episode we're talking about Xamarin.Forms again, but this time around it's a bit different. We're joined once again by Jason Smith, lead developer of Xamarin.Forms, to take a look behind the scenes of Xamarin.Forms. We get into where it came from, inspirations, design decisions, triumps, mistakes, and more. Join us for this peek behind the curtain of creating the Xamarin.Forms framework!
<br />
<a href="/blog/e0028-Behind-the-Scenes-of-Xamarin-Forms/">Listen Now →</a>
</p>
</li>
<li>
<span class="post-meta">Jul 7, 2015</span>
<h2>
<a class="post-link" href="/blog/e0027-Automated-App-Testing-with-Niels-Frydenholm/">Gone Mobile 27: Automated App Testing with Niels Frydenholm</a>
</h2>
<p>
Interested in getting started writing automated tests for your apps but don't know where to start? In this episode we're joined by Niels Frydenholm to talk about how his team set themselves up for success over at eBay.
<br />
<a href="/blog/e0027-Automated-App-Testing-with-Niels-Frydenholm/">Listen Now →</a>
</p>
</li>
<li>
<span class="post-meta">Jun 16, 2015</span>
<h2>
<a class="post-link" href="/blog/e0026-Prism-for-Xamarin-Forms-with-Brian-Lagunas/">Gone Mobile 26: Prism for Xamarin.Forms with Brian Lagunas</a>
</h2>
<p>
Prism has been around for awhile, and now you can take advantage of it in your Xamarin.Forms apps! In this episode we dig into what Prism is, why you'd want to use it in your mobile apps, and how it fits into Xamarin.Forms apps.
<br />
<a href="/blog/e0026-Prism-for-Xamarin-Forms-with-Brian-Lagunas/">Listen Now →</a>
</p>
</li>
<li>
<span class="post-meta">Mar 30, 2015</span>
<h2>
<a class="post-link" href="/blog/e0025-Performance-Comparisons-with-Harry-Cheung/">Gone Mobile 25: Performance Comparisons: Part Two with Harry Cheung</a>
</h2>
<p>
Performance is a huge and important topic, so one episode just wasn't enough. In this episode we talk to Harry Cheung about the performance tests he's been running to see just how all these different mobile app development approaches perform when it comes to raw computation.
<br />
<a href="/blog/e0025-Performance-Comparisons-with-Harry-Cheung/">Listen Now →</a>
</p>
</li>
<li>
<span class="post-meta">Mar 22, 2015</span>
<h2>
<a class="post-link" href="/blog/e0024-Cross-Platform-Performance-Comparisons-with-Kevin-Ford/">Gone Mobile 24: Cross-Platform Performance Comparisons with Kevin Ford</a>
</h2>
<p>
Ever wanted to know how different app frameworks and approaches compare with each other when it comes to performance? In this episode we spoke to Kevin Ford to dig into exactly that. Join us for a look at how the native SDKs, Xamarin, and Cordova compare for various performance measurements.
<br />
<a href="/blog/e0024-Cross-Platform-Performance-Comparisons-with-Kevin-Ford/">Listen Now →</a>
</p>
</li>
<li>
<span class="post-meta">Feb 16, 2015</span>
<h2>
<a class="post-link" href="/blog/e0023-Continuous-Delivery-for-iOS-Apps/">Gone Mobile 23: Continuous Delivery for iOS Apps with Felix Krause</a>
</h2>
<p>
Continuous integration and delivery is commonplace in the web development world, but has been notoriously difficult to achieve with mobile apps. In this episode we talk to Felix Krause about his fastlane tools that aim to solve multiple pain points in iOS development and deployment by automating everything.
<br />
<a href="/blog/e0023-Continuous-Delivery-for-iOS-Apps/">Listen Now →</a>
</p>
</li>
<li>
<span class="post-meta">Jan 26, 2015</span>
<h2>
<a class="post-link" href="/blog/e0022-Designing-and-Consuming-Modern-APIs-with-Darrel-Miller/">Gone Mobile 22: Designing and Consuming Modern APIs with Darrel Miller</a>
</h2>
<p>
When it comes to designing and consuming APIs there is no shortage of approaches out there. In this episode we talk to Darrel Miller about many of these approaches, and ways to design both sides in a modern way to help keep things maintainable and evolvable over time.
<br />
<a href="/blog/e0022-Designing-and-Consuming-Modern-APIs-with-Darrel-Miller/">Listen Now →</a>
</p>
</li>
<li>
<span class="post-meta">Jan 12, 2015</span>
<h2>
<a class="post-link" href="/blog/e0021-Learning-iOS/">Gone Mobile 21: Learning iOS with Reinder de Vries</a>
</h2>
<p>
Learning to write iOS apps can be a daunting task, especially if you've never written any code before. In this episode we're joined by Reinder de Vries to talk about his approach to teaching people how to write iOS apps, and his experiences along the way.
<br />
<a href="/blog/e0021-Learning-iOS/">Listen Now →</a>
</p>
</li>
<li>
<span class="post-meta">Nov 19, 2014</span>
<h2>
<a class="post-link" href="/blog/e0020-Mobile-Web-Performance-with-Tammy-Everts/">Gone Mobile 20: Mobile Web Performance with Tammy Everts</a>
</h2>
<p>
Performance matters, especially when it comes to mobile development. Join us as we talk to Tammy Everts about the ins and outs of mobile web performance!
<br />
<a href="/blog/e0020-Mobile-Web-Performance-with-Tammy-Everts/">Listen Now →</a>
</p>
</li>
<li>
<span class="post-meta">Oct 27, 2014</span>
<h2>
<a class="post-link" href="/blog/e0019-Runscope-with-John-Sheehan/">Gone Mobile 19: Exploring Runscope with John Sheehan</a>
</h2>
<p>
APIs have historically been difficult to debug and monitor, and Runscope was founded to help solve this problem. Join us as we talk to John Sheehan about what Runscope offers, and how developers can leverage it to make API development more enjoyable.
<br />
<a href="/blog/e0019-Runscope-with-John-Sheehan/">Listen Now →</a>
</p>
</li>
<li>
<span class="post-meta">Oct 13, 2014</span>
<h2>
<a class="post-link" href="/blog/e0018-Securing-Mobile-Apps-with-Troy-Hunt/">Gone Mobile 18: Securing Mobile Apps with Troy Hunt</a>
</h2>
<p>
Security is more important today than ever, and mobile apps are no different. Troy Hunt joins us to talk about some common mistakes developers make when developing APIs and apps, and some practical approaches to securing them.
<br />
<a href="/blog/e0018-Securing-Mobile-Apps-with-Troy-Hunt/">Listen Now →</a>
</p>
</li>
<li>
<span class="post-meta">Oct 2, 2014</span>
<h2>
<a class="post-link" href="/blog/e0017-Whats-New-in-iOS-8/">Gone Mobile 17: What's New in iOS8</a>
</h2>
<p>
Join us again for our annual show discussing all the new features in the latest version of iOS! Mike Bluestein joins us once more, and there's lots to talk about!
<br />
<a href="/blog/e0017-Whats-New-in-iOS-8/">Listen Now →</a>
</p>
</li>
<li>
<span class="post-meta">Sep 8, 2014</span>
<h2>
<a class="post-link" href="/blog/e0016-iBeacons/">Gone Mobile 16: iBeacons</a>
</h2>
<p>
iBeacons are an emerging technology with a lot of exciting applications. In this episode we talked to Doug Thompson to dive into what they are, how they're used, and where beacons are heading in the future.
<br />
<a href="/blog/e0016-iBeacons/">Listen Now →</a>
</p>
</li>
<li>
<span class="post-meta">Aug 27, 2014</span>
<h2>
<a class="post-link" href="/blog/e0015-Azure-Mobile-Services/">Gone Mobile 15: Azure Mobile Services</a>
</h2>
<p>
Learn all about Azure Mobile Services from some fine folks at Microsoft. We sit down with Kirill and Yavor to talk about the many features of Azure, specifically relating to mobile!
<br />
<a href="/blog/e0015-Azure-Mobile-Services/">Listen Now →</a>
</p>
</li>
<li>
<span class="post-meta">Jul 28, 2014</span>
<h2>
<a class="post-link" href="/blog/e0014-building-apps-on-the-cheap/">Gone Mobile 14: Building Apps on the Cheap</a>
</h2>
<p>
Not every app has to have a massive budget. Kevin Knoop joins us this episode to talk about his experiences with building apps on the cheap. You'll be surprised how little his House Alarm app costs him to run!
<br />
<a href="/blog/e0014-building-apps-on-the-cheap/">Listen Now →</a>
</p>
</li>
<li>
<span class="post-meta">Jul 14, 2014</span>
<h2>
<a class="post-link" href="/blog/e0013-xamarin-forms/">Gone Mobile 13: Xamarin.Forms</a>
</h2>
<p>
Learn how to build cross platform, native apps using Xamarin.Forms! We talk to Jason Smith, one of the developers of Xamarin.Forms about the product, it's strengths and weaknesses over other MVVM libraries, and how to get started!
<br />
<a href="/blog/e0013-xamarin-forms/">Listen Now →</a>
</p>
</li>
<li>
<span class="post-meta">May 30, 2014</span>
<h2>
<a class="post-link" href="/blog/e0012-AppLinks-are-Riveting/">Gone Mobile 12: AppLinks are Riveting</a>
</h2>
<p>
Find out what exactly AppLinks are, how they work, and how you can use Rivets to add support for them to your own .NET apps.
<br />
<a href="/blog/e0012-AppLinks-are-Riveting/">Listen Now →</a>
</p>
</li>
<li>
<span class="post-meta">May 5, 2014</span>
<h2>
<a class="post-link" href="/blog/e0011-portable-class-libraries-with-james-montemagno/">Gone Mobile 11: Portable Class Libraries (PCL's) with James Montemagno</a>
</h2>
<p>
James Montemagno from Xamarin discusses Portable Class Libraries with us. Learn what PCL's are, how to use them in your Xamarin projects, and what the Advanced PCL or Bait and Switch PCL trick exactly is (hint: use platform specific code with PCL's!).
<br />
<a href="/blog/e0011-portable-class-libraries-with-james-montemagno/">Listen Now →</a>
</p>
</li>
<li>
<span class="post-meta">Mar 25, 2014</span>
<h2>
<a class="post-link" href="/blog/e0010-couchbase-lite/">Gone Mobile 10: Couchbase Lite</a>
</h2>
<p>
Wayne Carter from Couchbase and Zack Gramana from Xamarin talk to us about Couchbase Lite for Mobile.
<br />
<a href="/blog/e0010-couchbase-lite/">Listen Now →</a>
</p>
</li>
<li>
<span class="post-meta">Feb 6, 2014</span>
<h2>
<a class="post-link" href="/blog/e0009-marketing-yourself-with-john-sonmez/">Gone Mobile 9: Marketing Yourself with John Sonmez</a>
</h2>
<p>
John Sonmez talks to us about the importance of building a strong personal brand in software development. John discusses not only why it's important, but how developers can get out there to start marketing themselves and building their brand.
<br />
<a href="/blog/e0009-marketing-yourself-with-john-sonmez/">Listen Now →</a>
</p>
</li>
<li>
<span class="post-meta">Jan 24, 2014</span>
<h2>
<a class="post-link" href="/blog/e0008-ben-bishops-monkey-arms/">Gone Mobile 8: Ben Bishop's Monkey Arms</a>
</h2>
<p>
Ben's been working on an interesting new framework called Monkey Arms which is inspired by Robot Legs for Flash.
<br />
<a href="/blog/e0008-ben-bishops-monkey-arms/">Listen Now →</a>
</p>
</li>
<li>
<span class="post-meta">Dec 19, 2013</span>
<h2>
<a class="post-link" href="/blog/e0007-the-fsharp-is-for-frank-krueger/">Gone Mobile 7: The F# is for Frank Krueger</a>
</h2>
<p>
We force Frank Krueger to talk to us about F#!
<br />
<a href="/blog/e0007-the-fsharp-is-for-frank-krueger/">Listen Now →</a>
</p>
</li>
<li>
<span class="post-meta">Nov 26, 2013</span>
<h2>
<a class="post-link" href="/blog/e0006-jesse-liberty-xamarin-android/">Gone Mobile 6: Jesse Liberty and Xamarin.Android</a>
</h2>
<p>
Jesse Liberty talks to us about his recent ventures into Mobile development with Xamarin.Android!
<br />
<a href="/blog/e0006-jesse-liberty-xamarin-android/">Listen Now →</a>
</p>
</li>
<li>
<span class="post-meta">Nov 4, 2013</span>
<h2>
<a class="post-link" href="/blog/e0005-monogame-with-jonathan-peppers/">Gone Mobile 5: MonoGame with Jonathan Peppers</a>
</h2>
<p>
We sit down with Jonathan Peppers from Hitcents to talk about writing Games using MonoGame and Xamarin for iOS, Android, Windows and more!
<br />
<a href="/blog/e0005-monogame-with-jonathan-peppers/">Listen Now →</a>
</p>
</li>
<li>
<span class="post-meta">Oct 14, 2013</span>
<h2>
<a class="post-link" href="/blog/e0004-tracking-errors-with-raygun/">Gone Mobile 4: Tracking Errors with Raygun</a>
</h2>
<p>
We sit down with John-Daniel Trask and Jeremy Boyd of Mindscape to talk about their Error Reporting service Raygun.io and how it fits in with Mobile and Xamarin apps.
<br />
<a href="/blog/e0004-tracking-errors-with-raygun/">Listen Now →</a>
</p>
</li>
<li>
<span class="post-meta">Oct 1, 2013</span>
<h2>
<a class="post-link" href="/blog/e0003-bettsing-on-reactive/">Gone Mobile 3: Bettsing on Reactive</a>
</h2>
<p>
Paul Betts talks with us about all things Reactive: Reactive Extensions (Rx), Reactive UI (RxUI), and how they fit together in a Microsoft and Xamarin mobile world. Paul also discusses his Akavache and Splat libraries, and his new Live-coding experiment!
<br />
<a href="/blog/e0003-bettsing-on-reactive/">Listen Now →</a>
</p>
</li>
<li>
<span class="post-meta">Sep 20, 2013</span>
<h2>
<a class="post-link" href="/blog/e0002-ios7-loving-the-tint/">Gone Mobile 2: iOS7 Loving the Tint</a>
</h2>
<p>
What's new in iOS7? In this episode, we talk to [Mike Bluestein](http://twitter.com/mikebluestein) from Xamarin to hear his thoughts on some of the new iOS7 API's such as UIKit Dynamics, Sprite Kit, Text Kit and more! We also debate the merits of the new iPhone 5C, and discuss the other new hardware including Touch ID.
<br />
<a href="/blog/e0002-ios7-loving-the-tint/">Listen Now →</a>
</p>
</li>
<li>
<span class="post-meta">Sep 2, 2013</span>
<h2>
<a class="post-link" href="/blog/e0001-hello-world/">Gone Mobile 1: Hello World</a>
</h2>
<p>
Our First episode! Introductions, iOS 7, Chromecast, Microsoft minus Ballmer, Why .NET Failed, Wearable tech, and Leap Motion!
<br />
<a href="/blog/e0001-hello-world/">Listen Now →</a>
</p>
</li>
</ul>
</div>
</div>
</div>
<footer class="site-footer">
<div class="wrapper">
<h2 class="footer-heading">Gone Mobile Podcast</h2>
<div class="footer-col-wrapper">