Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
100% Quality Score
Upvotes Received
5
Posts with Upvotes
4
Upvoting Members
3
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
0 Endorsements
Ranked #25.0K
Ranked #3K
~7K People Reached
Favorite Tags

5 Posted Topics

Member Avatar for lewashby
Re: PATH

You can do that (minus the extra quote before $) and it will append to, not replace, the existing PATH. However, using the absolute path is a better practice. export PATH=$PATH:/root/bin/go-lfs If you want it to presist from session to session add it to your '.bashrc' file.

Member Avatar for imamyth
0
134
Member Avatar for Frensi

First, never feel like you have to apoligize for asking a question, no matter how stupid it may seem. It's how we come to understand the things we are trying to learn. On to your question.. there are a couple of ways you can do this. If you only want …

Member Avatar for HiHe
0
6K
Member Avatar for PlasmoMage

Monitoring the location of desktop icons should be easy enough to do. I have not been a Windows user for some time but I believe that this information is stored in the Windows registry. In Python you can use the _winreg module to read registry keys. It's just a matter …

Member Avatar for imamyth
0
108
Member Avatar for Roadphantom13

Don't think I can help with your GUI issues but, this little quickie demonstrates logic that could be used to generate random math problems and loop until the correct answer is give. [code=Python] import random def randomProblem(): """Makes basic arithmetic problems""" random.seed() operator = { # Dictionary of basic operators …

Member Avatar for jrcagle
0
121
Member Avatar for Noliving

From the code you have posted, it looks like there may be some confusion as to how and where variables are accessible... In any case, if you just want to print a value from a class, consider one that looks like this... [code=python] class sphere: def __init__(self, radius): if radius …

Member Avatar for imamyth
0
121

The End.