Skip to content

Instantly share code, notes, and snippets.

View jona04's full-sized avatar
🏠
Working from home

Jonatas Oliveira Lima da Silva jona04

🏠
Working from home
  • Teresina, Brazil
View GitHub Profile
@alfeugds
alfeugds / CurrencyConverter.cs
Last active July 13, 2023 06:01
Xamarin Forms Currency Mask for Entry fields
using System;
using System.Globalization;
using System.Text.RegularExpressions;
using Xamarin.Forms;
namespace MyProject.Util
{
/// <summary>
/// Converter for using in Entry fields for masked input of currency.
/// <para>The binded property must be of type decimal, and must invoke the PropertyChangedEventArgs event whenever the value is changed, so that the desired mask behavior is kept.</para>
@fernandodebrando
fernandodebrando / Dockerfile
Created July 10, 2016 03:54
Criando um ambiente de desenvolvimento PHP com Docker Compose
FROM php:5.6-apache
RUN docker-php-ext-install mysqli
@staltz
staltz / introrx.md
Last active May 24, 2025 19:53
The introduction to Reactive Programming you've been missing