See also: https://github.com/vbauer/java-blogs
- Androcid http://www.androcid.com
- Androidized http://www.androidized.com
- Androinica http://androinica.com
// | |
// Regular Expression for URL validation | |
// | |
// Author: Diego Perini | |
// Updated: 2010/12/05 | |
// License: MIT | |
// | |
// Copyright (c) 2010-2013 Diego Perini (http://www.iport.it) | |
// | |
// Permission is hereby granted, free of charge, to any person |
See also: https://github.com/vbauer/java-blogs
using Newtonsoft.Json; | |
using System; | |
using System.Collections.Generic; | |
namespace ConsoleApp1 | |
{ | |
public class DictionaryConverter : JsonConverter | |
{ | |
private IEqualityComparer<string> _comparer = StringComparer.OrdinalIgnoreCase; | |
private readonly bool _considerEverythingAsString; |
using Newtonsoft.Json; | |
using System; | |
using System.Collections.Generic; | |
using Flurl; | |
namespace ConsoleApp1 | |
{ | |
public class Launcher | |
{ | |
public Launcher() |
List just aliases | |
$ git config --get-regexp alias | |
List all config parameters | |
$ git config --list |