Welcome to Software Development on Codidact!
Will you help us build our independent community of developers helping developers? We're small and trying to grow. We welcome questions about all aspects of software development, from design to code to QA and more. Got questions? Got answers? Got code you'd like someone to review? Please join us.
Activity for MrDevel0perâ€
Type | On... | Excerpt | Status | Date |
---|---|---|---|---|
Comment | Post #290197 |
If you are OK with using Python, then I would *highly* reccomend [Xlwings](https://www.xlwings.org). It lets you do pretty much everything you need to with Excel, is source-available, and runs on Python, a common programming language. Here's the quickstart: https://docs.xlwings.org/en/stable/quicksta... (more) |
— | about 1 year ago |
Edit | Post #290168 |
Post edited: Clarification - this is example code above, not production code |
— | about 1 year ago |
Edit | Post #290165 |
Post edited: Improve grammar and clarify question |
— | about 1 year ago |
Suggested Edit | Post #290165 |
Suggested edit: Improve grammar and clarify question (more) |
helpful | about 1 year ago |
Edit | Post #290168 |
Post edited: Oops! Messed up the propertyWrapper. |
— | about 1 year ago |
Edit | Post #290168 | Initial revision | — | about 1 year ago |
Question | — |
Is there a correct way to fetch data with a SwiftUI ViewModel? Background + Example Code Let's say I have a SwiftUI ViewModel like so: ```swift class ViewModel: ObservableObject { @Published var strs: [String] = [] func fetchStrs() async { // This function would have fetching logic for whatever type the model stored // Here, we are... (more) |
— | about 1 year ago |