Beyond the warm, fuzzy feelings folks get by supporting the work I do, here's a quick list (with handy-dandy links) of some of the exclusives and perks you get when becoming a Supporter here at Lunduke.Locals.com:
-- Issue #1 - https://lunduke.locals.com/post/235263/the-lunduke-journal-issue-1
-- Issue #2 - https://lunduke.locals.com/post/258254/the-lunduke-journal-issue-2
-- Issue #3 - https://lunduke.locals.com/post/284255/the-lunduke-journal-issue-3
Unlimited Access to The House of Lunduke BBS:
https://lunduke.locals.com/post/264191/the-house-of-lunduke-bbs-is-back-on-line
Awesome Masculinity, Computers, & You:
https://lunduke.locals.com/upost/305439/awesome-masculinity-computers-you
Linux Sucks 2019 - "The Lost Recordings":
https://lunduke.locals.com/post/87413/linux-sucks-2019-the-lost-recordings
Linux Sucks 2016 - "The Commentary Track":
...
LBC (the cryptocurrency used by LBRY / Odysee) is over 13 cents (USD)! Crikey!
May not seem like much... but it was near 2 cents not that long ago. And they give LBC out like candy as rewards for using different features while logged in. Encourage folks to use it and explore and whatnot.
Boy. I tell ya!
Those 1 LBC tips really add up! WAY higher earnings than I was seeing on YouTube.
Only downside is I use these LBC tips as part of my income. So I cash out a chunk every month. Wish I could save more of them. They keep friggin' going up!
Seriously. Highly recommend signing up if you haven't already.
Use this link. Cuz it gives me a few extra LBC as a bonus. I like bonuses.
Also if any of you have Odysee / LBRY channels... post em here! I'd love to see em!
The not so good way to do things in Python:
>>> a = [['']3]3
>>> a
[['', '', ''], ['', '', ''], ['', '', '']]
>>> a[1][0] = 'X'
>>> a
[['X', '', ''], ['X', '', ''], ['X', '', '']]
And the good one:
>>> a = [['']*3 for i in range(3)]
>>> a
[['', '', ''], ['', '', ''], ['', '', '']]
>>> a[1][0] = 'X'
>>> a
[['', '', ''], ['X', '', ''], ['', '', '']]
>>>