Skip to content

Instantly share code, notes, and snippets.

View deolgurpreet's full-sized avatar

Gurpreet Deol deolgurpreet

View GitHub Profile
@deolgurpreet
deolgurpreet / SPIN-selling.md
Created July 17, 2022 03:03 — forked from dergachev/SPIN-selling.md
SPIN Selling seminar
@deolgurpreet
deolgurpreet / LineEntry.cs
Created January 8, 2018 23:08 — forked from davidtavarez/LineEntry.cs
Xamarin.Forms Entry just with bottom border.
using Xamarin.Forms;
namespace YOUTNAMESPACE
{
public class LineEntry : Entry
{
public static readonly BindableProperty BorderColorProperty =
BindableProperty.Create<LineEntry, Color> (p => p.BorderColor, Color.Black);
public Color BorderColor {
@deolgurpreet
deolgurpreet / Program.cs
Created June 9, 2017 15:40 — forked from jamesmanning/Program.cs
simple TCP client and server
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net.Sockets;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApplication2
{
class Program
@deolgurpreet
deolgurpreet / index.html
Created November 8, 2016 01:09 — forked from chrisveness/index.html
JavaScript AES client/server interoperability test
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>AES client/server test</title>
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/normalize/3.0.3/normalize.min.css">
<style>
body { font-size: 80%; padding: 1em; }
form { margin-top: 2em; }
label { display: inline-block; width: 6em; }
@deolgurpreet
deolgurpreet / comparison.md
Created October 11, 2016 23:41 — forked from makmanalp/comparison.md
Angular vs Backbone vs React vs Ember notes

Note: these are pretty rough notes I made for my team on the fly as I was reading through some pages. Some could be mildly inaccurate but hopefully not terribly so. I might resort to convenient fiction & simplification sometimes.

My top contenders, mostly based on popularity / community etc:

  • Angular
  • Backbone
  • React
  • Ember

Mostly about MVC (or derivatives, MVP / MVVM).