What's new

Search results for query: *

  1. Drgstr420

    Trying to increase the value of something through an extension?

    How would we help without the sauce?
  2. Drgstr420

    Java How do I learn Java?

    try some exercises on codingbat.com
  3. Drgstr420

    Java Highest and Lowest Number from a Set Application

    Clean code != short code always. The way you did it is still clean, however is not beginner friendly like I was trying to be. I wouldn't expect a beginner to understand java 8 features such as streams and lambdas.
  4. Drgstr420

    How often do you comment?

    The company I work for has a comment philosophy that I am for 100%. If the code is not understandable without comments, it is most likely written poorly/incorrectly. Variable and function names should be crystal clear on what they are or what they do. Even if the variable or function name is...
  5. Drgstr420

    Tutorial How Sharing Games Works [Explained]

    I am talking about when we decide not to gameshare anymore. If I bought games on my original xbox(which is set as my friend's home xbox), and then we switch our home consoles back to the originals, who keeps the game license?
  6. Drgstr420

    C/C++ Welcome to Line.co OS

    No offense, but I don't think that you have the knowledge to make an operational operating system. What kind of data structure are you using for your memory management? How are you handling process scheduling? What about concurrency?
  7. Drgstr420

    Tutorial How Sharing Games Works [Explained]

    Lets say my profile is on my xbox, but I have my home xbox as my friends, and his home xbox is set to mine. If I buy a digital copy of a game on my xbox (ie my original xbox, my profile, set to his home xbox) and then we switch back from sharing games, will I get to keep what I purchased or does...
  8. Drgstr420

    Web [JAVASCRIPT]Homework for school, need help please!

    Just so you know, Java != JavaScript. Don't put the Java tag for JavaScript.
  9. Drgstr420

    Application develpoment for linux?

    I don't mean jumping into the deepend by starting with swing. In my opinion swing is a PoS. I mean just trying to code and start breaking ****. That's how you learn. Java is one of the easiest languages because it is verbose and has a lot of safety nets, but C still has just as many job...
  10. Drgstr420

    Java Android Design For My Application

    Well the company I work for does Java and SQL, but I also know C, C++, and Python. But this doesn't sound very interesting to me. It looks great though, keep up the good work.
  11. Drgstr420

    Java Android Design For My Application

    What does your app do? I'd be interested in joining
  12. Drgstr420

    Application develpoment for linux?

    For gaming news, it really would be better if you just did a website. If you really did want to make a desktop application, Java is good for portability across systems. C, however, can be used if performance was an issue, but for your purposes its not. Java is not necessarily the most sought...
  13. Drgstr420

    Discussion Xbox One Dashboard Preview Program Invite/Request Thread

    Hey I would appreciate an invite from someone, I will pay it forward when possible! Thanks Gt: FuSiioNz KiN
  14. Drgstr420

    Issue With Compiling With GCC

    Do you still need help with C++?
  15. Drgstr420

    any news for xbox one exploits similiar to rgh/jtag

    Well if you have an idea on how it can be done just post it. I'd try it if I think it is a possible exploit.
  16. Drgstr420

    First Language to Learn When Game Designing?

    Clearly your friends did not understand the underlying principles of object oriented programming. If they did, then going from C++ to Java should be a breeze. Its a little tougher going from Java to C++, but like I said, Java takes care of a lot of things a beginner doesn't need to worry about...
  17. Drgstr420

    First Language to Learn When Game Designing?

    I would start off with Java, and then move to C/C++. Java does a lot things for you that you wouldn't need to worry as a beginner. But then the further along you can go, C++ allows you to have so much more control. It is the go to language for most console/pc games. You can do most Android games...
  18. Drgstr420

    Java Serializing Objects

    You call your write class for each object. You are overwriting the file every time you call Write.
  19. Drgstr420

    Java Highest and Lowest Number from a Set Application

    The simplicity of the application allows the entire thing to be written in the main method. This would not be the case in a real world app. Nonetheless, I'll also write mine in the main method. If you would like me to show you how to do it otherwise, just ask. Also, there are multiple ways to...
  20. Drgstr420

    C/C++ Store 3 variables into 1 variable?

    you could do what Zingy said, or use a struct. I would honestly go with his suggestion, but I am just opening you up to new ideas. struct myData{ int hundreds; int tens; int units; };
Top Bottom
Login
Register