Skip to content

Instantly share code, notes, and snippets.

View trsneed's full-sized avatar
🤡
Focusing

Tim Sneed trsneed

🤡
Focusing
View GitHub Profile

Keybase proof

I hereby claim:

  • I am trsneed on github.
  • I am trsneed (https://keybase.io/trsneed) on keybase.
  • I have a public key ASAHH13wFTJqeZTFl_2Df4ay9XNCjb1wj3-rOjVYF6zcFQo

To claim this, I am signing this object:

@trsneed
trsneed / Abstract - Xamarin on the Cheap
Last active August 29, 2015 14:06
Xamarin is a powerful toolchain, with a cost, let's figure out how to make it affordable
Titles:
Exploring Xamarin Studio
I can't afford xamarin
Xamarin development for the frugal developer
I would use Xamarin, but it's expensive.
Abstract:
Xamarin is an amzing toolchain, with an intimidating price. If a developer want to use
one of the best IDEs ever created, Visual Studio, they are looking at a $1000 per platform
license. This is a huge fee for any independent developer. However, there is a fantastic
@trsneed
trsneed / Abstract - Proximity
Created August 28, 2014 18:16
Abstract for a talk on Proximity aware iOS and Android apps using Xamarin
Title
Abstract
@trsneed
trsneed / Abstract
Last active August 29, 2015 14:05
An abstract for a talk I would like to give on how we used xamarin forms to build an internal application, off a simple utterance of the words "it would be nice"
Title:
hrm.
Spitballing here:
Xamarin Forms - Answering "It would be nice if..."
Three mobile platforms in an afternoon? No Problem.
Surprise customer request? Xamarin Forms.
Abstract:
"It would be nice if," those magical words customers like to say at the end of a project. In our case
@trsneed
trsneed / gist:9263839
Created February 28, 2014 02:10
Abstracted ProductHeaderValue
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Octokit
{
public class ProductHeaderValue
{
Error: Cannot find module 'readdirp'
at Function.Module._resolveFilename (module.js:338:15)
at Function.Module._load (module.js:280:25)
at Module.require (module.js:364:17)
at require (module.js:380:17)
at Object.<anonymous> (\\100.68.116.99\volume-2-default\d8b3528efb72fb044924\e1f30bb0ab8e4db4adf8a82c32498293\site\wwwroot\node_modules\express-hbs\lib\hbs.js:4:16)
at Module._compile (module.js:456:26)
at Object.Module._extensions..js (module.js:474:10)
at Module.load (module.js:356:32)
at Function.Module._load (module.js:312:12)
@trsneed
trsneed / GetResponseAsyncExtension
Created October 22, 2013 18:46
Get HttpWebResponse asynchronously for windows phone 8, or anything really, but I needed it for windows phone 8
public static Task<HttpWebResponse> GetResponseAsync(this HttpWebRequest request)
{
var taskComplete = new TaskCompletionSource<HttpWebResponse>();
request.BeginGetResponse(asyncResponse =>
{
try
{
HttpWebRequest responseRequest = (HttpWebRequest)asyncResponse.AsyncState;
HttpWebResponse someResponse = (HttpWebResponse)responseRequest.EndGetResponse(asyncResponse);
taskComplete.TrySetResult(someResponse);