-
Notifications
You must be signed in to change notification settings - Fork 18
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Adding Ability To Navigate New Directory #11
Comments
Good morning all, I have found a solution for this problem. Going forward we will use the pathlib python library to help Jarvis navigate the files in a new environment. #Current way Jarvis is using to navigate a file.
Audfile = open("Jaraudit.txt", "a")
querytime = (datetime.datetime.now().ctime())
Audfile.writelines(querytime + "-(User Recieved His Current Location Using GeoCoder.) \n")
Audfile.close()
#New way for Jarvis to navigate a file
Audfile = Path(__file__).with_name('Jaraudit.txt')
with Audfile.open('a') as f:
querytime = (datetime.datetime.now().ctime())
f.writelines(querytime + "-(User Recieved His Current Location Using GeoCoder.) \n")
f.close() Above is the solution I have came up with after researching. It has been tested in a new environment and has proven to be an effective. Thank you. |
Hi all, Side tip I learned Anyways there seem to be some problem when implementing the above solution onto render-word engine. I will try to solve it tomorrow. goodnight. |
While I think it would be in the best interest for everyone involved to quickly fix this issue, on my end I will continue to push out weekly commits addressing bug-fixes and continue to add new features. Once the solution has been found I'll integrate it into the main code. Also remember to take sufficient rest from coding to charge up your brain 😄. Thank you all enjoy the weekends 🥳 |
CYCLE OF DEVELOPMENT (COD) (PRE-DEPLOYMENT):- (POST-DEPLOYMENT):- (PRE-END-OF-SUPPORT (EOS)):- Above is Epicalable's Cycle Of Development and it is created with the knowledge of current programming industry standards. Jarvis is currently at fixing important bugs and issues from users. I would like to thank all of you guys for taking your time with helping out to fix this bug 🥰 Also keep the weekly commits rolling. I am pumped for the upcoming developer tools which will help us to turn off unnecessary waste when busy coding. |
I'm actually sorry to announce that currently Epicalable is busy with ComDash and the official website which means Jarvis will take a hit in maintainence and commits pushed. We'll appreciate your cooperation till we get back on track. Thank you |
Hi all,
We all have that one programs which once downloaded have problems on our system. I have noticed something and it's thanks to my new computer. Once I have downloaded and transferred Jarvis codebase to my computer the program has difficulty navigating and locating files.
To counter this I have contacted R&D department and they will help to research on possible workarounds and solutions. @SimonRogers3 will help to spearhead this issue and will keep us updated regarding his findings.
Once the solution has been found I will assist in implementing it into the main code and soon spread to the larger codebase.
Thank you,
MahaMohan
The text was updated successfully, but these errors were encountered: