if anyones interested
works on both windows and mac, not sure about linux but if you run linux and would like to help develop on the linux compatibility, lmk!
Is this vibe coded ?
Mobile site giving me bad vibes
yeah the mobile site worked perfectly before but i gotta fix it
thanks for calling it out
yeah the mobile site worked perfectly before but i gotta fix it
thanks for calling it out
No worries, I’ll keep an eye on this project
Is this jus ai prompted coding?
it can be
i designed it to be easier for us to understand syntax and code structure
it can be
i designed it to be easier for us to understand syntax and code structure
What type of tasks is it suited for? I mainly use python and matlab for scientific work
for example something simple like creating a new file and saving it can be
let outDir = "your-directory-name"
let content = "whatever your file contains"
let filename = outDir + "/filename.extension"
try {
write_file(filename, content)
} catch (e) {
print e}
print "File saved to:" filenameWhat type of tasks is it suited for? I mainly use python and matlab for scientific work
it can handle logic from complex math equations to hosting its own server
cli usage and/or script based
for example something simple like creating a new file and saving it can be
let outDir = "your-directory-name"
let content = "whatever your file contains"
let filename = outDir + "/filename.extension"
try {
write_file(filename, content)
} catch (e) {
print e}
print "File saved to:" filenameIsnt python alrdy similarly easy to read?