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
# Use `carton install` to install these deps | |
requires 'Redis::Fast'; | |
requires 'Data::UUID::LibUUID'; | |
requires 'Time::HiRes'; |
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 | |
project_id=`git config gitlab.project-id` | |
if [ -z "$project_id" ] ; then | |
echo "FATAL: could not find gitlab.project-id on your config" | |
echo "To fix: use 'git config gitlab.project-id ID'" | |
echo " find the project ID in the Settings > Triggers page," | |
echo " in the examples, it is the number in the URL" | |
exit 1 | |
fi |
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 MyClass; | |
use MySetup; | |
use Function::Parameters (); | |
use Moo (); | |
use namespace::sweep (); | |
use Scalar::Util (); | |
use Try::Tiny (); | |
use Import::Into; |
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 ULID; | |
use strict; | |
use warnings; | |
use Exporter; | |
use Crypt::PRNG 'random_bytes'; | |
use Time::HiRes 'time'; | |
use bytes; | |
our @ISA = qw( Exporter ); |
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/perl | |
use 5.008; | |
use strict; | |
use Memoize; | |
# by Aristotle Pagaltzis <http://stackoverflow.com/users/9410/aristotle-pagaltzis> | |
# taken from thread http://stackoverflow.com/questions/223678/git-which-commit-has-this-blob | |
# on 6 june 2010 | |
my $usage = |
OlderNewer