Skip to content

Instantly share code, notes, and snippets.

View omatrot's full-sized avatar

Olivier MATROT omatrot

View GitHub Profile
@omatrot
omatrot / Class.hbs
Created September 22, 2021 12:30
c# handlebars templates for trackable entities
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated from a template.
//
// Manual changes to this file may cause unexpected behavior in your application.
// Manual changes to this file will be overwritten if the code is regenerated.
//
//
//
//
@omatrot
omatrot / ViewController.cs
Created March 23, 2020 10:22
Xamarin.iOS version of the code for this amazing tutorial about Making Programmatic Auto Layout Easy through Extensions
using System;
using CoreGraphics;
using UIKit;
namespace testlayout
{
public partial class ViewController : UIViewController
{
public ViewController(IntPtr handle) : base(handle)
{
@omatrot
omatrot / Class.hbs
Last active September 22, 2021 12:31
Dcerialize (Typescript) Trackable Entities Class template
{{> imports}}
export class {{class}} extends TrackableEntity {
{{{> properties}}}
{{{> constructor}}}
}