Yakult1
Active Member
- Joined
- Aug 17, 2020
- Messages
- 106
- Gender
- Male
- HSC
- 2021
Hi everyone, I'm not sure if anyone has posted a thread like this before but I thought it would be cool to have a thread where people who are interested in programming can post new stuff that they are creating, problems that they are struggling with, document their progress and ask for assistance or something like that. I'd love to see a bunch of people both brand new and experienced in programming asking and answering all sorts of questions, kinda like a BoS version of Stack Overflow. I'm going into Computer Science next year and I've not been able to do much programming due to the HSC and all, so I'm very excited to get back into developing and collaborating with other people again!
Currently I'm creating a desktop app that will function similar to a high school diary but for a university student instead. I'm using xcode + swift to develop it because I'm stuck with my macOS laptop until my new Thinkpad screen arrives. I plan on expanding the program to linux + windows once im back on my manjaro setup because I feel way more comfortable developing on a linux distro than on macOS.
Anyway, my most recent implementation was a word counter for a notes section of the app:
My next goal is to add some more customisation stuff but idk what specifically, perhaps I could add a profile picture feature? Not sure yet.
Currently I'm creating a desktop app that will function similar to a high school diary but for a university student instead. I'm using xcode + swift to develop it because I'm stuck with my macOS laptop until my new Thinkpad screen arrives. I plan on expanding the program to linux + windows once im back on my manjaro setup because I feel way more comfortable developing on a linux distro than on macOS.
Anyway, my most recent implementation was a word counter for a notes section of the app:
Swift:
@IBAction func word_counter_hit(_ sender: NSButton) {
notebook_word_counter.isEnabled = true
let word_count = String(notebook_content_field.stringValue.components(separatedBy: " ").count)
notebook_word_counter.title = "\(word_count) Words"
}