I introduce myself: I am Galician and citizen of the World. Proud father. I love science (specially astronomy), technology, nature and photography. I play padel and surf and whenever I can I escape with my camper van.
You’re right. It was taken a day before but it gave me an error when uploading the photo (it happens to me with some frequency in Lemmy lately) and it stayed in the pending queue
I agree. It is more a curiosity thing than a real life project. But it helps to show the potential of this SoCs and it is a good practice for a lot of things.
I used an iPhone XS
Thanks!
Thanks a lot!
Hi!
nice photo 👏🏻 I have just downloaded Siril, and I want to do something similar to this, but I have two Siril related questions because I think they are a lot of photos to stack and I am not sure my Macbook can do the job:
Thanks in advance!
I think it is an ideal traveling companion… small, light but good enough to enjoy the night sky
Thanks! I am saving for a 9-10" newtonian with a EQ6 mount
Thanks! I will try it. I was an user of this sw but recently I have moved to Pyto as it has more libraries (OpenCV, etc), pip support and a newer Python version. Pythonista has its pros too.
I find it very interesting and I want to do one with my kids. The guide is good from a step by step point of view about how to make one, but I think a couple of examples about what kind of data can someone get with it and what can someone expect to “view” could be very helpfull too
After preview it will be a paid subscription additional to Office365, the same strategy as Office Copilot. I hate this policy of pay for a product then still paid for more functionalities… at the end of the year you will have paid a lot.
Microsoft says Python in Excel will be included in a Microsoft 365 subscription during the preview, but “some functionality will be restricted without a paid license” after the preview ends.
I fully agree with the post. Except for a fast prototyping or a short personal script where it could be not necessary, type hint is a must. The subject is not only to guarantee that the program now runs without errors, but it will be still working right in the future too, even after a developer (either the original or other) make changes to the code.
Hi,
I have used goto instruction a lot when I started to program in Basic ( an Amstrad CPC 🥹). In this context goto had logic. But in modern languages like python I think it is a very bad idea:
Regards
You can use global variables, it is true, but I prefer singleton because I have all config variables and logic encapsulated in a class. The first time the singleton object is created it reads all the config variables from a file, and with its methods get and set manages them. The Config class doesn’t know the parameters names of the config file neither the number, it dynamically reads the file and creates the attributes, so It is a very reusable code that when you program using OOP is a more natural way than implementing like a module.
Related to this, I group config variables by sections so it is more clearly for me, then the singleton object dynamically creates an array for each section, and a variable into the array for every variable in this section of the config file. Access to the config info is as easy like this:
conf = Config()
conf.get('DB', 'server')
conf.get('DB', 'login')
conf.get('DB', 'password')
I use a singleton class called Config (some times I use it as a Cache too)
Singleton pattern: https://www.geeksforgeeks.org/singleton-pattern-in-python-a-complete-guide/
Config class using Singleton pattern: https://charlesreid1.github.io/a-singleton-configuration-class-in-python.html
Hi! Other great book is “Fluent Python”. I think PCC could be better as first contact and then this one as next step.
https://www.oreilly.com/library/view/fluent-python/9781491946237/
Thanks!