Which is why native dutch speakers typically speak a lot of languages, so a native dutch speaker is probably able to communicate with a lot more people than a native english speaker!
I've never had a virus on my Windows system, and I don't find it likely that I will. I don't do the sorts of things that are going to get you infected. This was my situation/attitude as well, until I decided to plug in a brand new TomTom navigation system, turns out it was infected out of the box!
I guess if you can't trust others in your team to name their methods and variables correctly, you can't trust them to maintain their comments either. You're still stuck digging through code with inacurate variable names to know what it does, not being sure that the comments were changed along with the latest changes in the code.
I think the while point is that you, as a team, write maintainable code and if you can adopt good principles when it comes to updating comments when the code changes, you'll probably also have enough discipline to name variables and methods correctly.
// returns TRUE if the bullet is to be erased (because it hit a target or the top of the screen) Boolean player_bullet::move_bullet_upward() { Boolean is_destroyed = FALSE;
Pos new_pos = calculate_new_position();
if (contains_enemy(new_pos) { destruct_enemy(new_pos); is_destroyed = TRUE; }
[..]
Return is_destroyed; }
over:
// This procedure moves the bullet upwards. It's called //NUM_BULLET_MOVES_PER_SECOND times per second. It returns TRUE if the //bullet is to be erased (because it hit a target or the top of the screen) and FALSE //otherwise. Boolean player_bullet::move_it() { Boolean is_destroyed = FALSE;
// Calculate the bullet's new position.
[Small chunk of code.]
// See if an enemy is in the new position. If so, call enemy destruction call and // set is_destroyed to TRUE
The real deal is that no version of Windows Vista will make a determination as to whether any given piece of content should play back or not. The individual ISV providing the playback solutions will choose whether the playback environment, including environments that use 32-bit processors, meet the performance requirements for playback of protected High Definition content.
In a large (multinational) company, you're bound to have multiple collaboration systems (per region/devision/...) and at some point an integration step will be needed.
Most of the time e-mail is simply good enough.
So if I understand correctly M$ has adopted the use of timeboxing: they used that excuse to exclude several features (WinFS,...) from the first Vista release so they would be able to release it on time. Still they are pushing their release dates ahead.
They are now releasing less features equally late; looks like a 'worst of both worlds'-approach to me...:/
Later the US plans to replace the control system of the bots with a "Gameboy" type of controller hooked up to virtual reality goggles.
I think that is even bigger than just using robots to kill people...
The treshold for killing actual people will become about as low as killing in-game characters. Imagine the possibilities when they plug those bots into the America's Army gameservers!
Which is why native dutch speakers typically speak a lot of languages, so a native dutch speaker is probably able to communicate with a lot more people than a native english speaker!
..but will it run on linux?
I guess if you can't trust others in your team to name their methods and variables correctly, you can't trust them to maintain their comments either. You're still stuck digging through code with inacurate variable names to know what it does, not being sure that the comments were changed along with the latest changes in the code.
I think the while point is that you, as a team, write maintainable code and if you can adopt good principles when it comes to updating comments when the code changes, you'll probably also have enough discipline to name variables and methods correctly.
It hung on me as well while trying to switch the keyboard layout using 'keyb be'...
You mean there are also icebergs that float south from Antarctica?
http://www.microsoft-watch.com/article2/0,1995,20
http://www.apcstart.com/site/dwarne/2006/08/1147/
In a large (multinational) company, you're bound to have multiple collaboration systems (per region/devision/...) and at some point an integration step will be needed. Most of the time e-mail is simply good enough.
So if I understand correctly M$ has adopted the use of timeboxing: they used that excuse to exclude several features (WinFS, ...) from the first Vista release so they would be able to release it on time. Still they are pushing their release dates ahead.
:/
They are now releasing less features equally late; looks like a 'worst of both worlds'-approach to me...
"All Your Base Are Belong To Us!", might become more real than you thought :)
Yeah great! Fear of learning new things is always the way to success...