Skip to content

Instantly share code, notes, and snippets.

View claudiosanchez's full-sized avatar
🎯
Focusing

Claudio Sanchez claudiosanchez

🎯
Focusing
View GitHub Profile
{
"access_token": "test",
"accounts": [
{
"_id": "YzzrzBrO9OSzo6BXwAvVuL5dmMKMqkhOoEqeo",
"_item": "aWWVW4VqGqIdaP495QyOSVLN1nzjLwhXaPDJJ",
"_user": "bkkVkMVwQwfYmBMy9jzqHQob9O1KwpFaEyLOE",
"balance": {
"available": 9930,
"current": 2275.58
@claudiosanchez
claudiosanchez / gist:cdbb61bbf17abbb4c42a
Last active August 29, 2015 14:21 — forked from gotjosh/gist:15e4e31fc28e164b1fb9
Mobile.Do Speaker TODO

Mobile.do Speaker TODO list

Hey there! Congratz on getting the Mobile.do speaker crew. In order to get you started here is a simple TODO list of the tasks/deliverables we need from you.

  • A catchy english/spanish Title.
  • We need your slides uploaded to any cloud service of your preference (eg.:http://speakerdeck.com) to publish after the talk.
  • We need your code upload to our Github.
  • An awesome description that describes your talk, would be best to write it in 3rd person. In case you need some inspiration here are a few from our past talks:
  1. En esta iteración de Ruby.do, Rafael George intentará mostrar como podemos mejorar la estructura de nuestras aplicaciones en Ruby on Rails para facilitar el mantenimiento y a su vez otorgar adaptabilidad a futuros cambios. Rafael, demostrará la implementación de patrones utilizados en aplicaciones "production-ready" y como podemos adherirnos a los principios "SOLID".
static string GetCarrierName () { using (var info = new CTTelephonyNetworkInfo ()) { return info.SubscriberCellularProvider.CarrierName; } }
@claudiosanchez
claudiosanchez / Reachability.cs
Created February 7, 2015 19:09
Network Reachability for Xamarin.iOS
using System;
using System.Net;
using Framework.Services.Network;
using MonoTouch.CoreFoundation;
using MonoTouch.SystemConfiguration;
namespace Framework.iOS.Services.Network
{
/// <summary>
/// The reachability utility class.
@claudiosanchez
claudiosanchez / qa_engineer.md
Last active August 29, 2015 14:12
QA Engineer

Megsoft Consulting - Quality Assurance Engineer.

Hello,

Megsoft Consulting Inc is looking for a QA Engineer who is excited about working with new technologies and is looking to leave a mark in products and services used by hundreds of thousands.

The QA Engineer will be helping us in performing tests on the products we are developing while helping improve our process. We are looking to automate most of the testing, so writing code would be a plus.

What are we looking in a Candidate?

Megsoft Consulting - Mobile Developer Intern.

Hello dude,

We are currently expanding, and are looking to bring on another aspiring compadre (or comadre) to Megsoft Consulting Inc. We're a company that has been profitable since day 0; we had an amazing year and continue to grow on a steady pace.

Our quest searching for a passionate and savvy Mobile developer intern has just begun.

The lucky intern will have the responsibility of working in exciting and innovative solutions in the mobile space from one of ours offices or remotely. You'll be expected to not only to writecode but also to help out in other company tasks.

@claudiosanchez
claudiosanchez / gist:10927605
Created April 16, 2014 20:06
Para que Ahmed no se tenga que matar buscando como se hace esto con su IoC Container mal documentado.
public class ComidaMasticadaParaAHmedModule : NinjectModule
{
public override void Load()
{
Bind(typeof(IRepository<>)).To(typeof(Repository<>));
}
}
@claudiosanchez
claudiosanchez / XamarinDev.md
Last active August 29, 2015 13:58 — forked from gotjosh/gist:8105782
Xamarin Mobile Developer position with Megsoft Consulting Inc

Megsoft Consulting - Xamarin Mobile Developer.

Hello dude,

We are currently expanding, and are looking to bring on another compadre (or comadre) to Megsoft Consulting Inc. We're a company that has been profitable since day 0; we had an amazing year and continue to grow on a steady pace.

Our quest searching for a passionate and savvy Mobile developer has just begun.

The lucky developer will have the responsibility of working in exciting and innovative solutions in the mobile space from our office in Santo Domingo, Dominican Republic or remotely (for the right candidate). You'll be expected to not only to write code but also provide your insight on projects and technologies used, as well as taking ownership of the projects you work on.

...
// _repository is a GenericRepository<Villa>.
var villas = _repository
.Get(
q => q.Select(s => new VillaDto {
Id = s.PodId,
Name = s.Name,
Price=s.Price,
@claudiosanchez
claudiosanchez / Binder
Last active August 29, 2015 13:56
A Binding (MVVM style) for Xamarin.iOS. Allows to do stuff like _textbox.Bind("Changed","Text", _=> model.Description, twoWayBinding:true);
using System;
using System.ComponentModel;
using System.Diagnostics;
using System.Linq.Expressions;
using Framework.Binding;
using Framework.ViewModel;
using Framework.iOS.Navigation;