# ~/.gitconfig
[merge]
tool = diffview
[mergetool]
prompt = false
This file contains hidden or 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
| #!/usr/bin/env perl | |
| # These lines enable newer Perl features (like 'say'), and encourage | |
| # good coding practices. | |
| use v5.10; | |
| use strict; | |
| use warnings; | |
| use autodie; | |
| # Our script will search for strings in the following form: |
This file contains hidden or 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
| package Mojo::JSON::Patch; | |
| use Mojo::Base 'Mojo::JSON::Pointer'; | |
| use Carp 'croak'; | |
| use Mojo::Path; | |
| sub set { | |
| my $self = shift; | |
| my $path = Mojo::Path->new(shift); | |
| my $val = shift; |
Subject: What I want for Christm^W the QA hackathon
Date: Fri, 30 Jan 2015 12:20:46 +0100
From: Peter Rabbitson <rabbit@rabbit.us>
To: { about 35 people, various stakeholders around Perl and CPAN }
(This mail is addressed to a lot of people, mainly to the list of current participants, and then to some extra folks who I think ought to be in Berlin anyway, and even some more people on BCC. Sorry for taking your collective time)
Greetings!
This file contains hidden or 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
| #!/bin/sh | |
| # | |
| # The MIT License | |
| # | |
| # Copyright 2014-2017 Jakub Jirutka <jakub@jirutka.cz>. | |
| # | |
| # Permission is hereby granted, free of charge, to any person obtaining a copy | |
| # of this software and associated documentation files (the "Software"), to deal | |
| # in the Software without restriction, including without limitation the rights | |
| # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
This file contains hidden or 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
| #!/bin/sh | |
| export HOME="/home/me" | |
| export PATH="$HOME/.plenv/bin:$PATH" | |
| eval "$(plenv init -)" | |
| cd $HOME/app | |
| exec carton exec -- "$1" |