Also, it is very easy to filter or ignore it.
Also, it is very easy to filter or ignore it.
Also, it is very easy to filter or ignore it.
I'm going to try out something, let's see what happens... next Saturday (2025-03-29) and possibly on some other Saturdays after that. I'm going to host an online space where I show something about Creative Coding with #Python and #py5. I'm calling it "Python Creative Coding Free Walking Tour". I'll also do some "py5 Office Hours", Q&A and on-boarding.
It will be free, and I'll accept donations, just like the free walking tour we have showing off nice spots of São Paulo for tourists. I hope it will be even better than that: as I studied architecture I find the tour guide's explanations a bit over the top and sometimes missing the point, but maybe mine will also be an over the top creative coding tour, who knows? you'll have to judge by yourselves.
The first, "walking tour" part will be from 11:00AM BRT (UCT -3) to 12:00 and then, the second, "office hours" part, will be from 12:15 to 13:00, when people will be able to ask me anything about py5 and I'll try to answer to the best of my knowledge, it will also be an opportunity to get help setting up your tools/environment in order to take your first steps drawing with code.
- To get the video-conference link, send me a DM or fill this form: https://form.jotform.com/Alexandre_Villares/python-creative-coding-walking-tour
I'm going to try out something, let's see what happens... next Saturday (2025-03-29) and possibly on some other Saturdays after that. I'm going to host an online space where I show something about Creative Coding with #Python and #py5. I'm calling it "Python Creative Coding Free Walking Tour". I'll also do some "py5 Office Hours", Q&A and on-boarding.
It will be free, and I'll accept donations, just like the free walking tour we have showing off nice spots of São Paulo for tourists. I hope it will be even better than that: as I studied architecture I find the tour guide's explanations a bit over the top and sometimes missing the point, but maybe mine will also be an over the top creative coding tour, who knows? you'll have to judge by yourselves.
The first, "walking tour" part will be from 11:00AM BRT (UCT -3) to 12:00 and then, the second, "office hours" part, will be from 12:15 to 13:00, when people will be able to ask me anything about py5 and I'll try to answer to the best of my knowledge, it will also be an opportunity to get help setting up your tools/environment in order to take your first steps drawing with code.
- Update: to get the video-conference link, visit https://hackmd.io/@villares/python-creativecoding-tour
versão narrada: https://www.youtube.com/watch?v=Iiz3kY9ZuJA
versão narrada: https://www.youtube.com/watch?v=Iiz3kY9ZuJA
Is it working now?
I'd say again that perhaps the DMs could be stored in another .txt, but anyway I'd like to try it.
More news coming soon.
#twtxt
More news coming soon.
#twtxt
A pointer is an indirection. At a lower level, when you have some chunk of memory, you can have some actual values sitting in there, ready for direct use. A pointer, on the other hand, points to some other location where to look for the values one's actually after. Following that pointer is also called dereferencing the pointer.
I can't come up with a good real-world example, so this poor comparison has to do. It's a bit like you have a book (the real value that is being pointed to) and an ISBN referencing that book (the pointer). So, instead of sending you all these many pages from that book, I could give you just a small tag containing the ISBN. With that small piece of information, you're able to locate the book. Probably a copy of that book and that's where this analogy falls apart.
In contrast to that flawed comparision, it's actually the other way around. Many different pointers can point to the same value. But there are many books (values) and just one ISBN (pointer).
The pointer's target might actually be another pointer. You typically then would follow both of them. There are no limits on how long your pointer chains can become.
One important property of pointers is that they can also point into nothingness, signalling a dead end. This is typically called a null pointer. Following such a null pointer calls for big trouble, it typically crashes your program. Hence, you must never follow any null pointer.
Pointers are important for example in linked lists, trees or graphs. Let's look at a doubly linked list. One entry could be a triple consisting of (actual value, pointer to next entry, pointer to previous entry).
_______________________
/ ________\_______________
↓ ↓ | \
+---+---+---+ +---+---+-|-+ +---+---+-|-+
| 7 | n | x | | 23| n | p | | 42| x | p |
+---+-|-+---+ +---+-|-+---+ +---+---+---+
| ↑ | ↑
\_______/ \_______/
The "x" indicates a null pointer. So, the first element of the doubly linked list with value 7 does not have any reference to a previous element. The same is true for the next element pointer in the last element with value 42.
In the middle element with value 23, both pointers to the next (labeled "n") and previous (labeled "p") elements are pointing to the respective elements.
You can also see that the middle element is pointed to by two pointers. By the "next" pointer in the first element and the "previous" pointer in the last element.
That's it for now. There are heaps ;-) more things to tell about pointers. But it might help you a tiny bit.______________________________________________
@prologic I see this with the scouts. Luckily, not at work. But at work, I'm surrounded by techies.
@movq Oh my goodness! I'm so glad that I don't have to deal with that in my family. But yeah, I guess you're onto something with your theory. This article is also quite horrific. O_o
fun run... broke it up in 5km segments. around 14 miles in started to just take it a bit easier because the legs just got a bit tired. pretty good for crap sleep and/or rest.
#running
fun run... broke it up in 5km segments. around 14 miles in started to just take it a bit easier because the legs just got a bit tired. pretty good for crap sleep and/or rest.
#running
fun run... broke it up in 5km segments. around 14 miles in started to just take it a bit easier because the legs just got a bit tired. pretty good for crap sleep and/or rest.
#running
People are less and less exposed to “low-level” details like this. There was also this story in 2021 about the concept of a “file”: https://www.theverge.com/22684730/students-file-folder-directory-structure-education-gen-z
People are less and less exposed to “low-level” details like this. There was also this story in 2021 about the concept of a “file”: https://www.theverge.com/22684730/students-file-folder-directory-structure-education-gen-z
I don’t intend to do much with Win95. I just want to be able to boot it, if I want to check how certain things worked or looked in that version. The purpose of this really is to be an archeological digsite.
[](https://movq.de/v/9200de7e24/a.ff.jpg)
[](https://movq.de/v/9200de7e24/b.ff.jpg)
I don’t intend to do much with Win95. I just want to be able to boot it, if I want to check how certain things worked or looked in that version. The purpose of this really is to be an archeological digsite.
[](https://movq.de/v/9200de7e24/a.ff.jpg)
[](https://movq.de/v/9200de7e24/b.ff.jpg)
https://github.com/ZachGoldberg/Startup-CTO-Handbook/blob/main/StartupCTOHandbook.md
https://github.com/ZachGoldberg/Startup-CTO-Handbook/blob/main/StartupCTOHandbook.md
This wasn't the case six, seven years ago, everybody had some "real" username. Even non-techies. It looks like some "common knowledge" is getting lost. Strange. Very weird. It trips me every time I see it.
Have you experienced something similar?
Víspera de lunes. ⌘ Read more****
>
> In 2012, Prabhakar joined Google after severe funding cuts in Yahoo!'s research division.[19] In 2018, he was > put in charge of Ads and Commerce at Google and in 2020 his scope was expanded to include Search, Geo, and Assistant.[20] [21]
>
> In 2024, he transitioned to the role of Chief Technologist at Google.[2]
The "idiossINcrasias" series from the ANTI-DEMOS-CRACIA label starts in June!
It was an ill-kept secret: kokori had the honor of being invited to kickstart this series with the also Portuguese band "Floating Ashes".
Starting June, ADC will release a series of "idiossINcracies", a special, limited CD collection, where each volume will showcase two musical projects with five songs from each.
The first volume, to be released on the 16th of June, joins Floating Ashes and kokori, and from this moment on you can already get a sample of it with one track from each project, on the label's bandcamp:
https://anti-demos-cracia.bandcamp.com/album/idiossincrasia-vol-1
Being ½ #kokori I'm suspect, but I agree with the label when they state that "this series promises to be a valuable addition to collectors and followers of experimental and alternative music."
👉 reservations can be made by sending me a message.
#music #ADC #kokori #FloatingAshes #CD #ADC139JUN2025

The "idiossINcrasias" series from the ANTI-DEMOS-CRACIA label starts in June!
It was an ill-kept secret: kokori had the honor of being invited to kickstart this series with the also Portuguese band "Floating Ashes".
Starting June, ADC will release a series of "idiossINcracies", a special, limited CD collection, where each volume will showcase two musical projects with five songs from each.
The first volume, to be released on the 16th of June, joins Floating Ashes and kokori, and from this moment on you can already get a sample of it with one track from each project, on the label's bandcamp:
https://anti-demos-cracia.bandcamp.com/album/idiossincrasia-vol-1
Being ½ #kokori I'm suspect, but I agree with the label when they state that "this series promises to be a valuable addition to collectors and followers of experimental and alternative music."
👉 reservations can be made by sending me a message.
#music #ADC #kokori #FloatingAshes #CD #ADC139JUN2025

#documentfreedomday2025 #DocumentFreedomDay #ECTL *
#documentfreedomday2025 #DocumentFreedomDay #ECTL *
"Programa Eleitoral 2025 - Oportunidade para a Soberania Digital?"
https://ansol.org/noticias/2025-03-21-programa-eleitoral/
"Programa Eleitoral 2025 - Oportunidade para a Soberania Digital?"
https://ansol.org/noticias/2025-03-21-programa-eleitoral/
Yeah, I should revert that and try to figure out which programs misbehaved. But that's something for future Lyse. 8-) Right now, I just redefine
TERM
in my Makefile when the USER
happens to be me.
only needed 8 and miscalculated a bit so could not do the whole park. such a nice morning.
#running
only needed 8 and miscalculated a bit so could not do the whole park. such a nice morning.
#running
only needed 8 and miscalculated a bit so could not do the whole park. such a nice morning.
#running
No confundáis el amor con la pereza. ⌘ Read more****