- Strength to Increase Rep
- +11
- Strength to Decrease Rep
- -2
- Upvotes Received
- 231
- Posts with Upvotes
- 184
- Upvoting Members
- 102
- Downvotes Received
- 7
- Posts with Downvotes
- 7
- Downvoting Members
- 7
Re: I don't understand how it could be so hard to hire someone who atleast understands a little terminology. Every. Line. of this hurt. http://www.youtube.com/watch?v=O2rGTXHvPCQ | |
Re: Homemade fries, with garlic, seasoning salt and italian seasoning. | |
Re: In my opinion, understanding how attacks work is more important then the software used to protect yourself with. For higher security, understanding how to implement attacks of all kinds (from social engineering, to exploiting weak cryptography) and being adept at inventing new attacks will vastly improve your security over what … | |
| |
Re: As much as I hate taking dreams apart peice by peice, I feel like I need to serve the truth. > My theory is that ternary computers are infintely better than binary and will last longer Scientists would back it up, and would not use the phrase "infinetly better". So … | |
Re: If you'd like to share code, consider using the sites "snippits" system. If you have a question, then recreate the problem with a few lines of code, and ask a question (and include the input and the output). | |
Re: Hi abako4. Please start a new thread rather then hijacking someone elses. If you just want to get straight into making software, then there are definatly a lot of possibilities. I would guess that C, Java, C++, Python and C# are some of the most popular (in that order-ish). However, … | |
Re: Well, "careers" would know several languages well and be able to pick up most practical languages on the spot. If you're an employer, and you see someone who only programs in C++ vs. someone who programs in serveral languages and has experience in various feilds of computing, then you probably … | |
Re: Try cheating. More fun. [CODE]cout<<"This is an example to print \\n and "<<(char)34<<(char)32<<(char)34;[/CODE] | |
Re: Also, If you encrypt a partition/system, you will: 1) Decrpyt volume with Truecrypt. 2) Encrypt volume with Veracrypt. Veracrypt uses a huge number of iteration in thr KDF. While it's secure, it's inconvienient for the person starting the computer (I estimate about 30-40) seconds on my laptop. The KDF in … | |
Re: Don't run g++ as administrator if it doesn't need it (I highly dout it will run faster). This isn't a problem I normally hear about, and lots of people seem to be running it fine. So I have a feeling it's more to do with your particular setup. Is anything … | |
Re: 61 pages... I hope this wasn't mentioned already. In 1939, Ernest Vincent Wright wrote a book called [URL="http://www.spinelessbooks.com/gadsby/"]Gadsby[/URL] without using the letter 'e'. He didn't cheat by using '*' instead of 'e'. He never used a word with 'e' in it once, and the book (for it's time) made sence. … | |
Re: In procedural languages, using a temp is probably best. I actually can think of one way that does not require any extra variables, works for any datatype and is also very natural. It also doesn't involve any "dirty tricks," or even extra memory over what would be used for not … | |
Re: > Python's too slow to use for anything very big Stop right there. Yes, implementing the algorithms used in pure python is not a good idea, but thats not how the scientific community uses python. For scientific and numerical computation, python is really more of a 'glue' language and components … | |
Re: > So, I'm in my final year of my B.Tech. in computer science programme You're in your final year, but you haven't found something you might be interested in? The problem with the 3 things you listed is that they don't have much do to with *computer science* at all. … | |
Re: I'm currently a 3rd year Mathematics and Computer Science. My recommendation is to take your time (make sure you allocate enough time) in understanding your OWN answers to assignments. "Getting an answer" or "it works, its good enough" is completly useless if you don't understand what's going on. In fact, … | |
Re: Well, to be completly accurate. On an x86 (including x86-64) IBM compatible system: When the computer FIRST starts up, the BIOS cannot use the RAM immediatly. The BIOS's first task is usually to detect the RAM so it can continue to perform it's other functions. For this, the BIOS uses … | |
Re: It lookes like you forgot to iterate through the list, ie `location = location->next;` | |
Re: This is a little more strong handed, but it's simple. [Refresh or reset](http://windows.microsoft.com/en-ca/windows-8/restore-refresh-reset-pc) your computer. | |
Re: Try this (assuming your on windows): Open up "Computer Management", and click on "Disk Management" on the left pane. Do you see your external there? If you do see it, then right click on itm click on "Change Letter and path..." and go ahead and give it a letter to … | |
Re: What kind of things are you interested in? Graphical things, puzzle solving things, interactive things, computational things? | |
Re: It's been asked before. My vote goes to vim.You don't need much mroe then a text editor your comfortable with for python. | |
Re: You'll probably need to implement your own mechanism for looking at hardware changes. You'll want to look at various incrmental backup solutions, or implement your own. Are you storing the backups on an hdd? A tape? Optical disks? Do you need encryption? Compression? | |
Re: I like Ubuntu and Red Hat. The reasons are simple: They're commercially supported and developed, have good free support and the community is big. | |
Re: "64% expecting to be targeted in the next 12 months." I'm curious as to how they got that statistic. Do you have a link to the study? | |
Re: Because they would either die or evolve to not drown. What's in rum and coke? | |
Re: > DDS.scr says it "Will not run in compatibility mode" and closes. This might sound like a silly question, but is running in compatibility mode? If it is, try turning it off. Also, try running malwarebytes in safe mode. If that works, then have a close look at what starts … | |
Re: As mentioned, you first need to be using an operating system who's kernal calls are guerenteed to work in real time. Then there are a few problems with the JVM itself (garbage collection, JIT, threading) that don't guerentee real-timeness. You'll need to find a real-time replacement JVM, for example JamaicaVM-PE. … |