Recent content by SixNein

  1. SixNein

    Ukraine nuclear power plant Zaporizhzhia on fire

    I'm ready for a boring year. Just one year where nothing interesting happens.
  2. SixNein

    Ukraine nuclear power plant Zaporizhzhia on fire

    Ukraine is reporting no increase in radiation levels.
  3. SixNein

    Why use an abstract class in object-oriented programming?

    Architecture is really the main factor when discussing interfaces and abstract classes.
  4. SixNein

    Why use an abstract class in object-oriented programming?

    Here is a simple example of using an abstract class. #include "stdafx.h" #include "Factory.h" int main() { const static int SAYHELLO = 1; const static int SAYGOODBYE = 2; CFactory factory; factory.runExample(SAYHELLO)->saySomething()...
  5. SixNein

    Why use an abstract class in object-oriented programming?

    An abstract class is simply an interface which you program against to obtain information from concrete classes. The reason you use one of these is to gain isolation. For example, you can create a factory pattern to switch out objects depending on say a user selecting a type of FTP/SFTP/FTPS...
  6. SixNein

    A solution for the P v NP problem

    I don't think it is going to hold up. https://cstheory.stackexchange.com/questions/38803/is-norbert-blums-2017-proof-that-p-ne-np-correct
  7. SixNein

    C/C++ Creating a simple password program in C++

    My response was mostly geared towards another poster of the thread although the OP may benefit from being aware of the existence of these ideas.
  8. SixNein

    Comparison of high-level computer programming languages

    The simple answer is no. The long answer is that languages all get reduced down eventually into machine code. The difference in speed between languages more or less depends upon how many layers these languages have to go through in order to accomplish that task and how often they have to do it...
  9. SixNein

    How do programmers keep it all straight?

    I generally don't focus on details like commands up front; instead, I start by identifying and understanding the problem. Afterwards, I create a plan for the solution. Finally, I worry about those commands. It's pretty much the same concept as found in mathematics.
  10. SixNein

    C/C++ Creating a simple password program in C++

    In real world programming, you want to use an algorithm like SHA512, and you also want to have a random salt generated. You also need to set a minimum complexity required of the password itself. The main factor in selecting an algorithm isn't accidental matches per say; instead, it is how fast...
  11. SixNein

    News Breaking Down the 2016 POTUS Race Contenders & Issues

    Russia has been expanding upon what it considers to be a military targets under a new doctrine that they call the "New Generation Warfare." Just google that term and you'll find plenty of security firms of all kinds talking about it. They don't have to say anything special at all to be...
  12. SixNein

    News Breaking Down the 2016 POTUS Race Contenders & Issues

    I don't know much more that I could do for you. CrowdStrike, Fidelis Cybersecurity, Mandiant, SecureWorks, and ThreatConnect all came out publically citing russia. In addition our own intelligence organizations have fingered russia...
  13. SixNein

    News Breaking Down the 2016 POTUS Race Contenders & Issues

    Are you incapable of doing a search? https://www.secureworks.com/research/threat-group-4127-targets-hillary-clinton-presidential-campaign https://www.threatconnect.com/blog/tapping-into-democratic-national-committee/...
  14. SixNein

    News Breaking Down the 2016 POTUS Race Contenders & Issues

    Multiple independent cyber security companies point to russia in addition to our own government's cyber security experts. We will have to agree to disagree on the use of cyber weapons.
Back
Top