Forgot your password?
typodupeerror

Comment Re:COST OF GAS (Score 1) 197

The cost of gas is up everywhere. The cost of gas in California is not rising faster than elsewhere in the US. It is the relative cost of gas that would affect people's habits and from the numbers I have seen the only thing that stopped people from driving was not having to go in to work (Covid). I think you are also over estimating the percentage vehicles contribute to the overall problem.

Comment Re:COST OF GAS (Score 1) 197

If you look at the graph for world population (https://www.macrotrends.net/global-metrics/countries/WLD/world/population) and California population (https://www.macrotrends.net/global-metrics/states/california/population) you will notice that they appear to be identical. Population in California has dropped off slightly over the last couple years in much the same way that the world population has dipped a little in the last few years. Your insinuation that the reason for the decline is related to taxes and regulations is likely without merit.

Comment Re:Just mobiles and laptops? (Score 1) 120

I don't need to repair or reuse a banana or diaper.

I can see it now: Chiquita requires you agree to the TOS when purchasing their bananas. Opening the banana or re-configuring the internals is a violation of those TOS and can be prosecuted. Not to mention any behavior with their banana that they consider inappropriate! Consumers shall be held responsible for any theoretical damage to their intellectual property or brand.

Yes. I am fine with it applying to goods other than mobiles and laptops.

Comment Re:People just doesn't get it (Score 2) 536

You are assuming that the stack trace is generated, which for many anticipated exceptions it is not. For anticipated exceptions, you would simply catch it and adjust. For example, the code is attempting to use a connection to the database to execute a query, but the connection timed out before the query could be transmitted. To handle this error, one would simply need to reconnect and retry and the problem is solved without any fuss. I would rather have an exception here because I'd rather not see every call in the stack between the beginning of the query call and the attempt to use the connection have to return and check an error code.

That leaves unanticipated exceptions, for which the engineer will likely want the error output to help them track down what happened. In the case of unanticipated exceptions, yes you have a much slower method of logging, but you get a lot of useful information that helps the engineer track down the problem quickly. For example a query to the database is malformed which generates an exception which likely will end the execution of at least that part of the application. Having the exception take 1000x longer to handle in this case is trivial compared to the fact that it happened at all, and well worth the cost for the information about the error that it provides (a stack trace, versus nothing but an error condition).

Comment Re:virtual hosts, money (Score 1) 665

I spent a lot of time dealing with virtual hosting and SSL and only the latest patched versions of IE7 & IE8 support embedding the domain name in the SSL request. Mozilla does support this, but seems to attempt a standard SSL request first (not sure which version I was testing with now - was the latest at the time). Webkit based browsers seemed to be the only ones that properly send the domain upon every SSL connection attempt. SSL is designed to allow but not require a header for the domain which is necessary if the server is virtual hosting using a separate SSL certificate for each domain hosted. I believe it is possible to combine the SSL certificates for each domain hosted and send the combined cert to the client regardless of which domain is requested, however this requires a much more expensive SSL cert. For those of us wanting free certs this really isn't an option. As far as the authors argument that SSL certs are expensive, they are not. You can get a perfectly good and perfectly free cert from StartCom, and possibly other vendors as well. The true reason SSL is not often used is certainly due to server side processing cost. Caching is not generally relevant since most of the expensive resources are images which can be downloaded using a non-SSL connection within the SSL encrypted page without worrying about man in the middle attacks. What is truly sad is that Java does not yet support this domain SSL header yet - meaning if you are using the language to write your web server, you have to wrapper each SSL connection to capture the header yourself. Common Snorkle, what are you waiting for?

Slashdot Top Deals

Pause for storage relocation.

Working...