Re: SDL 2 code to put into a module
Hello, On Tue, Nov 07, 2017 at 07:11:32PM +0200, Shlomi Fish wrote: > > thanks for your contribution. > > 1. Does it have a > http://perl-begin.org/tutorials/bad-elements/#version_control > repo? > > 2. See > http://www.catb.org/esr/writings/homesteading/homesteading/ar01s13.html . I've put my game kit code on github, so you can follow it there, it compiles now, the adress is : https://github.com/theholyghost/holly6src Thanks for helping out, Holly
Re: SDL 2 code to put into a module
Hi Holly, On Wed, 8 Nov 2017 10:38:08 +0100 The Holy Ghost wrote: > Hello, > > On Tue, Nov 07, 2017 at 07:11:32PM +0200, Shlomi Fish wrote: > > > > thanks for your contribution. > > > > 1. Does it have a > > http://perl-begin.org/tutorials/bad-elements/#version_control repo? > > > > 2. See > > http://www.catb.org/esr/writings/homesteading/homesteading/ar01s13.html . > > I've put my game kit code on github, so you can follow it there, it compiles > now, the adress is : https://github.com/theholyghost/holly6src > > Thanks for helping out, > Holly Thanks! That put aside, the README has trailing space and its grammar is bad. Perhaps see this link for some inspiration and insights: https://github.com/shlomif/Freenode-programming-channel-FAQ/blob/master/FAQ.mdwn#what-are-some-best-practices-in-programming-that-i-should-adopt Regards, Shlomi -- - Shlomi Fish http://www.shlomifish.org/ Beginners Site for the Vim text editor - http://vim.begin-site.org/ He had found a Nutri-Matic machine which had provided him with a plastic cup filled with a liquid that was almost, but not quite, entirely unlike tea. — https://en.wikiquote.org/wiki/The_Hitchhiker%27s_Guide_to_the_Galaxy Please reply to list if it's a mailing list post - http://shlom.in/reply .
Re: SDL 2 code to put into a module
Shlomi, perhaps The Holy Ghost takes Pull Requests? Just saying "grammar is bad” is a bit meagre, and just posting a link to a tl;dr document is not really helping. Fixing cases of what you consider to be bad grammar, would be more helpful, I think. Kind regards, Liz === > On 8 Nov 2017, at 11:14, Shlomi Fish wrote: > > Hi Holly, > > On Wed, 8 Nov 2017 10:38:08 +0100 > The Holy Ghost wrote: > >> Hello, >> >> On Tue, Nov 07, 2017 at 07:11:32PM +0200, Shlomi Fish wrote: >>> >>> thanks for your contribution. >>> >>> 1. Does it have a >>> http://perl-begin.org/tutorials/bad-elements/#version_control repo? >>> >>> 2. See >>> http://www.catb.org/esr/writings/homesteading/homesteading/ar01s13.html . >> >> I've put my game kit code on github, so you can follow it there, it compiles >> now, the adress is : https://github.com/theholyghost/holly6src >> >> Thanks for helping out, >> Holly > > Thanks! > > That put aside, the README has trailing space and its grammar is bad. Perhaps > see this link for some inspiration and insights: > > https://github.com/shlomif/Freenode-programming-channel-FAQ/blob/master/FAQ.mdwn#what-are-some-best-practices-in-programming-that-i-should-adopt > > Regards, > > Shlomi > > > > -- > - > Shlomi Fish http://www.shlomifish.org/ > Beginners Site for the Vim text editor - http://vim.begin-site.org/ > > He had found a Nutri-Matic machine which had provided him with a plastic cup > filled with a liquid that was almost, but not quite, entirely unlike tea. >— https://en.wikiquote.org/wiki/The_Hitchhiker%27s_Guide_to_the_Galaxy > > Please reply to list if it's a mailing list post - http://shlom.in/reply .
Re: SDL 2 code to put into a module
On Wed, Nov 08, 2017 at 12:14:41PM +0200, Shlomi Fish wrote: > Hi Holly, > > That put aside, the README has trailing space and its grammar is bad. Perhaps > see this link for some inspiration and insights: The trailing spaces are gone now. Best regards, Holly
[perl #132416] Symbols in nested packages not found in some cases
# New Ticket Created by Alex K- # Please include the string: [perl #132416] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=132416 > > perl6 -v This is Rakudo version 2017.10 built on MoarVM version 2017.10 implementing Perl 6.c. > perl6 -e 'package FOO { package BAR { package FOO::BAR { our $foobar = 42 }}}; say $FOO::BAR::FOO::BAR::foobar; say FOO::BAR::FOO::BAR.WHAT;' (Any) Could not find symbol '&BAR' in block at -e line 1 > perl6 -e 'package FOO { package BAR { package GOO::BAR { our $foobar = 42 }}}; say $FOO::BAR::GOO::BAR::foobar; say FOO::BAR::GOO::BAR.WHAT;' 42 (BAR) > perl6 -e 'package FOO::BAR::FOO::BAR { our $foobar=42; }; say $FOO::BAR::FOO::BAR::foobar; say FOO::BAR::FOO::BAR.WHAT;' 42 (BAR)