Jump to content

cyberninja2601

FGers
  • Posts

    2,081
  • Joined

  • Last visited

  • Days Won

    21

Everything posted by cyberninja2601

  1. Patrick has sucky luck at loot type games and never had prime parts
  2. Maybe, maybe not. The Chinese CoD which is a web based free cod has all of the CoDs, maps and weapons as 1 and that works. They might be able to do it technically. I think that the marketing of it however might prove to be unacceptable to people. I don't want to have to pay for "space halo CoD" to get MW
  3. Pretty good scam when you think about it. Lets charge for a game no one wants and make an edition with a game that people want and charge more money. I wonder what legacy edition will cost. Maybe we should all wait a year until the next cod comes out and the price for this one goes down
  4. If that were true Micro soft would get a lot of help to re-energize the XBOX1. A lot of people have said they would be a re-imaged MW and MW2.
  5. Apparently he was a Jehova's witness and serious about it. So drugs would be unlikely. He also had epilepsy and had been sick for a while. If he refused drugs because of his sickness, that could be why he passed away. He turned down blood transfusions during operations because of his religion. That doesn't sound like the kind of guy who dies because of drugs but you never know.
  6. Yea, he was only 57 which is not that old. Apparently he had a number of health issues lately and had cancelled some shows so it might not have been all that sudden. It's quite unfortunate. RIP Prince
  7. Pretty much the same. This is a game who's novelty wore out pretty quick. The "raid" is a cluster fuck as far as I am concern. Most people just exploit it. If you actually do it, it's just repeating the same thing again and again for 15 waves. Doing the mission on challenging is touch and go. Some of them are pretty difficult because you are in another confined space with grenade spam. I also think it's bullshit to shoot a "human" criminal in the face with a sniper rifle that does 300K of damage 5-6 times and fucker still isn't dead The dark zone has just been running the exact same route a number of time with 3 other people, shoot the same guys, get the loot and get extracted. Makes me appreciate destiny a hell of a lot more
  8. But you were it's biggest fan I finding there also a shit load of technical problems with match making and other things I'm not sure how much I played it but it looks like it will be a trade in then My Son comes back from University Saturday. I'll see if he wants to give it a try first. If not bye bye division. Seems like all UBIsoft games I've played (and there haven't been that many) are the same. They are ok to play but have no replay value. Far cry was the same
  9. Unfortunately the video is not available in my country
  10. Pretty much what it says on the title. I hardly ever see anyone playing any more and it's getting routine and boring. I'm thinking of trading it for something else and it will make the decision easier if no one is interested in the game anymore
  11. Any of them named Microsoft
  12. Are they still in business?
  13. That is failure on so many levels. Who tests code on their servers? Who has backups for their stuff on the same server What enterprise has backup in the same fucking building has their servers? If if there is a fire or theft? This is just a guy who was out of his league trying to make a business.
  14. And I guess that's why you guys keep electing them "insert rimshot"
  15. Could the computer be uploading or upgrading something? You test bandwidth will go down if the computer is already downloading or doing something that is resource intensive. Do you know how to look at the resource manager (ctl-alt-del) and see what process are running and what is using up memory? Because you said that reset the router and disconnecting the computer has no effect, I beleive the issue is something that is running on the computer that is slowing it down. Also since wireless is running consistent, it's not the quality of you connection to the outside world
  16. That's because they want you to see their fat ass in cycling shorts again. In case you missed it the first few times
  17. I would much rather play most sports than watch. Baseball to me has too much of nothing interesting happening until something interesting does happen. And then it's pretty easy to miss what was interesting because it happens so quickly and so far away. If I had to pick a sport it probably would be Hockey. I know it's a shocker for the French Canadian to pick Hockey. Ottawa has had 3 minor league ball teams that have gone bankrupt. It's just not part of our culture or upbringing.
  18. Common what's hotter than watching a group of women who are using brooms screaming "hard, hard, hard" all the time wasn't the site called fpsshooter or something like that
  19. I guess you are the kind of guy who said that people who use windows 7 are holding back 8 and was the version of the future I don't want to be that type of person . So there
  20. I disagree There are a few minor downsides to 3, such as slightly worse library support, and the fact that most current Linux distributions and Macs are still using 2.x as default However, there are some key issues that may require you to use Python 2 rather than Python 3. Firstly, if you're deploying to an environment you don't control, that may impose a specific version, rather than allowing you a free selection from the available versions. So if you are going to write apps for people they might not run in 3 Secondly, if you want to use a specific third party package or utility that doesn't yet have a released version that is compatible with Python 3, and porting that package is a non-trivial task, you may choose to use Python 2 in order to retain access to that package. For something for your own use that always runs on windows however, 3 is probably better to use because it is newer
  21. Just as a note, Python is a high level interpreted programming language which means it is not compiled. That means that any programming you write on Windows will run on anything else as long as your libraries are compatible. If you use python 2.7, you should be ok as long as you are trying to access specific hardware which will potentially have different drivers between operating systems You guys should also look at https://www.python.org/
  22. How do you plan to use it? Do you plan to install wine and then Notepad++ on the your linux system? Notepad++ is native to Windows. However it can be installed on Linux On Ubuntu its sudo apt-get update sudo apt-get install wine then you install it wine which is the windows program loader You can also use notepadqq which is native to Linux instead
  23. You are right. However since it is open source some of the Libraries may different depending on what users have developed. Anyways, I installed ubuntu which is Linux today on one of my laptops. I chose it because many engineering programs I used are supported on that platform. It also looks a lot like MacOs for the basic stuff. I have the Ubuntu 14.04 LTS (long Term Support, which means it will be available for a while). I have the 64 bit version installed. I also have python 2.7 and 3.4 and tool kits installed. I also have code editors installed. You guys don't need any of that do to Python programming. However if you don't want to re-invent the wheel and feel free to ask me how and what I did I am running "brackets" as my code editor. Vim would be another good one I am doing pretty much everything command line if you want to learn out to do that using the GNOME terminal
  24. OK, My point was more when learn Linux while learning to code. That's 2 variables as opposed to 1. Since most people here a familiar with a Windows environment, it would simply learning the coding because they would have to worry about the Linux stuff as well. Admittedly I don't know much about linux at the client level. I am use to getting into the system as an admin and do everything command line because I learnt Unix, Solaris and IBM AIX. So it might be a lot simpler now with everything being open sourced so commands I am use to would look something like this $mkdir -p /tmp/diddums/project $cd /tmp/diddums/project $chmod 555 /tmp/diddums/project Which is something else that people would need to learn but that's fine. It's just more learning
  25. Here is a free course. It requires high commitment but it is complete It starts in JUne https://www.edx.org/course/cs-all-introduction-computer-science-harveymuddx-cs005x-0?gclid=Cj0KEQjwrZ24BRC098fr-OqnuMkBEiQAKQ9lgGJcEFp8D0i-VTztjcfSVHnlJNcehHdEOVopbTz5P8UaAjQv8P8HAQ
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use and Privacy Policy