I am a long time Apple fanboy, really love the iPad. But honestly, I am starting to get annoyed with some missing customizations that Android has had for ages. Not talking themes.
For example: Intents. iOS 6 looked like Apple was headed that way with the way you share pictures or links. However, only a few select companies are integrated with it. I want to be able to add a screenshot right into Evernote. Use a different "read later" provider. I use Chrome on the desktop, which doesn't integrate with iCloud reader. Same thing goes for bookmarks. I use xmarks for syncing across multiple machines and I primarily use Chrome. Xmarks is also awesome for having work profiles. iOS xmarks integration is very limited because of Apple.
Widgets: I can't believe that after all these years of widgets in OS X they haven't brought them over to iOS. It would be very nice to have a dashboard for lets say system status at work. I don't want anything too abusive on system resources, but allowing one of these widgets to update in the background or via notifications would be awesome.
I was honestly considering picking up a Nexus 7 once the LTE version is announced. The announcement of factory images for the Nexus 7 has sealed the deal for me. Will I customize it to that level ? Not sure. But I would like the option.
Let me clarify that the puzzles I am talking about have no use in case in technology ever. They are random hypotheticals that prove next to nothing and only waste the times of both people.
I am totally ok with and encourage someone to walk in and say. Ok, we have this specific project and ran into this problem. What would you do to fix it ? What technologies, tools or methods would you use to fix it ? How would you know you accomplished it ? If this failed what would you do next ?
For example:
On a very high traffic site you have a list of recent users that is updated very frequently. You are currently using memcache but every time the key expires it creates a heavy spike on your database. How do you solve this ?
There are quite a few ways this question can be answered. This is a totally legitimate interview question. You can apply a lot of different technologies to this in many creative ways.
You will get *FAR* more out of the interview asking this compared to asking riddles about the number of elephants in bathtubs and how much they weigh.
Without a doubt there is no one magic formula. In the end you have to be able to read people. I have had people come in and clam up almost instantly because they were intimidated by me or nervous about the interview. Those are the times I take a short breather to chat about some random shit. Once they relax I get back into the thick of things. I have seen many people interview people and fail at this. They might know the answer but are overwhelmed. But this is also a good indicated of how well they will fit into the place. Some companies I have been at were chaotic, fast paced and high stress. Obviously, someone who cracks under pressure might not be what we want.
I change up my interview style a lot over time. Mostly because each company is very different and has very different needs. I wouldn't interview someone at a startup the same way as a larger established company. I also don't interview juniors and seniors the same. I don't expect a junior to have all the answers, I might need to drop them a few hints or lead them a bit. Do they understand the core concepts ? Did they learn something during a chat ? Were they interested in what they learned ? And it sounds strange but did they enjoy it ?
I have walked out of job interviews where they asked nothing but puzzles. I solve technical challenges and write code. If you really have trouble determining how many toasters you can use to cook 50 pancakes, guess what. I am not the right person for you. If you are looking for someone who can code their ass off, I am the right person.
I have interviewed hundreds of candidates over the years. I have been the hiring manager a few times and never once pulled the puzzle bullshit. I have found the best indicator in the world is to just casually bullshit about technology. You can very quickly find someones strengths, weaknesses and if they are full of it. In a casual chat, people let their guard down and you get a look in.
Ever since I switched to Mac I have been so much happier. My work flows have drastically improved and I am far more productive. I haven't used Windows for anything other then testing a site in IE or pure gaming on a Windows box in many years now.
I have Windows 7 installed for a few games (DCS for one) and I tell ya the UI is a train wreak. It is a cluttered mess that you can't ever find anything. Hell just launching an application is painful. Where did this application install ? Did it install based on the company name or the product name ? Did it install in program files or some other random directory ?
With OS X it has a very clean system layout that makes sense. Where are my apps installed ?/Applications. Where are my pictures, movies, music. In ~/
The system settings page is well organized and I can find what I am looking for very easy. The single navbar makes life a lot easier as well. No guessing where this app has the menu or digging through confusing ribbon menus.
Linux... is just as bad as Windows on the desktop. There is no unity or no organization. It's just a hot mess.
Um, Apple has tested each iPhone outside of the lab. I remember seeing some pictures of the original iPhone being used on Caltrain way before release and shortly after it was announced. Of course the person using it didn't know they had their picture taken using it.
This is just the first time that Apple lost any of the devices.
The connectivity issues with the iPhone are not because of the device, its because of the awful AT&T network.
Nope, it works perfectly. 1 is the execute bit, which when applied to a directory allows you to read a file from inside that directory ONLY if you know the absolute path to the file. However, since the parent is 701 you can't find out what that unique directory name is without already knowing it.
Apache can read this because its looking for index.php inside that vhost's DocumentRoot. Now, you might be asking... well, just look at the vhost and grab the DocumentRoot from there. You can't, the directory that contains the vhost files is also set to root.root 700. Apache can read this at start up before it switchs to a non-privileged user.
Now, try an ls of/web/blog1 you will get a Permission denied. You can't find out that unique directory name inside/web/blog1 without already knowing it, which Apache does. However, you can do a ls/web/blog1/abc/index.php
Wordpress doesn't need to look at files inside those directories so its ok. It also gets its current running (DocumentRoot) from PHP (which is being passed via environment variables) so everything works as normal.
Even lsof won't show what directories are currently open./proc won't list it either, as those files won't allow you to read about those processes as a non-privileged user.
I am not quite sure what you are trying to accomplish security wise by mounting those with noatime. That's a performance benefit.
I have been dealing with a large number of Wordpress installs in the past 2 years and I am hear to tell you this is NOTHING new. This is a very common attack that is being used and its hard as shit to find. Sometimes they embed it in Javascript, sometimes its in PHP. Sometimes they encode the PHP or Javascript in base64. Sometimes they have it binary encoded inside image files. They go to great lengths to hide the code.
There is also a large number of free themes out there that come with this crap included. You can typically find it by looking at the footer include file. Look for a large base64 string. Most people ignore those because there are a number of developers who find it amusing to put that crap in their footers that if removed it will prevent the theme from working. Sure, I understand they want to prevent people from removing their credit but come on. Its leading to security issues across the board.
The only thing that I have found that helps limit these attacks is to only make the wp-content/uploads directory writable by the webserver. Everything else is owned by the user or root. To take things further, each install is placed inside a unique directory name that is chmod'd to 701 (its parent is also 701). If an attack manages to crack one install, they can't just attack another by going through the file system.
Not trying to trash Wordpress here, its just too popular and they have had a number of security mistakes in the past. Wordpress installs require a lot of maintenance to keep up to date. Wordpress makes it easy on attackers by listing the version number right in the damn HTML. Sure, they say that it doesn't matter because people can figure it out anyway. But hey, why not just leave your house unlocked at night. Attackers are just going to get in anyway.
Music makes me code faster. When I am going into a code grind I will pop in some electronic music and start kicking some ass. The repetitiveness of the music really helps me with writing some of the same statements over and over. It also gives me a flow to keep up with. This type of music also makes it easy to tune out when I am working on a more critical section of the code.
If I was told tomorrow that I am not allowed to listen to music at work, I would immediately without even thinking twice start looking for a new job. It really sounds like this is the type of boss who would complain about me taking a 5 minute break to read Slashdot or whatever. Not the type of company I would work for. Treat your employees like humans not slaves, and you will get far more productivity out of them. Humans need a few minutes of casual browsing to help break up the day and reset them selves for the next steps in a project.
I couldn't work in an office that was completely silent. That's more distracting then anything and would drive me crazy.
Now of course I use headphones all the time. It would be very distracting to be forced to listen to a style of music that you aren't into. All coders are into different styles of hacking music. I know some that are into speed metal where others are into classical. Whatever works for ya.
When I am at home (working on my own projects) I will generally have a movie playing on the other screen. For the most part I don't really watch it except for the really cool action scenes. I watch movies that I have seen a number of times so I don't have to watch every little part.
A wise man told me once that you shouldn't look for a good job, look for a good boss.
When I see things like this, I know its a game I won't be playing. I will NOT spend additionally money on a game after I purchase it. World of Warcraft is slightly different in its subscription fees. But, everyone who pays the $13 a month gets the same game. Not different tiers of things depending on how much you spend.
EA is going to be in some serious trouble if they think this will work well as a long term business plan. As it is, I generally don't buy EA games anymore because most of the games they produce are cloned out versions of the same game over and over. Not to mention the quality of the games is piss poor. Command and Conquer vs Warcraft or Starcraft ? EA can't touch Blizzard with a 10' pole here. I will always buy a Blizzard game over EA because they are quality.
EA is going to be in serious shit if they continue down this road.
I seriously doubt Windows is running on 96% of netbooks. Microsoft might be _selling_ on 98% of them but that is because its near impossible to get a good one that doesn't have Windows pre-installed. I am getting a MSI Wind U100 next week and I am sure as hell not using Windows on it. It comes pre-installed but I won't even boot into it. I am going to install Ubuntu and OS X on it.
By using IE6 you are personally responsible for holding back innovation. Countless development time is wasted supporting the completely broken browser. If the company you work for is still using IE6, then they are a serious problem. Well, personally I would never work for a company that is a Windows shop, but that is a whole other story.
All my development supports modern browsers only. If you can't or won't upgrade, then too bad... its not my problem. The percentage of IE6 users against all my sites is very low, sub 10% of users. But even if it was 25% or more... it still wouldn't cause me to waste precious development time on a pile of shit browser.
When you visit some of my sites you are given a warning that the site will be broken in IE6 and that you need to upgrade.
This is what happens when you get in bed with Microsoft, you will get screwed in the end.
They are really going to destroy the language with this idea. Its a *VERY* bad design decision, and they really don't care what the community thinks of it. People suggested using:::... that claim its too many characters to type. Ok, how about : or . or one of the other suggestions.
The decision was made in IRC without any community input. People are very unhappy with it, and they don't care. It almost makes me embarrassed to be a PHP developer.
Maybe with some luck, a competent development team will fork it.
Also, how many digital downloads were done to restore a lost or broken CD. I can't tell you how many times I have purchased the same "The Doors" CD only to have it stolen from my car or what not. After a while I gave up and downloaded it. After buying it like 10 times over (at least), I feel I am entitled to download it.
A large portion of the stuff I download, I download because I want that 1 song and you can't just purchase that 1 song. Why ? Well, because they are a 1 hit wonder and you can't just buy the single of it. The record companies know that people wouldn't buy the entire album if they didn't have to. iTunes also makes it "Album only". So, guess what... download it is.
Now, there has been a crap ton of stuff I have purchased *after* I downloaded it. Downloaded it, listened to it.. liked it, so I went out and purchased the remaining albums. Did I honestly buy that same album I downloaded ? Well, no... however, I did purchase a few more albums and they got more money from me then they would have otherwise.
The record industry needs to realize that it needs to embrace new technology and advertising means. Issuing a DMCA against a Youtube video to take down a video that some kid put together using some semi popular song only pisses off customers. I have found a lot of music I like this way and if the industry doesn't want my money, then fine I will go back to downloading.
The more difficult they make it for me to legally obtain and keep music the greater the chance I will download it. Face it, I am lazy and I don't like to leave the house. I *HATE* going to music stores, I don't like the environment or sales people. By making it easier for me to get it online that only means more sales. I am not going to go to a brick and mortar store to get it, it just won't happen. They are way too over priced anyway. Why the hell do we even need these stores anymore ?!
With so many people claiming sickness from wifi we really need some blind studies.
Take a group of people far into the wilderness with some wifi equipment. Leave them out there for a few days and don't tell them if they equipment is on or off.
Ask them if they have any headaches or other BS they are claiming. I am willing to bet, in a blind study you will find out that the claims are ridiculous.
*IF* after a few studies they find it to be true then I would agree with it until then I call BS and ask them to STFU already.:)
Microsoft has been pissing off their customers in a fun product called Vista. Using your tanker analogy, Microsoft has a huge gaping hole on the side of the ship. Its not going to stop them, it will slow them over time but its them bleeding customers.
People are starting to look for alternatives. I couldn't believe it when I saw 2 friends of mine, who have next to no technical knowledge purchased a laptop and installed Ubuntu on it. I almost fell out of my chair when I saw it.
There are also lots of people switching to Mac or wanting to switch to Mac. Lets face it, Apple is more expensive because they don't have a low end machine. They don't want to fork out the money right now, so they are just waiting. Will they switch ? No idea, but the ones who have made the switch haven't been happier. Hell, I am one of them.
There are alternatives and many people are eye balling them. If Microsoft drops the ball on Windows 7, that hole in the side of the tanker is only going to get bigger. Don't get me wrong, I totally agree that it would take a major event for that hole to sink the ship.
Besides the obvious economy being in the crapper, why would someone spend $36 for a Bluray at Best Buy when you can get the same Bluray from Amazon for $22. Pretty much anything you buy at Best Buy amazon has for far less. A few months back, I looked at 500GB drives at Best Buy. They wanted like $250 for it, when I purchased it at Newegg for $150. Amazon had the same price, however I will buy from someone else before I go to Amazon. I really can't stand their CEO so I try to avoid them. But, when push comes to shove, I will buy from them.
Maybe this economy will get some brick and mortar stores to re-think their pricing strategy.
I am a long time Apple fanboy, really love the iPad. But honestly, I am starting to get annoyed with some missing customizations that Android has had for ages. Not talking themes.
For example: Intents. iOS 6 looked like Apple was headed that way with the way you share pictures or links. However, only a few select companies are integrated with it. I want to be able to add a screenshot right into Evernote. Use a different "read later" provider. I use Chrome on the desktop, which doesn't integrate with iCloud reader. Same thing goes for bookmarks. I use xmarks for syncing across multiple machines and I primarily use Chrome. Xmarks is also awesome for having work profiles. iOS xmarks integration is very limited because of Apple.
Widgets: I can't believe that after all these years of widgets in OS X they haven't brought them over to iOS. It would be very nice to have a dashboard for lets say system status at work. I don't want anything too abusive on system resources, but allowing one of these widgets to update in the background or via notifications would be awesome.
I was honestly considering picking up a Nexus 7 once the LTE version is announced. The announcement of factory images for the Nexus 7 has sealed the deal for me. Will I customize it to that level ? Not sure. But I would like the option.
I go to interviews wearing my normal t-shirt and jeans. To me, putting on cloths that I wouldn't wear to the job is misleading.
Let me clarify that the puzzles I am talking about have no use in case in technology ever. They are random hypotheticals that prove next to nothing and only waste the times of both people.
I am totally ok with and encourage someone to walk in and say. Ok, we have this specific project and ran into this problem. What would you do to fix it ? What technologies, tools or methods would you use to fix it ? How would you know you accomplished it ? If this failed what would you do next ?
For example:
On a very high traffic site you have a list of recent users that is updated very frequently. You are currently using memcache but every time the key expires it creates a heavy spike on your database. How do you solve this ?
There are quite a few ways this question can be answered. This is a totally legitimate interview question. You can apply a lot of different technologies to this in many creative ways.
You will get *FAR* more out of the interview asking this compared to asking riddles about the number of elephants in bathtubs and how much they weigh.
Without a doubt there is no one magic formula. In the end you have to be able to read people. I have had people come in and clam up almost instantly because they were intimidated by me or nervous about the interview. Those are the times I take a short breather to chat about some random shit. Once they relax I get back into the thick of things. I have seen many people interview people and fail at this. They might know the answer but are overwhelmed. But this is also a good indicated of how well they will fit into the place. Some companies I have been at were chaotic, fast paced and high stress. Obviously, someone who cracks under pressure might not be what we want.
I change up my interview style a lot over time. Mostly because each company is very different and has very different needs. I wouldn't interview someone at a startup the same way as a larger established company. I also don't interview juniors and seniors the same. I don't expect a junior to have all the answers, I might need to drop them a few hints or lead them a bit. Do they understand the core concepts ? Did they learn something during a chat ? Were they interested in what they learned ? And it sounds strange but did they enjoy it ?
I have walked out of job interviews where they asked nothing but puzzles. I solve technical challenges and write code. If you really have trouble determining how many toasters you can use to cook 50 pancakes, guess what. I am not the right person for you. If you are looking for someone who can code their ass off, I am the right person.
I have interviewed hundreds of candidates over the years. I have been the hiring manager a few times and never once pulled the puzzle bullshit. I have found the best indicator in the world is to just casually bullshit about technology. You can very quickly find someones strengths, weaknesses and if they are full of it. In a casual chat, people let their guard down and you get a look in.
Ever since I switched to Mac I have been so much happier. My work flows have drastically improved and I am far more productive. I haven't used Windows for anything other then testing a site in IE or pure gaming on a Windows box in many years now.
I have Windows 7 installed for a few games (DCS for one) and I tell ya the UI is a train wreak. It is a cluttered mess that you can't ever find anything. Hell just launching an application is painful. Where did this application install ? Did it install based on the company name or the product name ? Did it install in program files or some other random directory ?
With OS X it has a very clean system layout that makes sense. Where are my apps installed ? /Applications. Where are my pictures, movies, music. In ~/
The system settings page is well organized and I can find what I am looking for very easy. The single navbar makes life a lot easier as well. No guessing where this app has the menu or digging through confusing ribbon menus.
Linux ... is just as bad as Windows on the desktop. There is no unity or no organization. It's just a hot mess.
This is clear proof that god exists
If I only had mod points
I think I saw a movie about this ... the defensive network was called Skynet.
Read the actual complaints and you will see that this guy was being very creepy. This is more then just showing the article to a co-worker.
Um, Apple has tested each iPhone outside of the lab. I remember seeing some pictures of the original iPhone being used on Caltrain way before release and shortly after it was announced. Of course the person using it didn't know they had their picture taken using it.
This is just the first time that Apple lost any of the devices.
The connectivity issues with the iPhone are not because of the device, its because of the awful AT&T network.
Nope, it works perfectly. 1 is the execute bit, which when applied to a directory allows you to read a file from inside that directory ONLY if you know the absolute path to the file. However, since the parent is 701 you can't find out what that unique directory name is without already knowing it.
Apache can read this because its looking for index.php inside that vhost's DocumentRoot. Now, you might be asking ... well, just look at the vhost and grab the DocumentRoot from there. You can't, the directory that contains the vhost files is also set to root.root 700. Apache can read this at start up before it switchs to a non-privileged user.
Here, try this out:
mkdir -p /web/blog1/abc/ /web/blog2/def/ /web/blog3/ghi/
mkdir -p
mkdir -p
chmod 701 /web/blog1 /web/blog2 /web/blog3
chmod 701
chmod 701
chmod 701 /web/blog1/abc /web/blog2/def /web/blog3/ghi
chmod 701
chmod 701
touch /web/blog1/abc/index.php /web/blog2/def/index.php /web/blog3/ghi/index.php
touch
touch
Now, try an ls of /web/blog1 you will get a Permission denied. You can't find out that unique directory name inside /web/blog1 without already knowing it, which Apache does. However, you can do a ls /web/blog1/abc/index.php
Wordpress doesn't need to look at files inside those directories so its ok. It also gets its current running (DocumentRoot) from PHP (which is being passed via environment variables) so everything works as normal.
Even lsof won't show what directories are currently open. /proc won't list it either, as those files won't allow you to read about those processes as a non-privileged user.
I am not quite sure what you are trying to accomplish security wise by mounting those with noatime. That's a performance benefit.
I have been dealing with a large number of Wordpress installs in the past 2 years and I am hear to tell you this is NOTHING new. This is a very common attack that is being used and its hard as shit to find. Sometimes they embed it in Javascript, sometimes its in PHP. Sometimes they encode the PHP or Javascript in base64. Sometimes they have it binary encoded inside image files. They go to great lengths to hide the code.
There is also a large number of free themes out there that come with this crap included. You can typically find it by looking at the footer include file. Look for a large base64 string. Most people ignore those because there are a number of developers who find it amusing to put that crap in their footers that if removed it will prevent the theme from working. Sure, I understand they want to prevent people from removing their credit but come on. Its leading to security issues across the board.
The only thing that I have found that helps limit these attacks is to only make the wp-content/uploads directory writable by the webserver. Everything else is owned by the user or root. To take things further, each install is placed inside a unique directory name that is chmod'd to 701 (its parent is also 701). If an attack manages to crack one install, they can't just attack another by going through the file system.
Not trying to trash Wordpress here, its just too popular and they have had a number of security mistakes in the past. Wordpress installs require a lot of maintenance to keep up to date. Wordpress makes it easy on attackers by listing the version number right in the damn HTML. Sure, they say that it doesn't matter because people can figure it out anyway. But hey, why not just leave your house unlocked at night. Attackers are just going to get in anyway.
Music makes me code faster. When I am going into a code grind I will pop in some electronic music and start kicking some ass. The repetitiveness of the music really helps me with writing some of the same statements over and over. It also gives me a flow to keep up with. This type of music also makes it easy to tune out when I am working on a more critical section of the code.
If I was told tomorrow that I am not allowed to listen to music at work, I would immediately without even thinking twice start looking for a new job. It really sounds like this is the type of boss who would complain about me taking a 5 minute break to read Slashdot or whatever. Not the type of company I would work for. Treat your employees like humans not slaves, and you will get far more productivity out of them. Humans need a few minutes of casual browsing to help break up the day and reset them selves for the next steps in a project.
I couldn't work in an office that was completely silent. That's more distracting then anything and would drive me crazy.
Now of course I use headphones all the time. It would be very distracting to be forced to listen to a style of music that you aren't into. All coders are into different styles of hacking music. I know some that are into speed metal where others are into classical. Whatever works for ya.
When I am at home (working on my own projects) I will generally have a movie playing on the other screen. For the most part I don't really watch it except for the really cool action scenes. I watch movies that I have seen a number of times so I don't have to watch every little part.
A wise man told me once that you shouldn't look for a good job, look for a good boss.
When I see things like this, I know its a game I won't be playing. I will NOT spend additionally money on a game after I purchase it. World of Warcraft is slightly different in its subscription fees. But, everyone who pays the $13 a month gets the same game. Not different tiers of things depending on how much you spend.
EA is going to be in some serious trouble if they think this will work well as a long term business plan. As it is, I generally don't buy EA games anymore because most of the games they produce are cloned out versions of the same game over and over. Not to mention the quality of the games is piss poor. Command and Conquer vs Warcraft or Starcraft ? EA can't touch Blizzard with a 10' pole here. I will always buy a Blizzard game over EA because they are quality.
EA is going to be in serious shit if they continue down this road.
I seriously doubt Windows is running on 96% of netbooks. Microsoft might be _selling_ on 98% of them but that is because its near impossible to get a good one that doesn't have Windows pre-installed. I am getting a MSI Wind U100 next week and I am sure as hell not using Windows on it. It comes pre-installed but I won't even boot into it. I am going to install Ubuntu and OS X on it.
By using IE6 you are personally responsible for holding back innovation. Countless development time is wasted supporting the completely broken browser. If the company you work for is still using IE6, then they are a serious problem. Well, personally I would never work for a company that is a Windows shop, but that is a whole other story.
All my development supports modern browsers only. If you can't or won't upgrade, then too bad ... its not my problem. The percentage of IE6 users against all my sites is very low, sub 10% of users. But even if it was 25% or more ... it still wouldn't cause me to waste precious development time on a pile of shit browser.
When you visit some of my sites you are given a warning that the site will be broken in IE6 and that you need to upgrade.
This is what happens when you get in bed with Microsoft, you will get screwed in the end.
They are really going to destroy the language with this idea. Its a *VERY* bad design decision, and they really don't care what the community thinks of it. People suggested using ::: ... that claim its too many characters to type. Ok, how about : or . or one of the other suggestions.
The decision was made in IRC without any community input. People are very unhappy with it, and they don't care. It almost makes me embarrassed to be a PHP developer.
Maybe with some luck, a competent development team will fork it.
I just ran the test and Safari 4 scored 100/100. I am fairly surprised about this.
There are only 2 possibilities of why she would push so hard for it:
1) She has no technical knowledge at all and/or not even a basic understand of how the internet works. Just another Ted Stevens.
2) She is being bribed or blackmailed but some ISP.
Nobody in their right mind would want to support this kinda of action unless they are being paid off. Its flat out ludicrous.
Also, how many digital downloads were done to restore a lost or broken CD. I can't tell you how many times I have purchased the same "The Doors" CD only to have it stolen from my car or what not. After a while I gave up and downloaded it. After buying it like 10 times over (at least), I feel I am entitled to download it.
A large portion of the stuff I download, I download because I want that 1 song and you can't just purchase that 1 song. Why ? Well, because they are a 1 hit wonder and you can't just buy the single of it. The record companies know that people wouldn't buy the entire album if they didn't have to. iTunes also makes it "Album only". So, guess what ... download it is.
Now, there has been a crap ton of stuff I have purchased *after* I downloaded it. Downloaded it, listened to it .. liked it, so I went out and purchased the remaining albums. Did I honestly buy that same album I downloaded ? Well, no ... however, I did purchase a few more albums and they got more money from me then they would have otherwise.
The record industry needs to realize that it needs to embrace new technology and advertising means. Issuing a DMCA against a Youtube video to take down a video that some kid put together using some semi popular song only pisses off customers. I have found a lot of music I like this way and if the industry doesn't want my money, then fine I will go back to downloading.
The more difficult they make it for me to legally obtain and keep music the greater the chance I will download it. Face it, I am lazy and I don't like to leave the house. I *HATE* going to music stores, I don't like the environment or sales people. By making it easier for me to get it online that only means more sales. I am not going to go to a brick and mortar store to get it, it just won't happen. They are way too over priced anyway. Why the hell do we even need these stores anymore ?!
With so many people claiming sickness from wifi we really need some blind studies.
Take a group of people far into the wilderness with some wifi equipment. Leave them out there for a few days and don't tell them if they equipment is on or off.
Ask them if they have any headaches or other BS they are claiming. I am willing to bet, in a blind study you will find out that the claims are ridiculous.
*IF* after a few studies they find it to be true then I would agree with it until then I call BS and ask them to STFU already. :)
Microsoft has been pissing off their customers in a fun product called Vista. Using your tanker analogy, Microsoft has a huge gaping hole on the side of the ship. Its not going to stop them, it will slow them over time but its them bleeding customers.
People are starting to look for alternatives. I couldn't believe it when I saw 2 friends of mine, who have next to no technical knowledge purchased a laptop and installed Ubuntu on it. I almost fell out of my chair when I saw it.
There are also lots of people switching to Mac or wanting to switch to Mac. Lets face it, Apple is more expensive because they don't have a low end machine. They don't want to fork out the money right now, so they are just waiting. Will they switch ? No idea, but the ones who have made the switch haven't been happier. Hell, I am one of them.
There are alternatives and many people are eye balling them. If Microsoft drops the ball on Windows 7, that hole in the side of the tanker is only going to get bigger. Don't get me wrong, I totally agree that it would take a major event for that hole to sink the ship.
Besides the obvious economy being in the crapper, why would someone spend $36 for a Bluray at Best Buy when you can get the same Bluray from Amazon for $22. Pretty much anything you buy at Best Buy amazon has for far less. A few months back, I looked at 500GB drives at Best Buy. They wanted like $250 for it, when I purchased it at Newegg for $150. Amazon had the same price, however I will buy from someone else before I go to Amazon. I really can't stand their CEO so I try to avoid them. But, when push comes to shove, I will buy from them.
Maybe this economy will get some brick and mortar stores to re-think their pricing strategy.
So, they are basically second life now ...