If
you have a question on how to do something in Perl, or
you need a Perl solution to an actual real-life problem, or
you're unsure why something you've tried just isn't working...
then this section is the place to ask.
However, you might consider asking in the chatterbox first (if you're a
registered user). The response time tends to be quicker, and if it turns
out that the problem/solutions are too much for the cb to handle, the
kind monks will be sure to direct you here.
If I uncomment SSL_verify_mode then it connects, but that seems rather unsafe and may partially defeat the encryption I would guess. I would like to find a way to verify the self-signed certificates here.
WoW! Just realised I haven't been on PM for far too long...where does the time go???
I've not been developing anything new recently as my time has been spent in other parts of the business...
Anyway, enough rambling...
As a bit of a hobby project, I'm trying to make a RaspberryPi power this LCD unit. Pretty much new ground for me, and I'm hoping to learn more about Debian and some of the lower-level Perl modules through this...
I've followed the instructions to get the LCD connected and the C demo program works so I know both the RaspberryPi and the LCD work and are connected together correctly.
So I'm left with several options on how to tackle this...here are some of them I've thought of, no doubt there are others:
The following code seems to show that using "my" in a loop has a noticeable cost. I thought that maybe "it" would "see" how my was nested and just deal with it once. The output is:
0.0232839584350586 my outside
0.0305099487304688 my inside
Very sorry to ask this here, but this is the only place I use. For some reason I can't login to windows after reboot. It doesn't let me login. It doesn't seem to be recording my key strokes, but it finally too me to a login screen for a secondary disk, but it doesn't seem to be seeing my keystrokes. Before that in the main login it didn't see my keystrokes either.
ps. normally, I auto login without passwd etc
UPDATE: Thanks for the responses. I woke up today, unplugged the keyboard and plugged it back in, and it started working.
but this finds pairs of letters. My intent is to match only paired letters, not singular and not three or more.
"caab" should match
"cdaaadc" should not match
The reason is a puzzle I have been making for personal use. More in the nature of expanding my RE chops than anything else. Please let me know if I can provide more information or if there are any solutions to this. Thank you!
I've been away from Perl for almost 3 decades and I have a technichal interview coming for a Perl position.
While I've already did some coding and coming back to write Perl feels comfortable, I wonder if you could enlighten me with some relevant issues for the Perl marketplace nowadays, and of course, provide some links.
Here's a few I've came up with but please feel free to add your own:
Frameworks for web development: what are the most popular ones?
Changes to the language itself
OO Perl?
I'd really appreciate your help on getting back to a language that I've always loved.
TIA,
I have a Text widget in which I need to mark 'invalid' characters by changing their colour. This works except for two cases:
If the char is a newline/return then the whole of the rest of the line in the Text widget has it's colour changed rather than just the single char position after the last word.
I am highlighting space characters with a tag. When the text widget word wraps the text all of the remainder of the line is highlighted as if there were multiple spaces filling the end of the line.
It appears that the text widget is treating all of the white space displayed at the end of each word wrapped line as a single character.
Is this expected? Is this a bug? Is there a way of preventing this?