Skip to content
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

Open
MahaMohan opened this issue Apr 12, 2023 · 5 comments
Open

Adding Ability To Navigate New Directory #11

MahaMohan opened this issue Apr 12, 2023 · 5 comments
Assignees
Labels
Code Bug Something isn't right with the Code Code Enhancement New feature request be added to the Code GUI Bug Something isn't right with the GUI GUI Enhancement New feature request to be added to the GUI

Comments

@MahaMohan
Copy link
Member

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

@MahaMohan MahaMohan added Code Bug Something isn't right with the Code Code Enhancement New feature request be added to the Code GUI Bug Something isn't right with the GUI GUI Enhancement New feature request to be added to the GUI labels Apr 12, 2023
@EpicRD
Copy link
Member

EpicRD commented Apr 13, 2023

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.
@MahaMohan with the solution found you can start implementing it into the main code.

Thank you.

@EpicRD
Copy link
Member

EpicRD commented Apr 13, 2023

Hi all,

Side tip I learned
-> git pull Jarvis master
This could be used in the terminal after downloading source code files from github online.

Anyways there seem to be some problem when implementing the above solution onto render-word engine. I will try to solve it tomorrow.

goodnight.

@MahaMohan
Copy link
Member Author

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 🥳

@CodingAviator
Copy link
Member

CodingAviator commented Apr 17, 2023

CYCLE OF DEVELOPMENT (COD)

(PRE-DEPLOYMENT):-
Creating Product --> Testing Product --> Initial Beta Run--> Deploying Product

(POST-DEPLOYMENT):-
Product Deployed --> Advertise Product --> Fix Important Bugs and Issues From Users

(PRE-END-OF-SUPPORT (EOS)):-
Bugs and Issues Fixed --> Monthly Updates And improvements --> Product Is Deprecated (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 🥰
Hope it is rectifiable soon.😊

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.

@EpicRD
Copy link
Member

EpicRD commented May 11, 2023

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

@Epicalable Epicalable locked and limited conversation to collaborators Aug 20, 2023
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
Code Bug Something isn't right with the Code Code Enhancement New feature request be added to the Code GUI Bug Something isn't right with the GUI GUI Enhancement New feature request to be added to the GUI
Projects
None yet
Development

No branches or pull requests

3 participants