All Questions
2 questions
4
votes
2
answers
536
views
What algo/design pattern do i need to keep limited time series data constantly updated?
I'm a hobbyist coder; never worked professionally. I am not looking for anyone to write code for me, but I need to know how to approach this problem and, perhaps, ideas for further research. This ...
3
votes
1
answer
2k
views
Could there be a use case for C# style auto-properties in Python
I've been doing a lot of work in C# recently (my primary language is Python) and I love that I can do something like
public string MyProperty{ get; set; }
Going back to Python I miss that sort of ...