Posts by CodexZombie • 89 points
8 posts
-
-2
votes1
answer41
viewsA: Execution error on library startup
I posted as an answer because I still can not comment on other people’s questions Ever tried to use from tkinter import * root = Tk() ? I made some adaptations to the code that made it run smoothly…
pythonanswered CodexZombie 89 -
1
votes2
answers145
viewsA: Modeling Database
This "separation" was based on the definition of any of the Normal Forms?! If you can justify based on the statement of some ok FN (remembering that they are cumulative). As @Maniero commented, if…
-
4
votes1
answer471
viewsQ: C# - How to clear the "cache" of Visual Studio 2017 without having to close and reopen the program?
When I make a change to a library in Visual Studio Community 2017 I need to close the program and open again for the changes to take effect. The change I’m making is the documentation of a library…
-
1
votes2
answers245
viewsA: Doubts in the modeling of the Database
Dude, the most practical method I learned (and entered my head) was: to make the table by hand (or in excel) of the final result of the data you expect to obtain and/or save (eg: command, invoice…
-
2
votes2
answers2049
viewsQ: Visual Studio and Github - Which files to ignore (C#)
Hello! I’m studying C# and created a repository on Github to save the exercises. When starting a new project, Visual Studio Community (2017) creates the following structure: PastaDoProjeto/…
-
0
votes2
answers163
viewsA: Change class attributes from generic method
Maniero’s comment helped me with the resolution. The class remains a class but similar attributes have been transformed into a single dictionary (as class attribute). I don’t know if it’s good…
python-3.xanswered CodexZombie 89 -
0
votes1
answer63
viewsQ: Number of attributes in a Python class
Is there any "rule"/convention for the amount of attributes in a class? Example: In a game, a Character(class) has more than 30 attributes between name, level, strength, etc. With all the attributes…
-
0
votes2
answers163
viewsQ: Change class attributes from generic method
I have a class with many attributes and would like to be able to change these attributes from a generic method where you must pass the name of the attribute to be changed and the new value. class…
python-3.xasked CodexZombie 89