Skip to content

Instantly share code, notes, and snippets.

View pcostarg's full-sized avatar

Pedro Costa pcostarg

  • Findmore
  • Lisbon, Portugal
View GitHub Profile
@gboudreau
gboudreau / AuthyToOtherAuthenticator.md
Last active June 27, 2024 03:46 — forked from Ingramz/AuthyToOtherAuthenticator.md
Export TOTP tokens from Authy
@schuster-rainer
schuster-rainer / RelayCommand.cs
Created May 9, 2012 21:17
Implementation from Josh Smith of the RelayCommand
//http://msdn.microsoft.com/en-us/magazine/dd419663.aspx#id0090030
public class RelayCommand : ICommand
{
#region Fields
readonly Action<object> _execute;
readonly Predicate<object> _canExecute;
#endregion // Fields