ctwayfarer’s Reviews > Beginning Perl > Status Update
ctwayfarer
is on page 42 of 752
"At its core, there’s nothing mysterious about programming. Take some data and do something with it."
— May 25, 2017 06:23AM
Like flag
ctwayfarer’s Previous Updates
ctwayfarer
is on page 267 of 752
The Unicode standard is a way to describe every character in every writing system with a single
number. This number is called a code point and it’s composed of one or more octets. We use the
word octet to refer to 8 bits, so all characters that can be represented by the numbers 0 to 255 take
up 1 octet of space.
— Aug 13, 2017 07:30PM
number. This number is called a code point and it’s composed of one or more octets. We use the
word octet to refer to 8 bits, so all characters that can be represented by the numbers 0 to 255 take
up 1 octet of space.
ctwayfarer
is on page 266 of 752
Typeglobs and fileglobs are not the same thing.
— Aug 13, 2017 07:26PM
ctwayfarer
is on page 260 of 752
Perl has a handy module named B::Deparse. The B::
modules are backend modules and let you see some things about Perl normally
not visible.
— Aug 13, 2017 07:04PM
modules are backend modules and let you see some things about Perl normally
not visible.
ctwayfarer
is on page 195 of 752
The Try::Tiny module provides a try/catch/finally system for Perl.
— Jul 21, 2017 05:31AM
ctwayfarer
is on page 187 of 752
It’s strongly recommended that you use an explicit return on all but the simplest subroutines because in a complicated subroutine, explicit return statements clarify flow control.
— Jul 19, 2017 05:31AM
ctwayfarer
is on page 183 of 752
Variable declaration happens at compile time before the code is run. However, variable
assignment happens at runtime
— Jul 19, 2017 04:30AM
assignment happens at runtime
ctwayfarer
is on page 180 of 752
It’s far better to have your program die horribly than to return bad data.
— Jul 18, 2017 08:18PM
ctwayfarer
is on page 159 of 752
You often see Perl programmers refer to array references as arefs.
Hash references are hrefs. Subroutines (Chapter 7) are subrefs or coderefs. Sometimes you can just say ref when you are talking about references in general.
— Jul 18, 2017 10:16AM
Hash references are hrefs. Subroutines (Chapter 7) are subrefs or coderefs. Sometimes you can just say ref when you are talking about references in general.
ctwayfarer
is on page 157 of 752
In Perl, you tend to care more about how you organize your data than the kinds of data you have. As a result, Perl enables rich, complex data structures and imposes few limits on how you can organize your data. When you get used to the syntax, you may be pleasantly surprised. Memory management is handled for you; there is no pointer math to get wrong; and there are no external libraries to choose from and load.
— Jul 18, 2017 06:06AM

