This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- git-rebase--interactive.old 2011-06-11 13:17:48.000000000 +0400 | |
+++ git-rebase--interactive 2012-04-17 12:44:09.000000000 +0400 | |
@@ -951,7 +951,7 @@ | |
REVISIONS=$ONTO...$HEAD | |
SHORTREVISIONS=$SHORTHEAD | |
fi | |
- git rev-list $MERGES_OPTION --pretty=oneline --abbrev-commit \ | |
+ git rev-list $merges_option --pretty=">%h (%an <%ae>) %s"\ | |
--abbrev=7 --reverse --left-right --topo-order \ | |
$REVISIONS | \ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
[ | |
{ "keys": [":",":"], "command": "insert_snippet", "args": {"contents": "∷"}, "context": | |
[ | |
{ "key": "selector", "operator": "equal", "operand": "source.haskell" } | |
] | |
}, | |
{ "keys": ["-",">"], "command": "insert_snippet", "args": {"contents": "→"}, "context": | |
[ | |
{ "key": "selector", "operator": "equal", "operand": "source.haskell" } | |
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Inductive bool : Type := | |
| true : bool | |
| false : bool. | |
Class Monoid (A : Type) := | |
{ | |
empty : A ; | |
append : A -> A -> A ; | |
left_neutrality : forall x, append empty x = x ; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Data.Monoid hiding (Sum) | |
class Monoid a => IntWrapper a where toInt :: a -> Int | |
newtype Sum = Sum Int deriving (Show, Eq) | |
instance IntWrapper Sum where toInt (Sum n) = n | |
instance Monoid Sum where | |
mempty = Sum 0 | |
mappend (Sum a) (Sum b) = Sum (a + b) | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
namespace UnicodeRulez | |
{ | |
class Program | |
{ | |
static void Main() | |
{ | |
Console.WriteLine("Cheese".StartsWith("C͏ͿԤԥԨԩԪԫԬԭԮԯՠֈ֍֎֏ׯ؝ـ߽߾߿ࡠࡡࡢࡣࡤࡥࡦࡧࡨࡩࡪࡰࡱࡲࡳࡴࡵࡶࡷࡸࡹࡺࡻࡼࡽࡾࡿࢀࢁࢂࢃࢄࢅࢆࢇ࢈ࢉࢊࢋࢌࢍࢎ࢙࢚࢛࢘࢜࢝࢞࢟ࢠࢡࢢࢣࢤࢥࢦࢧࢨࢩࢪࢫࢬࢭࢮࢯࢰࢱࢲࢳࢴࢵࢶࢷࢸࢹࢺࢻࢼࢽࢾࢿࣀࣁࣂࣃࣄࣅࣆࣇࣈࣉࣰࣱࣲ࣏࣐࣑࣒࣓ࣣࣦࣩ࣭࣮࣯ࣶࣹࣺ࣊࣋࣌࣍࣎ࣔࣕࣖࣗࣘࣙࣚࣛࣜࣝࣞࣟ࣠࣡ࣤࣥࣧࣨ࣪࣫࣬ࣳࣴࣵࣷࣸࣻࣼࣽࣾࣿऀॸঀ৻ৼ৽৾੶૰ૹૺૻૼ૽૾૿୕ఀఄఴ఼ౚౝ౷ಀಁ಄ೝೳഀഁഄ഻഼൏ൔൕൖ൘൙൚൛൜൝൞ൟ൶൷൸ඁ෦෧෨෩෪෫෬෭෮෯ຆຉຌຎຏຐຑຒຓຘຠຨຩຬ຺໌໎ໞໟჇჍჽჾჿᏵᏸᏹᏺᏻᏼᏽᛱᛲᛳᛴᛵᛶᛷᛸᜍ᜕ᜟ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using Microsoft.CodeAnalysis; | |
using Microsoft.CodeAnalysis.CSharp; | |
using Microsoft.CodeAnalysis.CSharp.Syntax; | |
using Microsoft.CodeAnalysis.Text; | |
using System.Collections.Generic; | |
using System.IO; | |
using System.Linq; | |
namespace NetStandardCleanup |