Skip to content

Instantly share code, notes, and snippets.

View zoffixznet's full-sized avatar
💭
😂

Zoffix Znet zoffixznet

💭
😂
View GitHub Profile
@zoffixznet
zoffixznet / query
Created July 13, 2018 12:17 — forked from Whateverable/query
greppable6
if[^{]+(?<!\!)=(?!=)[^{]+\{
@zoffixznet
zoffixznet / gist:a214216441c8f6e59d6d64184acbf57f
Last active May 18, 2016 19:40 — forked from dogbert17/gist:5c943bf4448a2ca8f5182ed48a950ac7
Trying to document IO::Path methods 'parent' and 'child'
=head2 method parent
method parent(IO::Path:D: --> IO::Path)
Removes the last portion of the path and returns the result as a new C<IO::Path>.
my $io = IO::Path.new( "/etc/passwd" );
say $io.parent; # "/etc".IO
=head2 method child