Giter Club home page Giter Club logo

Comments (21)

Greifent avatar Greifent commented on July 21, 2024 2

I have also in mind the creation of an application

from afc-gui.

Greifent avatar Greifent commented on July 21, 2024 2

I think I understood how the git upload work, I was missing steps, thanks.

from afc-gui.

Greifent avatar Greifent commented on July 21, 2024 1

For the path, I didn't know that, I'm changing it

from afc-gui.

Greifent avatar Greifent commented on July 21, 2024 1

Yeah, doing something like you have done for the models would be good, I only need to figure out how to do that; I'll try in a few days, this week I'll be busy with school.

from afc-gui.

Greifent avatar Greifent commented on July 21, 2024 1

I know, I just found something interesting to do during quarantine, and I'm pretty happy with the results. I'll leave this open.
Thanks

from afc-gui.

Greifent avatar Greifent commented on July 21, 2024 1

Thanks, I'll try to modify on my local saves, then upload. I thinks it is easier

from afc-gui.

dominiksalvet avatar dominiksalvet commented on July 21, 2024 1

Yeah, you can do it that way for now. But once you are working with someone on the same branch, you can imagine their changes as being "done on GitHub"... So you eventually will need to pull their changes and they will need to pull yours.

from afc-gui.

Greifent avatar Greifent commented on July 21, 2024 1

I know that

from afc-gui.

Greifent avatar Greifent commented on July 21, 2024

For the file selection I'm still developing it, it should be complete by tomorrow, I'm adding a window that show the temperature, in that window you can choose if apply or not the temperature

from afc-gui.

Greifent avatar Greifent commented on July 21, 2024

BTW I'm having a lot of trouble uploading the modified files. How do you do it?

from afc-gui.

dominiksalvet avatar dominiksalvet commented on July 21, 2024

What do you mean? Images or terminal dumps would be appreciated.

BTW, if you create a file directly using GitHub (e.g., Create new file button), it is better to commit it directly to the master branch instead of creating a new one (switch is at the bottom) for your project's size. Your Git history graph looks really weird... Where is the problem? Why are you continuously merging master branch?


Based on the current repository state, temperaturesPreset/ is mapped to "$HOME"/.local/bin, which is very bad - it is not a binary. I am for modifying the presets mechanism as described above. If you want to keep the current implementation, I would be for removing presets folder from GitPack mapping completely and provide them another way. If you still want to map it somewhere, I am for "$HOME"/.local/share/afc-gui.

from afc-gui.

Greifent avatar Greifent commented on July 21, 2024

I have a lot of problem uploading files:
It says it is up to date while is not, sometimes I have this:
error: failed to push some refs to 'https://github.com/Greifent/afc-gui.git' hint: Updates were rejected because the tip of your current branch is behind hint: its remote counterpart. Integrate the remote changes (e.g. hint: 'git pull ...') before pushing again. hint: See the 'Note about fast-forwards' in 'git push --help' for details.

I think I'm doing something wrong.
And since I had to go I simply rewrote what was on afc-gui, I'm changing it, where you think I should put it?

from afc-gui.

dominiksalvet avatar dominiksalvet commented on July 21, 2024

Okay - the swiftest advice. Cut and paste your local afc-gui repository (containing folder should have the same name) somewhere else. Clone you repository again and go manually through changes not commited yet on broken repository and apply them to the fresh one. Commit your changes.

And since I had to go I simply rewrote what was on afc-gui, I'm changing it, where you think I should put it?

Did not understand, sorry. 😒


BTW, the problem looks like to be connected with the fact that you are making changes based on commits rather than based on branches (branch tip, branch HEAD). You never want to do that except when creating a branch but that is another story. So for next time, try to use git status from time to time and make sure its output starts with something like this:

On branch master
Your branch is up to date with 'origin/master'.

Do not ever work on changes when your output starts with something like this:

HEAD detached at f38db2a

Use git checkout master to get back on the master branch and here you will be able to push changes to origin/master branch -- origin/master is a master branch on the remote (so on GitHub).

from afc-gui.

Greifent avatar Greifent commented on July 21, 2024

Did not understand, sorry.

I had done the path for afc-gui.py, then I had to do another thing, came back and, for error, rewrote the same thing for the folder, where should I place that folder

from afc-gui.

dominiksalvet avatar dominiksalvet commented on July 21, 2024

I had done the path for afc-gui.py, then I had to do another thing, came back and, for error, rewrote the same thing for the folder, where should I place that folder

If I understand it correctly, I have already written it - "$HOME"/.local/share/afc-gui.

from afc-gui.

Greifent avatar Greifent commented on July 21, 2024

This is what i see:
Screenshot from 2020-04-26 23-27-01

from afc-gui.

dominiksalvet avatar dominiksalvet commented on July 21, 2024

Yes, and it should be:

afc-gui.py "$HOME"/.local/bin
temperaturesPreset/ "$HOME"/.local/share/afc-gui

from afc-gui.

Greifent avatar Greifent commented on July 21, 2024

Oh, I thought you changed it, my bad, I'm changing it

from afc-gui.

dominiksalvet avatar dominiksalvet commented on July 21, 2024

Nope, it was directed to you. πŸ˜„ Please, read the original post of this issue again to make sure you are not missing anything. ☺️ Most importantly, its second part.

from afc-gui.

dominiksalvet avatar dominiksalvet commented on July 21, 2024

Yeah, do not rush with afc-gui. You have no deadlines and no commitments. You just want to learn something new and you should enjoy it! Work on it when you want. 😊

I think that this issue has reached the point that its major part has been resolved. You can close it or leave it open if you want to remember the presets stuff.

Good luck with studies! πŸ§‘β€πŸŽ“

from afc-gui.

dominiksalvet avatar dominiksalvet commented on July 21, 2024

if you create a file directly using GitHub (e.g., Create new file button), it is better to commit it directly to the master branch instead of creating a new one

BTW, if you modify/create/delete files using GitHub, then once you are on the master branch (git checkout master) in your local repository, you also need to run git pull to actually fetch these changes from GitHub (from origin/master) and merge them into local master branch. Then you will have your local branch master synchronized with the remote branch origin/master and it should be very easy to push changes without any complications whatsoever. JFYI. :octocat:

from afc-gui.

Related Issues (17)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.