Slashdot Mirror


Jonathan Zdziarski Answers

Wednesday we requested questions for Jonathan Zdziarski, an open source contributor and author of the recently reviewed book "Ending Spam." Jonathan seems to have taken great care in answering your questions, which you will find published below. We have also invited Jonathan to take part in the discussion if he has time so if your question didn't make the cut perhaps there is still hope. Winkydink asks:
How do you pronounce your name?

Jonathan Responds:
Hi. Well first off, I'm sticking to the pronunciation 'Jarsky', however many of my relatives still pronounce it 'Zarsky' or "Za-Jarsky". As far as I can tell, my last name was originally 'Dziarstac' when the first generation of my family came over, which would have been pronounced with a 'J'. It's of polish decent, but I'm afraid I'm not very in tune with my ancestors on this side of the family. The other side of my family is mostly Italian, and they drink a lot, organize crime, and generally have more fun - so they are much more interesting to hang out with. For the past 29 years of my life, giving my last name to anyone has included the obligatory explanation of its pronunciation, history, and snickering at puns they think I'm hearing for the first time (-1, Redundant), so don't feel too bad for asking.

As far as who I am and why you should care - I guess that depends on what kind of geek you are. I've never appeared in a Star Trek series or anything (I've been too busy coding and being a real geek), so I guess that eliminates me as a candidate for public worship in some circles. I guess if you're into coding, open source, hacking all kinds of Verizon gear, or eradicating spam, then some of my recent projects may be of interest. If you at least hate me by the end of the interview, I'll have accomplished something.

An Anonymous Coward asks:
What do you think about the proposed change to the GPL with the upcoming GPL 3? Is it a welcomed breath of fresh air to the Open Source Community, or will it just be a reiteration of the previous GPL? What are your thoughts and comments on the GPL 3?

Jonathan Responds:
Based on the scattered information I've read about some potentially targeted areas in GPLv3 and the religious fervor with which some of these discussions have been reported, all I can say is I hope common sense prevails. Actually there's much more I can, and will, say about the subject below, but I think it's probably a good idea to summarize in advance as you may not make it through the list of details in one sitting. So in summary of all my points to come: I hope common sense prevails.

One of the things I've heard, which doesn't make much sense to me, is the idea of changing the GPL to deal with 'use' rather than 'distribution', which would affect companies like Google and Amazon. The argument seems to be that some people feel building your infrastructure on open source should demand a company release all of their proprietary source code which links to or builds on existing GPL projects. They argue that the open source community hasn't benefited from companies like Google and Amazon. Well, from a source code perspective that might be somewhat true - but if you take into consideration the fact that we all have a good quality, freely accessible search engine, cheap books, and employment for many local developers (many of whom write open source applications), the benefits seem to balance out the deficiency. Does anybody remember what the world was like before Google? None of us do, primarily because we couldn't find it - we couldn't find much of anything we were looking for on the Internet as a matter of fact, including other people's open source projects. You might not be getting "free as in beer" or "free as in freedom", but you are getting "free as in searches" and "free as in heavily discounted but not quite free books" in exchange. That's a pretty good trade. It's certainly better than having to look at pages of advertising before completing your order, or subscribing to a Google search membership. On top of this, you probably wouldn't want to see half of the source code that's out there being integrated (internally) into these projects. While I haven't seen Google or Amazon's mods specifically, I do heavily suspect that, if they are like any other large corporate environment, there are many disgusting and miserable hacks that should under all circumstances remain hidden from sight forever - many of which are probably helping ensure job security for the developers that performed the ugly hacks in the first place. Just how useful would they be to your project anyway? Probably little. And if you really believe in free software ("free as in freedom"), then the idea that someone should be required to contribute back to your project in order to use it is contradictory to that belief - you might just as well be developing under an EULA instead of the GPL.

With that said, there's a difference between freedom and stealing. I've heard that GPLv3 will attempt to address the mixing of GPL and non-GPL software. I think this clarification might be a good thing. For one, because I've seen far too many pseudo-open source tin cans and CDs being resold commercially out there, distributing many different F/OSS tools with painfully obvious closed commercial code, and finding ways to easily loophole around this part of the GPL, and secondly because it's based around implementation guidelines that really aren't any of the GPL's business. At the moment, mixing uses a very archaic guideline, which is - in its simplest terms -based on whether or not your code shares the same execution space as the GPL code. I think this needs to be reworked to give authors the flexibility to define "public" and "private" interfaces in a project manifest. We're already defining these anyway if we believe in secure coding practices. Closed source projects may then use whatever public interfaces the author has declared public (such as command line execution, protocols, etcetera) but private interfaces are off limits. One particular area where this would come in handy is in GPL kernel drivers, which need this ability to avoid tainted-kernel situations. If the author wants, they can declare dynamic linking to a library as a public interface and even make their code more widely useful without having to switch to the GPL's red-headed stepchild, the LGPL. It would also be nice to be able to restrict proprietary protocols (such as one between a client piece and a server piece, which may have originally been designed to function together) to only other GPL projects, which would essentially create GPL-bonded protocol interfaces. This won't restrict use in any way - only what closed-source projects are limited to interfacing with when redistributed.

I would also like to see the GPL's integration clause tightened down quite a bit. There are some companies out there abusing the GPL with "dual licensing". I've considered dual licensing myself in some commercial products, and I just don't believe it's being done in the right spirit much, if at all. Doing away with the possibility of integrating the GPL into a dual license could help strengthen the GPL.

Finally, I'd say mentioning a few words in the GPLv3 about submission practices to help stave off problems like this whole Sco and Linux® fiasco from ever happening again would be a good thing. People generally don't want to limit usage, but if you're going to submit code, there should be at least some submission guidelines. I suspect much of this can (and should) be done outside of the GPL, but at least covering the basics might be appropriate. It should be understood that if you're going to contribute code to the GPL, it had better be unencumbered. It's definitely something every project should already be considering already.

An Anonymous Coward asks:
Do you have any suggestions for the enthusiastic yet inexperienced? Perhaps a listing of projects in need of developers, with some indication of the level of experience suggested (as well as languages required).

Jonathan Responds:
The best projects I've seen were those started from someone with a passion for what it is they're coding. Open source development is the internship of the 21st century, and working on projects is tedious, frustrating, and likely to make you want burn out if you haven't developed perseverance. I usually suggest to people to come up with ideas for some projects they feel passionately about and make those their first couple of goals. Even if it's completely useless to anyone else, you're still likely to benefit from it yourself. Just look at my Australian C programming macros. Who would have thought that people wouldn't want to use "int gday(int argc, char *argv[])" in their code. I'm sure I learned something from that project, though I still can't remember what.

Instead of spending idle time looking for other projects to jump on, I'd spend as much time as I could in man pages, books, and coding up my own little concoctions. Even if they're stupid ones, you're likely to learn something, or even better - come up with another neat little idea you can spin off of it. Necessity is the mother of invention, so I try and figure out what it is I need, and then do it myself. That usually works. If you still can't think of anything, see if you can catch a vision for something someone else needs. I wouldn't touch anything that you're not 100% bought into and excited about for your first projects.

RealisticCanadian asks:
I myself have had numerous interactions with less-than-technically-savvy management-types. Any time I bring up solutions that are quite obviously a better technical and financial choice over software-giant-type solutions; conversation seems to hit a brick wall. The ignorance of these people on such topics is astounding, and I find many approaches I have tried seem to yield no results in the short term. "Well, yes, your example proves that we would save $500,000 per year using that Open Source solution. But We've decided to go the Microsoft (or what-have-you) route." With your track record, I can only assume you have found some ways to overcome this closed-mindedness.

Jonathan Responds:
I'm not so sure that I have convinced anyone open source was better inasmuch as I've convinced people that other people's projects were better than what Microsoft had to offer, and that's not hard for anyone to accomplish. I can strongly justify some open source projects to people because they are already superior to their commercial counterparts, but there are also a lot of crummy projects out there that should be shot and put out of my misery. I'm not one to advocate a terribly written project, even if it is open source. The good projects can usually speak for themselves with only a little bit of yelling and biting from me. So if you want to become a respected open source advocate at your place of business, I'd say the first rule of thumb is not to try and advocate crap projects for the mere reason that they're open source. Advocating the good ones will help you build a reputation. It also helps if you read a lot of Dilbert so you'll understand the intellectual challenges you'll be facing.

Some other things that I've found can help include what managers love to call a "decision matrix" which is a spreadsheet designed to make difficult decisions for them. For your benefit, this should consist of a series of features and considerations that the competitor doesn't have, with a big stream of checkboxes down the row corresponding to your favorite open source project. Nobody's interested in knowing what the projects have in common anyway, so tell them (with visual cues) what features your open source solution has over the competitor. And if you really want to get your point across clearly to your manager, do the spreadsheet in OpenOffice so they'll have to download and install an open source project to read it.

Once you've done that, and if you're still employed by now, the next thing to put together is an ROI (return on investment) comparison, which not only addresses the costs of the different solutions, but costs to support both solutions in the long run, cost of inaccuracy (if this is a spam solution for example), cost of training, customizations, and resources to manage each product. This is a great opportunity to size machines and manpower and include that in a budget forecast. Many managers are sensitive to knowing just how much extra dough it's going to cost to implement the commercial solution. At the very least, you ought to be able to prove many commercial solutions don't actually make the company much money in the long run. If speaking of cash isn't enough to convince your manager then a full analysis of low-level technical aspects will be necessary. This is simply a dreadful process, and where most open source attempts fail - because a lot of people are just too lazy to learn about the technical details of both projects and complete their due diligence. If you take the time, though, you're likely to either convince your boss or utterly confuse him - either one is very satisfying.

The biggest challenge in justifying many open source projects I've run into is finding solid support channels that your boss can rely on if you get hit by a bus (or in his mind, fired). Support is, in many cases, a requirement but not all good open source projects see the benefit in offering support. A lot of companies are willing to pay just to have someone they can call when they have a problem. So if you can find a project that's got a pool of support you can draw out of, you can not only use that to justify the project to your manager, but kick a few bucks back into the open source community. I started offering support contracts for dspam primarily because people needed them in order to get the filter approved as a solution. I think I do a good job supporting my clients that do need help, but at least half of them just pay for a contract and never use it. I certainly don't have a problem with that, and it supports the project as well as the people investing time in it.

Goo.cc asks a two parter:
1. In your new book, you basically state that Bogofilter is not a bayesian filter, which was news to some of the Bogofilter people I have spoken to. Can you explain why you feel that Bogofilter is not a bayesian filter?

Jonathan Responds:
Bogofilter uses an alternative algorithm known as Fisher-Robinson's Chi-Square. Gary Robinson (Transpose) basically built upon Fisher's Inverse Chi-Square algorithm for spam filtering, which provided some competition for the previously widely accepted Bayesian approach to this. Therefore, Bogofilter is not technically a Bayesian filter. The term, "Bayesian", however is commonly a buzzword known to most people to describe statistical content filtering in general (even if it isn't Bayesian), and so Bogofilter often gets thrown into the same bucket. CRM114 is another good example of this - many people throw it in the same bucket as a Bayesian filter, but it is configured (by default, at least) to be a Markovian-based filter which is "almost entirely nothing like Bayesian filtering". Technically, CRM114 isn't a filter at all, but a filtering-language JIT compiler (it can be any filter). I cover all of these mathematical approaches in Ending Spam, so grab a copy if you're interested in learning about their specific differences.

2. Bayesian filters have been around for some time now but there still seems to be no standardized testing methods for determining how well filters work in comparison to one another. Do you think that comparative testing would be useful and if so, how should it be performed?

Jonathan Responds:
Part of the reason there's no standardized testing methodology is because there's no standardized filter interface. A few individuals have attempted to build spam "jigs" for testing filters, but the bigger problem is really lack of an interface. About a year ago, the ASRG was reportedly working on developing such a standard - but as things usually turn out, it's an extremely long and painful process to get anything done when you've got a committee building it (take the mule, for instance, which was a horse built by a committee). This is probably why filter authors have also been hesitant to try and accommodate their filters to a particular testing jig. Incidentally, this is how I surmise that SPF could not have possibly made it through the ASRG - the fact that it made it out at all suggests that it never went in.

I think it's of some interest to compare the different filters out there, but it's also somewhat of a pointless process too. Since these systems learn, and learn based on the environment around them, only a simulation and not a test, will really identify the true accuracy of these filters - and even if you can build a rock solid simulation, it will only tell you how well each filter compared for the test subject's email. If we are to have a bake-off of sorts, it definitely ought to include ten or more different corpora from different individuals, from different walks of life. Even the best test out there can't predict how a filter might react to your specific mail, and for all we know the test subjects may have been secretly into ASCII donkey porn (which will, in fact, complicate your filtering).

This is why some people misunderstand my explanations of dspam's accuracy. All I've said in the past is "this is the accuracy I get", and "this is the accuracy this dude got". Which is the equivalent of "our lab mice ate this and grew breasts". There's no guarantee anybody else is going to get those results, though I'm sure many would try (with the mice, that is). In general, though, I try to publish what I think are good "average" levels for users on my own system, and they are usually around 99.5% - 99.8%. In other words: your mileage may vary. So try it anyway. Incidentally, I've been working with Gordon Cormack to try and figure out what the heck went wrong with his first set of dspam tests. So far, we've made progress and ran a successful test with an overall accuracy of 99.23% (not bad for a simulation).

What would be far more interesting to me would be a well-put together bakeoff between commercial solutions and open source solutions. The open source community around spam filtering really has got the upper hand in this area of technology, and I'm quite confident F/OSS solutions can blow away most commercial solutions in terms of accuracy (and efficacy).

Mxmasster asks:
Most antispam software seems to be fairly reactionary - wither it is based on keyword patters, urls, sender, ip, or the checksum of the message a certain amount of spam has to first be sent and identified before additional messages will be tagged and blocked. Spf, domainkeys, etc... requires a certain percentage of the Internet to adopt before they will be truely effective. What do you see on the horizon as the next big technique to battle spam? How will this affect legitimate users on the Internet?

Jonathan Responds:
That's the problem with most spam solutions, and why I wrote Ending Spam. Bayesian content filtering, commonly thrown into this mix, has the unique ability to grow out of your typical reactive state and become a proactive tool in fighting spam. I get about one spam per month now at the most, and DSPAM is learning many new variants of spam as it catches them; I'd call that pretty proactive. Spam, phishing, viruses, and even intrusion detection are all areas that can benefit greatly from this approach to machine learning. They will likely never become perfect, but these filters have the ability to not only adapt to new kinds of spam, but to also learn them proactively before it makes it into your inbox. Some of this is done through what is called "unsupervised learning" and not traditional training, while other tools, such as message inoculation and honey pots, can help automate the sharing of new spam and virus strains before anyone has to worry about seeing them. We haven't thoroughly explored statistical analysis enough yet for there to be a "next big technique" beyond this. The next big techniques seem to be trying to change email permanently, and I don't quite feel excited about that. Statistical tools are where I think the technology is at and it needs to become commonplace and easier to setup and run.

The problem seems to be in the myth that statistical filtering is ineffective or incomplete. Many commercial solutions pass themselves off as statistical(ish) and it seem to be contributing to this myth by failing to do justice to the levels of accuracy many of the true (and open source) statistical filters are reflecting. Any commercial solution that claims to be an adaptive, content-based solution (like Bayesian filters are) really ought to deliver better than 95% or 99% accuracy. Part of the problem is just bad marketing - most of these tools are not true "Bayesian" devices; they just threw a Bayesian filter in there somewhere so they could use the buzzword. Another problem is design philosophy and the idea that you need an arsenal of other, less accurate tests, to be bolted in front of the statistical piece. If you're going to train a Bayesian filter with something other than a human being, whatever it is that's training it ought to be at least as smart as a human being. Blacklist-trained Bayesian filters are being fed with about 60% accurate data, (whereas a human is about 99.8% accurate). So it's no surprise to me that Blacklist-trained filters are severely crippled - what a dumb combination. If you really want to combine a bunch of tools for identifying spam, build a reputation system instead. They do a very good job of cutting spam off at the border, are generally more scalable than content-based filtering, and most large networks can justify their accuracy by their precision.

Not all commercial content-based filters are junk. Death2Spam is one exception to this, and delivers around 99.9% accuracy, which is in the right neighborhood for a statistical filter. Not all reputation systems are junk either. CipherTrust's TrustedSource is one example of what I call a well-thought out system. If you must have a commercial solution, either of these I suspect will make you quite happy. As for (most of) the rest, quit screwing around and build something original that actually works.

Jnaujok asks:
The SMTP standard that we use for mail transfer was developed in the late 70's - early 80's and has, for the most part, never been updated. In that time period, the idea of hordes of spam flowing through the net wasn't even considered. It has always been the most obvious solution to me that what we really need is SMTP 2.0. Isn't it about time we updated the SMTP standard?

Jonathan Responds:
You're talking about an authenticated approach to email, and there have been many different standards proposed to do this. First let me say that, even though SMTP was drafted a few decades ago, it's still successful in performing its function, which is a public message delivery system - key word being public. There exist many private message delivery systems already, which you could opt to use, including bonded sender and even rolling your own using PGP signatures and mailbox rules. I have reservations about forcing such a solution on everybody and breaking down anonymity for the sake of preventing junk mail. Until you can sell a company like Microsoft on absolute anonymity in bonded sender and sell ISPs into putting up initial bonds for their customers (so that a ten-year old gradeschool student can still use email), I see a very large threat (especially by the government) in globalizing this as a replacement for the 'public' system. With services like gmail, where you can store an entire life's worth of email, the idea that everything you've ever said could be sufficiently traced back to you and used against you, I would rather deal with the spam. Why? Let me pull out my tinfoil hat...

It's been advertised plenty of times on Slashdot that Google stores everything about all of its queries. It wouldn't surprise me if they already have government contracts in place to perform data mining on specific individuals. How would you like, in the future, all of your email to be mined and correlated with other personal data to determine whether or not you should be allowed to fly? Buy a firearm? Rent a car? We're not very far off from that, and even less so once this correlation is made possible.

So abstract some level of anonymity at the ISP-level you say? That's just not going to happen. For one, that makes it just as simple for a spammer to abuse somebody's network and then we've gone and redesigned SMTP for no good reason. Remember, business has to be able to set up shop online fairly easily and spammers are a type of shop. So we are always going to balance between free enterprise and letting spammers roam on the network. Should we employ a CA, how much would it cost to run your own email server? More importantly - does this perhaps open the door for per-email taxes? I'd much rather just deal with spam the way we are now. For another thing, abstracted identity architectures would only give you a level of anonymity parallel to the level of anonymity you have when you purchase a firearm (where the forms are stored by your dealer, rather than filed to a central government agency). See how long it takes for the feds to trace your handgun back to you if you leave it at the scene of a crime.

You can't leave it in the ISP's control anyway. The sad truth is that most ISPs still don't care about managing outgoing spam on their network; so new spammers are being given a nurturing environment to break into this new and exciting business. I had a recent bout with XO Communications about one such new spammer who had run a full-blown business on their network since 1997 and recently decided he'd like to start spamming under the "CAN-SPAM" act (which he was convinced defended his right to spam). He included his phone number, address, and web address in the spam - I called him up and verified he was who he said he was (the owner of this business, and spamming). Provided all of this information (over a phone call) to the XO abuse rep (let's call him "Ted"), even filed a police report, and XO still to this day has done nothing. His site is even still there, selling the same crap he spams for. This happens every day at ISPs out there.

The consequences outweigh the benefits. The people who drafted the SMTP protocol probably thought of most of these issues too. A public system can't exist without the freedom to remain anonymous, ambiguous, and the right to change your virtual identity whenever the heck you like.

Sheetrock asks a two parter:
1. In the past, I've heard it suggested that anti-spam techniques often go too far, culling good e-mail with the bad and perhaps even curtailing 1st Amendment rights. Clearly this depends on what end of the spectrum you're on, but recent developments have given me pause for thought on the matter. For example, certain spam blacklists would censor more than was strictly necessary (a subjective opinion, I realize) to block a spammer -- sometimes blocking a whole Class C to get one individual. This would cause other innocent users in that net space to have their e-mail to hosts using the blacklists silently dropped without any option of fixing the problem besides switching ISPs.

Jonathan Responds:
A lot of blacklists have started taking on a vigilante agenda, or at the very least rather questionable ethical practices. Spamhaus' recent blacklisting of all Yahoo! Store URLs (and Paul Graham's website) is a prime example of this. As long as you're subscribed to human-operated blacklists, you're going to suffer from someone's politics. That's one of the reasons I coded up the RABL, which is a machine-automated blacklist. There is also another called the WPBL (weighted private block list). As the politics of the organizations running human-maintained lists get worse, I think more of these automated lists will start to pop up. Machine-automated blacklists don't have an agenda - they have a sensitivity threshold. It's much easier to find the right list with the right threshold than it is to find the right politics (and then keep tabs on them to make sure they don't change). The RABL, for example, measures network spread rather than number of complaints. If a spammer has affected more than X networks, they are automatically added to the system, and removed after being clear for six hours (no messy cleanup). Another nice thing about machine-automated blacklists is that they are really real-time blacklists, and capable of catching zombies and other such evils with great precision.

NOTE: I haven't had time yet to bring the RABL into full production, but am interested in finding more participants to bring us out of testing.

2. This is an extreme example, but most anti-spam approaches have the following characteristics: They are implemented on a mail server without fully informing the users of the ramifications (or really informing them at all). They block messages without notification to the sender, causing things to be silently dropped. Even if the recipient becomes aware of the problem, few or no options are given for the recipient to alter this "service".

Jonathan Responds:
I've run into issues like this with my ISP (Alltel), and I agree with a lot of what you're saying. In the case of Alltel, not only are they filtering inbound messages using blacklisting techniques and other approaches they don't care to tell me about, but they are filtering outbound messages as well. I had to eventually give up using their mail server because I could not adequately train my own spam filter (Alltel would block messages I forwarded to it). To make matters worse, there is no way to opt out of this type of filtering on their network, even though I offered to give them the IP address of my remote mail server. This clearly does affect their customers, and I feel there are censorship, violation of privacy and denial of service issues all going on here. (Somebody please sue them by the way).

Fortunately, I don't think this issue is as wide spread as you might think. Many of the ISPs and Colleges I've worked with are, unlike Alltel, very dedicated to ensuring that their tools only provide a way for their users to censor themselves. I think this ought to be a requirement for any publicly used system. Specifically...

1.The user must be able to opt in or out of all aspects of filtering
2.All filtering components and their general function must be fully disclosed
3.The user must be able to review and recover messages the system filtered

Opting out of RBLs is as easy as having two separate mail servers and homing on the box you want. I would strongly advise to ensure that your solution is capable of receiving instruction from a user to improve its results, but it is still very difficult to scale this to millions users. At the very least should be fully disclosed, recoverable, and removable.

An Anonymous Coward asks:
Without going into the truths of the beliefs in question, which I'm sure will be debated enough in the Slashdot thread anyway (and I hope you'll join in), what do you think the reason is that so many scientists, nerds and people otherwise rather similar to you think your beliefs are obviously incorrect? Do you think they are all deluded? Do you agree that there might be a possibility that your beliefs are not rational?

Jonathan Responds:
The beliefs I hold as a Christian aren't always the popular ones, but they're certainly valid arguments for anyone who cares to ask about them (not that that has happened). When you read about someone's beliefs, you have the option to engage in discussion, or to filter his or her beliefs through your own belief system. The former option involves cognitive thought, however the latter is how most people today respond to anything that even smells religious. And I say this coming from the position of someone who hasn't tried to shove my beliefs down anyone's throat - I merely documented them on my personal website. That tells me that some people don't believe I have the right to my own beliefs - how asinine is that?

But to address the question, my beliefs aren't based on some religious intellectual suicide. In fact, the Bible teaches that you should know what you believe and why, and that you should even be prepared to give a defense for your faith - so the Bible encourages sound thinking and not some pontificated ideal structure as many quickly dismiss it as. I didn't dumb down when I became a Christian. In fact, it felt more like I began to think more clearly. I was raised in the same public school system as everyone else and didn't even know who Jesus Christ was until around my junior or senior year of high school. I've read from my early days in Kindergarten how "billions of years ago, when dinosaurs roamed the earth" and I've been taught the theory of evolution like everyone else. The problem, though, is that no matter how credible or not a particular area of science is, much of what is out there is taught based on authority. I find it very ironic to be flamed by anyone who thinks I'm an idiot for not believing in a theory that's never been proven by scientific process. It's recently become a "religious act" to question science in any capacity, but isn't questioning science the only way we can tell the good science from the bad science? And there is a lot of great science out there - even in public schools. But there's no longer a way for students to evaluate the credibility of what they're being taught. That seems to be degrading the quality of the subject. Science should be a quest for the truth, with no presuppositions, and appropriate understanding between hypotheses vs. theories vs. laws. When a theory is presented in the classroom as law and it's not held accountable to method, it's degenerated into mere conditioning.

I've spent a considerable amount of time studying topics such as the age of the earth and the theory of evolution, and I could probably argue it quite well if so inclined to engage in a discussion. That's important if you're going to believe anything really - including whatever the mainstreamed secular agenda happens to be.

Just as an example, I've recently looked into Carbon-14 dating and found that in cross-referencing it to Egyptian history (which dates back as far as 3500 B.C. and is held to be in very high regard by archaeologists and scientists alike), there is evidence that Carbon dating may be inaccurate beyond around 1800 B.C. For someone not to consider that would be ignoring science. My point here is that my beliefs aren't merely unfounded, eccentric ideas. Just because microevolution is feasable, that doesn't mean I'm going to sweep macroevolution under the rug and not test it - the two are actually worlds apart, just cleverly bundled. The Bible has given me a perspective that seems to offer a reasonable and sensible way to put the different pieces of good science together. No matter what you believe, I strongly feel that you should have some factual foundation to support whatever it is, and if you don't, then be man enough to admit you only have a theory put together.

No matter what side of the camp you are on, your beliefs require a certain amount of faith, as neither side is at present proven scientifically. I don't have all the answers, but I don't think science in its present state does either. At the end of the day, you can't prove the existence of God factually, and so whatever you believe is still based on faith. But at least the Christians can admit that - I just wish the evolutionists would too.

326 comments

  1. End Spam... by Anonymous Coward · · Score: 0

    ...end email.

  2. Ahh the sign of a leader. by webby123 · · Score: 3, Funny

    First Question: How do you pronounce your name?

    --
    Linux Video Tutorial Project, Tutoring the masses.
  3. I still want him to answer why we are filtering! by garcia · · Score: 1, Troll

    The one fucking question I really wanted him to answer he wasn't even asked.

    Instead something completely worthless like Winkydink asks: How do you pronounce your name? shows up instead.

    Thanks Slashdot.

  4. Re:I still want him to answer why we are filtering by bradbeattie · · Score: 1

    Sorry, which question?

  5. Re:I still want him to answer why we are filtering by Anonymous+Crowhead · · Score: 0, Flamebait

    Jesus Christ how old are you? 5? Grow up. The world doesn't revolve around satisfying you.

  6. Re:I still want him to answer why we are filtering by webby123 · · Score: 1

    404 File Not Found The requested URL (ahref=) was not found. If you feel like it, mail the url, and where ya came from to pater@slashdot.org. ------------ Yes, yes.. a question we would all like answered..

    --
    Linux Video Tutorial Project, Tutoring the masses.
  7. Very interesting by Sinryc · · Score: 3, Insightful

    Very, VERY interesting. I have to say thank you to him, for the fact that he made a good statement about faith. Very brave, and very good man.

    --
    Yay, I have a sig.
    1. Re:Very interesting by VolciMaster · · Score: 1
      I agree, posting anything about your beliefs on Slashdot that go against the preconceived notions most Slashdotters seem to have (ie, pro MS, anti Apple/Linux, pro creation, anti evolution) just gets you modded down and into a flame war.

      It isn't possible to have rational exchanges with most of these people, which is truly a shame.

  8. n00B! by Anonymous Coward · · Score: 3, Insightful

    Does anybody remember what the world was like before Google? None of us do, primarily because we couldn't find iy

    YESI do remember you noob.

    Google is nothing new, before them there were a few engines that did the job fine. There was even an web based FTP search engine Where is that google, where is that.

    1. Re:n00B! by kashani · · Score: 2, Informative

      I beleive you're thinking about that golden period in '96 when any ol search engine could index the net, Yahoo actually rated sites, etc. Yeah you could search then and it wasn't bad.

      Fast forward a year or two and we see Internet content outstripping Moore's law among other things. You might have been able to find something if you read 5-10 pages of search results... maybe. Google's sucess was that it appeared about the time other search engines were failing miserably. Yeah they all had the same results, but Google tended to put the results you really wanted on the first page.

      kashani

      --
      - Why is the ninja... so deadly?
    2. Re:n00B! by jonadab · · Score: 2, Interesting

      > > Does anybody remember what the world was like before Google?
      > YES I do remember you noob.

      Yeah, me too.

      > Google is nothing new, before them there were a few engines that did
      > the job fine.

      In 1995 they did, but by 1998 or thereabouts, things had degenerated rather badly. It got to the point eventually where you could go through three or four *pages* of results looking for the thing you wanted. I had conditioned myself to go straight for the advanced boolean search and construct complex criteria that excluded the dross, required several keywords, and so on, just to find things. There were a number of things wrong with the major search engines right before Google came out: paid results that got mixed in with all the others, but at or near the top, rediculously excessive advertisements (to the tune of 4+ animated banners per results page, *plus* pop-ups), and the SEO people 0wned the top dozen non-paid slots for just about every search.

      Then Google came along, and you could get the page you were looking for in the top three results nine times out of ten with just two keywords and no advanced logic -- which is better than web search had ever been, even in the pre-commercial era. (Back then, you could expect relevant results on the first page of ten, but they wouldn't always be at the top of the list.)

      It wasn't technology, mostly, that made Google special. Sure, PageRank is nifty technology, but the thing that really sealed the deal was that they put serious effort into cleaning the junk out of the results, something that search engines for the previous couple of years had been mostly trying not to think about and in some cases actively worsening.

      --
      Cut that out, or I will ship you to Norilsk in a box.
    3. Re:n00B! by Rei · · Score: 1

      Hotbot wasn't that bad. It actually took some convincing by a friend (Slashdot user Timster, actually) to get me to try out google - I was quite satisfied with my search results before (although, naturally, glad to make the switch). I moved to Hotbot from Altavista, which at the time was pretty bad.

      --
      Rock Us, Dukakis.
  9. Re:I still want him to answer why we are filtering by garcia · · Score: 0, Offtopic

    Jesus Christ how old are you? 5? Grow up. The world doesn't revolve around satisfying you.

    Well, we aren't interviewing me, but I'll answer even though this won't be the top 10 moderated questions.

    1. 26.

    2. No, I might end up without a sense of humor like you.

    3. No, it doesn't revolve around that. It revolves around humor. It isn't my fault that some of the moderators chose "+1 Insightful" "+1 Interesting" instead of "+1 Funny" like I had intended.

  10. what is so terrible about dual licencing? by 00_NOP · · Score: 3, Interesting

    If i write some code and I licence it under the GPL and something else what is the problem?
    You can take the GPL code and do what you like with it under the GPL, but I choose to licence what i have written under BSD (say) as well then what is the problem? It is going way OTT to take that away from me if I am gifting my work back to the community with the GPL. This is why I always stipulate that my code is licenced under GPL v2 and not any subsequent version - no self-appointed guardian has the right to take away my freedom to dual licence code.

    1. Re:what is so terrible about dual licencing? by Anonymous Coward · · Score: 0

      He's hardly an authority on licensing, I've no idea how that question made it in as a good number of slashdot regulars are far more knowledgable.

    2. Re:what is so terrible about dual licencing? by Denzinger · · Score: 1

      What if the licenses are mutually incompatible? It's reasonable to expect that an act within the terms of one license is outside the terms of another.

    3. Re:what is so terrible about dual licencing? by 00_NOP · · Score: 1

      That's a silly argument - or rather it is an argument against dual licencing per se. Any two licences will be incompatible in some way because if they weren't they'd be the same licence!

    4. Re:what is so terrible about dual licencing? by agbinfo · · Score: 1
      If the licenses are incompatible

      Then you might have to license the product under only one of the licenses. You are not bound by both licenses, only the license under which you choose to use the product.

    5. Re:what is so terrible about dual licencing? by budgenator · · Score: 1

      Yeah that this or later versions some how feels like signing a blank check; if somebody wants GPL v3, email me maybe yes or maybe no, depends on what I think of it, not somebody else.

      --
      Apocalypse Cancelled, Sorry, No Ticket Refunds
    6. Re:what is so terrible about dual licencing? by xygorn · · Score: 1

      As long as non of the code that other people contribute back to your GPL version makes it into your other licensed version. If I contribute to your GPL project, then that contribution can only be released as GPL.

      --
      I am a sig. I wish I were a more creative sig, but I am not. I guess everyone has something to strive for.
    7. Re:what is so terrible about dual licencing? by 00_NOP · · Score: 1

      More or less - you can choose to also dual licence the code - but I accept the basic point completely. But that's an argument in favour of enforcing the current GPL, not for banning dual licencing.

  11. Name Pronunciation by jatemack · · Score: 2, Funny

    At least his first name isn't Jathan. He's be stuck explaining his name for another five minutes to people as well.
    Me: My name is Jathan.
    Response: Woah. Were your parents stoned when they named you?
    Me: haha, yeah that's funny. It's kind of like saying Jason with a lisp.
    Response: Thats great caus I half a lithsp
    Me: Oh, sorry, it's like Nathan with a J then.

    I feel your pain Mr.Zdziarski....

    --
    // no
  12. Tinfoil rul35! by ezweave · · Score: 0

    So, do you really think Google will be selling our info out to the government?

    I do think that our rights have been sold out by our elected officials ("All hail the all ighty ollar!"). I guess I just wanted to believe that Google was different. P.T. Barnum was right... a sucker every minute.

    Now, where is my hat?

  13. Great Responses by theGreater · · Score: 0, Redundant

    I'm glad to see someone discuss all these various spam issues with some degree of authority. It is nice to see someone differentiate between the different types of statistical filtering out there, and talk about the interactions between different levels of spam filtering.

    How sad that most of the next 300 replies are likely to be attacks on his personal faith.

    -theGreater.
    1. Re:Great Responses by Anonymous Coward · · Score: 1, Insightful

      How sad that most of the next 300 replies are likely to be attacks on his personal faith.

      The troll line he threw in at the end was hardly helpful:

      "But at least the Christians can admit that - I just wish the evolutionists would too."

      Nesflash for you Jonathan: A great many Christians are also evolutionists. There is no dichotomy.

    2. Re:Great Responses by Nuclear+Elephant · · Score: 0

      A great many Christians are also evolutionists. There is no dichotomy.

      I suspect you are confusing social Christians with real Christianity. There are plenty of people who label themself as a Christian simply because they grew up in a Christian household or because they go to church on Easter and Christmas. Most people like this haven't really ever read the Bible from cover to cover, don't live what would be considered a Christian lifestyle, and in all likelihood believe the same as anyone who's not a Christian. It's pretty easy to water down the definition of Christianity if you include the social converts. On the other hand, if you're talking about Christians in the sense of those who have convictions to follow after the God of the Bible, live right, pray daily, and seek to have a relationship with their maker, then you're very lucky if you find a small percentage of these who accept what they're told in school about evolution.

      On the other side of things, there are plenty of people who are not Christians by any sense of the word (they do not label themselves as such, and may even be atheists) who don't swallow evolution. They likely don't believe in creationism either, but they've found just as many flaws in the theory and refuse to accept it. So you're right, in a sense - there is no dichotomy - people from all walks of life have rejected the theory of evolution. Being Christian is not a prerequisite.

    3. Re:Great Responses by Anonymous Coward · · Score: 0

      Most people like this haven't really ever read the Bible from cover to cover, don't live what would be considered a Christian lifestyle

      Yeah, people like that would never live by tenets like "judge not, that you be not judged". Thank God you're not like them, eh Nuclear Elephant?

      On the other hand, if you're talking about Christians in the sense of those who have convictions to follow after the God of the Bible, live right, pray daily, and seek to have a relationship with their maker, then you're very lucky if you find a small percentage of these who accept what they're told in school about evolution.

      Christians without sin who can get on with metaphorically stoning the rest of us? Yeah! Preach on Nuclear Elephant!

      Do tell us more about what a better Christian you are than the rest of us.

    4. Re:Great Responses by Russ+Nelson · · Score: 1

      You're right. No true Christian believes in evolution, because by your definition of Christianity, he couldn't believe in evolution.
      -russ

      --
      Don't piss off The Angry Economist
    5. Re:Great Responses by HanClinto · · Score: 1

      Jonathan's statement also caught my eye -- though perhaps he was talking about the worldview of Atheistic Evolutionists. Atheism and Evolution seem to go hand in hand on a great many points, and as such, they often get lumped together.

    6. Re:Great Responses by Anonymous Coward · · Score: 0

      Ah well. At least he's consistent, which is more that can be said about the intelligent design guys.

    7. Re:Great Responses by Anonymous Coward · · Score: 0
      there are plenty of people who are not Christians by any sense of the word (they do not label themselves as such, and may even be atheists) who don't swallow evolution.

      Really? I've never met one. I'm not saying they don't exist, but it seems to me that the only reason to not accept the fact that evolution occurs is because it contradicts some leap of faith.

      I can see how one might not accept Darwin's theory as a proper explanation of how evolution occurs, but that is entirely different from thinking evolution itself is not a fact.

    8. Re:Great Responses by Nuclear+Elephant · · Score: 1

      Hey I'm just telling it like it is. There are social converts in any religion - not just Christianity. Just like there are plenty of people in everyday life who implement Java because it's popular. Not trying to judge anyone, but you're going to run into this kind of thing no matter what you believe.

      My point is that there are people who are Christians out of strong conviction, and part of that conviction may have solid factual foundations.

    9. Re:Great Responses by Nuclear+Elephant · · Score: 1

      You're right. No true Christian believes in evolution, because by your definition of Christianity, he couldn't believe in evolution.

      But you're confusing cause and effect. People don't (usually) become Christians and then learn that rejecting evolution needs to be part of their faith. Well, some do - primarily the ones who just never thought the subject was important enough to think about (at which point they start thinking about it and draw a conclusion). Most people become Christians after realizing there's something terribly wrong with the way they've been living, and at least in my case that involved my burping a lot of science up in high school. There was a problem before I ever suspected there might be a solution - I spent quite a bit of time, in fact, simply believing "nothing". It starts with "faith", that is true - but nowhere does believing the Bible ever include intellectual suicide.

    10. Re:Great Responses by Russ+Nelson · · Score: 3, Insightful

      Not trying to judge anyone,

      But you're *supposed* to judge people. Jesus wants you not to consort with disbelievers. How would you know they're disbelievers unless you judge them as such?

      The basic problem is that you're trying to impose your own definition of Christian on everyone. I'm a true Christian and I don't believe the same things as you, and you can't make me stop calling myself a Christian.

      The real metric of whether someone is a Christian or not is their actions, not their claims. Ye shall know them by their fruits.

      --
      Don't piss off The Angry Economist
    11. Re:Great Responses by Anonymous Coward · · Score: 0

      Thought experiment. If all the humans on earth died today except for two, a male and female. And the only book left on earth was the lord of the rings, would future generations pray to frodo?

    12. Re:Great Responses by Anonymous Coward · · Score: 0

      Jesus wants you not to consort with disbelievers.

      Then I'm afraid you've both come to the wrong internet ;)

    13. Re:Great Responses by Moofie · · Score: 1

      We shall indeed know them by their fruits.

      Who's a better Christian? an Episcopal pastor who's also a marine biologist, and believes in the scientific theory of evolution, or somebody who bombs an abortion clinic, or a priest who covers up the molestation of a child by a brother priest, or a judge at the Salem Witch Trials?

      --
      Why yes, I AM a rocket scientist!
    14. Re:Great Responses by digidave · · Score: 1

      Way to preach radical religion. I suspect you are a Baptist.

      --
      The global economy is a great thing until you feel it locally.
    15. Re:Great Responses by Elwood+P+Dowd · · Score: 1
      How sad that most of the next 300 replies are likely to be attacks on his personal faith.
      I don't think anyone is going to be upset that he's a Christian. We'll be upset by him insulting our intelligence. He says he's educated himself about these things, but if that's true than he would have known better than to spew simplistic crap that's been refuted over and over again.
      I find it very ironic to be flamed by anyone who thinks I'm an idiot for not believing in a theory that's never been proven by scientific process.
      He just doesn't have a better theory. That's why we'd think he's an idiot.
      It's recently become a "religious act" to question science in any capacity, but isn't questioning science the only way we can tell the good science from the bad science?
      Yeah. That's typically what scientists do. If he thinks scientists don't debate evolution, he obviously doesn't know the first thing about it. He's either trolling or ignorant.
      And there is a lot of great science out there - even in public schools. But there's no longer a way for students to evaluate the credibility of what they're being taught. That seems to be degrading the quality of the subject. Science should be a quest for the truth, with no presuppositions, and appropriate understanding between hypotheses vs. theories vs. laws. When a theory is presented in the classroom as law and it's not held accountable to method, it's degenerated into mere conditioning.
      That was pretty well covered in seventh grade for me. They called it the theory of evolution and the law of gravity. The theory of evolution has a bunch of good evidence for it and nothing much against it. So here it stays. Dunno what they said in anyone else's school.
      I've spent a considerable amount of time studying topics such as the age of the earth and the theory of evolution, and I could probably argue it quite well if so inclined to engage in a discussion. That's important if you're going to believe anything really - including whatever the mainstreamed secular agenda happens to be.
      Mainstream secular agenda. He can go fuck himself. How about the fundamentalist Christian agenda?
      Just because microevolution is feasable, that doesn't mean I'm going to sweep macroevolution under the rug and not test it - the two are actually worlds apart, just cleverly bundled.
      Cleverly? What alternate theory would demand that they be unbundled? It's simpler with them together. If anyone suggests another theory that has evidence behind it and explains something Darwin can't, it usually gains scientific acceptance. Behe and Dembski have not provided acceptable evidence for their theories of intelligent design.
      I strongly feel that you should have some factual foundation to support whatever it is, and if you don't, then be man enough to admit you only have a theory put together.
      Good point. We should really stop calling it Darwin's Law of Evolution. What is objectionable about this description of evolution's scientific standing?
      No matter what side of the camp you are on, your beliefs require a certain amount of faith, as neither side is at present proven scientifically.
      Egregious bullshit. We don't have a better theory. It explains a lot of evidence. Faith has nothing to do with it. Show us a fossil rabbit in the precambrian, and give us a new explanation.
      I don't have all the answers, but I don't think science in its present state does either.
      And neither does any scientist.
      At the end of the day, you can't prove the existence of God factually, and so whatever you believe is still based on faith. But at least the Christians can admit that - I just wish the evolutionists would too.
      But it's not faith. It's just one of our best theories.
      --

      There are no trails. There are no trees out here.
    16. Re:Great Responses by WiFiBro · · Score: 1

      There are some symptoms in this way of argueing that are not exactly convincing me, actually, some scare me, especially the way you think you can decide who is real and who is not.

      "you are confusing social Christians with real Christianity."
      The division you are making has been tried before in history and it never really ended well. I had a long discussion with a convert who believed he had found the real faith but in the end (we mostly discussed how you could find out what message really came from God) the only difference between him and me was that he had chosen to ascribe certain special feelings he had as being in contact with God, and I had had similar feelings but had chosen not to (in the end). He even went so far as to warn me that MY grand feelings might have been inspired by the devil.
      That's what made me stop that discussion, he was obviously not willing to discuss his Truth, and feeling he was a Real Christian.

      "Most people like this haven't really ever read the Bible from cover to cover,"
      Have you? Well good for you, i couldn't, it was causing too many questions on every page, especially when I read more about the what's known about history: about how the early christian church rituals went and that many aspects were lost. About how the books in the bible were chosen . Um and no, The Da Vinci Code was not my source ;) .
      What also made me think deep was when I read there are earlier versions of the story about the near-sacrificing of Abraham's son that DID end in the killing of Isaac: the goat only came in in later versions. Now that gives a totally new perspective, doesn't it?
      And even if you read the bible cover to cover, what conclusions should one draw? Do you wear clothes of mixed fabric (not allowed)? Do you only buy crop from farmers that leave the soil to rest every n-th year (you should)?
      Considering these last two recommendations, how many people are Real Christians? Are you still?

      Or to go back to science: does the sun 'come up' and does that mean the earth is the center of the universe?

      " don't live what would be considered a Christian lifestyle"...
      , and in all likelihood believe the same as anyone who's not a Christian. It's pretty easy to water down the definition of Christianity if you include the social converts. On the other hand, if you're talking about Christians in the sense of those who have convictions to follow after the God of the Bible, live right, pray daily, and seek to have a relationship with their maker, then you're very lucky if you find a small percentage of these who accept what they're told in school about evolution."
      So if I tell you there are monks and viccars out there who say you should not take Genesis too literally, they are bad christians?

      "On the other side of things, there are plenty of people who are not Christians by any sense of the word (they do not label themselves as such, and may even be atheists) who don't swallow evolution. They likely don't believe in creationism either, but they've found just as many flaws in the theory and refuse to accept it. So you're right, in a sense - there is no dichotomy - people from all walks of life have rejected the theory of evolution. Being Christian is not a prerequisite."

      May I dare to propose that 'being religious' is the prerequisite? Do you have any figures to support what you said?

      One last question: what flaws in the evolution theory are you talking about?

    17. Re:Great Responses by illuminatedwax · · Score: 1
      On the other hand, if you're talking about Christians in the sense of those who have convictions to follow after the God of the Bible, live right, pray daily, and seek to have a relationship with their maker, then you're very lucky if you find a small percentage of these who accept what they're told in school about evolution.
      How about the entire Catholic church? I don't suppose you'd count the Pope as a "true Christian" though, considering the Catholic Church readily admits that the human body could have been created through evolutionary forces (the soul of course is a Creation of God).
      --
      Did you ever notice that *nix doesn't even cover Linux?
    18. Re:Great Responses by operagost · · Score: 1

      The reason the "no true Scotsman" fallacy doesn't work here is because the Bible is arguably reliable documentation on what a Christian could be expected to believe. It contains its own explanation of the origin of species. If there was a "Scotsman's Bible" that said no Scotsman should sweeten his porridge, then there would be no fallacy.

      --

      Gamingmuseum.com: Give your 3D accelerator a rest.
    19. Re:Great Responses by 31415926535897 · · Score: 2, Informative

      But you're *supposed* to judge people. Jesus wants you not to consort with disbelievers.

      C'mon, you call yourself a Christian with this belief? Firstly, "Do not judge, or you too will be judged" (Matthew 7:1). That is from the mouth of Jesus himself.

      Second, Jesus does not want you to consort with disbelievers?! Look at his whole life. He spent most of His time with "sinners and tax gatherers." Jesus wants us to be like Himself, so how can we do that and judge people? There are two possibilities, one is that Jesus contradicts Himself here, or you don't know what you're talking about.

      Seeing as I have provided some context and you have not, I will leave this exercise up to the reader.

    20. Re:Great Responses by operagost · · Score: 1

      It doesn't matter because they're all sinners.

      --

      Gamingmuseum.com: Give your 3D accelerator a rest.
    21. Re:Great Responses by 2short · · Score: 1

      "Atheism and Evolution seem to go hand in hand on a great many points, and as such, they often get lumped together."

      Atheism cannot go hand in hand on a great many points, as it only has one point. Atheists do not beleive that God exists. That's all. Not only is it impossible to prove it either way, but anyone who even claims to have compelling evidence either way is full of it, and doesn't understand what evidence is. Atheism vs. Theism is not a scientific debate, nor, if you ask me, a very interesting one: "Does Too!" "Does Not!" "This other guy agrees with me!" "Doesn't matter" "Does too!", see what I mean?

      Evolution, or not, is a scientific debate. As such, it is impossible to prove anything one way or another. Science doesn't do that. Science looks at available evidence and decides whether it supports a conclusion; it finds testable consequences of a theory, and sees if they pan out. There are vast mountains of evidence that seem to support evolution. Jonathan correctly points out that it is mostly taught by arguments from authority, which is too bad. But it's not at all difficult to think about what evolution should imply, and look around. Critics like to pick out tiny details, and hold them up like they were great revelations. Radio carbon dating is a statisticaly based technique who's error margin increases rapidly with the age of the sample? Yeah, thanks, we knew that. Most experts would put the useful date for RC dating back further than he has, to maybe 50,000 years, but either way, WTF does that have to do with evolution? RC dating is for anthropologists. RC dating could not exist at all, and it wouldn't impact the support for evolution in the slightest.

      Oh, wait, I get it: he's a young-earth creationist?!? Sorry, I won't bother. If you've thought about it at all, and still beleive the Earth is 6000 years old, you're just not succeptable to logic.

      In any case, Evolution or not is a scientific debate, and while I'm pretty sure which way I think it should go, the real point is we can talk about it based on evidence and implications. But the scientific debate is "Evolution or not" not "Evolution or creationism". Creationism isn't a scientific theory; it cannot be supported by evidence and it doesn't have any implications. Even if it were, it wouldn't be the automatic alternative to evolution. So I really wish creationists would get off their inept critiques of evolution.

    22. Re:Great Responses by Anonymous Coward · · Score: 0

      It doesn't matter because they're all sinners.

      Wow. I don't think anyone was expecting to get an answer that actually applied a Christian perspective.

    23. Re:Great Responses by Moofie · · Score: 1

      But, according to my parent poster, I'm supposed to judge them. How do I judge their Christianicity? Who is the Better Believer?

      I believe that judgement is reserved to God, and any mortal who thinks that it's up to them to decide who is or is not fit for God's grace is committing a terrible sin. It's my calling to love my fellow man, as I love myself, not to judge them.

      Wow, that sounds a lot like something Jesus said...imagine that. It's almost like I've been a practicing Christian for 20 years or something...

      --
      Why yes, I AM a rocket scientist!
    24. Re:Great Responses by darkonc · · Score: 1
      I suspect you are confusing social Christians with real Christianity.
      There are plenty of people who label themself as a Christian simply because they grew up in a Christian household or because they go to church on Easter and Christmas.

      I went to a Christian boarding school. Some of the priests there pointed out that there are many ways to read Genesis.

      • One is to consider that the length of God's first days were not specified. In fact, the earth doesn't appear until the second 'day'. (i.e. "God said 'let there be light' and there was light." =~ The big bang)
      • Another is that god put dinosaur bones and other fossils into the earth as a practical joke for us technical types.
      • A third is to read it as a parable -- intended to get certain issues and ideas into our consciousness. Explaining Muons, Gluons, relativity and superstrings to people having a hard time even grasping the idea that the earth is just so freaking big that it only looks flat is something of a lost cause -- and besides, it would just be a distraction from the real messages (like the fact that Cain killing Abel in a jealous rage, and then lying to god about it is a bad idea.)
      --
      Sometimes boldness is in fashion. Sometimes only the brave will be bold.
    25. Re:Great Responses by Dysproxia · · Score: 2, Funny

      Ye shall know them by their fruits.

      And from their ever so fashionable use of Early Modern English.

    26. Re:Great Responses by ninjakoala · · Score: 1

      Greg Graffin was apparently fascinated enough to research it properly. You can read about his project on his research page

      --
      Against the grain
    27. Re:Great Responses by darkonc · · Score: 2, Insightful
      I forgot to add:
      The nit-pickey aspects of things like how cosmology, evolution and relativity (or, for that matter, the macro aspects of weather systems) were beyond the understanding of people of that period (and even beyond the understanding of most of the people today). The only people for whom things like quantum theory regularly make a practical difference are the people who do things like design (as opposed to use) cpu circuits.

      Does the question of how ducks came to be affect the question of whether I should respect this jewel of an earth that mankind was given as a gift. Does it affect the question of whether I should kill my neighbour for the gas his truck? no. For the most part, evolution vs creationism is just an irrelevant academic exercise and a distraction from more real issues like love, respect, trust, honouring the humanity and beauty around us, and being true to our responsibilities.

      --
      Sometimes boldness is in fashion. Sometimes only the brave will be bold.
    28. Re:Great Responses by 2short · · Score: 1

      Please stop smearing the name of all the nice Christians; you do not speak for the vast majority of them, and you do not get to decide that they are not Christians. Please adjust your terminology to reflect the considerably smaller, more tightly defined grouping whose beleifs you are actually discussing, like so:

      People don't usually become fundamentalist whack-jobs, and then learn that they must turn off their brain. Most people become fundamentalist whack-jobs after realizing they are disatisfied with how they are living their life, and that they'd like to feel superior to others for no good reason. Turning off their brain is merely a helpful pre-requisite.

      "Intelectual suicide" sounds like a good way of describing any time you let a belief formed in the absence of evidence ("faith") overide honest evaluation of evidence based beleifs.

      Terribly sorry to put all this so rudely, but you really tick me off. Presbyterians (to pick a random example) have no problem with Lutherans being fellow Christians, even if their beleifs aren't exactly the same, and hence they have no problem with identifying themselves as Presbyterians. Those who insist on identifying themselves only as Christians because obviously the exact details of their beleif are the only true Christianity are inherently elitist un-christian a-holes. But it would be impolite to call them that. Yet they refuse to supply a term they'd prefer. What to do? Guess I'll stick with "fundamentalist whack-job".

    29. Re:Great Responses by Rei · · Score: 1

      Of course, no true Christian could believe in Heliocentrism, because the bible talks about the sun orbitting the earth. What, you take that as figurative? Same with firebreathing crocodiles, earth standing on pillars, and God talking about casting thunderbolts like a sort of semitic version of Zeus? Well, guess what? So do hundreds of millions of Christians worldwide, concerning the biblical creation.

      --
      Rock Us, Dukakis.
    30. Re:Great Responses by squiggleslash · · Score: 1

      So is the Pope (and his predecessor) one of these "Social Christians" then?

      --
      You are not alone. This is not normal. None of this is normal.
    31. Re:Great Responses by justin12345 · · Score: 1

      Isn't Christ's words somewhat fallible though. as he is part man? IANAC and know nearly nothing about the religion except what I have absorbed via cultural osmosis, but I thought that was the meaning of the "Father, why has though forsaken me?" bit.

      Just curious really, as this has become a bit of a religious debate. I remember a friend who was raised catholic talking about how the bible constantly alternated between referring to him as "Son of God" and "Son of Man". I'm sure there are many interpretations.

      --
      Cool art gallery, if you're into that sort of thing.
    32. Re:Great Responses by justin12345 · · Score: 1

      Isn't Christ's words somewhat fallible though, as he is part man? IANAC and know nearly nothing about the religion except what I have absorbed via cultural osmosis, but I thought that was the meaning of the "Father, why has though forsaken me?" bit.

      Just curious really, as this has become a bit of a religious debate. I remember a friend who was raised catholic talking about how the bible constantly alternated between referring to him as "Son of God" and "Son of Man". I'm sure there are many interpretations.

      --
      Cool art gallery, if you're into that sort of thing.
    33. Re:Great Responses by kaens · · Score: 1

      No, the Pope (all of them) count as being the heads of a branch of government.

    34. Re:Great Responses by mbius · · Score: 1

      I went to a Christian boarding school. Some of the priests [salesians.org] there pointed out that there are many ways to read Genesis.

      That number in Genesis--6000 or so?--is given by the simple recursion

      X:= me;
      AgeEarth:= 0;
      While X != Adam do
      {
      Age(Earth) := Age(Earth)+Age(X);
      X:=Father_of_X;
      }
      end do.

      The number was not figurative to the Jews of 1500 AD [or many Orthodox Jews today].

      Not that there's anything wrong with disagreement... It's that one ought to consult experts when one wants to interpret Torah. I imagine priests don't, as said experts take a different view of the whole Messiah thing.

      --
      you can have my violent video games when you pry them from my cold, dead hands.
      Prime UID Club
    35. Re:Great Responses by 31415926535897 · · Score: 1

      If you believe that Jesus really is the Christ, the Son of God (in other words, if you are a Christian), then you believe that His words are not fallible. In fact, if you read through everything He ever said, you can see great wisdom and discernment.

      Your Catholic friend is right. The Bible does use the term Son of God and Son of Man (almost interchangeably). The Son of God reference is to show the relationship of the Trinity-the difference between God the Father and God the Son. The Son of Man phrase is a reference to the prophet Daniel in Daniel 7:13. When Jesus uses that term He is showing that He is the one the prophets foretold, but its also shows an element of His humanity.

      Back to your first question, just because He was a man does not mean that He was imperfect. In fact, that was the whole point of Him coming to earth. We have a debt before God that we _cannot_ pay, and only the sacrifice of the perfect man can atone for our sin debt and make us right with God again. That is why Christ had to come (the Jewish sacrificial system was the old covenant and meant only to be a picture of payment of the Christ to come-it didnt have the power to truly reconcile man to God).

      I dont expect you to believe all of this. Very few do these days, but I will gladly explain anything you dont understand so that any decision you make is based on a good understanding, and not just what you have absorbed by cultural osmosis.

    36. Re:Great Responses by UnapprovedThought · · Score: 1

      Strictly speaking, what you have shown is not a recursion, it is an iterative algorithm, a loop.

      Also, this method of counting back in time does not clarify whether there were any missing links between the generations which were left unspecified. It does not state whether the ages of each person are exact or rough approximations. Nowhere does it tell you that adding up the generations this way will lead to an accurate or useful figure, or that this is the canonical method of producing the age of the Earth. People have traditionally drawn a lot of assumptions about this stuff, but they are no more than that -- assumptions. Since you can't ask anyone who was there, there is no way to confirm it.

    37. Re:Great Responses by Russ+Nelson · · Score: 1

      You're presuming that everyone agrees on exactly what the Bible says. The evidence goes against that presumption.
      -russ

      --
      Don't piss off The Angry Economist
    38. Re:Great Responses by Russ+Nelson · · Score: 1

      You're confusing what you thought I said with what I really said. You're talking about a state transition and I'm talking about the state. You're saying that because the Bible describes a certain thing, that all Christians believe that thing. Sorry, but that's just nonsense. First, it begs the question of who decides what the Bible said (hermenutics). Second, the Bible says a lot of truly strange things. Who decides which of those things are requirements, which are suggestions, and which are not requirements anymore? Third, there is nothing preventing me from claiming that I'm a prophet of God, and starting Nelsonism which is Yet Another Branch of Christianity using my own holy book, the book of Russ.

      --
      Don't piss off The Angry Economist
    39. Re:Great Responses by Rei · · Score: 1

      It's not that simple. There are a lot of varieties of the biblical timeline out there, due to confusing/contradictory wording in the bible.

      Were the Israelites in bondage in Egypt for 400 or 430 years (both numbers cited, each twice), or less (Moses was the grandson of Levi)? How long of a period was there between the Exodus and David's rule? (numbers vary widely, because there is not a continuous progression of leaders, and so the timeline is determined by the "N years after X event occurred" statements, which contradict each other). Further complicating this is the confusing passage that seems to say that Saul was king for two years, but is seemingly contradicted by David killing Goliath as a young boy during Saul's reign but taking the throne at age 30.

      Etc. The list goes on, and in a way gets even more troublesome when you get into the NT. Can you see how reasonable people would arrive at different timelines?

      --
      Rock Us, Dukakis.
    40. Re:Great Responses by darkonc · · Score: 1
      That gives us how far back it is to Adam.. On the other hand, it doesn't really say how many human years the 5 'God' days were that led up to the creation of Adam. There are also a lot of other missing pieces.

      For example: After Cain kills Abel and god casts him out, he is afraid that people will kill him. Where did these people come from? Where did his wife come from? It may be that Adam is simply the beginning of the line that leads to Abraham, and not the first homo-sapien.

      --
      Sometimes boldness is in fashion. Sometimes only the brave will be bold.
    41. Re:Great Responses by Anonymous Coward · · Score: 0

      Yes, that makes lots of sense. Normal humans are flawed, but having a perfect version which is then destroyed makes it all okay. Right.

      How'd you like it if customer support tried that? "Oh, your phone is buggy and broken, but we sacrificed a perfect phone, so it's cool. No, no refund--we sacrificed a perfect phone. No, nobody has a perfect phone any more, they're all broken. But everything's wonderful now."

  14. Standard testing for spam filters by pclminion · · Score: 5, Interesting
    Although there don't seem to be any standards in the Open Source community for this, there are definitely standards in the academic community. Spam filters are a subset of machine learners, and there are very specific and well accepted ways of comparing machine learners.

    Typically what is done is to select a range of filters/learners that you want to evaluate. A test dataset is also selected (in this case, it would be an archive of spam and nonspam messages, correctly classified). An M-way N-fold cross validation is performed. What this means is that the data set is split into N parts, and N runs are conducted for each classifier, training using N-1 of the parts. The remaining part is used to test the learner. This is repeated, each time holding out a different part of the test set.

    This ENTIRE procedure is repeated M times. This gives, ultimately, M*N results. Each column pair of results from a specific pair of learners has a T-test applied to it. This tells the statistical significance of variations in performance. Usually, a 5% or 1% threshold of significance is used.

    Once that is completed, something called a WLT table is computed. Each time a learner defeats another learner on a given test, its W ("Win") counter is incremented. Likewise, when a learner loses, the L ("Loss") counter is incremented. When two learners tie (i.e., when the variation is not statistically significant), the T ("Tie") counter is incremented.

    The overall "winner" of the comparison is the learner with the maximum value of W-L.

    This sounds complicated and bloated, but it is, in fact, how machine learners are tested in academia. The cross validation method, along with checks for statistical significance, is critical to achieving a valid comparison. Simply running the tests once and saying "This filter got 98% correct, and this other filter got 95% correct -- therefore the first filter is better" is NOT sufficient.

    1. Re:Standard testing for spam filters by Hrolf · · Score: 1
      That's a great description of the process of testing machine learners, but as Jonathan points out, that's not the hard part. The hard part, which you sort of elide over, is selecting the test dataset. Whose e-mail? The SpamBayes project uses mailing list archives to check algorithm changes because it's available, while of course recognizing that it's not really representative.

      The upshot is that it's too easy for the losing software team to claim that whatever sample was chosen was not representative, and essentially impossible to prove them wrong.

      I use SpamBayes; my unscientific, lazy reason is that it works and I don't have to think about it.

    2. Re:Standard testing for spam filters by pclminion · · Score: 2, Informative
      The hard part, which you sort of elide over, is selecting the test dataset. Whose e-mail?

      You're right, sorry. I left something out.

      You can also do a P-set M-way N-fold cross validation, which is basically the procedure I outlined above, but repeated P times with P different data sets. The mechanics of computing the WLT table and the T-tests remain the same but obviously there are P times as many results. Now, you can simply start plugging in datasets until everybody is satisfied that the test is fair.

      Thanks for pointing that out.

    3. Re:Standard testing for spam filters by Nuclear+Elephant · · Score: 1

      When I say lacking a standard testing interface, I'm not referring to how to test - that's already well taken care of. I'm referring to whatever protocol or execution standard will be used to actually communicate with the filters. You can create a "spam jig", but then getting everyone to buy into your own standard will likely leave you coding up much of it (which is where error usually occurs). Being that this is the Internet, we like to do everything based on RFC and standards. When there comes a standard way for MTAs to talk to MFAs (Mail Filter Agents), this framework will likely be adopted for testing as well.

    4. Re:Standard testing for spam filters by Otter · · Score: 1
      You're still missing the hard part. What are the datasets?

      In academic machine learning, where you're trying to train a system to distinguish between chairs and doorknobs, there's at least a consensus on what chairs and doorknobs are. Spam is a moving target that's continually updated to defeat new filtering methods.

    5. Re:Standard testing for spam filters by pclminion · · Score: 1
      In academic machine learning, where you're trying to train a system to distinguish between chairs and doorknobs, there's at least a consensus on what chairs and doorknobs are. Spam is a moving target that's continually updated to defeat new filtering methods.

      So, you continually test. Nobody said this was easy.

    6. Re:Standard testing for spam filters by jpostel · · Score: 1

      I was actually wondering what you were referring to with the "spam jig" statement.

      Is this akin to the virus scanning API (VSAPI aka VAPI aka AVAPI) used by virus scanners and Exchange?

      I have wondered why the virus scanning software companies have not gotten together to create an interface for that. I would expect the UCE and SPAM filtration industry to use the same interface or to develop a standard of their own.

      Having said that, I know that I (and I would guess most people) do not make my email server choices based on the AntiVirus or AntiSPAM software, but that would be a selling point if I knew that the email softare would work with any standards compliant AntiVirus or AntiSPAM software.

      --
      Ummm, Jon, aren't you supposed to be dead...? - Otter(3800)
    7. Re:Standard testing for spam filters by jpostel · · Score: 1

      Maybe an eicar http://www.eicar.org/ like standard should be created for testing purposes?

      --
      Ummm, Jon, aren't you supposed to be dead...? - Otter(3800)
    8. Re:Standard testing for spam filters by Otter · · Score: 1

      Ummm, Jon, aren't you supposed to be dead...?

    9. Re:Standard testing for spam filters by jhantin · · Score: 1

      Okaaay, what we have here is either an impostor or a revenant. Personally I'm voting impostor since the poster misses the point altogether, and even the reanimated corpse of this brilliant fellow wouldn't misunderstand something this simple so fundamentally.

      There is an EICAR-like test for spam already, the GTUBE. However, what the EICAR and GTUBE tests are intended to accomplish is to determine whether any given hunk of input is in fact being scanned for unwanted content (be it spam, malware, or what have you) or whether it has successfully been obfuscated to the point that the filter misses it altogether. It's not a suitable test for the effectiveness of a filter at catching the evolving stream of real-world spam or malware.

      --
      ...when you're writing a game...tweak the difficulty of "Easy" to something [your mother] can cope with. -- onion2k
    10. Re:Standard testing for spam filters by lost+in+place · · Score: 1

      I think you're missing his point, because continual testing is doesn't address it. The machine learning regimen you describe (M by N-fold CV) only works for static, non-drifting distributions. When given a drifting distribution like spam, there will be some "temporal data leakage" from the training sets into the test sets, ie the classifier will be trained on data that a real classifier (in the field) would not have been able to see yet. The result will be overly optimistic error rates; specifically, the false negative error rates will very likely be lower than they will be in the field.

      Simply repeating the tests or increasing the data update frequency will not remove this effect.

    11. Re:Standard testing for spam filters by gvc · · Score: 1

      I think he means something like The TREC Spam Filter Evaluation Toolkit.

    12. Re:Standard testing for spam filters by jpostel · · Score: 1

      Imitation is flattery, sincerely.

      I evidently did misunderstand the statement, and I was not aware of GTUBE. The analogy of "chairs and doorknobs" is where I got confused. EICAR is used to test if your scanner can identify a known standard "hunk of input" as a virus. GTUBE evidently does the same thing for SPAM. I was attempting to point out that it was a jumping off point for consenus of what was a "chair" vs "doorknob".

      --
      Ummm, Jon, aren't you supposed to be dead...? - Otter(3800)
    13. Re:Standard testing for spam filters by jpostel · · Score: 1

      Thank you,

      I now have a new sig...

      --
      Ummm, Jon, aren't you supposed to be dead...? - Otter(3800)
    14. Re:Standard testing for spam filters by jhantin · · Score: 1

      Perhaps the most interesting use of EICAR is to try to smuggle it past a scanner. For example, see if the scanner still finds it if you change its file extension or MIME type to plain text, if you wrap it up in a .zip, .rar, .tar, .gz, .bz2, .7z or .shar file possibly nested multiple levels, if you base64 or uuencode it, if you stick it inside an InstallShield or Wise installer package, if you apply an executable file compressor like lzexe or pklite to it, or other such chicanery.

      --
      ...when you're writing a game...tweak the difficulty of "Easy" to something [your mother] can cope with. -- onion2k
  15. Re:I still want him to answer why we are filtering by cybersaga · · Score: 5, Funny

    Jesus Christ how old are you?

    He was about 33 when he died.

  16. My problem with spam filters... by scovetta · · Score: 4, Insightful

    I use SpamAssassin (server) and SpamPal (client). They're both quite accurate and I'm very happy with them.

    However, I've had unacceptably high false-positive rates. Saying that you only get one spam a day is fine--I can deal with that. Are you sure that no legitimate e-mail is being tagged though? I have the subject lines prefixed with [SPAM] and so I just go through and look for anything that looks like it might not be spam. This process takes about 10 minutes a day, which is 10 minutes more than I would care to spend.

    I give the anti-spam developers credit for their hard work, but I believe that the best solution would not be filter-based, for mere fact that if 1 spam gets through a day, and the volume of spam increases 100x in the next 2 years, then you're back up to ~100 spams a day. It's a temporary solution to a permanent problem.

    Just my $0.02.

    --
    Wer mit Ungeheuern kämpft, mag zusehn, dass er nicht dabei zum Ungeheuer wird. --Nietzsche
    1. Re:My problem with spam filters... by Nuclear+Elephant · · Score: 2, Informative

      However, I've had unacceptably high false-positive rates. Saying that you only get one spam a day is fine--I can deal with that. Are you sure that no legitimate e-mail is being tagged though?

      After a few months of learning, DSPAM has gotten pretty good about not giving me very many false positives. I'd say my FP rate is about the same as my FN rate, perhaps one per month. DSPAM has some integrated false-positive protection coding called "statistical sedation" which cuts off after you it learns enough messages. This waters down filtering to some degree, but it also avoids a large number of FPs.

      Another function I use is the confidence-sort in my quarantine. My email is very eclectic, being that I'm involved in a lot of projects, and so I've had my share of false positives during training. By sorting on confidence, any likely candidates for FPs rise to the very top of my quarantine list around 49%-55%. This makes the daily scan through the bucket much faster.

    2. Re:My problem with spam filters... by Old+Grey+Beard · · Score: 2, Informative
      > However, I've had unacceptably high false-positive rates.

      I've been using Death2Spam for about 4-5 months now and get almost no FPs.

      As far as scanning [SPAM] for "just in case" FPs, I have my client route those messages to a SPAM folder that I look at every couple days. All I do is glance at the subject line first and hit DELETE if it's an obvious spam. If not, I look at the sender and hit DELETE if I don't recognize the sender name. I think I average about one second per message...at ~30 messages per day I'm OK. Should that rise to 300 messages per day I would have to consider alternatives, as we all would.

      --
      "The urge to save humanity is almost always a false front for the urge to rule it."
      - H. L. Mencken
    3. Re:My problem with spam filters... by LnxAddct · · Score: 3, Interesting

      Maybe you should tweak your spam settings. If you're getting more then one spam or so a month then you're getting too many. I've used Thunderbird's spam filters, Gmail, and spam assassin indirectly through Evolution, . GMail by far has the highest accuracy, I've had my account for about 1 year and 3 months, I have a little over 3,000 emails (not including spam) and the accuracy is 100%. I kid you not, every single email has been correctly identified, which is one of the main perks I think most people use it other than the 2.5 gigs of space. Thunderbird correctly identifies 99.7% of my email, this account has 4,600 emails. When I first trained Thunderbird it was around 90-95% but over time it quickly increased in accuracy to the point where I rarely see spam. I havent used Evolution that extensively (I preferred Thunderbird), but SpamAssassin from the limited training I did seemed pretty good. You either get very unique spam or your parameters are messed up. You should not have to spend 10 minutes a day on spam, that is nonsense.
      Regards,
      Steve

    4. Re:My problem with spam filters... by RAMMS+EIN · · Score: 1

      ``However, I've had unacceptably high false-positive rates.''

      Maybe you should consider using bayesian filters instead. IIRC, SpamAsassin can do bayesian filtering, but SpamPal (from a quick glance at the site) seems unable to do so.

      Empirical evidence shows that bayesian spam filters achieve higher recall (what part of spam messages were classified as spam) and much higher precission (what part of messages classified as spam were actually spam) than other filters.

      I've written a very simple bayesian filter myself (mailvisa). It catches over 95% of spam I receive, and I have yet to encounter the first false positive.

      --
      Please correct me if I got my facts wrong.
    5. Re:My problem with spam filters... by hackstraw · · Score: 2, Interesting

      However, I've had unacceptably high false-positive rates.

      I too had that problem with SpamAssassin version 2.6x, but with 3.0 and later its been much better. Granted, I use almost every test under the sun, and I have my threshold set to 10.0 for "spam-nasty" and 13.0 for "spam-nasty-to-the-point-of-no-return". Yes, those are the mailbox names :)

      I also have a custom plugin for SpamAssassin that does non-linear postprocess scoring of SPAM. What it does is gives 3 points for every SPAM subject rule hit, one point for every other hit, minus every HAM rule hit. Then if the resulting hits are greater than 3, then a score of hits ** 1.2 / 4 is added to the total SPAM score. If you're still with me I'm impressed.

      What this does is helps flag SPAM with many seemingly insignificant SPAM flags to score higher, and on a non-linear basis which reduces the false positives to practically 0. I only get a couple of mails in the "spam-nasty" box a day, and I check that for false positives. The only ones I see in there are solicited commercial emails that are poorly done, and nobody cares about them anyway. The "spam-nasty-to-the-point-of-no-return" box is full of the SPAM we have all come to hate.

      For some reason, nobody seems too interested in my non-linear approach, and although SpamAssassin is pretty effective, I've only gotten maybe 5-10 SPAMs slip through, and only one false positive over 18 months or so since 3.0 came out.

      Its amusing that when SA misses a SPAM, my users actually come to me and ask me about it. I look at the mail, and there is nothing really special about it to trigger anything, so there isn't much to be done. Some of them are I guess test SPAMs where a new SPAMmer is testing there new software or something.

  17. back in time? by dotpavan · · Score: 1
    Interviews: Jonathan Zdziarski Answers Posted by ScuttleMonkey on Tuesday August 30, @07:13AM

    has time wound back? all the stories and comments seem to be showing AM instead of PM. Editors: correct the error please, I dont want to go to work again!

    1. Re:back in time? by dotpavan · · Score: 1

      ahem, I realised after a cup of coffee that even the time is wrong, not just am/pm.

    2. Re:back in time? by 680x0 · · Score: 1

      Presumably Slashdot is using that "notoriously inaccurate" carbon dating for the timerstamps on posts. :-)

  18. Re:I still want him to answer why we are filtering by winkydink · · Score: 3, Interesting

    Well, it wasn't worthless to me, and it looks like the editors thought that my question was a bit more coherent than a improperly written href.

    If there's something that you really want to know, have you considered contacting him using this newfangled technoloigy called email?

    --

    "I'd rather be a lightning rod than a seismometer." -Ken Kesey

  19. Hmm, my question didn't get answered - by skazatmebaby · · Score: 1

    And it was +5 Interesting. Anyone want to take a crack at it?

    http://slashdot.org/comments.pl?sid=160001&cid=133 92902

    --

    Dada Mail - Program, Art Project or Absurdity?

    1. Re:Hmm, my question didn't get answered - by Nuclear+Elephant · · Score: 2, Interesting

      What advice do you have as a developer of this program to: * Help my users send legitimate messages (either by education (specifically) or by programming techniques) * Help Spam Filtering Software check the messages my program sends out for possible abuse * Be a part of the solution to sending legitimate messages to many people, rather than perhaps be part of the problem.

      I had written up an answer to this one, but it turned out not to appear in the interview questions, so it got bitcanned. I believe the summary was to incorporate functionality such as listid, to help a filter identify that the message was coming from a mailing list. This way, whether it's spam or ham, the filter can better identify it.

      Perhaps other areas that might make it very sysadmin-friendly in terms of management would be putting in filter interfaces to allow one to check outgoing messages to the list, and potentially flag suspect messages for additional approval.

      As far as making people send good messages, there's not much hope for you. People are going to abuse your software no matter how hard you try and educate them. That's part of free software - giving spammers the freedom to use it too. Hopefully incorporating as many list identification features by default will at least help the dimmer of the bunch make their spam more available.

  20. Nobody has been fired... by PhYrE2k2 · · Score: 5, Insightful
    . The ignorance of these people on such topics is astounding, and I find many approaches I have tried seem to yield no results...


    Bingo. One of my managers said it very well at my former employment: nobody ever got fired for choosing IBM- and he's 100% right. I know a few companies spending millions to have services offered by Dell, IBM, Microsoft, etc who could get their services for thousands from clone computer makers, and Linux- but who would they?

    Choose IBM and loose a few million, and you 'missed the market'. Choose open source and loose a few million and 'your solution wasn't up to par'. Choose open source and succeed and you make millions...

    Is it worth the risk for the second situation? Most managers who want to leave with a hefty bonus and a good referral woulds say no.

    PS: Agree 100% with almost everything he said. Smart man.

    -M
    --

    when you see the word 'Linux', drink!
    1. Re:Nobody has been fired... by PaxTech · · Score: 2

      PS: Agree 100% with almost everything he said. Smart man.

      I thought the same after reading the interview. Then I checked out his site and read his essay about Christianity. I'm not trying to slam, but I was far from impressed.

      --
      All movements for social change begin as missions, evolve into businesses, and end up as rackets.
    2. Re:Nobody has been fired... by joeslugg · · Score: 1
      "Agree 100% with almost everything he said. Smart man."

      I submit this as possible evidence to the contrary.



      "Software registering these libraries as dependencies: (None Registered)"

      Shocker!






      *grin* (This post is meant in jest - I actually enjoyed the commentary very much :-)

  21. Re:I still want him to answer why we are filtering by winkydink · · Score: 0, Offtopic

    not when it the words can be properly interpreted even when improperly spelled.

    --

    "I'd rather be a lightning rod than a seismometer." -Ken Kesey

  22. Re:I still want him to answer why we are filtering by garcia · · Score: 0, Offtopic

    Sorry, I can't believe any 6 digit UID Slashbotter. Especially one that says that whatever the Slashdot editors choose is ok! :)

  23. We have discussed SPAM just way to much ... by GNUALMAFUERTE · · Score: 1

    But the other issues present in the interview are really way more interesting than SPAM (Religion and pronunciation os bizarre names :) ).

    I Agree with Zdziarski in that both science and religion need a bit of faith from their believers. The difference, is that science logically analizes our environment, and bases it's conclusion on that analisis. Religion, on the other hand, is arbitrary, it just states that certain things are so 'just because'; so, reading different theorys, and then i see which seems more plausible, is better documented, etc, and, off course, depending on my personality, i will find some of them more credible, and so i will put a little faith in them. Religious persons acts differently, they beleive in a certain religion because their parents did. I Don't beleive the same things that my parents did about science, i read my own books, make my own conclussions, etc. Also, science is more unified than religion, that is, for a certain topic, there might be a few scientific explanations, that may vary slightly, but they all have a common base, share certain ideas, etc., and usually there is a reasonable number of different theorys (two?, three?), but, in religion, there are hundreds of different religions and they all state things that are VERY different from what other religions explain, absolutely contradicting each other.
    Also, religion doesn't evolve, science does. The catholic church once stated how man was created, and that explanation is still the same than it was 1.7k years ago, science changes daily, improving, finding new ways and explanations, because the human being is constantly evolving, and so, we prove ourselves wrong constantly (may be not plain wrong, we just elaborate on what we thought previously), religion doesn't change, and doesn't add new knowledge.
    One of the weaker points of religions, is that they base all their facts in one initial fact: God exists, and so, from that all the other knowledge is generated. We don't know if god exists, it's just a theory, so all the theorys in religion are based on one single theory, that is impossible to prove, and that is the single more discussed and opossed theory in history, with lots of proves that it's false, being it's only argument to be true, faith. Science, on the other hand, bases all it's theorys on a fact: Man can learn, so, many specific theorys might be wrong, but they can't be all wrong, and they won't be all proved wrong in a day, in change, if i could prove you that god doesn't exists, i would be proving all your other theorys wrong at the same time.
    Obviously, you have the right to beleive, and i respect that.

    --
    WTF am I doing replying to an AC at 5 A.M on a Friday night?
    1. Re:We have discussed SPAM just way to much ... by Russ+Nelson · · Score: 1

      science and religion need a bit of faith from their believers.

      No. Religion requires faith. Science requires trust.

      Also, religion doesn't evolve, science does.

      That's also not true. Christians used to say that slavery was okay because God didn't condemn it, but instead spoke approvingly of slave holders who treated their slaves fairly. Now just try to find a Christian who thinks that.

      --
      Don't piss off The Angry Economist
    2. Re:We have discussed SPAM just way to much ... by GNUALMAFUERTE · · Score: 1

      I touched the meaning of faith a little to make it suitable for a comparission, trust is a form of faith, in this context.

      About the slaves comment, we are talking about science, not ethics. Also, christians change their ethics in two ocasions: a) When a powerfull country/organization tells them to (The church changed it's mind on slavery when certain countrys abolished slavery, and not he other way arround) b) when it's convenient for political/military/economical reasons.
      About the "try to find a Christian who thinks that", 99.99% of christians are capitalists, and 99.99% of capitalists aproves some forms of slavery (working 9 hours for a minimal wage, not being able to find another job, and so not being able to afford loosing the job, is slavery)

      --
      WTF am I doing replying to an AC at 5 A.M on a Friday night?
    3. Re:We have discussed SPAM just way to much ... by PCM2 · · Score: 2, Insightful
      I Agree with Zdziarski in that both science and religion need a bit of faith from their believers.
      I do not. Science does not require faith. If, at any point in the "chain of belief" of a particular scientific theory, you encounter a step of logic that is not demonstrably provable by experimentation, you are quite correct to suspect the veracity of that theory. Science can be put to experimental test; religion cannot. Therefore religion requires faith, whereas the most science requires of you is trust -- you often have to trust that the scientists who figured out a certain point of science and the other scientists who recreated the experiments and pronounced the conclusions valid know more about their field than you do. If there was no way to test that scientists really have the knowledge they claim to have but you still felt you needed to believe in their conclusions, then that would be faith.
      One of the weaker points of religions, is that they base all their facts in one initial fact: God exists, and so, from that all the other knowledge is generated.
      Similarly, all science proceeds from the belief that the universe exists. If it does not, then no hypothesis can ever be tested accurately. Quantum physicists might already be willing to tell you that time, as humans perceive it, probably doesn't exist. What's next? So in that sense does science require faith? Now we're getting into philosophy.
      --
      Breakfast served all day!
    4. Re:We have discussed SPAM just way to much ... by wabaus · · Score: 2, Interesting

      "One of the weaker points of religions, is that they base all their facts in one initial fact: God exists, and so, from that all the other knowledge is generated."

      Just to be clear, science is based on at least 2 equally unproven hypotheses (possibly others):

      1) For every physical-observable effect there is a physical-observable cause. (physical-observable was the short-hand my Physics profs used for anything that can be measured or detected directly or indirectly)

      2) Physical Law (that is the way the universe behaves) is consistent everywhere in the universe.

      I am not claiming either of these is false. But from a purely philosophical point of view, the idea of "proving" things is a relative notion. In science, we can hypothesize, test, and improve our theories. But there is always room for the universe to prove us wrong.

      Faith and Science start from different sets of assumptions. My own opinion is that:
      a) People of faith have nothing to fear from Science, since God surely understands the true nature of the universe, which we understand in progressive approximation through science.
      b) Scientists are foolish to become defensive about science in the face of Faith, as this often leads to pompously accepting as immutable that which is a progressive approximation of the true nature of the universe.

      Of course, the Jonathan Zdziarski's responses re: F/OSS and SPAM were also quite thought provoking :)

      ==>Andrew Bauserman!

      "For a successful technology, reality must take precedence over public relations, for Nature cannot be fooled."
      - Richard P. Feynman
      (Appendix to the Rogers Commission Report on the Challenger Space Shuttle Accident)

      "A philosopher once said, 'It is necessary for the very existence of science that the same conditions always produce the same results'. Well, they do not... Yet science goes on in spite of it...
      "What is necessary 'for the very existence of science', and what the characteristics of nature are, are not to be determined by pompous preconditions, they are determined always by the material with which we work, by nature herself.
      "In fact, it is necessary for the very existence of science that minds exist which do not allow that nature must satisfy some preconceived conditions, like those of our philosopher."
      - Richard Feynman, _The_Character_of_Physical_Law_

    5. Re:We have discussed SPAM just way to much ... by DreadSpoon · · Score: 5, Insightful

      First, a note: I am not religious. Just wanted to clarify that so you know my position isn't biased in this rebuttal.

      "Religious persons acts differently, they beleive in a certain religion because their parents did."

      While this is indeed true for the vast majority of people all through-out history, it isn't _always_ true. Jonathan's responses even explicitly state that he hadn't heard of Jesus until much later in his life.

      "Also, religion doesn't evolve, science does. The catholic church once stated"

      Religion has evolved *tons*. Christianity today looks very little like what it was 2000 years ago, and even the Catholic church is different. The simple fact that we *have* multiple versions of Christianity is only a couple hundred years old. The Church (which was never called "Catholic" until after the Reformation) has had many changes in its beliefs. The belief that the Son is of the Father (ie, that Jesus is divine, more than a man) didn't come about until several hundred years after the Church had formed. That's but one of many, many examples.

      "the same than it was 1.7k years ago, science changes daily,"

      What's wrong with not changing? If it changes, that would mean that it was wrong. Likewise, when science changes, that means that it was, previously, wrong. 2000 year old scientific facts are impressive. This week's hot scientific theory is really no different than the nut-jobs jumping on the latest fad religion. (Kids with black lipstick calling themselves Wiccans: I'm refering to you.)

      If you clarify "change" to mean "refine," then we once again come back to the fact that Christianity has refined itself greatly over the last two millenia, not to mention the refinements that Judaism likely underwent long before it branched into Christianity. Any major religion undergoes refinements in its beliefs and tenants, and simply studying history and works of antiquity will make that evolution (forgive the pun) of the religions clear.

      "religion doesn't change, and doesn't add new knowledge."

      Religion isn't about knowledge. If all you are interested in is being smart, then sure, a religion like Christianity isn't for you. That doesn't mean Religion is wrong. Science has not disproven God. It has not disproven Creation. It has not disproven anything in the Christian religion, and likewise many other religions have elements which have not been proven nor disproven by science.

      I would say that the real purpose of religion is to make up for what knowledge can't give you.

      It is key to keep knowledge in mind, though. For a personal pet peeve, I don't care what the book says, the Bible *is not* the word of God. That's something you can prove, I might note - just pick up two editions of the Bible and note the differences. There are in fact many factual discrepencies. Perhaps, long long long ago, some particular stories were the word of God, but they have been retold, transcribed, edited, translated, and artistically recast so many times that whatever copy of the Bible you have access to now cannot be wholly and firmly trusted to be true. In many cases, slight changes of wording can make a phrase still say the same thing, yet mean something new. There are known and documented errors in most popular versions of the Bible, and many more documented passages of the modern Bible eidtions which are believed to be flat out incorrect. Many of today's versions of various Bible passages which may have once been analogies could now be considered literal truth due to poor translation or simply a loss of contextual understanding since the passages' original inception. I.e., is the "seven days" of the creation a measure of actual time as we perceive it, or an unclear translation of a literary device used to explain the passing of seven units of time of unknown size? You can't be sure, and there are no original manuscripts of the Bible to study; indeed, there never were original manuscripts of most of it, as much of the Bi

    6. Re:We have discussed SPAM just way to much ... by Anonymous Coward · · Score: 0

      The problem with your argument is that you are criticizing the church, and religion, while he (and I) make no claim that that is what we believe. I don't believe what the church believes, or what Christians say I should believe, or even what my parents think I should believe. My belief is not a religion, it is based on my search for truth. So when the "church" (which church, anyway?? Catholic, maybe?) changes its ethics, I'm not swayed by their opinion or control. I'm not controlled by the church, I'm controlled by God.

    7. Re:We have discussed SPAM just way to much ... by Anonymous Coward · · Score: 0

      You are controled by god?, man, that's stupid.
      First of all, god doesn't exist, and that's a FACT.
      Second, if he existed, the purpose of my life would be to kill him. An absolute power?, a universe-wide dictatorship?, the idea of the existance of a god is stupid, but if a god actually existed, i would be the first blasphem.

    8. Re:We have discussed SPAM just way to much ... by GNUALMAFUERTE · · Score: 1

      Theorys can't be proved right, they can be proved either wrong, or probably true. Nothing can be proved completely true, since it's based on previous conceptions and knowledges that might change, so, there is a little bit of faith in it.

      --
      WTF am I doing replying to an AC at 5 A.M on a Friday night?
    9. Re:We have discussed SPAM just way to much ... by Bob+Cat+-+NYMPHS · · Score: 1

      Science requires trust.

      Almost. "Trust, but verify."

    10. Re:We have discussed SPAM just way to much ... by chromatic · · Score: 4, Informative
      The belief that the Son is of the Father (ie, that Jesus is divine, more than a man) didn't come about until several hundred years after the Church had formed.

      Untrue. See, for example, the writings of the Ante-Nicene Fathers.

      You're right that certain beliefs and lines of thinking have changed and grown over time -- especially in Roman Catholicism with regard to Augustine's Aristotelianism, but the implication that the roots of Christianity weren't present in written form by at least the end of the first century doesn't fit the historical record.

      (I am an armchair historian.)

    11. Re:We have discussed SPAM just way to much ... by Anonymous Coward · · Score: 0

      Faith, where one's confidence in a theory is improved by repeated tests and supportive evidence, and is subject to reevaluation come evidence against that theory...

      Yep, just a little bit of faith.

    12. Re:We have discussed SPAM just way to much ... by Anonymous Coward · · Score: 0

      How do you prove that God does not exist? I'd really like to know how you know that its a "FACT".

    13. Re:We have discussed SPAM just way to much ... by GNUALMAFUERTE · · Score: 1

      "is probably a form of idolatry. ;-)"
      I Absolutely agree, the problem is that religion is a CRIME. A Crime against human mind and human knowledge, which is the most precious thing we have. If people belevied certain ridicoulous things, and they kept that for themselves, i would agree, it's people's right to think, smoke, drink, or whatever they want in the privacy of their own homes. The problem are institutions that hold an amazing power, and acts against science. I'm pro drugs, but against narcotrafic, pro drinking but against alcapone, pro cigars but against Marlboro, pro politics but against state, pro science but against NASA, pro communications but against AT&T. Think whatever you want, but kill the fucking church, and stop going against the people that wants to discover the true.
      And, also, don't try to impose your stupid beleives on new generations, Certain things are a personal decition, and they are ok, but they stop being right if you impose them to the young, Consume drugs, drink, smoke, beleive in religions, be gay, whatever, but please don't publish this things as if they were ok, and don't teach them to your childs, let them choose by themselves, I take drugs, I smoke, I drink, but i don't tell my sister to do those things, and i don't tell her that they are ok.

      --
      WTF am I doing replying to an AC at 5 A.M on a Friday night?
    14. Re:We have discussed SPAM just way to much ... by hackstraw · · Score: 1

      Science does not require faith.

      Stolen definition of faith: "Confident belief in the truth, value, or trustworthiness of a person, idea, or thing."

      Science is method of knowing that is an extension of our senses through logic and experimentation. Our senses are often completely wrong. I've thought someone else was on the phone or in person. I've misread things I've sworn were correct the first time, etc.

      By definition, science requires faith in science _and_ one's senses or at least the collective opinion of other's senses. Science is often wrong, after all its a process not an event. Science is after the truth or a specific truth with is the definition of faith.

      My $0.02

    15. Re:We have discussed SPAM just way to much ... by GNUALMAFUERTE · · Score: 1

      I Can't prove that a "God" Does not exist, but i can prove that the gods that religions has said to exist doesn't, in the form that they have gived specifics about this supposed gods, and those specs has been proved wrong. Also, it's a false true, since it can't be proved. Let me make an stupid analogy: I Just farted, but my fart didn't produce any odor, sound, didn't release any kind of gases in the environment, and nobody has seen me fart, so, it would be a falacy if i tried to prove you that i farted, since it's impossible to prove that i did it, and it's also impossible to prove that i didn't. Then, i start giving you specifics about my fart, and those specifics are proved WRONG. I give you over the years many specific information about my fart, and you prove most of those specific informations wrong, so i just tell you that my fart works in misterious ways, just ignore your proves, and eventually say "ok, i was wrong about those specific informations about my gas, but that doesn't change the existant of my fart, since my fart is something way to complex for you to understand, and stop questioning the existance of my fart or a big fart from outer space will come and punish you (but before, i will create a huge institution to defend my fart, and i will burn you and anyone else that refuses the existance of the fart, in the name of the fart, of course).
      Come on, it's 2005 allready.

      --
      WTF am I doing replying to an AC at 5 A.M on a Friday night?
    16. Re:We have discussed SPAM just way to much ... by WiFiBro · · Score: 1

      "2) Physical Law (that is the way the universe behaves) is consistent everywhere in the universe."

      How do you define universe? Them weird physicists are coming up with very special theories lately, to get be able to combine several models or theories, like the one about snares, and worse: the "M-theory", stating, and i am depending on the BBC to inform me correctly, that there are several universes, every universe might have it's own set of physical laws and they might be interfering with each other as well.

    17. Re:We have discussed SPAM just way to much ... by PCM2 · · Score: 1
      Stolen definition of faith: "Confident belief in the truth, value, or trustworthiness of a person, idea, or thing."
      I was going more with definition number two, since that's the one most religious people are talking about. Your definition applies more when you say, for example, "I have faith in your ability to complete the task at hand." When you say, "my faith will bring blessings unto my house," or, "through faith I know that dinosaurs were made extinct by Sir Lancelot," you're talking about something else.
      --
      Breakfast served all day!
    18. Re:We have discussed SPAM just way to much ... by Anonymous Coward · · Score: 0

      Hmm, if we don't pass anything along to our children... kinda defeats the purpose of having culture, societies, etc...

      Other than that, delicious rant, I hope you enjoy not passing any of your stupid ideas to your children :P

    19. Re:We have discussed SPAM just way to much ... by GNUALMAFUERTE · · Score: 2, Informative

      Just don't pass it while they are 3. If you teach your children to THINK, and teach him your specific beleives when he is old enough to decide for himself, it's ok. If you tell your child about your political/religious ideas when s/he's 15, you are leting him choose, but if you put that shit in his head since the day s/he was born ...
      Also, the way religion is teached is not actual teaching, but brainwashing. When you learn algebra, you are told how it works, and that's it. When you are teached religion, they tell you how it works, and then they tell you that if you don't beleive in it and follow it exactly, you will go to hell, to be punished forever, when this is told to a 5 years old child, what do you think will happen?

      --
      WTF am I doing replying to an AC at 5 A.M on a Friday night?
    20. Re:We have discussed SPAM just way to much ... by Anonymous Coward · · Score: 0

      Yeah, he said he hadn't heard of Jesus until high school. Right. I guess he hadn't heard of Christmas either...

    21. Re:We have discussed SPAM just way to much ... by mibus · · Score: 1

      When you learn algebra, you are told how it works, and that's it. When you are teached religion, they tell you how it works, and then they tell you that if you don't beleive in it and follow it exactly, you will go to hell, to be punished forever, when this is told to a 5 years old child, what do you think will happen?

      You do realise that it's possible to teach a child about religion(s) without the fire-and-brimstone stuff, right?

      Neither my wife nor I are Christian, but we'll still be taking our child(ren) to church on occasion (probably a fair number of Easters / Christmases at least) so they get to learn about other people.

      If they decide to follow, sure. I'll be doing my best not to unduly push "my" beliefs, and I'll let them choose what they want to believe in.

    22. Re:We have discussed SPAM just way to much ... by AaronBale · · Score: 1

      Note - I am a Christain...

      Actually, I don't think it is truly possible for a person to be non-biased - some people just are better are approaching topics open-mindedly then others.

      It is funny how many of us who claim to be something (Christian, scientist, atheist, agnostic, whatever) tend to forget the basics tenets of our focus and thus make rather poor arguments. This is not meant as an attack on anyone, BTW, just something to remember when you are trying to prove a point. From a Christian standpoint, we are supposed to care for others, strive to do good, live as examples to everyone, admit we screw up (sin), and believe in God and Christ. From a science perspective, we are suppose to try for understanding based on logic. Why then do the two sides conflict? Technically, until our hyphothesis, theorys, faith, and et all are PROVEN LAW or PROVEN FALSE, they are just as plausible as any other belief scientific or religious. Instead of attacking someone for or for not thinking, try thinking instead. DreadSpoon, thank you for you thoughts on this subject!

      Well, now for what I actually wanted to talk about:
      It is true that you can find differences in different translations of the Bible. In fact, they number in the hundreds within the first few books between the just two of the more popular current translations. A good share of this is due to the nature of translation - Hebrew to English is not a 1 to 1 relationship. In fact, there are some Hebrew words that have no direct correlation in English, and even words for which the actual definition must be approximated by context, as the word has been lost even to the Jewish.
      The current standing philosophy of the Bible being the Word of God requires a couple steps of faith (funny enough). One is that, regarless of translation or cultue reading it, given time to study with fellow 'Christians' and under the guidance of God, you will find the truth. In fact, this means that you need to not just take the words out of the book on faith, that you must actually study and OWN the material for it to matter. Sounds like logic and scientific method still apply - just the opening premises have changed.

      As for the argument to matter, the foundations of the argument must be assumed to be true. Kind of like arguing modern (common? basic?)physics without accepting Newton's laws - a Law that has been agreed upon. If you are unwilling to accept that God may exist (or does exist, for the point of discussion of Christianity), then the rest of the argument has little to stand on. However, if you accept it as a possibility (as you can not currently disprove it), the argument holds significant meaning.

      I'm not worried about what you believe. However, if I am to accept any other viewpoints and even be a 'Christian', then I must keep an open mind and be willing to listen to you. I would ask the same in return from any other person who wishes to discuss the matter.

      As for the comment of worshipping the book as absolute truth probably being a form of idolatry - I wholeheartedly agree. Even the book states that if you put anything else before God you've made it an idol!

    23. Re:We have discussed SPAM just way to much ... by aybiss · · Score: 0

      I do need to take issue with one thing here:

      Religion has evolved *tons*.

      Are you talking about say, when King Henry decided that it was OK to divorce your wife, just so that he could? For anyone who missed it, I'm talking about the birth of the Protestant faith. You know - those guys that kill Catholics over whether or not it's OK to have unprotected sex in the safety of your own home?

      Argue all you like, there is no place for this in today's society, and to live your life the way someone else thinks it should be lived is to me, completely illogical.

      Is anybody here doing life for the second time? Anyone here got everything worked out? Reckon goat farmers and carpenters 2000 years ago did? I guess that's the biggest thing for me - it's not the word of God people believe, it's ONE translation of ONE copy of ONE undoubtedly cloudy issue!

      In fact to suggest that someone could even begin to write down a single word of God's master plan would be blasphemous would it not?!?

      While the interviewee is fully entitled to his views, it pains me to see people close their minds after having read a third translation of a 2000 year old book on how life is. Clearly this is not what this person has done, but every day the world suffers as a result of the largest military power being driven by religious old farts who have. Anybody ever noticed how the Muslims and Hindus *always* get fucked in the end?

      Anyway...

      --
      It's OK Bender, there's no such thing as 2.
    24. Re:We have discussed SPAM just way to much ... by GNUALMAFUERTE · · Score: 1

      I Smoke. I Woudln't teach or introduce someone into smoking, it would be unethical to teach my childs to smoke.

      The same happends with Religion, But religion is more than a bad habit, it's a stone hanged from this society, that keeps us from finally evolving in certain areas. ... they were alive and did the work of their day, Admitting they bore mites as for unfledged birds who have now to rise and fly and sing for themselves ...
                                      Walt Whitman, The Song of Myself

      --
      WTF am I doing replying to an AC at 5 A.M on a Friday night?
    25. Re:We have discussed SPAM just way to much ... by 2short · · Score: 1

      "until our hyphothesis, theorys, faith, and et all are PROVEN LAW or PROVEN FALSE, they are just as plausible as any other belief scientific or religious"

      Scientific theories are never proven, yet some are more plausible; they are better supported than others because they fit the evidence better; they explain things we observe about the world in ways that would not explain things if the observations were different.

      "...without accepting Newton's laws - a Law that has been agreed upon."

      Newtons laws are not assumed to be true, they are not agreed on. They are observed to be true (or in certain cases false.) There is no need to ask for consensus; I can go throw a ball and observe that Newtons laws accurately predict the course it will follow. If someone thinks Newton is wrong, there is no need to discuss it, they just need to figure out what their theory predicts differently from Newtons. Then they, or anyone, can go check it out.
          If the star appears to be out of position, Einstein is right and Newtons "Law" is wrong. Oh, sure, there will be some disbeleiving shock, Newton has seemed right for centuries, but what you going to do? There are pictures; the star is out of position. Whether you have an open mind, whether you are biased, irrelevant. There's no agreeing or not agreeing; science is not a democracy.

      "If you are unwilling to accept that God may exist (or does exist, for the point of discussion of Christianity),"

      "may exist" and "does exist" are rather different assertions. Rejecting "may exist" would be obvious folly, as clearly no possible evidence could show that god does not exist. So, I'll happily accept that god may exist, all sorts of things may exist. But I don't see any point in discussing it beyond that, unless there is some actual evidence to examine, which there isn't.

  24. A creationist? by Anonymous Coward · · Score: 0

    This guy is a creationist? And he expects us to trust his faith-based spam filtering?

    He's making mistake #1 that creationists make: assuming that any problems in the evidence for one theory of evolution are evidence for creationism.

  25. Amazon and Google don't contribute? by BigBuckHunter · · Score: 1

    They argue that the open source community hasn't benefited from companies like Google and Amazon.

    I never really understood this thinking. At amazon, kernel and oracle patches (made by the amazon kernel team) were upstreamed to Redhat and Oracle. While their name does not appear in the credits. They certainly did contribute.

    BBH

    1. Re:Amazon and Google don't contribute? by Nuclear+Elephant · · Score: 1


      First:
      While their name does not appear in the credits.

      Then:
      >They argue that the open source community hasn't benefited from companies like Google and Amazon.
      I never really understood this thinking.


      Did you mean to post a +1, Funny?

    2. Re:Amazon and Google don't contribute? by BigBuckHunter · · Score: 1

      Nope, not funny, but insightful, since the order was

      First: They argue that the open source community hasn't benefited from companies like Google and Amazon.

      Then: They just didn't take credit for their contributions

      In reality, we pretty much owe Oracle on RHEL to Amazon.

      BBH

  26. OT: Slashdots SSL cert has expired by Anonymous Coward · · Score: 0

    What's up with that?

    Does it mean we should all stop trusting them?

  27. My spam problem... by radish · · Score: 2, Interesting

    My spam problem is the reverse of most people's. Using grey listing I get basically no actual spam. It's wonderful - works very well. But that's not my problem. My problem is that some a$$hole spammer has decided to start using my domain as a from address in his spams. So I'm currently getting deluged by bounce messages for mails I never sent. I've published SPF records and that's helped a bit, but not a lot.

    Anyone got any good suggestions?

    --

    ---- Den ene knappen er powerknapp, den andre er Bender voice knapp "Bite My Shiny Metal Ass"

    1. Re:My spam problem... by schon · · Score: 1

      some a$$hole spammer has decided to start using my domain as a from address in his spams

      This is known as "joe jobbing." It's happened to me a couple of times.

      Anyone got any good suggestions?

      The bounce messages are typically coming from mailservers operated by brain-dead admins. These servers accept the email from trojaned machines, and then bounce it to you when they try to deliver it to the recipient.

      As these servers are obviously misconfigured, block them so they have to deal with the bounce messages (it's the only way they'll get the message.) There's typically only a couple of dozen or so that are doing this. If possible, block mail from "Administrator@", MAILER-DAEMON, or null sender for those servers. (Note that blocking the null sender is a violation of applicable RFCs.. 2821, IIRC.)

      Once the joe job is over, remove the block.

    2. Re:My spam problem... by WiFiBro · · Score: 1

      You say your domain, not your email address, so I assume you have the same problem as I had, my mail server had a catch-all system so all Firstname_23@mydomain.nl type addresses the spammer invented came in my inbox. I had this catch-all system because I got the domain from another company but still received the odd mail to them.

      In the end the only think that worked was stopping the catch-all, which is a simple setting on most servers. From then on all non-existing email addresses bounced back.

      PS All invented 'from' addresses will bounce for a while and my domain was listed on a stupid blacklist until I explained it to them.

    3. Re:My spam problem... by dodobh · · Score: 1

      Reject bounces for a few days. This breaks the RFCs, but if you reject with a message that says joejobbed, you should not really have issues.

      Bounces always come with the null sender , so rejecting those is easy.

      --
      I can throw myself at the ground, and miss.
  28. Your "a href" is wrong. by hummassa · · Score: 1

    so, no one can know where are you pointing at.
    unless this is an attempt of humour (in which case, it didn't work at all).
    HTH,
    Massa

    --
    It's better to be the foot on the boot than the face on the pavement. ~~ tkx Kadin2048
  29. Carbon-14 by Anonymous Coward · · Score: 2, Insightful

    Sure looks like he didn't take his good time on researching carbon-14 and find out that to date dino-bones we aren't using carbon-14 that much.

    http://science.howstuffworks.com/carbon-142.htm

    Hard-core Christians complain that we aren't researching their opinions, but I see way too much that it is the same the other way around. If you believe in Carbon-14 then you have to agree that the other science behind the chemistry also works. And in that case that argument for the age of dinosaurs so fall apart for those Christians.

    (Disclaimer: I believe in God, Jesus, and Science - The Bible has good things but it is too man made and narrow minded towards the real world, IMHO)

    1. Re:Carbon-14 by LexNaturalis · · Score: 2, Interesting

      That assumes that you DO believe that the chemistry behind Carbon-14 dating works. Actually, it assumes that you believe that radioactive decay is constant and that you can accurately determine rate of decay based on an unchanging half-life. I used to believe such things, until I learned an interesting tidbit.

      Russian scientists recently (Well, more like 6-7 years ago) discovered that radioactive decay is not constant. They were opening up some of their nuclear weapons and expected to find N amount of radioactive material, because they knew the half-life/decay rate of the material. They discovered, however, that nuclear decay is not constant. Unfortunately, however, I can't cite my source, so don't ask. It's not classified, but it's not 'open source' either.

      Note: This doesn't mean that Carbon-14 dating is innacurate, but it just goes along with what Mr. Zdziarski said about always questioning science.

      --
      Men occasionally stumble over the truth, but most of them pick themselves up and hurry off as if nothing ever happened.
    2. Re:Carbon-14 by WiFiBro · · Score: 1

      Can we safely assume that the quality of their nuclear material was constant to start with?

    3. Re:Carbon-14 by moranar · · Score: 1

      Do you have many of these sources you can't mention to back up other theories or ideas you happen to agree with?

      I'm NOT interested at all in things you might mention to back up what you say until you do provide some verifiable sources.

      --
      "I think it would be a good idea!"
      Gandhi, about Internet Security
  30. I'm a pastafarian by danharan · · Score: 1

    I welcome our new Flying Spaghetti Monster overlord.

    Seriously, you can believe whatever you want. It's when you start dissing evolution that we've got a problem: now the burden of proof is yours.

    And you're going to have to do a hell of a lot better than challenging the accuracy of carbon dating. Ideally, you'd have an alternative explanation that wasn't half-baked.

    --
    Information: "I want to be anthropomorphized"
    1. Re:I'm a pastafarian by sarasinclair · · Score: 1
      half-baked

      Because His Noodliness approves only of fully-baked dishes (like ziti!)?

      --
      - scout
    2. Re:I'm a pastafarian by VoidWraith · · Score: 1

      It would've been more on topic if you were a follower of SPAM. (Hopefully that link survives.)

    3. Re:I'm a pastafarian by slavemowgli · · Score: 3, Insightful

      I second that. What you believe is one thing, but if you abandon scepticism and value religious doctrine higher than tested scientific theory, then you've got a problem.

      Incidentally, I'm sad to see that Zdziarski tries to pull the same old stunt again that most supporters of creationism try to pull - namely, deliberately misunderstanding the meaning of "theory" in the context of science and equating it with an unproven hypothesis. Everyone who knows a bit about science (which no doubt includes Zdziarski) will know that that's not true, of course, but the general public often doesn't, which is why this kind of tactic is so despicable.

      I'd really like to see a supporter of creationism who says "I don't believe in evolution, but I still acknowledge that it explains the observed facts and has made falsifiable predictions that were, in turn, shown to be correct". But I guess that's something you just won't hear from someone who puts his personal faith above the scientific method, as far as the search for scientific truth is concerned.

      --
      quidquid latine dictum sit altum videtur.
    4. Re:I'm a pastafarian by Nuclear+Elephant · · Score: 3, Interesting

      deliberately misunderstanding the meaning of "theory" in the context of science and equating it with an unproven hypothesis.

      Oh I don't misunderstand the difference. However, most public schools do, and they teach a theory as if it were a law (such as the laws of thermodynamics or the laws of gravity). I think a lot of people misinterpret trying to bring the theory of evolution down to a "theory" as trying to convert it into a hypothetis. This just isn't the desired intent.

      don't believe in evolution, but I still acknowledge that it explains the observed facts and has made falsifiable predictions that were, in turn, shown to be correct

      How's this:

      I don't believe in evolution, but I still acknowledge that it makes an attempt to explain the observed facts and has made predictions that were, in turn, shown to be correct by those who believe the theory of evolution is in fact falsible.

      Unfortunately, most scientists today view evolution as infalsible. The excuse is to simply "keep digging". I believe there is more than enough information to suggest that we move on and find some other scientific explanations.

    5. Re:I'm a pastafarian by Hope+Thelps · · Score: 1

      However, most public schools do, and they teach a theory as if it were a law (such as the laws of thermodynamics or the laws of gravity)

      I'm going to sounds shockingly ignorant now, but what is the important difference here? Surely nobody would claim that the laws of thermodynamics are in any sense "proven" beyond the lack of experimental results that contradict them.

      --
      To summarise the summary of the summary: people are a problem. ~ h2g2
    6. Re:I'm a pastafarian by WaxParadigm · · Score: 1

      "It's when you start dissing evolution that we've got a problem: now the burden of proof is yours."

      Description: The burden of proof is always on the person making the assertion or proposition. Shifting the burden of proof, a special case of "argumentum ad ignorantium," is a fallacy of putting the burden of proof on the person who denies or questions the assertion being made. The source of the fallacy is the assumption that something is true unless proven otherwise.

      Evolution is the assertion (theory) being made, which has not been proven. The burden of proof is on those making the assertion (macro evolution) not those questioning it. You are making a logical fallacy, my blindly-following-unproven-theories friend. The person being interviewed hit the nail on the head:

      "At the end of the day, you can't prove the existence of God factually, and so whatever you believe is still based on faith. But at least the Christians can admit that - I just wish the evolutionists would too."

      Definition is From:http://people.uncw.edu/kozloffm/EDN566logical fallacies.html">http://people.uncw.edu/kozloffm/ED N566logicalfallacies.html
      #38 - SHIFTING THE BURDEN OF PROOF

    7. Re:I'm a pastafarian by WaxParadigm · · Score: 1

      WOW, I really screwed up that href...sorry.
      Was supposed to be:
      http://people.uncw.edu/kozloffm/EDN566logical fallacies.html

    8. Re:I'm a pastafarian by Elwood+P+Dowd · · Score: 1
      I believe there is more than enough information to suggest that we move on and find some other scientific explanations.
      And at some point, evolution could be as quaint a theory as phlogiston. Show us the other way. Behe and Dembski have plainly failed. So long as you have no alternate theory that explains evidence not covered by evolution, your objections will sound idiotic.

      Falsible? I get 90 hits on Google.
      --

      There are no trails. There are no trees out here.
    9. Re:I'm a pastafarian by WaxParadigm · · Score: 1

      You ask what the difference is between scientific law and scientific theory:

      http://sci.waikato.ac.nz/evolution/Theories.shtml

      Couple related examples explained by me...

      Law of Gravity:

      It is a fact that if I jump off a building there will be gravitational force on me and I'll fall unless there are enough opposite forces exerted on my body to prevent that (regardless, gravity still effects me). This has been observed, made into a theory/hypothesis, tested, and proven. We can measure it (dependent on the mass of the bodies being attracted to each other).

      Evolution:

      Evolution is a theory about how known things (like micro evolution) combine to explain some other thing (macro evolution). I don't go so far as to even consider "macro evoltion is how we came to be" a theory, but more a hypothesis as it is a statement about the past. The past (unless/until we can time travel) cannot be observed, tested, and proven in the same way that we can observe other complex systems (like birds common to this age) work.

    10. Re:I'm a pastafarian by Skeezix · · Score: 1

      Perhaps he meant "falsifiable." One of the marks of a good theory is if it is falsifiable, meaning, can you design an experiment that could prove the theory false. Falsifiable does not mean the theory is false. For more on that check out the wikipedia article. Intelligent Design is easily falsifiable, despite the claims of some evolutionists to the contrary. All you have to do is show once through an experiment that you can produce something that is supposedly of "irreducible complexity" from simpler parts. Evolution, on the other hand, doesn't seem to be falsifiable. How can you design an experiment to falsify the theory of Evolution?

    11. Re:I'm a pastafarian by danharan · · Score: 1

      And your arguing is what, an Ad Hominem? Le me partake also.

      Your God isn't provable or disprovable, and the old dino bones were just put here to test our faith.

      Riiiight.... sorry, but the burden of proof still rests on those making the most outlandish assertion. Between macro-evolution and an omnipotent deity, it's your half-baked theory that wins, noodly appendages down.

      --
      Information: "I want to be anthropomorphized"
    12. Re:I'm a pastafarian by WaxParadigm · · Score: 1

      "And your arguing is what, an Ad Hominem?"

      Pointing out a logical fallacy in one's supposed rebuttal is hardly ad hominem (an attack on the person). It is an attack on the statement/argument.

      "Let me partake also."

      Sorry, I didn't see where you attacked me as a person. An ad hominem (so you have a good example to reference) would be something like this:

      Where did you learn about logic and critical thinking? Let me guess: Nowhere (i.e. you never learned about these).

    13. Re:I'm a pastafarian by Yunzil · · Score: 1

      I don't believe in evolution

      Except that we've seen evolution happen. We know it happens. All they are arguing about are the details, not whather it occurs. Not "believing" in evolution is equivalent to not "believing" that things fall when you drop them.

      Unfortunately, most scientists today view evolution as infalsible.

      Cite, please. Evolution is easily falsifiable.

    14. Re:I'm a pastafarian by F�an�ro · · Score: 2, Informative

      Oh I don't misunderstand the difference. However, most public schools do, and they teach a theory as if it were a law (such as the laws of thermodynamics or the laws of gravity). I think a lot of people misinterpret trying to bring the theory of evolution down to a "theory" as trying to convert it into a hypothetis. This just isn't the desired intent.


      Which laws of gravity are you talking about? the newtonian laws always were just a theory too, which has since been disproven and replaced by einsteins theories. The "laws" are still used because they seem to be a good aproximation.

      There really are no absolute laws in nature that we can discover.
      While you can observe a falling stone again and again, you can never proove that it will fall down the next time and not float straight up.
      The "real laws" of gravity could for example be that a stone will only fall down 99,99...%, and only occams razor can give you some hint that this is not the case. But you can never be sure.

      Now, thermodynamics is a little bit different. given a few simple axioms about the statistic behaviour of a system you can actually prove a few theorems, which boil down to the laws of thermodynamics. Of course, it is not possible to proove that the axioms really apply to our world, so we cannot proove the laws of thermodynamics either. And of course the statistical nature of the laws of thermodynamics means that they can be violated on a small scale anyway.

    15. Re:I'm a pastafarian by Elwood+P+Dowd · · Score: 1
      I know what falsifiable means.
      ...falsifiable, meaning, can you design an experiment that could prove the theory false.
      No, that is not what falsifiable means. Not by anyone's definition. Perhaps you should read the link that you provided.
      All you have to do is show once through an experiment that you can produce something that is supposedly of "irreducible complexity" from simpler parts.
      You don't mean that. Anyone can show that you can produce a mousetrap, for example, from simpler parts. Please, at least learn your own bullshit.
      How can you design an experiment to falsify the theory of Evolution?
      This question has been asked and answered a million times. By bringing it up, you only show that you have no idea what you are talking about. Google precambrian rabbit and see what you get. This is a good example.
      --

      There are no trails. There are no trees out here.
    16. Re:I'm a pastafarian by danharan · · Score: 1

      Calling me blind not an insult? You also didn't answer my point- which, btw, was a jab at your ability as a critical thinker too. But I guess you didn't see the ridicule in that proposition.

      --
      Information: "I want to be anthropomorphized"
    17. Re:I'm a pastafarian by Skeezix · · Score: 1

      From the link you provided: "the application of a test that could demonstrate that an idea is false." That is what I said falsifiable means. You don't mean that. Anyone can show that you can produce a mousetrap, for example, from simpler parts. Yes I do mean that. Who has stated that a mouse trap is irreducibly complex? The idea of irreducible complexity is that there are some components of life that could not have evolved from simpler components. This theory is clearly falsifiable. Simply demonstrate the contrary.

    18. Re:I'm a pastafarian by Anonymous Coward · · Score: 0

      The idea of irreducible complexity is that there are some components of life that could not have evolved from simpler components.

      Okay, so this is falsifiable. How? I just need to "simply demonstrate" otherwise, right? That would mean I need to show that there are no components of life that could not have evolved from simpler components. In other words, show that all components of life could have evolved from simpler components. Okay. So, where to begin?

      Step 1: Identify all components of life.

      Heh.

      Yeah. That's feasible.

      Or I could disprove irreducable complexity by banging rocks together for a few billion years until one of them asks me to pass the tea.

      "Simply demonstrate", my ass.

    19. Re:I'm a pastafarian by Elwood+P+Dowd · · Score: 1
      Before we move on, I hope you now agree that Darwinian evolution is falsifiable.
      From the link you provided: "the application of a test that could demonstrate that an idea is false." That is what I said falsifiable means.
      Right. That is sufficient to show that something is falsifiable, but it's simpler than that. From your wiki link:
      For a proposition to be falsifiable, it must be possible in principle to make an observation that would show the proposition to be false, even if that observation has not been made.
      Anyway. I think we're on the same page about falsifiability.
      You don't mean that. Anyone can show that you can produce a mousetrap, for example, from simpler parts.
      Yes I do mean that. Who has stated that a mouse trap is irreducibly complex?
      Michael Behe invented the term "Irreducible complexity" and his primary example of irreducible complexity is the mousetrap. No one (except maybe you) has ever made the point that it is impossible to construct something that is irreducibly complex from smaller parts.
      "A good example of such a system is a mechanical mousetrap. ... The mousetrap depends critically on the presence of all five it its components; if there were no spring, the mouse would not be pinned to the base; if there were no platform, the other pieces would fall apart; and so on. The function of the mousetrap requires all the pieces: you cannot catch a few mice with just a platform, add a spring and catch a few more mice, add a holding bar and catch a few more, All of the components have to be in place before any mice are caught. Thus the mousetrap is irreducibly complex." [MJ Behe, 1998, "Intelligent Design Theory as a Tool for Analyzing Biochemical Systems," in Mere Creation, p. 178]
      (I picked this up from The Design Mousetrap.)
      The idea of irreducible complexity is that there are some components of life that could not have evolved from simpler components. This theory is clearly falsifiable. Simply demonstrate the contrary.
      There you go. That's the point. That irreducibly complex things can't be evolved from simpler components in singled steps, because no single step constitutes an improvement. Depending on how you think the theory works, it is either already falsified, or somewhat unfalsifiable: We can show how a similarly "irreducibly complex" system can be constructed in single steps where each step constitutes an improvement. Early improvements become crucial to the function of the system as more improvements are added. If you feel that this invalidates the idea that irreducibly complex systems cannot be evolved, then the idea is invalid.

      If that isn't good enough, and you believe that in order to be falsified we must show the evolution of every biomechanical system in a laboratory, then sure, it is, in theory, falsifiable. But humanly impossible. Not falsifiable in any meaningful way. This is, more or less, what the intelligent design crowd has done. As flagella and blood clotting have been explained, they insist that other systems are the ones that must have been produced by an intelligent designer. That game can be played forever. If you insist that we must show these improvements via actually reenacting evolution, then it could take billions of years. There are easier ways to disprove evolution.
      --

      There are no trails. There are no trees out here.
  31. Idiot creationist by 00_NOP · · Score: 0, Flamebait

    My point here is that my beliefs aren't merely unfounded, eccentric ideas.

    Err... come again?
    All our theories about the Universe, fundamental physical forces and biology are wrong - that is not eccentric? Well, I suppose not, plain bonkers is more like it.
    The claim that these things have not been proved scientifically can only be answered in the way first made famous by Dr Johnson - I refute it thus.

    1. Re:Idiot creationist by merreborn · · Score: 1

      I missed the part where he rejected all scientific research.

      All I caught was a rejection of macroevolution.

      But strawmen are so much easier to troll, aren't they?

    2. Re:Idiot creationist by Anonymous Coward · · Score: 0

      Well you need to reread the article then moron.

    3. Re:Idiot creationist by WaxParadigm · · Score: 1

      AC said: "Well you need to reread the article then moron."

      You didn't get the/your parent (my grandparent) post, did you? That post said:

      "I missed the part where he rejected all scientific research.

      All I caught was a rejection of macroevolution."

      The implied point of the post = (macroevolution != scientific research) | (macroevolution ALL scientific research). In either case (first is what many people on /. are debating about, but the second is obvious) it was a correct statement and you are the moron (or at least a troll).

    4. Re:Idiot creationist by 00_NOP · · Score: 1

      The point is that for his argument to hold then our theories of chemistry (age of rocks), particle physics (age of rocks), quantum mechanics (age of rocks) and general relativity (age of universe) all have to be false.
      And we haven't even started on their appliocation to biology and geology.

    5. Re:Idiot creationist by WaxParadigm · · Score: 1

      Sorry, you can hold all of those things(chemistry, particle physics, quantum mechanics, and general relativity) and still be honestly skeptical of macroevolution. There are MANY scientists who would agree, as they fit into this category.

  32. Re:I still want him to answer why we are filtering by Nuclear+Elephant · · Score: 1

    Pardon, what was the question though? I haven't seen a re-post, and the link is broken.

  33. Even though I'm not a christian by antifoidulus · · Score: 1

    I do like his section on his beliefs, he raises some very good points. I used to be cynical and thought all relgious people were idiots, but lately I've come to realize that this was just my own sense of inflated ego fucking with me. Some of the smartest people have been religious believers. There have even been really smart fanatics, Mohamed Atta had a masters degree, and pretty much all the attackers in the sarin gas attack on Tokyo had degrees in engineering, many of them at least masters.
    One minor gripe though, he discredits macro-evolution by calling into question the accuracy of carbon dating. This may be true, but Carbon-14 dating is just one tool in the arsenal of the macro-evolution scientist. For instance, even if carbon-14 dating isn't accurate, there is still the fossil record. Wordlwide dinosaur fossils and human fossils have been seperated by layers and layers of earth. Even without carbon 14 dating, geologists can study those layers and give a (very rough) estimate about how much time transpired between the most recent known dinosaur fossils and the oldest known human ones.

    1. Re:Even though I'm not a christian by Nuclear+Elephant · · Score: 1

      There is an excellent book that you might find interesting on the subject. I don't believe the author was a Christian either, although I could be wrong. At the very least, he doesn't state his beliefs anywhere I've seen - but then again I'm not completely finished with the book yet. It's called Darwin's Black Box and it poses a biochemical challenge to evolution by a professor of biochemistry at Lehigh University. Regardless of which side of the fence one might sit on, this is a great book.

    2. Re:Even though I'm not a christian by sarasinclair · · Score: 1

      "Even without carbon 14 dating, geologists can study those layers and give a (very rough) estimate about how much time transpired between the most recent known dinosaur fossils and the oldest known human ones."

      The geologists haven't been around to watch the transformations of the earth as they occured. How can we be sure that their theories on how these processes occur really be true? Aren't their theories based, at least in part, on carbon dating of the contents of the various layers of earth?

      I am curious to know more about the basis of the geological methods of fossil dating, if you (or someone else) can provide a layperson's summary.

      --
      - scout
    3. Re:Even though I'm not a christian by the_raptor · · Score: 1

      The geologists haven't been around to watch the transformations of the earth as they occured. How can we be sure that their theories on how these processes occur really be true? Aren't their theories based, at least in part, on carbon dating of the contents of the various layers of earth?


      And no ID supporter was around when the bible was written so how can we be sure it wasn't written as a joke? Or that significant parts got altered out. Maybe Jesus supported Gay Marriage.

      Science is based on the idea that physical laws don't change significantly. Since its almost impossible to detect if they have changed (at best we can detect if they are changing) you have to go on a bit of faith. Everything comes down to faith eventually (How do you know you aren't in the Matrix?), but you are better off basing your faith on scientific evidence then on literal interpretations of an ancient book that is full or parables and stories.

      But hey maybe God is just fucking with us and put all those fossils in the ground.
      --

      ========
      CINC, 4th Penguin Legion
    4. Re:Even though I'm not a christian by PCM2 · · Score: 1
      I am curious to know more about the basis of the geological methods of fossil dating, if you (or someone else) can provide a layperson's summary.
      A Google search turned up this, which seems to offer a pretty good write-up. The gist of it is that there are more ways of radiologically dating geologic material than just the Carbon-14 method.
      --
      Breakfast served all day!
    5. Re:Even though I'm not a christian by PremiumCarrion · · Score: 1

      I think this video gives a nice perspective about religious belief
      Kissing Hank's Ass

    6. Re:Even though I'm not a christian by Triffid_Hunter · · Score: 1

      religion dictates how the universe came to be, and science dictates what it's done with itself since then... works for me.

      note i didn't say which religion, if any ;)

      in the words of the late douglas adams, "In the beginning was nothing, which exploded."

    7. Re:Even though I'm not a christian by WiFiBro · · Score: 1

      You might find this reading on that book extremely interesting:
      http://www.talkorigins.org/faqs/behe.html

    8. Re:Even though I'm not a christian by Rei · · Score: 3, Informative

      First off, Behe is a Christian:

      "Scott refers to me as an intelligent design "creationist," even though I clearly write in my book Darwin's Black Box (which Scott cites) that I am not a creationist and have no reason to doubt common descent. In fact, my own views fit quite comfortably with the 40% of scientists that Scott acknowledges think "evolution occurred, but was guided by God." Where I and others run afoul of Scott and the National Center for Science Education (NCSE) is simply in arguing that intelligent design in biology is not invisible, it is empirically detectable."

      Secondly, if you apply Behe's arguments to Rainbow Bridge, it'd declare that it never could have formed naturally. It did. It also would declare that bubbles are impossible in nature (remove any part of the bubble, it pops), fire can't be started naturally (remove any of the ingredients, and it goes out), ice dams can't form (remove any part of the ice dam, and the water rushes out behind it destroying the dam), and geysers aren't natural (alter any part of the geyser's path, and it stops erupting).

      "Irreducible complexity" is a one-way process. Structures come into being for reasons other than their initial functionality (and for the above cases that I mentioned, for no reason at all related to the end aesthetics or functionality).

      For example, a commonly cited case is the bombardier beetle. They produce hydroquinones and H2O2 which collect in a resevoir. The resevoir opens into a tough, thick-walled reaction chamber that produces catalyases and peroxidases; this breaks down the H2O2 and produces heat and helps break down the hydroquinone to p-quinones. A fifth of the mixture is vaporized, and propels the burning mixture through a series of valves and nozzles that spray it onto the target.

      Irreducibly complex to say the least, right? Gish sure thought so. Yet, the intermediary stages already exist for most stages, and the others are obvious progressions. From here:

      1. Quinones are produced by epidermal cells for tanning the cuticle. This exists commonly in arthropods. [Dettner, 1987]

      2. Some of the quinones don't get used up, but sit on the epidermis, making the arthropod distasteful. (Quinones are used as defensive secretions in a variety of modern arthropods, from beetles to millipedes. [Eisner, 1970])

      3. Small invaginations develop in the epidermis between sclerites (plates of cuticle). By wiggling, the insect can squeeze more quinones onto its surface when they're needed.

      4. The invaginations deepen. Muscles are moved around slightly, allowing them to help expel the quinones from some of them. (Many ants have glands similar to this near the end of their abdomen. [Holldobler & Wilson, 1990, pp. 233-237])

      5. A couple invaginations (now reservoirs) become so deep that the others are inconsequential by comparison. Those gradually revert to the original epidermis.

      6. In various insects, different defensive chemicals besides quinones appear. (See Eisner, 1970, for a review.) This helps those insects defend against predators which have evolved resistance to quinones. One of the new defensive chemicals is hydroquinone.

      7. Cells that secrete the hydroquinones develop in multiple layers over part of the reservoir, allowing more hydroquinones to be produced. Channels between cells allow hydroquinones from all layers to reach the reservior.

      8. The channels become a duct, specialized for transporting the chemicals. The secretory cells withdraw from the reservoir surface, ultimately becoming a separate organ.

      This stage -- secretory glands connected by ducts to reservoirs -- exists in many beetles. The particular configuration of glands and reservoirs that bombardier beetles have is common to the other beetles in t

      --
      Rock Us, Dukakis.
  34. Interesting analogy by benhocking · · Score: 1

    Now, what if I said I was a scientist, but I believed in magic? Wouldn't you find it just a little tempting to say that I wasn't a "true scientist"? Now, I don't agree with the GP on what makes a true Christian (most agree that the only pre-requisite is accepting Christ as your savior - of course, this usually does imply some natural consequences, but I don't believe that rejecting evolution is one of them). Similarly, if I told you I am a Scotsman, born to parents who are both nth generational U.S. citizens (with the usual, very mixed heritage of such citizens) while they were living in Germany - and I've never even been to Scotland (that I remember, anyway), you'd have a right to question whether or not I was a "true Scotsman", wouldn't you?

    --
    Ben Hocking
    Need a professional organizer?
    1. Re:Interesting analogy by Russ+Nelson · · Score: 1

      "tempting", yes. Correct, no. The problem with the entire "true whatever" idea is that anybody who denies that somebody else is not a true whatever is equally subject to claims that they are not a true whatever. It's meaningless, intellectually.

      I mean, I could claim that you're not a true Slashdot poster because you didn't mention Natalie Portman. Somebody else could claim that I'm not a true Slashdot poster because I didn't mention grits.
      -russ

      --
      Don't piss off The Angry Economist
  35. proving a theory? by measlymonkey · · Score: 3, Insightful

    i always find it laughable when 'intelligent' people counter the 'theory of evolution' by rolilng over with a statement like:

    "I find it very ironic to be flamed by anyone who thinks I'm an idiot for not believing in a theory that's never been proven by scientific process."

    since 'the theory of evolution' falls under the Scientific definition of theory...

    a plausible or scientifically acceptable general principle or body of principles offered to explain phenomena

    here is a good one Jonathan, explain the 'flounder' w/o using evolution as a base...

    1. Re:proving a theory? by Nuclear+Elephant · · Score: 0, Troll

      since 'the theory of evolution' falls under the Scientific definition of theory...

      It is a theory, but it is taught in the classroom as law. Look at the recent judicial ruling forcing Georgia to remove stickers from text books that said, "This book contains... evolution... just a theory.". If you're going to call it a theory, one ought to teach it as such. They don't.

    2. Re:proving a theory? by The+Slashdolt · · Score: 1

      OK, so should they also put:

      "This book discusses gravity. Which is also just a theory."

      A scientific theory is not something you pull out of nowhere. It is a falsifiable hypothesis proven over time by many experiments to be correct.

      --
      mp3's are only for those with bad memories
    3. Re:proving a theory? by Nuclear+Elephant · · Score: 1

      "This book discusses gravity. Which is also just a theory."

      Gravity is a law, not a theory. It's a law because, among other reasons, it can be reproduced in a controlled environment (e.g. artificial gravity). Evolve me a human being, or even Paris Hilton's poodle, from a single-celled organism, then you can call it the law of evolution.

    4. Re:proving a theory? by operagost · · Score: 1

      Explain to me how a flounder's design is required for survival when other fish with more conventional designs can successfully inhabit the same environment.

      --

      Gamingmuseum.com: Give your 3D accelerator a rest.
    5. Re:proving a theory? by Anonymous Coward · · Score: 0

      Um - artificial gravity?

      Cool - someone tell the government.

      Duh...

    6. Re:proving a theory? by Valiss · · Score: 3, Informative

      "I find it very ironic to be flamed by anyone who thinks I'm an idiot for not believing in a theory that's never been proven by scientific process."


      I hate crap like that. Scientific America had a great article a while back that explains this just as well as I ever could. Here, I found a copy of the article (Scientific America wants you to reg to read the original on their site):

      "1. Evolution is only a theory. It is not a fact or a scientific law.

      Many people learned in elementary school that a theory falls in the middle of a hierarchy of certainty--above a mere hypothesis but below a law. Scientists do not use the terms that way, however. According to the National Academy of Sciences (NAS), a scientific theory is "a well-substantiated explanation of some aspect of the natural world that can incorporate facts, laws, inferences, and tested hypotheses." No amount of validation changes a theory into a law, which is a descriptive generalization about nature. So when scientists talk about the theory of evolution--or the atomic theory or the theory of relativity, for that matter--they are not expressing reservations about its truth."

      PDF version: http://www.swarthmore.edu/NatSci/cpurrin1/textbook disclaimers/wackononsense.pdf

      Original: http://www.sciam.com/article.cfm?articleID=000D4FE C-7D5B-1D07-8E49809EC588EEDF

      Enjoy! (flame on)

      --

      -Valiss
    7. Re:proving a theory? by plover · · Score: 3, Insightful
      If you're going to call it a theory, one ought to teach it as such.

      This statement is typically a sign that someone doesn't understand the difference between a theory and a hypothesis, or a theory and a law.

      Try Googling for an example of a theory you might understand, like Shannon's Mathematical Theory of Communication, which explains why compression has a lower limit. If at some point you begin to understand that all of today's slashdot traffic can indeed be compressed into a single bit, but that it's kind of hard to reinflate that bit back into slashdot, you'll gain some insight as to how strong calling something a "theory" can be.

      A scientific theory is something generally accepted as true due to the overwhelming preponderance of corroborating evidence (and with no solid evidence to the contrary,) but is impossible to completely prove to be true because it cannot be duplicated. In this case, it's impossible to prove the theory of evolution true because because we can't repeat the experiment by creating another earth exactly as it existed 4.5 billion years ago. We can, however, perform tests on a much smaller scale, such as hybridizing new species, genetic splicing, causing environmental stresses in reproducing populations, and any other number of approaches. And we have. And the vast majority of these experiments strongly support the theory of evolution. Plus, the occasional experiments that don't are typically shown to be flawed in a meaningful way.

      A TV cop show having some bald detective saying "My theory is that the guy with spike hair killed the guy with no shirt for the drug money" is not using the scientific definition of the term "theory". Don't be confused by the popular use of the term.

      --
      John
    8. Re:proving a theory? by Elwood+P+Dowd · · Score: 1
      It is a theory, but it is taught in the classroom as law. Look at the recent judicial ruling forcing Georgia to remove stickers from text books that said, "This book contains... evolution... just a theory.".
      That is not evidence in support of your hypothesis that evolution is taught as a law.
      --

      There are no trails. There are no trees out here.
    9. Re:proving a theory? by Pentagram · · Score: 1

      It's a theory, but all the evidence supports it. You will not of course observe evolution of a highly complex organism such as a mammal from a single-celled organism within a human observable time frame.

    10. Re:proving a theory? by Anonymous Coward · · Score: 0

      I don't have a problem with people who express skepticism regarding the theory of evolution. I *do* have a problem with people who express skepticism regarding the theory of evolution *while believing in a "make it all better when I die" pixie*. And I also have a problem with people who use the word "ironic" when they mean "hypocritical".

    11. Re:proving a theory? by Nuclear+Elephant · · Score: 1

      That is not evidence in support of your hypothesis that evolution is taught as a law.

      No, for that go sit in on a science class in a public school today.

    12. Re:proving a theory? by Rei · · Score: 4, Funny

      If you're going to call it a theory, one out to teach it as such.

      You mean, like this sticker?

      "This textbook contains material on evolution. Evolution is a theory, not a fact, regarding the origin of living things. The material should be approached with an open mind, studied carefully, and critically considered."

      Good point! May I also suggest some more:

      "This textbook states that the earth is over 4 billion years old. Because some people strongly believe that the earth cannot be this old, the material should be approached with an open mind, studied carefully, and critically considered."

      "This book promotes the theory of plate tectonics, the gradual movement of the major land masses. Because nobody observed this process, this material should be approached with an open mind, studied carefully, and critically considered."

      "This textbook suggests that the Earth is roughly spherical. The shape is a controversial topic, and not all people accept this theory. This material should be approached with an open mind, studied carefully, and critically considered."

      "This book contains material on gravity. Gravity is a theory, not a fact, regarding a force which cannot be seen. This material should be approached with an open mind, studied carefully, and critically considered."

      "This book discusses heliocentrism, that the Earth orbits around a centrally located sun. Because astronomers still disagree over the details of the heliocentric model, this material should be approached with an open mind, studied carefully, and critically considered."

      "This book contains material on special relativity. Special relativity is a scientific theory, and very few scientists fully understand it. This material should be approached with an open mind, studied carefully, and critically considered."

      "This textbook claims that evolution is not fully accepted by scientists because it is just a theory. The author hopes to confuse you into equating "scientific theory" with "cockamamie theory." To read a short blurb on what a scientific theory is, go to, http://wilstar.com/theories.htm."

      "This book does not contain the word evolution, the unifying principle in biology and an important component of the National Science Standards and the Scholastic Achievement Test. For an overview of what your class is missing, go to http://evolution.berkeley.edu/"

      "This book was anonymously donated to your school library to discretely promote religious alternatives to the theory of evolution. When you are finished with it, please refile the book in the fiction section."

      "This book mentions Creationism, New Creationism, Scientific Creationism, or Intelligent Design. All of these beliefs rely on the action of a supernatural entity to explain life on Earth. Scientists rejected supernatural explanations for life on Earth in the 1800s, and still do today."

      "This book discusses gods. The existence of entities with supernatural powers is controversial, and many believe that myths, especially other people's myths, are fictional. This material should be approached with an open mind, studied carefully, and critically considered."

      "This book contains an evolution disclaimer sticker mandated by your local school board. For fun, submit an article to a local paper that probes the motivations of board members and analyzes the impact of weakened science instruction on students' college applications."

      "This sticker covers a pre-existing sticker designed to subtly undermine the teaching of evolution in your class. To see the full text of the original sticker, examine the books of children of school board members, who mandated the stickering."

      "This book discusses evolution. President George W. Bush said, "On the issue of evolution, the verdict is still out on how God created th

      --
      Rock Us, Dukakis.
    13. Re:proving a theory? by Rei · · Score: 1

      Evolve me a human being, or even Paris Hilton's poodle, from a single-celled organism

      Sorry, that's not how it works. The theory of evolution doesn't say that you or I evolved from a single celled organism. It says that we evolved from your parents, and they evolved from your parents parents, etc, with most differences being simply recombination of alleles and only a few mutations per generation. What you proposed is called a "straw man", and is a bad debate tactic.

      Is that the only thing that would evidence for you evolution? Would you propose, then, that a person can only be convicted of a crime if the entire jury saw them commit it? That's not how the world works: we look at *evidence*, and consider all possible explanations for the evidence.

      If you accept this as a basic tenet, then don't propose ridiculous "show me this" cases. The nature of "incremental change being passed on whenever it is beneficial" will inherently allow for boundless progression between generations excepting where there is a physical barrier preventing such continous low-level change from reaching the next step through a large number of intermediary steps. So, what you *really* need to be doing is trying to present the steps from single-celled organism to human that you feel are impossible, since an individual step, if fine-grained enough, *is* testable in a realistic amount of time.

      I.e., "show me a single celled organism evolving into a human" is a ridiculous proposal (barring the copious amounts of evidence that the process already occurred, which I will gladly get into with you if you'd like - there's copious amounts), but "show me a single-celled organism evolving into a multicellular organism" or "show me a species evolving away its tail" are realistic requests.

      In short, you *can* present a realistic, reproducable test case (name as many small steps as you want that could be tested in realtime!), but you simply chose not to because you don't want to damage your "science is faith" argument.

      --
      Rock Us, Dukakis.
    14. Re:proving a theory? by Rei · · Score: 1

      Here's a textbook (a college one at that), and here's the scientific definition of a theory and a law. Have at it. Given that no amount of validation changes a theory into a law, I'd love to see how you propose that the textbook is doing so.

      --
      Rock Us, Dukakis.
    15. Re:proving a theory? by Elwood+P+Dowd · · Score: 1

      Whatever.

      --

      There are no trails. There are no trees out here.
    16. Re:proving a theory? by measlymonkey · · Score: 1

      the flounder's design is not required for survival. in fact, it used to be a regular run-of-the-mill 'right-side-up-fish'. the thing is, it liked to grub around in the mud for its food and being a 'right-side-up-fish' made it difficult to cruise the mud while keeping an eye out for predators. so over thousands and/or millions of years, it slowly adapted its design so it could rout in the mud with its mouth closer and its eyes looking ever upward. do you think 'some god' just created a fish with its eyes rotated around the side of its face??

    17. Re:proving a theory? by Anonymous Coward · · Score: 0



      MOD THIS MOTHERFUCKER UP, YOU COWARDS!

      Goddammit... of all times to be away from home and not have my password on me.

    18. Re:proving a theory? by pestel · · Score: 1

      Gravity is not a law - it is a theory. Newton's theory of gravity is incorrect (it fails when the gravitational field gets too large). Einstein's theory of gravity is also wrong - it also fails in certain instances (it predicts an infinte gravitational field strength at the very center of a black hole). Any theory which has an infinity in it is wrong. It may work well for most situations, but it is only that a theory. It's fairly easy to see when Newton's theory fails: F = GMm/r^2 - when r -> 0, the field strength becomes infinite. If either theory were a "law" both would be correct and a lot of physicists would be/have been out of business, say like Einstein.

    19. Re:proving a theory? by dhasenan · · Score: 1

      Evolution has no purpose, clod. Otherwise men wouldn't have nipples; it'd be more efficient to make that a sex-linked trait. (For males, at least.) And no creature until now could alter its own evolution.

      The nasty thing about creationism is that it can't be tested. You can't disprove it, and lacking a time machine, you can't prove it.

      On the subject of the flounder, its design didn't impair its survivability enough to cause its extinction, so we have flounders. Simple as that. And since it could burrow in sand (as other types of fish do, including many rays) while keeping an eye out for predators, it had slightly better survivability than other fish. Only slightly, or we'd have fewer types of fish.

    20. Re:proving a theory? by ozmanjusri · · Score: 1

      Evolve me a human being

      Not until you show me God.

      --
      "I've got more toys than Teruhisa Kitahara."
    21. Re:proving a theory? by 2short · · Score: 2, Insightful

      "Gravity is a law, not a theory"

      Gravity is a theory, and provably wrong to boot. Still a good theory to know, since it makes all sorts of useful predictions. We still can't produce anything I'd call "artificial gravity", as far as I'm aware.
      It is a "law" becuse some theories got called "Laws" by arrogant 18th century scientists, mostly Newton. In modern usage, calling something a "Law" is pretty much an admission that it's just an observed relation (like Newtons inverse square) and you don't understand any of the why behind it (or in Newtons case, intend to). Modern scientists hopefully asspire to greater humility, and so we have no desire to call it the law of evolution, or the law of relativity. We'd prefer to keep reaching for a more perfect understanding.
          Not all theories are suceptable to testing in an experiment. That doesn't mean these topics are utterly off limits to human understanding; it just means you have to go find the evidence instead of forcing it to manifest itself in your lab. Hey, let's pretend your example didn't display a total lack of understanding what evolution says, and go ahead and use it anyway: that single celled organism, a human being, and Paris Hiltons poodle all use the same protein structures in their DNA. If the single celled thing is an animal, they all use the same chemical reactions in their mitochondria to metabolize oxygen, even though others are available. The human being and the poodle both have the same number of chromosomes, and are similar in countless ways where there are other alternatives that appear in non-mammals.
          Does any of this prove evolution? No. But evolution explains it all quite nicely. If you have another theory that also explains it, I would truly love to hear it. Please note however, that I am not interested in "theories" that would explain things equally well if, for example, the single celled animal and the human used one set of proteins, and the poodle used a different one. We're interested in explaining the world as it is. Possible explanations for absolutely anything are not science, and I can make several of them up per minute in any case.

    22. Re:proving a theory? by 2short · · Score: 3, Insightful

      I disagree. The difference between a theory and a law is that a law was named by it's arrogant discoverer, probably Newton. It's all theories. Even bad, wrong theories are theories. It's a theory if it expresses some meaningful explanation for observed phenomena. They never get proved in science the way they do in math. Whether you do an experiment to cause some evidence to appear, or whether you have to go out in the world and find some evidence, all you have is more evidence that supports your theory, or doesn't. The advantage that experimental sciences have is that you can carefully devise an experiment whose result will go one way if the prevailing theory is correct, and another if your up and coming one is, which can lead to drama. Diciplines that are not as subject to experiment usually have to rely on the slow accretion of many tiny bits of data. When you've got stupendously huge piles of evidence that supports your theory, and nobody can really imagine another theory that would explain it all, you can be pretty sure of yourself, and reasonably treat it as established fact. This is the case for evolution.

      The thing to understand is the difference between theories and non-theories, if you will. A non-theory is compatible with any evidence. It can't be supported by any evidence, it can't be undercut by any evidence; evidence is simply irrelevant to it.

      Your hypothetical detective has a perfectly good theory for why the guy with no shirt is dead. If we examine the guy with spike hair's backpack, and find it full of money, that will tend to support the theory. If there isn't any money in the room at all, that will tend to undercut it. If the detective says "I think an all-powerful wizard cast a spell, that caused all the contents of the room to come into being exactly as they are, including any memories in the heads of living occupants" that's not a theory in the scientific sense. It doesn't matter if we find any money or where. There is no point in looking at anything in the room in judging this idea, because nothing you find could help ddecide if it is right.

      "God made everything the way it is, last Tuesday" could be absolutely true, and in that case evolution would be one tiny footnote in the number of things people think that are wrong. I hope it is not surprising that I do not propose to spend much time contemplating this proposition. Absolutely nothing I could find, think or say would add any support, or in any way refute it. I am in fact going to blindly assume it is false, because I'd prefer there be some point to thinking about the world. Nor do I see how it makes any difference if we say 6000 years ago instead of last tuesday as the interview subject would have us do.

      It's not particularly strong to call something a theory, but there are some requirements, and creationism doesn't cut it.

    23. Re:proving a theory? by Kadin2048 · · Score: 1

      This should be modded up.

      Unless they were using it colloquially, or put it in quotes, I've never seen a respected physicist (or any other scientist, but physics is my field) call something a Law. It's just too strong a word.

      Our entire understanding of the way the Universe works is comprised of theories. Period. That doesn't mean that our understanding of some areas of the universe with which we are intimately familiar are on soft ground, as it were, just that the word Law is one which has no place in scientific inquiry, period.

      Nonetheless, to many people who were last exposed to state-of-the-art science in 1960s General Electric educational film reels, Laws are laws and Theories are 'just theories,' and never the twain shall meet.

      Gravity is a theory. Evolution is a theory. Intelligent design, however, is not a theory.

      --
      "Ladies and gentlemen, my killbot features Lotus Notes and a machine gun. It is the finest available."
    24. Re:proving a theory? by Anonymous Coward · · Score: 0

      Which schools did you go to? The law of conservation of energy is a something a lot of people refer to as being a law. A law is not some phenomena in nature and not the result of some constant but a fundamental underlying principle that applies (and is relevant!) in all aspects of the universe. Of course this is not a rigorous definition, and I don't think there exists one, but saying that no respectable scientists uses the word "law" is just as untrue.

    25. Re:proving a theory? by 2short · · Score: 1

      "The law of conservation of energy is a something a lot of people refer to as being a law"

      Yes, this is modern use of "law" in science - an observed fact that appears to hold in all cases, but for which the motivating reason is unknown. We have observed that energy is conserved. Why? No idea. But it holds so absolutely consistently, that if we found a case where it wasn't, we would reasonably spend a very long time trying to figure out why our observations were wrong.
          I called Newton "arrogant" above for calling it the Law of gravity; but perhaps "clever" is also appropriate. He figured out the inverse square rule, but was well aware he had no idea why it should be that way. Or rather he was sure he did know - God made it that way. He didn't think science should be in the business of asking why. "Law" puts a nice finality on the discussion.
          The law of conservation of energy, like Newtons law of gravity, is really just an observation. It is distinct from a theory in that it doesn't offer any explanation; it doesn't add anything to the observation. I still think "Law" is arrogant. Ideally we ought to call it "the extremely widely observed, and so far universally consistent phenomenon of conservation of energy". Calling anything a "fundamental underlying principle" sure sounds to me like a fancy way of saying "I'm really not comfortable continuing to ask why beyond this point, because I, and all of modern science, have no idea"

    26. Re:proving a theory? by WilliamSChips · · Score: 1

      Galapagos Islands. The lizards all adapted to their environment. Proof of evolution. To evolve a complex organism from a single-celled, you'd need millions of years.

      --
      Please, for the good of Humanity, vote Obama.
    27. Re:proving a theory? by cyclop · · Score: 1
      who thinks I'm an idiot for not believing in a theory that's never been proven by scientific process.

      Wrong. We're in the age of genome sequencing, and this means evolution now is overwhelmingly backed by proof.

      See what is a pseudogene, for example. Analysis of human chromosome 21, for example, reveals we host a lot of no-more-working but still recognizable genes that encoded olfactory receptors. This seems to imply that we descend from an ancestor that had more olfactory receptors than us, and that relied on smell more than us. Guess what? Rodents are the probable ancestors of primates, and rodents have much more smell receptors than us. Vestiges of ancient genes that mutated and became useless are exactly what we expect to find in an evolving genome. What's the sense of pseudogenes in a creationist theory?

      Comparison of genome sequences can be used to create trees that often match quite well paleontological evidence (although sometimes there are surprises). And they directly show evolution in action. For example, mammals derived a fundamental gene for placental development from a virus. Our genome -and the genome of every living creature- is full of the watermarks of evolution. It is odd that this fundamental evidence is rarely shown in debates about evolution theory.

      --
      -- Patent no.123456: A way to personalize /. comments with a sig attached to the end.
    28. Re:proving a theory? by qwijibo · · Score: 1

      I'll evolve you one of each. In order to make this a fair comparison, I'll need several million years and funding for this project. The ball's in your court.

  36. Evolution "THEORY" ARGGGGHHHH by OsirisX11 · · Score: 2, Insightful

    PEOPLE!! STOP. Stop using "theory" in regards to science as a theory in the common definition. A scientific theory is very well backed up by facts.

    "In layman's terms, if something is said to be "just a theory," it usually means that it is a mere guess, or is unproved. It might even lack credibility. But in scientific terms, a theory implies that something has been proven and is generally accepted as being true."

    I will personally stangle the next person who does this. Pisses me off.
    Scientific Theory = Scientific Fact. Bitches.
    http://wilstar.com/theories.htm

    1. Re:Evolution "THEORY" ARGGGGHHHH by wabaus · · Score: 1

      I agree - I find the use of the phrase "just a theory" almost as annoying as the phrase "Scientific Fact".

      There are no facts in science unless they are definitional. There are:
      a) hypotheses (educated guesses that can be tested)
      b) theories (refined hypotheses that have stood up to testing so far)
      c) "laws" (theories that have become generally accepted as accurate, but may later turn out to be imperfect - e.g., Newton's Laws as originally written prior to Quantum and Relativistic Physics).
      d) definitions (the value of pi or e are only "facts" because we've defined them to mean something.)
      e) assumptions (e.g., every physical-observable effect has a physical-observable cause)

      This doesn't mean I don't respect Theories or "Laws" of science -- only that I understand them for what they are, as I'm sure you do as well. I'd just prefer that you not react to the misuse of the phrase "just a theory" by using a phrase that the common person will equally misinterpret, such as "Scientific Fact".

      ==>Andrew!

      "A philosopher once said, 'It is necessary for the very existence of science that the same conditions always produce the same results'. Well, they do not... Yet science goes on in spite of it..."
      "What is necessary 'for the very existence of science', and what the characteristics of nature are, are not to be determined by pompous preconditions, they are determined always by the material with which we work, by nature herself."
      "In fact, it is necessary for the very existence of science that minds exist which do not allow that nature must satisfy some preconceived conditions, like those of our philosopher."
      - Richard Feynman, _The_Character_of_Physical_Law_

    2. Re:Evolution "THEORY" ARGGGGHHHH by OsirisX11 · · Score: 1

      My apologies, I was only trying to convey the message of "theories" being misinterpreted.

    3. Re:Evolution "THEORY" ARGGGGHHHH by zoomzit · · Score: 1
      I do not believe this word "theory" means what you think it means.

      Theories are, by nature unproved. Evolution may be a good theory, as provides explaination of the facts, it has predictability, and subsequent evidence has further reinforced the theory.

      But, science still calls it a theory. It is not fact. It is not fact because evolution can not yet be proved conclusively. I am not saying that evolution is incorrect, I am just stating that it has not yet been provided with indisputable evidence to prove it's veracity.

      Scientifically, evolution seems to provide a better explaination and is more acurately predictive than other theories out there, but just because it is miles above other theories does not place it on a level playing field with "fact."

      A theory implies that something has been proven and is generally accepted as being true. The second part generally accepted to be true is correct, but the first part of your quote is not. Again, it is not conclusively proven, therefore it is still a theory. However, becuase the theory of Evolution has excellent predictive nature, many scientists accept it to be true and carry out experiments to further prove or deny it's plausiblity as a theory.

      Scientific Theory = Scientific Fact. Bitches Read some philosophy of science or maybe even a highschool science book before you spout nonsense.

    4. Re:Evolution "THEORY" ARGGGGHHHH by Yunzil · · Score: 1

      But, science still calls it a theory. It is not fact. It is not fact because evolution can not yet be proved conclusively.

      Sigh. NO theory is EVER proven conclusively. Which is why we still talk about the germ theory of disease. If you want proof, stick to geometry.

    5. Re:Evolution "THEORY" ARGGGGHHHH by zoomzit · · Score: 1
      Ok, if you would like to define it that way. I'm good with that. The point is the follow comment:

      Scientific Theory = Scientific Fact from the parent is still false.

      Your comment seems to point to a false corollary that the the theory of germ disease is a theory, just like the theory of evolution is a theory, therefore both are equally accepted.

      Theories can run a gamut of "acceptance" and still be theories (thus my original comment. Germ theory is a widely accepted theory, while Intellegent design is not (it also may be a very poor theory, but a theory none the less).

      The parent stated that "Scientific theory = scientific fact." This is obviously false. Also false is the argument that "science can not prove a theory conclusively, so therefore scientific theory is as close to accepted fact as science will venture." A theory can be accepeted by most all scientists, or by none. The fact that it is called a scientific theory does not correspond to a how closely it correlates with truth, reality, or popular acceptance.

  37. Im sick of "Christians"... by the_raptor · · Score: 5, Insightful

    I am truely sick of people who call themselves Christians but are really practising some whacky supersitious religion that has no place for critical thought.

    To quote Mr Zdziarski's homepage:
    "to teach and to defend what I have come to find is a scientifically beautiful piece of logical harmony - the Bible"

    Ah so science is a book that is thousands of years old and most of it is not corroborated in secondary sources? A book that is known to have been selectively edited through out its history for political reasons? So Jesus violating the laws of physics in his numerous miracles is science?

    It certainly has great bits of logic and moral teaching in it (Do unto others, as you would have them do unto you), but it is not science. For someone to call it science shows that they have no understanding of science at all and it is no surprise that he thinks creationism and evolution should be taught in science class. I was taught creationism at school but in thelogy class.

    I spent my entire education in christian schools. I have spent the last three weeks going to church to reconnect with God. Science does not preclude God. Just because God didn't have to make Adam from mud, after he made the world in six days, doesn't mean there is no God. No matter who much scientific knowledge we get there will always be room for God (What came before the Big Bang? And how did matter get the properties it has?).

    For me God is the ultimate programmer. No sense doing all the work by hand when you can write some perl scripts to do it for you.

    Science tells us what we can do and how. Religion tells us if we should.

    --

    ========
    CINC, 4th Penguin Legion
    1. Re:Im sick of "Christians"... by The+Slashdolt · · Score: 1

      These are serious questions. Is "God" the god of the universe or just earth? If "God" is the god of the universe, and "God" made man in his own image, then wouldn't life on all planets on the universe also be made in "Gods" image? Is the bible discussing the birth of the earth or the universe? If the earth, then is there another super bible explaining the universe and its creation?

      --
      mp3's are only for those with bad memories
    2. Re:Im sick of "Christians"... by LightningBolt! · · Score: 1

      > What came before the Big Bang?

      According to the theory, the big bang was the beginning of spacetime, not just space. So "before the big bang" has no meaning if you are a believer in that theory.

      --
      Old people fall. Young people spring. Rich people summer and winter.
    3. Re:Im sick of "Christians"... by Anonymous Coward · · Score: 0
      A book that is known to have been selectively edited through out its history for political reasons?

      Please provide citations for this claim.

    4. Re:Im sick of "Christians"... by the_raptor · · Score: 1

      Yup what was before/caused the big bang is by definition unknowable. And religious people can always invoke God at they will never be disproved. So why some people feel the need to invoke God in areas in which we have evidence for the mundane, is just ridiculous. Especially when the scientific evidence doesn't disprove God at all, or change the marvelous probability of our existence. These people aren't Christians. They are cultists trying to re-establish the clergy as the ultimate source of all knowledge. And I am yet to meet a bibilical literalist who follows the laws in the old testament which they proclaim as truth.

      --

      ========
      CINC, 4th Penguin Legion
    5. Re:Im sick of "Christians"... by Trinition · · Score: 1

      If "God" is the god of the universe, and "God" made man in his own image, then wouldn't life on all planets on the universe also be made in "Gods" image?

      What is "God's Image"? Is it humans? If so, man or woman? Or did he just free-stylethe whole penis and vagina thng?

      Maybe God's image is DNA? Or maybe just amino acids which are found beyond just earth? Or maybe just atoms?

    6. Re:Im sick of "Christians"... by DarkSarin · · Score: 1

      You almost had me convinced that you knew what you were talking about until the last sentence.

      Christians, almost to the person, believe that because of Christ's sacrifice, most of the ritualistic observances detailed in the Old Testament were subsumed into the new law, and thus the need for adherence to those rituals is gone. Certain parts of the law were left intact, but most were upgraded. Think of it as Commandments v2.0, where in order to do the upgrade, an all new operating system is required.

      There are some holdovers, such as not killing, but the most parts the new laws that Christ put into place were not easier than the old laws. Before, no one cared what you thought about, but with Christ's law, he equates lust with adultery (remember the old law where you got killed for that?). Christ is essentially saying that our thoughts make us just as culpable as our actions. He also took away the harsher immediate penalties (stoning), and replaced them with the concept of mercy and atonement. Not that punishment was removed from the system, but they are now deferred.

      Some may disagree on details, but the gist is correct.

      Do I follow all of the commandments? No, but I try. In the OT, this means you failed, and would sacrifice something of value (goats), whereas now it means I pray for forgiveness and try my best to do better.

      I personally feel like the man is right--and I would even take it a step further. A perfect religion would accept ALL true principles as rightly being a part of their beliefs. This means that God knows everything there is to know about physics, chemistry, biology etc. IF you are willing to accept that, why do you think it is such a big leap to think that he could a) build the earth or b) reveal a new idea about SCIENCE to someone?

      In science fiction the concept of hooking someone up to a computer of sometime and instantly imparting knowledge via some interface with the brain is old hat. L. Ron Hubbard used it in Battlefield Earth, and he wasn't the first. Why then could a being who knows everything there is to know about science not do this through some means we have yet to discover (after all brain science is in its infancy).

      How God created the earth is speculation. The age of the earth is, as far as I am concerned, irrelevant. Carbon dating seems to be problematic, but I really haven't seen enough evidence for it from a reliable source to make a firm decision. If someone wants to believe in evolution as a method of creation, I am willing to let them, but I personally don't think so.

      Do I need to invoke deity to explain simple concepts? No, but I am certainly willing to learn what scripture says about something, and compare it to what science is learning. I also firmly believe that many people are guided by deity to make certain discoveries. Some might ask why, but I think that any discovery that makes this world a better place would be a good example of why God would lead someone down a certain path of inquiry--maybe without them even knowing it.

      Be open minded.

      --
      "We don't know what we are doing, but we are doing it very carefully,..." Wherry, R.J. Personnel Psychology (1995)
    7. Re:Im sick of "Christians"... by cburley · · Score: 1

      what was before/caused the big bang is by definition unknowable. And religious people can always invoke God at they will never be disproved. So why some people feel the need to invoke God in areas in which we have evidence for the mundane, is just ridiculous.

      Not really, but I can see why it seems that way, because I've thought long and hard about the "problem" from several points of view (mainly, raw atheism and variants, and Christianity, including strains such as Christian Science).

      Here is the essential problem leading to "why the need to invoke God".

      Even if science can demonstrate that, given some reduced set of laws ("unified principle", "string theory", etc.), and an initial state of some arbitrary or random substance (which is, or leads to, the "big bang"), our entire existence and experience can theoretically come into existence -- I'll go further, let's say it someday demonstrates that this mechanism did create our present existence -- there still remain three fundamental questions regarding this approach:

      1. How did that reduced set of laws come into being?

      2. How did that initial state come into being?

      3. How can we be sure what we claim to observe as "our entire existence" is anything approaching reality?

      The first two problems represent what I call the Creation Problem. "Scientists" can identify and point to all the mechanisms they want to explain how we got from Point Y to Point Z, and backwards in time (well, in causality) to Point A, but they have never even begun to identify any self-creative concept (rule base) or substance (atomic, quantum, string, or otherwise) that explains how Point A came into being.

      So, today's "scientists" basically hand-wave the issue by saying "beyond Point A, we don't discuss, and anybody who does so is perhaps a fool, or at least unscientific".

      The scientifically religious, such as Christian Scientists (or as they're properly taught), recognize this concept of a self-creating entity from the Bible, and perhaps from other religious texts.

      Without that concept of a self-creating entity, there is no basis to believe in the concept of creation (or causality) itself, or at least there has yet to be put forward, to my knowledge, any reason to accept that some arbitrary process (like quantum mechanics) leads from one state to the other, and thus to "life", yet somehow this whole thing never had to itself "arise" from anything, it just somehow spontaneously "created" itself, outside of spacetime, despite having left no evidence of its own self-creative capacities that we can see (we see evidence only of those processes in action, not of any spontaneous self-creation; the universe is "winding down" ever since the Big Bang).

      In short, lack of a self-creating entity implies lack of any Creation in the first place, which denies our entire existence. But today's Science consistently denies the existence of any self-creating entity, and denies the only widely identified such entity -- God -- as being pertinent.

      (Consider Conway's Game of Life: it's obvious this game can demonstrate apparently lifelike, and certainly highly complex, behavior, given a sufficiently interesting starting point, but the fact remains that the rules were invented by Conway, and the starting point by whoever starts the game; the game does not create itself, nor its own rules or starting point.)

      This leads to Point 3, above; is it all our -- my -- imagination that we (I) exist? Well, down that path, we might as well imagine whatever the heck we want, whether that includes God or Satan or Bill Gates or whatever.

      The upshot is, while "scientists" credit themselves for being "dispassionate" about the existence of a Deity, such as the Christian God, there are plenty of sincere Christians who are sufficiently scientific -- who, like myself, honestly think about and explore, with Bible in one

      --
      Practice random senselessness and act kind of beautiful.
    8. Re:Im sick of "Christians"... by the_raptor · · Score: 1

      I wasn't talking about the commandments. I meant all those little laws and statements scattered throughout the old testament, many of which Christ replaced (such as an eye for an eye). That is the problem with biblical literalism. If you are a Christian you should concern yourself with what Christ said. If you want to live by the old testament and ignore Christ you should convert to Judaism.

      --

      ========
      CINC, 4th Penguin Legion
    9. Re:Im sick of "Christians"... by mzs · · Score: 1

      What you need citations for this!? Listen you need to study some Bible history. Here is a great example. Learn about how the Geneva Bible and the King James Bible were written and why and how the political views of the authors influenced the text of the translations. I will not answer it for you, read about it yourself.

      That is just one example, but examples go back to the earliest transcriptions, translations, and early canonization. For example why are there only four Gospels in the Bible?

    10. Re:Im sick of "Christians"... by stang · · Score: 1

      Please provide citations for this claim.

      A few minutes at wikipedia turned up:

      --
      "200 Quatloos on the newcomer!" "300 Quatloos against!"
    11. Re:Im sick of "Christians"... by turbosk · · Score: 1

      geez! still at it?

      "A perfect religion would accept ALL true principles as rightly being a part of their beliefs."
      Your "perfect religion" is a great definition of "Science".

      "Christ is essentially saying that our thoughts make us just as culpable as our actions."
      Wow! Bush is essentially saying the same thing about "terrorists"! It's Thoughtcrime time!

      "The age of the earth is, as far as I am concerned, irrelevant."
      Of COURSE it is, since it is "problematic" to your worldview.

      " If someone wants to believe in evolution as a method of creation, I am willing to let them, but I personally don't think so."
      You don't think you're willing to let them believe in evolution? Schizoid much?

      "I am certainly willing to learn what scripture says about something, and compare it to what science is learning."
      See "age of Earth" above to rebut yourself.

      "You almost had me convinced that you knew what you were talking about until the last sentence."
      haha, you didn't even have me a little bit convinced you knew what you were talking about for a second.

      pax,
      jason

    12. Re:Im sick of "Christians"... by Anonymous Coward · · Score: 0

      I came across this comment while metamoderating. Insightful is an understatement. FWIW, congratulations, you are the first on my /. fan list.

      BTW, my name is Adam.

    13. Re:Im sick of "Christians"... by Anonymous Coward · · Score: 0

      s/fan/friend/

      Something else I could have mentioned in this context is that I was brought up Jewish. Now I'm just an independent thinker who borrows ideas from those who went before me.

  38. Re:I still want him to answer why we are filtering by Anonymous Coward · · Score: 0

    I don't know what's funnier. Being extremely humorous and being modded "Troll", being humorous and being modded "Insightful/Interesting", or watching a bunch of dumbasses think I'm being serious post about it.

  39. Oh no, I smell intelligent design.. by Anonymous Coward · · Score: 0

    The last part of this ask slashdot infuriated me.

    You know what? He's good with dealing with spam. That's great & wonderful, but please end it there. Here at slashdot, we don't believe in such things as god or religion, it's just the twisting of words & IT related stories in a bitterly geekish way for us.

    These people are all over the place. They're christians, and they pose as scientists to get you to listen to them, but once they start talking.. guess where it leads to? How great & wonderful god is for creating the heavens and earth, and blah blah blah. They're trying to delude you in to thinking they are not preaching the gospel, when in fact, they are. It's pure evil at it's finest.

    I'm not trolling, but this is really starting to bother me, and i'm seeing it more & more in the news. It makes me sick to believe that these beliefs are actually taken seriously in social circles, and even more scary, in the educational field.

    Just because I cant prove that a Giant Spaghetti Monster actually created the universe, does that mean it should be taught to children as an alternative view of how we got on this planet? No, it shouldn't. I take my science with a dose of reality. So should you.

    1. Re:Oh no, I smell intelligent design.. by Kphrak · · Score: 1

      Here at slashdot, we don't believe in such things as god or religion, it's just the twisting of words & IT related stories in a bitterly geekish way for us.

      Speak for yourself, please. Some of Slashdot (including myself) take such beliefs 100% seriously. As for myself, I believe as much in God and in the tenets of the Christian religion as I do in the laws of physics.

      It makes me sick to believe that these beliefs are actually taken seriously in social circles, and even more scary, in the educational field.

      Prior to the early 1920s or so, these beliefs were taken quite seriously in the educational field (in the United States, anyway, and this depends heavily on geographical area). Depending on the social circle, they have either always been taken seriously, were once taken seriously and now paid only lip service, or are no longer taken seriously.

      You appear to be worried more about the very idea that people will believe in religion, than about any consequence proceeding from it. There's a reason why "these people" are all over the place. Science alone cannot provide a good reason for existence. Religion can.

      --

      There's no sig like this sig anywhere near this sig, so this must be the sig.
    2. Re:Oh no, I smell intelligent design.. by mbius · · Score: 1

      As for myself, I believe as much in God and in the tenets of the Christian religion as I do in the laws of physics.

      That's not a rational position. Ergo it invites criticism. If you ask the laws of physics for guidance, they always reply.

      You appear to be worried more about the very idea that people will believe in religion, than about any consequence proceeding from it. There's a reason why "these people" are all over the place.

      Not least of which is the missionary ethic, which maintains that professing your religious belief publicly, as you have here, earns you brownie points with the Creator. Surely God wants us to trust not our own reason and experience, but the assertions of charismatic people. And then there's the doctrine of "equally-yoked" mates that makes faith Man's equivalent of brightly-colored tailfeathers.

      --
      you can have my violent video games when you pry them from my cold, dead hands.
      Prime UID Club
  40. Nope, he's another of the "ID" group. by khasim · · Score: 1
    From that link:
    Within the biochemistry of living cells, he argues, life is "irreducibly complex." This is the last black box to be opened, the end of the road for science. Faced with complexity at this level, Behe suggests that it can only be the product of "intelligent design."--This text refers to the Hardcover edition.
    All he's doing is digging down to a certain point and then declaring that someone-but-I-will-not-say-"god" created/designed everything else.
    1. Re:Nope, he's another of the "ID" group. by Nuclear+Elephant · · Score: 1

      FYI - I've got no particular ID agenda, and I'm not a part of the ID crowd...I have no real opinion about it at all yet other than to observe it...but in observing it, I think I have discovered that their purpose is not to try and introduce new science, but to rather separate the science in creationism from the God in creationism. If that's the case, then I would suppose that their reasoning would be that they believe much of the science involved is commonly dismissed because of its strong affiliation to a diety. I can agree with that... but like I said, I'm pretty neutral in terms of the ID movement. I really just have had better things to do than study up on them too much.

  41. Re:I still want him to answer why we are filtering by WiFiBro · · Score: 1

    but you can't prove that ;-P

  42. You've got it backward by Weird+Dave · · Score: 1

    A person's beliefs should be questioned, as should evolution. Why should people be allowed to believe whatever they want without others questioning it?

    --

    Grumble, Grumble
    1. Re:You've got it backward by danharan · · Score: 1

      It's a reasonnable trade-off.

      You can believe you have your Venus rising and an opposing Mars. You can talk about it at parties, and I probably will just smile and nod if I meet you: "oh cool, another excentric." And if you only ever keep it to yourself, you have your right to privacy.

      That said, you shouldn't try to get a school board to teach astrology.

      If you try to challenge the scientific consensus around astrology (that it's a crock), expect ridicule if you can't prove it.

      --
      Information: "I want to be anthropomorphized"
  43. Spam, spam, spam, spam... by dbhankins · · Score: 1

    I got spam today from eWeek.

    What was it selling? An eSeminar on "Winning the War on Spam"

    How ironic.

  44. Re:I still want him to answer why we are filtering by Anonymous Coward · · Score: 0

    Nice fucking link jackass. Use HTML much?

    Nice fucking language too

    Now shut the fuck up and get back down in your parents' basement you retarded loser

  45. Religion by Anonymous Coward · · Score: 2, Insightful

    The beliefs I hold as a Christian aren't always the popular ones, but they're certainly valid arguments for anyone who cares to ask about them (not that that has happened).

    Yes, but as anybody with a clue would point out, a perfectly valid argument can still be completely wrong. The problem scientific-types have with Christianity isn't that it's not a valid argument - it's that the axioms are wrong.

    Point out a scientist who claims that, assuming the Bible is the incorruptible word of God, Christianity is not a valid argument. I don't think that's a common attitude. What I do think is a common attitude is disagreeing that we should use that as an axiom in the first place.

    When you read about someone's beliefs, you have the option to engage in discussion, or to filter his or her beliefs through your own belief system. The former option involves cognitive thought, however the latter is how most people today respond to anything that even smells religious. And I say this coming from the position of someone who hasn't tried to shove my beliefs down anyone's throat - I merely documented them on my personal website. That tells me that some people don't believe I have the right to my own beliefs - how asinine is that?

    That's completely asinine. It's also a straw man argument. So people filter what you say through their own beliefs system before responding - how does that in any way whatsoever tell you that they don't think you have a right to your own beliefs?

    the Bible encourages sound thinking

    Correct me if I'm wrong (really). The Bible claims that it is the incorruptible word of God, and that you should believe this because the Bible says so. The Bible also says that if you don't believe, you go to hell.

    I consider these two things to be antithetical to sound thinking. If, however, I am wrong, and the Bible doesn't claim these things, then you have to explain how vast numbers of Christians say that it does. The only explanation I can see is that they have misinterpreted it. In which case, you are left with the unenviable position of claiming that you are interpreting it right and they aren't - so much for the incorruptible word of God.

    The problem, though, is that no matter how credible or not a particular area of science is, much of what is out there is taught based on authority.

    Everything that is taught is done so based on authority. But the practice of science is based upon the rejection of authority. You can't practice science if you blindly accept things as the truth. That's not how science works.

    It's recently become a "religious act" to question science in any capacity

    Bullshit. Scientists question science all the time. That's their job. You can't do science without it.

    Just because microevolution is feasable, that doesn't mean I'm going to sweep macroevolution under the rug and not test it - the two are actually worlds apart, just cleverly bundled.

    Speciation has been observed a number of times. If you aren't referring to speciation, then I suggest you use proper terminology instead of the terms cooked up by creationists.

    No matter what side of the camp you are on, your beliefs require a certain amount of faith

    I agree. I have faith in the relative fidelity of my memory. I have faith that my senses are not being tampered with. I have faith that the laws of nature don't change behind my back every few minutes. I have faith that the rest of human society isn't engaged in a giant conspiracy to deceive me. I consider that to be the minimum you must have faith in to make any sense of the world. If I suspect that any particular piece of science is wrong, those faiths above are all I need to check one way or the other.

    You, on the other hand, have faith that a magical

    1. Re:Religion by agbinfo · · Score: 1

      please mod parent up so that some crazy elephants might get a clue.

    2. Re:Religion by mbius · · Score: 1

      the Bible encourages sound thinking

      Clearly this is some new definition of "sound thinking": Assume there exists X such that (X is God) and (X is not God)...

      --
      you can have my violent video games when you pry them from my cold, dead hands.
      Prime UID Club
    3. Re:Religion by gg3po · · Score: 1
      That's completely asinine. It's also a straw man argument. So people filter what you say through their own beliefs system before responding - how does that in any way whatsoever tell you that they don't think you have a right to your own beliefs?

      You're correct in pointing out that Zdziarski worded things poorly, but I think what he was trying to say is that people frequently attack him for doing nothing more than talking about his religious beliefs on his personal website. Since he's not actively going around trying to convince people that his is the One True Way®, he feels this is unjustified.

      Correct me if I'm wrong (really). The Bible claims that it is the incorruptible word of God, and that you should believe this because the Bible says so. The Bible also says that if you don't believe, you go to hell.
      I consider these two things to be antithetical to sound thinking. If, however, I am wrong, and the Bible doesn't claim these things, then you have to explain how vast numbers of Christians say that it does. The only explanation I can see is that they have misinterpreted it. In which case, you are left with the unenviable position of claiming that you are interpreting it right and they aren't - so much for the incorruptible word of God.

      You got it right in the second paragraph. The claims of Bible infalliblility are pure dogma. The Bible itself never actually comes out and makes such a claim. Even though he says he's not religious, and I am, my thoughts on the Bible are pretty much in line with this guy's (skip to the largest paragraph). I think that anyone who's not either ignorant or being dishonest, after a careful study of the Bible would admit that it does contain errors and politics of men -- but my beliefs aren't based on the Bible alone. I would avoid any religion that does hold such tenets.

      Everything that is taught is done so based on authority. But the practice of science is based upon the rejection of authority. You can't practice science if you blindly accept things as the truth. That's not how science works.

      You're absolutely right. I don't think any reasonable person would have a problem with the genuinely unbiased practice of science. The problem lies in the imperfection of human beings. No one is capable of being genuinely unbiased 100% of the time. Everything we say, do, or even think has to pass through the filter of our own experiences. Even though in an ideal world that's not the way science works, it is the way the real world scientific establishment works. Follow the money trail whenever you read the results of "scientific" research -- especially research that is difficult or impracticle to duplicate and verify.

      Speciation has been observed a number of times. If you aren't referring to speciation, then I suggest you use proper terminology instead of the terms cooked up by creationists.

      Macroevolution is more than just speciation. Observed speciation still doesn't resolve all the missing links in the chain.

      You, on the other hand, have faith that a magical being in the sky makes things happen, who claims to love us all, but is willing to torture us for eternity if we don't do what he says.

      I'm sure there are many Christians out there that hold such simplistic views of heaven and hell (you are correct that this is silly), There is no evidence that Zdziarski holds them, and to bring it up amounts to nothing more than name calling -- trying to herd him into a stereotypical group that you've been able to easily "deal with" in the past.

      --
      ---
    4. Re:Religion by Anonymous Coward · · Score: 0

      You're correct in pointing out that Zdziarski worded things poorly, but I think what he was trying to say is that...

      If he was really trying to say that, then I think he's an idiot. Read what he actually wrote, and compare it to what you think he is trying to say. There's simply no relation.

      Either he's an idiot for being completely unable to express his thoughts even remotely coherently, or he's doing it on purpose. After all, it's a lot easier to agree with somebody who is being denied freedom of religion, isn't it? Either he's an idiot, or he's deceitful.

      I think that anyone who's not either ignorant or being dishonest, after a careful study of the Bible would admit that it does contain errors and politics of men -- but my beliefs aren't based on the Bible alone.

      I'm curious. What are your beliefs based upon?

      Macroevolution is more than just speciation.

      I read the link. I don't see the difference. "Macroevolution is the concept that evolution of species and higher taxa is the result of large-scale changes in gene-frequencies over time."

      Observed speciation still doesn't resolve all the missing links in the chain.

      He was denying macroevolution (and, as I understand him, speciation). Wait, I get it. People who accept speciation but not macroevolution are essentially saying that although we can show that speciation is known to occur naturally, they deny that it happened in the past to produce the species already known to us?

      Isn't that like saying although people from Newton onwards can show that gravity makes apples fall to the ground, we can't prove that apples fell to the ground because of gravity before Newton's time?

      It's true, we can't prove that. But I think only an idiot would claim otherwise.

      I'm sure there are many Christians out there that hold such simplistic views of heaven and hell (you are correct that this is silly), There is no evidence that Zdziarski holds them, and to bring it up amounts to nothing more than name calling -- trying to herd him into a stereotypical group that you've been able to easily "deal with" in the past.

      He describes himself as a Christian. I think it's fair to assume that he holds typical Christian beliefs. And, from his website:

      The Bible (and other historical documents) teach that Jesus was mocked, beaten beyond recognition, and then crucified on a cross to endure the penalty for our sins so that we didn't have to suffer the fate of a very real hell we all deserve.

      He believes in a literal hell that people go to. Presumably he believes that the Christian god loves everybody (he states that Christ loves us all, and isn't Christ supposed to be the embodiment of god on earth?) So, as far as I can see, he believes exactly what I describe, and it's wrong to write it off as mere "name calling".

    5. Re:Religion by gg3po · · Score: 1

      I'm curious. What are your beliefs based upon?

      They're based on observed and verified science, but also any existing records of religious experiences that many humans have had over the centuries. Some I consider complete bunk, but others are more compelling and worthy of consideration. Although such things cannot and should not be taken as hard "evidence" for religion, they basically amount to witness testimony, which I feel is not altogether invalid. Although having disparate origins, most religions have much in common. This can either be explained away as all humans having some primeval "need" for religion and coincidentally inventing similar concepts or It can be seen as a kind of "evidence" that much truth in the various religions of the world has a like origin with someone or something truly divine that has been communicating with humanity, on occasion, throughout history. As I mentioned, in the case of the Bible, even though I feel it contains much insight from divine sources, it has obviously been muddled by centuries of politics. Even the original authors passed any supernatural insights through their own all-too-human cultural filters. Any student of any scripture (Bible, Koran, whatever) should try to keep such things in mind -- cut through the cultural human crap and look for any divine wisdom that may survive.

      Wait, I get it. People who accept speciation but not macroevolution are essentially saying that although we can show that speciation is known to occur naturally, they deny that it happened in the past to produce the species already known to us?

      Isn't that like saying although people from Newton onwards can show that gravity makes apples fall to the ground, we can't prove that apples fell to the ground because of gravity before Newton's time?

      It's more like seeing a lightning bolt strike a tree and knock some apples off and therefore coming to the conclusion that all the fallen apples I've ever observed must have been similarly knocked out of the trees by lightning bolts. Even though speciation has been shown to occur through evolution, some feel that the very limited observed occurances cannot account for the great diversity of life that currently exists on earth.

      He describes himself as a Christian. I think it's fair to assume that he holds typical Christian beliefs. And, from his website:

      The Bible (and other historical documents) teach that Jesus was mocked, beaten beyond recognition, and then crucified on a cross to endure the penalty for our sins so that we didn't have to suffer the fate of a very real hell we all deserve.

      Not everyone that believes in a "hell" thinks that it involves a place where torture will be inflicted by God as punishment for not doing what He says. I'll try to explain my idea of hell. In order to fully grasp this I'll just say that I don't think sentient beings (including humans) just come into being at the moment of birth, conception, or whatever. I think our concscienceness existed in some form previous to this life. I even think and we knew each other and had friendships and interpersonal relationships (only intellectual and emotional, not physical) similar to the way we do things here. I don't have any hard evidence of this. It falls into the category of "I think but can't prove".

      Now think of how you feel when you have something important to do and you fail at it. You might wish that you could travel back in time and do things differently. My idea of hell would be simply the feelings of dissappointment or even disgust with oneself that one feels after failing in something very important. This would be magnified many-fold if one's failure is their own life. Someone that lived a basically good life but not a spectacular one would might feel some minor hellishness, but someone that was a mass murderer and got p

      --
      ---
  46. Evidence of Evolution by balls199 · · Score: 1

    The article Evidence of evolution has really good break down of all of the evidence for evolution.

    That way we're all on the same page for the ensuing creation v. evolution flame war.

    1. Re:Evidence of Evolution by Hope+Thelps · · Score: 1

      We can have an evolution versus creationism flamewar any day, but this might be our only chance to have a reasoned debate on the correct pronunication of "Zdziarski".

      As a committed Za-Jarskyist I'm appalled that Slashdot would give forntpage coverage to this absurd "Zarsky" pronunication. How much was he paying the editors and what was he smoking?

      --
      To summarise the summary of the summary: people are a problem. ~ h2g2
  47. Greylisting by martinlp · · Score: 1

    I don't know why more people don't use greylisting. It really works wonders. Its reduced our spam by about 99%.. and if there is a false positive, its because the sending server is not rfc compliant. Ok so it delays mail initially for 5 minutes... big deal, its a small price to pay for virtually no spam AND no administration of a spam filter.

    1. Re:Greylisting by Nuclear+Elephant · · Score: 1

      A few things I don't like about greylisting though:

      1. There are a lot of mail servers (or server software packages) that are broken, and may delay mail up to 12 hours.
      2. Once spammers catch onto this (some have already), they will end up using more of your resources to spam you, and if you rely solely on greylisting that means they can use it against you.
      3. Being that it's likely you'll get traffic from many new hosts over time, even one-time challenge greylisting can clog up mail servers.

    2. Re:Greylisting by martinlp · · Score: 1

      1. you said it... if mail is delayed for 12 hours then it is coming from a broken server. I tell my client that the reason their mail took so long to get through was because the person who sent it is using a broken mailserver... not my problem. 2.Greylisting should be used with rbl's. Even if you use conservative rbls you don't have this problem. 3.Maybe.. although I have never seen a clog happening because of greylisting.

  48. Correction by Nuclear+Elephant · · Score: 1

    s/shown to be correct/shown to be only partially correct/

  49. Jesus, save me from your followers by sfjoe · · Score: 2, Insightful

    I find it very ironic to be flamed by anyone who thinks I'm an idiot for not believing in a theory that's never been proven by scientific process.

    In actuality, I believe you're an idiot because you don't understand that the theory of evolution does not attempt to be a proof. That's just more propaganda from the radical right.
    Science attempts to explain why things are and, by extrapolation and interpolation, why they might change. Evolution does this very well. It does not require you to "believe". It simply states what is. You are still free to believe in God in any form you care to, just don't expect to be able to predict what will come next with any accuracy.

    --
    It's simple: I demand prosecution for torture.
    1. Re:Jesus, save me from your followers by WaxParadigm · · Score: 1

      "Science attempts to explain why things are and, by extrapolation and interpolation, why they might change. Evolution does this very well. It does not require you to "believe". It simply states what is."

      You are 100% correct, assuming you're talking about micro evolution. Macro evolution, on the other hand, attempts to explain hot how things change, but how they DID change in the PAST. The past isn't very easy to observe, test, etc. and many scientists believe evolutionists (macro, not micro) are throwing a little too much faith/belief into the mix to come to the conclusion that macro evolution really is a scientific throry and not just a neat hypothesis.

      The real scientific throries I'm aware of can be observed (i.e. General Theory of Relativity). Micro evolution can be observed, I am aware of no observed/proven instances of macro evolution. The "theory of evolution" assumes millions of such instances occured in the past, that such instances occured in parallel so the resultant species could continue to exist (i.e. have offspring), that enough of them occurred to create all of the life on earth, and all this happened without leaving billions of transitional fossils behind as evidence.

    2. Re:Jesus, save me from your followers by Yunzil · · Score: 1

      Macro evolution, on the other hand, attempts to explain hot how things change, but how they DID change in the PAST.

      Er, what? That's not what people usually mean when they talk about macroevolution. Usually they are talking about things like speciation. And since we've observed speciation to happen, we've seen macroevolution. The whole argument is kind of silly since "macro" and "micro" evolution are artificial terms. Macroevolution is just microevolution plus time.

      and all this happened without leaving billions of transitional fossils behind as evidence.

      A) We have lots and lots of transitional fossils. B) Fossilization is a very rare event. And C) the fossil record is the weakest evidence for evolution. If we had no fossils at all, evolution would still have massive support.

    3. Re:Jesus, save me from your followers by klept · · Score: 1

      When I was 11, my father told me never to argue with anyone about religion or politics. I saw JZs website, and do think the guy is a little scary as far as religion goes. But then it is a free country, and people should have the right to believe in anything they want. Hey, it's suppose to be a tech forum. Let's learn what we can from JZ. No one says we have to be converted.

  50. Evolution by 3am · · Score: 1

    I had written a pretty wordy response (about halfway through a point-by-point rebuttal) to the article you wrote and linked to in your site's bio regarding your stance towards evolution, but I decided to delete it all make it more succinct.

    Your beliefs on evolution are stupid.

    You seem smart, so I hope you see the light at some point. I have no illusions that I will be able to convince you otherwise, as I'm sure you have heard this many times before.

    --

    A: None. The Universe spins the bulb, and the Zen master merely stays out of the way.
  51. Old Old Old Earth by truckaxle · · Score: 1
    You can argue about evolution all day long but to argue for a young earth takes some mental gymnastics. For example a quote from his web site:
    If you consider ... leap-seconds (the slowing down of the Earth) ... If the earth were indeed billions (or even a million) years old, it would be spinning so fast that nothing would be able to survive on it ...
    The spindown rate of the earth is 1.5 to 2 milliseconds per day per century according to the Navy. That means that after 100 years, the length of day has systematically increased (on average) 0.0015 to 0.002 seconds. Now the spin rate is variable but even at these very low numbers billions of years are not a problem. This site does some math and it comes out around 22.7 hour day 370 Million years ago. His other arguements for young earth have been refuted many place on the web if you look with unbiased mind.

    Often most old/young arguments require assumptions such as constant value of decay rates, layering rates, hyper-catastrophic processes not found today, etc. But there are many geological formations you can walk up to and observe directly that provide strong evidence for an old earth and tortured earth.

    The best formation suggesting a very old earth are angular unconformities which require at a minimum the follow processes:
    • deposition
    • cementation and sometime metamorphosis
    • uplift and tilting
    • erosion
    • deposition (again)
    • cementation (of new layer)
    As an example this image i took on vacation of unconformity mount Everts in Yellowstone show a huge unconformity. Notice the tilted Jurassic sedimentation at the base and then a basalt layer above. Do a image search on google and you will find many more examples and even one at the bottom of the grand canyon.

    Another good example of is basalt layering. Here you have sedimentation a basalt flow, sedimentation again, basalt flow and sedimentation again. I ask YEC which one of these layers is the Noah flood.

    There are many more geological formations, such as limestone deposits, chalk, diatoms deposition which are all microorganism remains or secreations.
    1. Re:Old Old Old Earth by truckaxle · · Score: 1

      In fact, way too many Diatoms to fit into a young earth. I just did a little research and diatoms are tiny single-celled animal that lives in salt and fresh water. When diatoms die and collect on the ocean or lake floor they buried deeper and deeper and deeper over many centuries. After being buried they are compressed into what is known as diatomite or diatomaceous earth. If the diatomite is squeezed and heated it forms chert and even more squeezing and heating you get Opals.

      There are huge deposits of diatomite. For example the Monterey formation of southern California. This single deposit of compressed dead diatoms and other fossils are large enough to cover the earth to a depth of a several inches!

      But there are other deposits and this guy claims that there "are enough dead diatoms to cover the earth uniformly to a depth of 21 meters, or 70 feet!"

      Taking into account that these diatoms had a certain life span you can only come up with long long long periods of time to accomodate their deposition.

  52. huh huh ... he said analizes by slo_learner · · Score: 1

    huh huh

  53. Mod Parent Up by DimGeo · · Score: 1

    Exactly. And that's why one might wish to licence things under (only GPL2) and (GLP2 or any future version) and (only GPL3, i mean when it becomes available). I mean, the same code under each license, seperately. But if you don't really care about the freedom of the code, you could just release it all into the public domain, this way anyone could take the code and use it with no obligations, and, if you are lucky, some of it may end up being used in GPL'ed programs.

  54. Gordon Cormack's Response by gvc · · Score: 2, Interesting
    Zdziarski says,
    Incidentally, I've been working with Gordon Cormack to try and figure out what the heck went wrong with his first set of dspam tests. So far, we've made progress and ran a successful test with an overall accuracy of 99.23% (not bad for a simulation).
    First, I would like to thank Jonathan for his recent helpful correspondence in configuring DSPAM for the TREC Spam Filter Evaluation Tool Kit. When finalized, this configuration will replace the one currently available (along with seven others). However, I take exception to the statement above, implying that there is something wrong with the tests that Lynam and I previously published. I stand by those results. Since that report was made public, I have become aware of two others that achieve much the same results: Holden's Spam Filtering II and Sergeant's CRM114 and DSPAM (Virus Bulletin, no longer freely available).

    Lynam and I said that DSPAM 2.8.3, in its default configuration, achieved 98.15% accuracy on the same corpus to which Zdziarski refers above. The report also argued that accuracy was a very poor measure of filter performance and that a false positive rate such as the 1.28% demonstrated by DSPAM would likely be unacceptable to an email user.

    In recent correspondence, Zdziarski suggested three configurations of DSPAM (available here on the web) that achieved the following results:

    dspam(tum) fpr 1.81% fnr 0.80% accuracy 99.20%
    dspam(toe) fpr 1.94% fnr 0.59% accuracy 99.16%
    dspam(teft) frp 1.85% fnr 0.53% accuracy 99.32%

    More detailed results and comparisons will be made available when our current study is complete. Don't take my word (or Jonathan's) for anything; run this filter and others on your own email. But please take great care in constructing your gold standard.

    Gordon Cormack

    1. Re:Gordon Cormack's Response by Nuclear+Elephant · · Score: 1

      Thanks Gordon. While our opinions may differ on the original test bed, and since I'm not privy to the original testing framework, we'll just have to agree to disagree on that. I think some of what went wrong was beyond your control as well - such as the use of the Berkeley DB drivers in 2.8, which were severely caveated and are now deprecated. (Now that SQLite is available, this provided a much more stable backend for testing, especially considering MySQL - the stable backend at the time - would have been too heavy to fit into a compact, multiplatform jig). I am sure some of the improvement has obviously been to improvements in the filtering software since 2003, when 2.8 was around, but I do believe some of the changes we made to how the tests were run made a change as well. Turning off statistical sedation was probably the biggest change, and as of 3.x much of the 'default' configuration has been tuned for performance based on what we know today about "what works". In 2.8, much of these decisions were left "unset" and up to the implementor.

      But anywho, thanks for the effort, and I am glad we could at least perform what I think is a reasonable test.

    2. Re:Gordon Cormack's Response by Nuclear+Elephant · · Score: 1

      false positive rate

      Well now, that's tunable - but more importantly, how much of that occured during training and how much after training. Most people can live with that for the first few weeks to a month or so while they're getting things up and running. I'll be interested in seeing the graphs illustrate each milestone when they're ready. If you don't need a 99.5% catch rate during your training, you can always turn sedation on. Your FP rate will be very low, but your spam rate will increase. It all depends on the user's preference, which is why there's a knob for it in the user preferences section of the UI. Some of the other tests we've seen show exceptionally good behavior with false positives - I believe one test showed that out of all the messages, dspam only got 1 false positive. This is an example of the different ways you can turn that knob.

    3. Re:Gordon Cormack's Response by gvc · · Score: 1

      Here's the learning curve and the ROC curve.

  55. But it is belief by Skeezix · · Score: 2, Insightful
    A theory can be correct or incorrect. It can be revised, or shot down completely, or confirmed beyond reasonable doubt as further evidence and experiments come to light. You can remain agnostic about the issue and say, "well here is the evidence; it is what it is." But in practice, human beings do not really remain in that state. They form beliefs and world views. And the vast majority of evolutionary biologists start with the atheistic world view and see everything through those tinted glasses. I'm not saying that is wrong...just that it's true. There is definitely belief involved. The problem many people have with Evolution is that it isn't presented as a theory precisely because it has become the foundation for a belief system in our modern culture. When something has not been proven and in fact has some serious problems and is hotly debated but is described by some as being fact ("this is how it happened." not "this is how the theory states it happened") then you have a fundamental problem.

    You can say, "here is a theory." Yes, but do you believe the theory is correct?

    Another interesting point is that ID is falsifiable. Successful experiments could falsify the claims of irreducible complexity. Evolution seems unfalsifiable, on the other hand.

    1. Re:But it is belief by PCM2 · · Score: 1
      Evolution seems unfalsifiable, on the other hand.
      Exactly. Which is what makes it the prevailing scientific theory.

      Scientific theories can be used to make predictions about the natural world. Creationists like to believe that just because nobody has ever found the fossil remains of a monkey that walks upright and carries a pocket watch, evolution must be "unproven." The truth is that the vast preponderance of observations of living species support the theory of evolution.

      Might we someday find an organism that cannot possibly be the result of any of the processes of evolution that have been observed to this day, indeed one that so thoroughly refutes the conclusions drawn from those observations that the entire theory of evolution is dashed to pieces? Sure, it's possible. When you find that organism, I advise you to run, not walk, to your nearest biologist. But bring a lunch.

      --
      Breakfast served all day!
  56. Science proves NOTHING! by computersareevil · · Score: 4, Insightful
    Seriously. Science only deals with theories and facts. Any scientist worth his salt with object strongly if you say science proves anything.
    I find it very ironic to be flamed by anyone who thinks I'm an idiot for not believing in a theory that's never been proven by scientific process.
    Spoken like a "True Believer". It seems to me that many (most?) True Believers can't understand that science isn't about believing in anything, and that science never, ever claims to prove anything. Shame, too, on the non-Believers who say that it does.
    It's recently become a "religious act" to question science in any capacity, but isn't questioning science the only way we can tell the good science from the bad science?
    Again, a clear misunderstanding of science. Science is all about questioning everything. I.e. why are we here? How did we get here? Where are we going? What is thunder? It's only a "religious act" when the questioner is an avowed (or covert) Believer who is offering zero actual evidence supporting any alternate theory.

    Religion, generally, and Chistianity specifically, appears to be all about answers. I.e., to answer the questions above, because god made us. God put us here. To heaven if you're good, hell if your not. God is angry. See the difference?

    Does this mean I think less of his thoughts on email? No, I don't dismiss someone because of their beliefs (think Stallman ;). But I will read their works with a heightened sensitivity toward bias in the direction of whatever they believe. I think people like Mr. Zdziarski who openly declare their beliefs are less likely to let them taint their works because they know it would reflect negatively on their credibility.
    1. Re:Science proves NOTHING! by Anonymous Coward · · Score: 0

      >> To heaven if you're good, hell if your not.

      Well, it is disruptive as hell to the establishment, but actually the visit of Jesus has provided the grace to come to heaven even if you are not good. The thief to the left of Jesus was spared even tho there was no chance he'd ever repent.

      Love God, do what you want.

      (What's so amazing about Grace, by Philip Yancey)

    2. Re:Science proves NOTHING! by Anonymous Coward · · Score: 0

      Your post shows a lack of understanding about the bible. There's nothing wrong with that, and it certainly doesn't prove the bible right, but doesn't it seem hypocritical to you to accuse Mr. Zdziarski of commenting from ignorance on science while you do the same on religion?

    3. Re:Science proves NOTHING! by computersareevil · · Score: 1

      First, I never said he was ignorant of science. It appears from his website he has been instructed in science. I said he didn't understand science.

      Second, which part of my post shows a lack of understanding? Or are you dismissing the whole post? Offer some evidence to support your theory, or have your post be dismissed as a "religious act".

  57. I am Spammed by my friends by Catamaran · · Score: 1
    Every now and then I will get an email from a friend, CC'ed to everyone else on his/her address book. Inevitably, one of the other recipients has a hacked PC, and soon after that my daily Spam level increases.

    People need to learn to use BCC instead. Web clients like gmail should make this the default for emails with more than say 4 recipients.

    --
    Test 1 2 3 4
  58. I wasn't refering to you. by khasim · · Score: 1
    I was quoting from the web page about a book you reference by Michael Behe.
    ...but in observing it, I think I have discovered that their purpose is not to try and introduce new science, but to rather separate the science in creationism from the God in creationism.
    There is no science in Creationism. Therefore, it is impossible to separate it from the religion of Creationism.

    Science follows the scientific method and any hypothesis or theory must be falsifiable. Since there is no way to show a Deity not creating life on Earth, Creationism fails.
    I can agree with that... but like I said, I'm pretty neutral in terms of the ID movement. I really just have had better things to do than study up on them too much.
    I thought you said you were reading Michael Behe's book on the topic. Yeah, right. Whatever.

    The only problem I see is when religious people try to get their religious beliefs enshrined as "science" or taught as "alternative scientific explanations".

    Believe whatever you want to believe, but don't claim your beliefs are anything more than your religion (and you won't know if you're wrong or right on that until you die).
  59. More christian than thou... by Vellmont · · Score: 1

    Wow. I guess if you only define christians as the fundamentalist/born again type I guess you're right. All other christians aren't "real" christians. Perhaps you should expand beyond your narrow view of christianity and realize that there's a LOT of diversity out their beyond the fundamentalists that currently think they're the ONLY christians.

    --
    AccountKiller
  60. That makes the whole point by Anonymous Coward · · Score: 0

    People who don't believe in religion do not usually bother looking for a "good reason for existence". Of course, we can research into the nature to answer many questions that we, as humans, can ask ourselfs. Nobody denies the fact that curiosity is part of human nature and science has proven to be, nowadays, the best way to proceed in our search.
    On the other hand, to look for "good reasons" or "bad reasons" is a sign of mental weakness that people use to patch with religion.

  61. There is lots of verifiable evidence to support the theory of evolution. Its not proven, but there is evidence that supports it. If you want to say its wrong, and claim that there's lots of evidence proving its wrong, then yes, you really do have to step up and show this evidence. People aren't telling you that you have to accept or believe evolution, just that if you are going to claim its wrong, you put your money where you mouth is and show us your proof.

    People who aren't blindly following an irrational belief tend to step up and show some evidence, and point out the flaws in a theory they don't believe. Then we develop and test new theories. This has been a huge factor in furthering human knowledge and understanding. Please be constructive and participate in this process instead of saying everything that isn't 100% provable (which is everything, period) is wrong.

    1. Re:Nope. by WaxParadigm · · Score: 1

      "People aren't telling you that you have to accept or believe evolution, just that if you are going to claim its wrong, you put your money where you mouth is and show us your proof."

      These people are making the same logical fallacy. Just because the error is being repeated by many people doesn't mean the error ceases to be an error.

      You ask for proof evolution is wrong, but I'm not trying to prove that, nor was the person being interviewed. Even though I consider your post a troll, I'll bite a little. Here is some evidence (can't prove evolution is wrong any more than you can prove it's correct) against macroevolution:

      The "Theory of evolution" assumes macroevolution occurred billions of times.

      1. Macroevolution has never been observed.

      2. Two instances of essentially identical macroevoltion would have had to occur simultaniously (within a period shorter than the lifespan of a given species) for even one non-asexual species to have survived (create offspring). One would think macroevolution would be more common than it is for these simultanious events to happen the billions of times necessary for the diversity of life.

      3. There are not billions upon billions of intermediate fossles as evidence of this (there are a hand-full, which are themselves disputable).

      Regardless, the burden of proof for evolution is on those claiming it, not those questioning it...and putting it anywhere else is a fallacy.

    2. Re:Nope. by Anonymous Coward · · Score: 0
      And how exactly can you dispute the development of the human species? Through selective breeding one can show what happens in evolution, we created cattle through picking and choosing which breed to make the next generation.

      The same thing happened with us, without anyone overseeing and forcing the strongest and smartest to breed, but simply those that survived bred.

      There is a clearly visible path made from our origins in the trees of Africa to the mass of people we have become today.

    3. Re:Nope. by Anonymous Coward · · Score: 0

      Wonderful. I was too late but let me also add this, stolen from 'Commissar' on http://acepilots.com/mt/2005/08/26/falsifiable-evo lution-not-just-precambrian-rabbits/#comments:

      Interesting. In sum you said, "re-create life in a test tube."

      Let's say we did such a test. Successfully!!!! Woot! We're talking Nobel Prize.

      But how does that falsify the claim that an Intelligent Designer did the same thing a long time ago? It doesn't ... and that's why ID is a 'belief.' A believer in ID simply says, "You did it, why couldn't God ... a hypothetical, secular, non-religious Intelligent Designer have done it?"

    4. Re:Nope. by Trinition · · Score: 1

      2. Two instances of essentially identical macroevoltion would have had to occur simultaniously (within a period shorter than the lifespan of a given species) for even one non-asexual species to have survived (create offspring). One would think macroevolution would be more common than it is for these simultanious events to happen the billions of times necessary for the diversity of life.

      Why?

      Why must these events be simultaneous? Could not have sexual reproduction have evolved by first evolving in asexual animals? And there are other strange combinations, such as earthworms.

      It is not fair for you to state that microevolution can't lead to macroevolution simply because you can't seem to fathom the microevolutionary steps that could combine to lead to that.

    5. Re:Nope. by Anonymous Coward · · Score: 0

      How about human foot prints along side dinosaur foot prints?

      http://www.bennerwc.com/ancientman/02_zapata.html

  62. It's obvious by commodoresloat · · Score: 1
    The Z, d, z, and i are all silent. Oh yeah, and there's an invisible "J" in the name. Duh.

    Hey, at least he doesn't have a silent "3" in his name.

  63. 1996?? by commodoresloat · · Score: 1

    Real Old Men used WAIS to search. During the Reagan Administration!

  64. Nope. by khasim · · Score: 1
    Intelligent Design is easily falsifiable, despite the claims of some evolutionists to the contrary.
    Nope.
    All you have to do is show once through an experiment that you can produce something that is supposedly of "irreducible complexity" from simpler parts.
    Nope. If the statement is that an Intelligence is required to create the complexities of life ... then having an Intelligence create the complexities of life demonstrates nothing.

    The only way to show that ID is false is to show that such complexities arise WITHOUT the Intelligence being involved.

    Which requires that you demonstrate a way to keep God (or whomever) from touching your stuff.

    How do you demonstrate that you've managed to keep an omnipotent, omniscient, invisible, intangible being from influencing your experiment?

    Therefore, not falsifiable.
    Evolution, on the other hand, doesn't seem to be falsifiable. How can you design an experiment to falsify the theory of Evolution?
    Simple, find a dino with a partially digested human inside him.

    Find a grave with a human and his pet dino buried together.

    And the last, but best way, God appears and creates a brand new intelligent life form.
  65. Re:I still want him to answer why we are filtering by Rei · · Score: 2, Insightful

    Jesus Christ how old are you? 5?

    You can't accurately measure how old he is. You see, while his birth certificate says he is 5, nobody here actually witnessed his birth to testify to the fact that the birth certificate is accurate. We take birth certificates on higher authority, and don't subject them to real scientific standards. Why, I read an article recently that indicated that clocks weren't accurate back before 2002!

    In all seriousness now, lets just clear up his misconceptions really quickly here:

    The beliefs I hold as a Christian aren't always the popular ones, but they're certainly valid arguments for anyone who cares to ask about them

    Many creationists, strangely, think that "Christian" viewpoints equals "Creationist" viewpoints. Heck, even the Vatican accepts evolution.

    That tells me that some people don't believe I have the right to my own beliefs - how asinine is that?

    If someone told you the world was flat, you'd question their better judgement, now wouldn't you? Nobody is telling you what you can or cannot believe, and don't pretend that they are. But you can't tell people that you believe in something contrary to all available evidence and expect them not to care.

    It doesn't get into your knowledge of spam filtering, by the way, so don't take this as an insult.

    In fact, the Bible teaches that you should know what you believe and why, and that you should even be prepared to give a defense for your faith

    What are you referring to? Paul regularly launches diatribes against the learned, tells followers not to listen them, and to believe in faith alone. For example, read Corinthians sometimes. It's one long diatribe against the educated after another.

    Take the old testament, too. It, too, says not to even listen to unbelievers, lest they make you doubt your faith. So, I'd like to see where you draw these "intellectual debate-encouraging" lines from.

    I've read from my early days in Kindergarten how "billions of years ago, when dinosaurs roamed the earth"

    Then you had the worst Kindergarten class on Earth. "Dinosaurs" roughly range from the Triassic to the Cretaceous, i.e. 248 to 65 mya. "Billions of years ago" was Precambrian, where single cellular and simple multicellular organisms roamed the earth.

    The problem, though, is that no matter how credible or not a particular area of science is, much of what is out there is taught based on authority.

    It doesn't matter what it's "taught" by. What matters is how the evidence was derived. By the way, did you not find the irony of the fact that your belief is based on an "ultimate authority source"?

    I find it very ironic to be flamed by anyone who thinks I'm an idiot for not believing in a theory that's never been proven by scientific process.

    Quite to the contrary. First, a bit of background for you. When the study of geology began in earnest, almost all mainstream scientists were biblical literalists. The "flood theory" of strata layers was essentially unquestioned; finding fossils in layers only furthered their belief in the flood theory. That was, until they hit a brick wall: Sorting.

    The fossils that they kept finding were extremely confined. You never find trilobytes in the same layer as clams, or grasses in the same layer as Alethopteris, etc: *ever*, the world over, despite how incredibly common and distributed these species were.

    The scientists who discovered this were at a loss to explain it. Gradually, a new theory rose to explain it. Evolution, right?

    Nope! The "multiple creation, multiple flood" theory. They were so convinced that the bible had to be literally accurate, that they simply adapted it. This theory was dominant in European scientific thought for several hundred years. However, as time progressed, it kept falling apart. They kept having to add in more creations and more floods; by the time of Darwin, there were widely viewed beliefs of hal

    --
    Rock Us, Dukakis.
  66. AGPL For Victory by Doc+Ruby · · Score: 1

    GPL 3.0 should address the now common practice of offering services of GPL'd software by "wrapping" it in new code, which connects to the GPL'd code via a public API in the GPL'd code. That kind of interface is more like linking to a GPL'd library than like revising the actual code of the GPL'd source. It's not even as tight an integration. So requiring that new code that's "API linked" to GPL'd code also be governed by GPL terms (eg. publishing all the new code's source, and virally transmitting the GPL with the new code as its own license) is an unfair requirement. For example, we don't require a user, interfacing with the UI of a GPL'd word processor, to publish every document they produce with it. An "AGPL" for APIs shared by programming an application interface to GPL'd code would be fair for both parties.

    A fair requirement of that increasingly common scenario would be to require that the new code's APIs be accessible, just as the GPL'd code's APIs are accessible. The new code doesn't actually touch the GPL'd code, but it does touch the APIs. So the new code's APIs must be documented: their calling signature, return types, the results of calling them, and the symbolic meaning of their return value. In essence, requiring the new code to offer access to its APIs as open as the GPL'd code offers. Perhaps even with a viral clause that requires any other code that calls the new code by API to also be governed by the AGPL.

    That way programmers will continue to use GPL'd code as often as possible, and leverage the same benefit from their code as they're getting from the GPL'd code they use merely by connecting to its API. And we'll contribute to the developer environment by forcing documentation, therefore useability, of APIs not even otherwise governed by GPL. If we make a new GPL more demanding than that, more programmers will avoid the GPL'd code, rewriting their own. Which is worse for everyone. GPL'd code doesn't have the leverage to force all uses of it to convert all that new code to GPL. If we force those kinds of terms, we'll weaken respect for the GPL (and therefore compliance), alienate programmers from it, and drive more code into even less useable condition.

    --

    --
    make install -not war

  67. falsified by WiFiBro · · Score: 1

    Intelligent Design is easily falsifiable [...] All you have to do is show once through an experiment that you can produce something that is supposedly of "irreducible complexity" from simpler parts.

    And then? I'm 100% sure that as soon as I come up with an example, you would find a way to diagree and jump to your next argument. That's at least my experience, first it was the eye, now a flagella, etc.
    Actually I never heard of this irreducible complexity thing before but a quick search showed me it is a logic trap.

    Please read about what's known on DNA, RNA, the whole logic in the development from single cells to 'higher organisms'. Then come back.

    Evolution, on the other hand, doesn't seem to be falsifiable. How can you design an experiment to falsify the theory of Evolution?

    Pretty easy if you try.
    * find fossils that are structurally impossible, like a way too advanced species in (undisturbed) ancient layers ('alas! God wants to test our faith and that's why He put the bones there')

    * find the reuse of a tract in species that are, according to biologists, totally different, e.g. show that your Creative Designer has used the same construction for the human eye as for the octopus (they are actually pretty similar but the construction is totally different). Like find a centaur.

    * prove that there ain't enough time for the evolution (without using the bible or your personal contact with God), like, the earth is only 6000 years old

    There are more ways.

    How come Darwin came with his ideas before DNA was discovered? How come it all fits so well?

    1. Re:falsified by WiFiBro · · Score: 1

      Summary: Science is not a simple process of falsification of hypotheses. The philosophy of science is not just the views of Popper, which have some real problems. Evolution can be falsified in the usual meaning in scientific practice.
      From (and elaborated on): http://www.talkorigins.org/faqs/evolphil/falsify.h tml

  68. Much to learn about software freedom. by jbn-o · · Score: 1

    Jonathan Zdziarski makes many claims with nothing to back them up, then draws incorrect conclusions based on those claims.

    One of the things I've heard, which doesn't make much sense to me, is the idea of changing the GPL to deal with 'use' rather than 'distribution', which would affect companies like Google and Amazon.

    Where did he hear this? The FSF understands that setting conditions for running software is not allowed under US copyright law:

    "At a fundamental level, the APSL makes a claim that, if it became accepted, would stretch copyright powers in a dangerous way: it claims to be able to set conditions for simply *running* the software. As I understand it, copyright law in the US does not permit this, except when encryption or a license manager is used to enforce the conditions. It would be terribly ironic if a failed attempt at making a free software license resulted in an extension of the effective range of copyright power."

    Zdziarski continues:

    The argument seems to be that some people feel building your infrastructure on open source should demand a company release all of their proprietary source code which links to or builds on existing GPL projects.

    First off, the GNU GPL was written by the Free Software Foundation with an eye toward software freedom, and it was written well before there was such a thing as the "open source" movement. Eben Moglen and Richard Stallman made it very clear that software freedom, not mere "open"ness, would be the measuring stick by which the GPL3 would be judged a success. Hence, the GPL is properly credited as a free software license. This is important not only to tell the truth about who wrote the GPL and why, but to understand what it says and why. Software freedom is the very thing the open source movement was build to not discuss. To this day, the Open Source Initiative (which coined the term "open source", defined it, and determines which licenses comply with its terms) belittles the FSF in their FAQ as "ideological tub-thumping". Which movement you side with (if either) is your business. But it should be important to be fair to the differences that exist between the movements. One practical difference between the two movements is that free software licenses guarantee private derivatives ("You should also have the freedom to make modifications and use them privately in your own work or play, without even mentioning that they exist. If you do publish your changes, you should not be required to notify anyone in particular, or in any particular way."), OSI-approved licenses do not guarantee private derivatives, hence the FSF's unwillingness to give their imprimateur to the early revisions of the Apple Public Source License.

    Second, no American company can legally distribute proprietary derivatives of GPL'd software. If they don't like this, they should write their own software or find something under a license which they can build on and distribute without also distributing their changes.

    They argue that the open source community hasn't benefited from companies like Google and Amazon. Well, from a source code perspective that might be somewhat true - but if you take into consideration the fact that we all have a good quality, freely accessible search engine, cheap books, and employment for many local developers (many of whom write open source applications), the benefits seem to balance out the deficiency. Does anybody remember what the world was like before Google? None of us do, primarily because we couldn't find it - we couldn't find much of anything we were looking for on the Internet as a matter of fact, i

    1. Re:Much to learn about software freedom. by latroM · · Score: 1

      Your posts are very insightful but too bad no one moderates them as such. Feel free to join #GNU in freenode and we could have a chat :).

  69. Re:I still want him to answer why we are filtering by WalksOnDirt · · Score: 1

    Ah, I can't wait until I can start looking down on those n00b 7 digit UID Slashdotters!

    --
    a,e,i,o,u and sometimes w and y (at be if of up cwm by)
  70. Re:I still want him to answer why we are filtering by extrasolar · · Score: 1

    Hey kids, now's time to start acting ten years plus your age.

  71. On Authority by Coppit · · Score: 1
    It's funny to me when a Christian gets sick, they go to the doctor. (Not an exorcist, BTW). When their car is broken, they go to a mechanic. When they worry about the weather, they go to a meteorologist. For the most part, they trust the expert, which makes sense since they have spent their lives studying the subject.

    Why is it when an expert contradicts their religious beliefs, suddenly the expert don't know what they are talking about? Millions of biologists, geologists, physicists, chemists etc., both Christian and not, have studied evolution and believe it to be true. And yet Christians dismiss these experts out of hand. Why?

    Sure, authority alone is not sufficient for rock-solid belief--one should check out things for oneself. But I wish a Christian would explain to me why millions of experts are conspiring to promulgate evolution if it is so obviously false.

    And while I'm at it, I wish a Christian would explain to me the difference, in technical terms, between "micro-evolution" and "macro-evolution". It seems to me that Christians have created these artificial categories because they can't argue that evolution hasn't been observed.

    Coppit

    P.S. To the interviewee: move on to radiometric dating rather than Carbon-14 dating. C-14 is more error-prone than radiometric, and something of a strawman.

    P.P.S. We could also ask all the world's religious experts about the nature of god. Unlike evolution, we'll get much disagreement.

  72. You keep ignoring the part you don't like. by Some+Random+Username · · Score: 1

    The part where tons of evidence that supports evolution has been found. When there's tons of evidence to support a theory, then it becomes accepted. Once something has been accepted, the burden of proof is now on you to show its not correct, or that some other theory better explains what we can observe. Saying everyone is wrong doesn't do anything besides make you look dumb. If you want to be taken seriously, then you need to say why you think its wrong (which you now did I guess).

    As to your "evidence", I can't say I am suprised that few people are convinced by it. First of all, its not evidence, its simply complaining that you think there isn't enough evidence for evolution. I didn't say there was enough evidence to prove evolution, just that of all the theories available right now, it has the most proof and best explains what is observed around us. In fact, there is no other theory with any proof at all that I am aware of. Saying there's not enough proof to satisfy your requirements is not proof of anything, except that you are a hypocrite.

    Second, you are only talking about macroevolution, does this mean you accept that microevolution has been proven? Its certainly observed all around us all the time. If so, you might want to be more specific that you only don't believe in macroevolution in the future, since not believing in things that are observed constantly all around us can make people ignore and/or dismiss you as a nutjob.

    Third, you are ignoring the fact that there are two macroevolutionary theories, which are not mutually exlusive. Macroevolution has not been observed naturally in the very recent past when we would have record of it, but it has been observed through macromutation in labs simply from radiation mutations. And fossil records show it happening in the past, possibly without any radical mutation, but simply as an accelerated or more focused microevolutionary process. Its not like we've been studying evolution for thousands of years to get a good chance to observe it occuring naturally.

    Your second point is just you misunderstanding the theory. You do not need two instances of an identical macromutation to occur simultaniosly. You only need one to occur that can still breed with the species it mutated from. So it is technically still the same species, but mutated. Some of its offspring will be mutated as well obviously. If this mutation allows them to survive and/or reproduce better, then their population will grow. Microevolution takes over and gradually these mutants become less and less similar to their original species, eventually being unable to reproduce with them, making them their own distinct species.

    And finally, there doesn't need to be billions of fossils, since as I mentioned it doesn't need to happen nearly as often as you think. In order to get two identical mutations at the same time then sure, we'd need to be seeing such mutations constantly, but we don't need two identical mutations, and thus shouldn't expect to observe it constantly occuring. Keep in mind also, fossilization is an incredibly rare event, that only happens in particular circumstances. Not everything that dies becomes a fossil, we don't have billions of fossils of anything, much less of rare mutations. What are the odds of a rare mutation happening, then the rare event of it being fossilized, then the rare event of people finding it, all happening? Pretty damn slim.

  73. Indoctrination in public schools by Trinition · · Score: 1

    However, most public schools do, and they teach a theory as if it were a law

    But why stop there? We also indoctrinate our children with the pledge of allegiance. And through that, profess ours to be a nation under God. And do we really think these children understand what they are saying? I didn't for a very long time. And as I look back on it, the forced recital of the pledge is soemthing that makes me ashamed of our society, and therefore have less desire to pledge allegiance to it.

    Of course, we also indoctrinate our kids in America to wear clothes, not soley for warmth. We don't explain why, and I doubt most people could. For the most part, we just do it.

    1. Re:Indoctrination in public schools by jhantin · · Score: 1
      Of course, we also indoctrinate our kids in America to wear clothes, not soley for warmth. We don't explain why, and I doubt most people could. For the most part, we just do it.
      Well, as far as I know in most of the USA it's against the law not to wear clothes in public, and indoctrinating kids to obey laws makes a fair bit of sense to me.
      --
      ...when you're writing a game...tweak the difficulty of "Easy" to something [your mother] can cope with. -- onion2k
  74. Macroevolution has been observed; not in biology by Trinition · · Score: 1

    it poses a biochemical challenge to evolution by a professor of biochemistry

    Macroevolution has been observed, just not in biology. A recent Discover magazine article covered some research being carried out by some MIT (maybe?) people using virtual systems. Prior to that, Tierra deomnstrated simple macroevolution at the genome scale. Granted, none of these are bilogical. But these are just proving one piece of the puzzle that macroevolution is possible given the right conditions (i.e. their virtual world).

    From some site

    • The theory of evolution has also provided a suitable crop of ideas. Imagine a computer which starts empty except for a single small program. The program, called the Ancestor, is 80 bytes long and can do one thing, make copies of itself. Soon the limited memory is full with Ancestors all producing more copies so, to free up space, the computer occasionally destroys older programs or those that cause errors. The operation of the computer is not perfect and sometimes copying goes wrong and a new program appears. This computer is not fiction, it is called Tierra. When it was first switched on the population grew and changed. The Ancestor program was soon ousted by a faster program with only 78 bytes. Later a program with 48 bytes appear which survived by parasiting the code of its neighbours. On a later occasion Tierra threw up an individual which could survive independently with an amazing 22 bytes. Built safely as a simulation inside another computer, there is fortunately no danger of an escape.

    Thus, very different "organisms" evolved from the same ancestor through minor defects -- even though some defects caused profound impacts. Now you can argue whether or not the same sort of situation exists in biolgy. But, you can't argue whether or not macroevolution exists.

  75. Macroevolution by Trinition · · Score: 1

    Macro evolution, on the other hand, attempts to explain hot how things change, but how they DID change in the PAST

    Where did you get this definition. As another poster said, macroevolution is an artificial term used to describe, generally speciation. Not only PAST speciation, but future and present speciation.

    If you so badly want to observe "macroevolution", go observe a single species of an animal for say... 100,000, no, better make it 1,000,000 years.

    The problem is that people too impatient to observe it. They want to find nicely laid out examples in a sparse fossil record. What about the genetic record. I'm an amateur at genetics but can understand in DNA the evidence of (a) evolution or (b) a God who likes using copy & paste in DNA. And I've seen programs like Tierra, and more impressive modern variants, that demonstrate how genetic evolution can occur. Its not a huge leap to piece this altogether.

    You know, I had a friend the other day respond to me unexpectedly when I mentioned them trying to teach ID in schools, "well, I don't understand why if we evolved from monkies, why there are still monkies around." With misunderstanding about evolution like that abounding, I'm not surprised people want to shoot what they understand to be evolution down. Heck, I would too!

  76. How about it? by Anonymous Coward · · Score: 0

    Look at that print, then take your shoes off and go step in some mud a couple of inches deep.

    See the difference?

    Look closely at the toes. See the high ridges between them and the foot? Anyone leaving a print like that would have to have arching toes, not human feet.

    A normal human flexes his feet when he walks. Go ahead and take a few steps. See how one of your feet is hitting on the heel and the other is up on the toes and front pad. You only leave footprints like the one shown if you're walking on a clean, hard surface with dirty feet.

    Unless you believe that God switched our knees around (think chicken-walker) since that print was made.

  77. Ye shall know them by their fruits. by mbius · · Score: 1

    Yea, tempt us not with the bananas of the wicked.

    --
    you can have my violent video games when you pry them from my cold, dead hands.
    Prime UID Club
  78. what a maroon by mbius · · Score: 1

    I was raised in the same public school system as everyone else and didn't even know who Jesus Christ was until around my junior or senior year of high school.

    I don't feel it's unreasonable to call this a lie.


    The questions were:
    what do you think the reason is that so many scientists, nerds and people otherwise rather similar to you think your beliefs are obviously incorrect? Do you think they are all deluded? Do you agree that there might be a possibility that your beliefs are not rational?

    He only obliquely answers the first question by implying conventional scientific theory is spoon-fed to grade school students. Not surprisingly, he offers no support for his young-earth baloney, only an indictment of the "mainstram secular agenda" via carbon dating.

    The only reason Zdziarski believes the earth revolves around the sun is that he was born a few centuries too late. While the rest of us take "proof" to mean, variously, mathematical proof, empirical proof, and statistical "proof," depending on whether we're discussing algebra, electricity, or sociology, Zdziarski wants to blur the contextual distinction.

    We're asked to lose presupposition--this is impossible--and emphasize "theory vs. fact vs. law." Screw that. Science is modeling. Evolution is a successful model. Semantics doesn't change that. When "Jesus is Lord" provides a model to explain gargantuan reptile skeletons, you can get him into the classroom alongside all that other faith-based mythology we call biology, chemistry and physics. The ID argument, here as always, is cowardly, half-baked, and desperately seeking its own justification.

    Zdziarski claims he could argue his position if so inclined. It's another familiar religious tack [pardon the Hubbardism] for dodging criticism. Feynmann once defined science as the process of "bending over backwards" to answer critics. I don't know Feynmann's definition of marketing, but it's easy to see which is which.

    --
    you can have my violent video games when you pry them from my cold, dead hands.
    Prime UID Club
  79. GPL 3 and client server protocols by a9db0 · · Score: 1
    Jonathan-

    In your reply to the question on GPL 3 you bring up the issue of client server software and the protocols they use:

    It would also be nice to be able to restrict proprietary protocols (such as one between a client piece and a server piece, which may have originally been designed to function together) to only other GPL projects, which would essentially create GPL-bonded protocol interfaces. This won't restrict use in any way - only what closed-source projects are limited to interfacing with when redistributed.


    What about the flip side? Such a position would put several open source projects in the position of violating their own license - ie Gaim, Samba, etc. AOL and/or Microsoft claim that the protocols used by their software are proprietary, and therefore legally protected and unavailable to open source projects without a license. GPL 3, if it included such a passage, would put the FSF and GNU in the interesting position of having to defend Microsoft or AOL's position against Samba or Gaim. Furthermore, it would put the develpers of open source alternatives in a mighty hypocritical position - ie we're using your protocols without your permission and no, you can't use ours. Is that really a can of worms we want to open?
    --
    -- "Never underestimate the power of human stupidity." - R.A.H.
  80. Regarding use versus distribution by Anonymous Coward · · Score: 0

    There has been a lot of talk about giving the GPL v3 provisions similar to the Affero General Public License, which some see as limiting your freedom to run the software.

    The AGPL requires that if the program interacts with users through a network, and is capable of distributing its own source code, this ability must be retained in modified versions. (The clause very specifically applies to networks and requires that HTTP be used as the transfer protocol, which seems to me to be a bit too narrow-minded to be used in a license that will still be applicable 50 years from now, but anyway...)

    It's not clear to me whether the AGPL actually limits your ability to modify and use a program "in-house." But consider the two possibilities.

    (A) If it does, then clearly this violates freedom zero. It's also worth mentioning that the GPL, and thus the AGPL, explicitly state that the act of running the program is outside their scope. Moreover, it could only work if the user were forced to sign it (i.e., make it into a EULA) since it limits freedoms that were never covered by copyright law. This is in direct contradiction to the spirit of section 5.

    (B) But if it doesn't, then the license is completely worthless, and you've just broken GPL compatiblity and added all sorts of ugly legal issues for no reason at all!

    Why do I say this? Well, clearly you can distribute the AGPLed program in unmodified form; that's section 1. You can also distribute patches against it which remove its source-code-distribution function; if you write those patches yourself, you can distribute them under any terms you want. Finally, you can distribute a script to patch, compile, and install the modified program. The resulting binary, of course, is illegal to distribute, but the components aren't.

    IANAL, so I can't say which of the two interpretations is correct, but neither one sounds very appealing.

  81. A different logical fallacy by benhocking · · Score: 1

    Just because there are poor reasons to claim that somebody is not a "true whatever" doesn't mean that there aren't good reasons.

    First of all, I imagine what is throwing you off is that people might distinguish between a "Slashdot poster" (for example) and a "true Slashdot poster". What these distinctions really amount to, however, are a "self-proclaimed Slashdot poster" and an "actual Slashdot poster". If I claim to be a Slashdot poster (making me a self-proclaimed Slashdot poster), but have never actually posted anything on Slashdot, than I am not an "actual Slashdot poster".

    Do you agree with that last sentence? If not, then there's probably no point in continuing this discussion.

    From there, it makes sense to extend this argument to "true [actual] whatevere". If you claim to be a Christian (self-proclaimed Christian), but don't really accept Christ as your savior, then I think it is very reasonable to say that you are not actually a Christian. I.e., you are not a "true Christian.

    Naturally, there are people who have some fairly specious arguments about what makes somebody a "true whatever". Again, that doesn't mean that there are no good arguments.

    One problem is that there are social pressures for people to claim to be Christian even though they aren't. There are also social pressures for the reverse - as St. Peter himself no doubt could attest to! One possible outcome of this is that people who claim to be Christians do very un-Christian things. It is my belief that people who actually are Christians also do very un-Christian things, but that's a whole other discussion!

    --
    Ben Hocking
    Need a professional organizer?
    1. Re:A different logical fallacy by Russ+Nelson · · Score: 1

      Just because there are poor reasons to claim that somebody is not a "true whatever" doesn't mean that there aren't good reasons.

      You should have stopped at this first sentence. "'Tis better to be wrong succinctly than wrong at length" --me, now.

      Do you see that, for every good reason to say that somebody else is not a "true whatever", there is also a good reason for someone you accept as a "true whatever" to deny that you are a "true whatever"? Philosophically, the idea is bankrupt, because eventually, you get down to one person being the *only* "true whatever" because nobody else is true enough.

      The problem here is that some Christians feel that they can say that other people are not Christians. That doesn't work for me.
      -russ

      --
      Don't piss off The Angry Economist
  82. -- mod parent down -- by WilliamSChips · · Score: 1

    Whoops, didn't mean to say proof. Meant to say reproduction.

    --
    Please, for the good of Humanity, vote Obama.
  83. MOD PARENT WAY UP by WilliamSChips · · Score: 1

    Thank you, Rei, for reminding me why I friended you.

    --
    Please, for the good of Humanity, vote Obama.
    1. Re:MOD PARENT WAY UP by Rei · · Score: 1

      My pleasure. I wish they had debates like this more often here ;)

      --
      Rock Us, Dukakis.
  84. Evolution invented by God? by Trinition · · Score: 1

    IF you are willing to accept that, why do you think it is such a big leap to think that he could a) build the earth or b) reveal a new idea about SCIENCE to someone?

    So isn't this same God that did all that also powerful and clever engouh to put evolution into motion to ultimately "create man in his image", rather than having to do it directly? As another poster said, GOd could be the ultimate perl scripter who wrote a script (evolution, DNA, etc.) to create life as we know it, rather than wiriting it out by hand.

    I just don't understand why this possibility doesn't occur to regular people, or people in a place of high public visibility, like Rick Santorum, who also thinks God and evolution are mutually exclusive.

    I did hear once creationist once remark, 'Of course all living things have similar DNA. God invented something once, and it worked so well, he used it everywhere!'

  85. Eternal by Trinition · · Score: 1

    Why is it possible to believe that God has always been there, and one day, dcided to create space, time the universe and you. Yet it's not possible to say simply that the universe has always been there?

    It's not that scientists consider pre-big-bang to be taboo. It's just that there's no generally accepted theory. Some think whatever happened before is unkowable and therefore pointless to dicuss(but not forbidden). Others think there was another universe before this one that underwent a big crunch. Others believe there were lots of little bangs going on for eternity. Others think the universe didn't start with any bangs at all but has always been here, swimming around for eternity.

    But why does some other eternal thing have to be conjured up to create something else instead of saying the something else existed for eternity? Or, on the other hand, if everything must have a creator, then who created God?

    1. Re:Eternal by cburley · · Score: 1

      Why is it possible to believe that God has always been there, and one day, dcided to create space, time the universe and you. Yet it's not possible to say simply that the universe has always been there?

      It is possible to say simply that the universe has always been there. Try it: you can do it, so can I.

      The question then becomes, what is it about the universe -- including the laws that govern it -- that brought it into creation?

      If you don't want to visit that issue at all, then that's your choice. Just don't dismiss those who look more deeply into the question of creation, especially the fundamental issue of self-creation.

      For myself, only by taking an over-arching view of the entire concept of the universe -- aka "metaphysics" -- do I feel I have any hope of getting a practical understanding of what is going on here, and now.

      This study of "metaphysics" is, naming issues aside, really indistinguishable from the study of what is widely called "God". And, just as Western science tends to want to reduce multiple competing systems describing the universe into a single one so it covers all bases (as in trying to unify theories such as G, EM, and so on), Western metaphysics, or science, tends to want to assume that there is only a single "metaphysical" system that accounts for the entire cosmos in the first place.

      As to "one day, [God] decided to create space, time, the universe, and you": since space, time, the universe, and we are all, even according to the most atheistic interpretation of physical law (quantum mechanics, string/noodle theory, whatever), nothing more than ephemeral manifestations of an arbitrary number of random events resulting, on rare occasion, in some kind of "emergent behavior", there's no basis whatsoever to worry about whether or when God "decided" to create that, because, outside of that system, which includes not only the rules of the universe but the very concepts of "rules" and "causality", there's simply no such thing as "whether" (no concept of choice) or "when" (no concept of time).

      It's not that scientists consider pre-big-bang to be taboo. It's just that there's no generally accepted theory. Some think whatever happened before is unkowable and therefore pointless to dicuss(but not forbidden). Others think there was another universe before this one that underwent a big crunch. Others believe there were lots of little bangs going on for eternity. Others think the universe didn't start with any bangs at all but has always been here, swimming around for eternity.

      Exactly the point -- except that, in practice, this lack of clarity beyond what seems to be a vast ocean of consensus among scientists leads to many scientists (or at least their "spokespeople", such as politicians, talking heads, and public-school teachers -- you know, the ones who say "scientists tell us Global Warming is happening, it'll be a disaster, it's man's fault, and we can make things better by entering the Kyoto Protocols") treating it as if it were taboo, and treating anyone who does go there not unlike how some dark/middle-age "religious" types treated those who were willing to sail beyond the horizon: as "nutcases".

      Metaphysicists, however, are willing to explore (not merely speculate about) those issues, except they typically move it out of the realm of "what physical characteristics describe the universe pre-Big-Bang" into "what metaphysical characteristics account for our entire existence in the first place, and why?".

      That changes the point of view from one of remote, probably irrelevant, distances in spacetime, to one of immediate concern, because it implies that there might be some Creator, completely unconfined by our own material universe and its rules, able to fully control this universe (e.g. by directing each and every event we call random, even if fundamentall

      --
      Practice random senselessness and act kind of beautiful.
  86. Why must a step be an improvement? by Trinition · · Score: 1

    Evolution is based on natural selection, and the basic premise of that is survival of the fittest. But the key there is "survival."

    You state: "That irreducibly complex things can't be evolved from simpler components in singled steps, because no single step constitutes an improvement."

    Why must it constitute an improvement? I could very well have passed on a harmless gene to my children. Suppose the gene causes me to have a mole, but having the mole does not consitute an improvement. But so long as it doesn't kill me before I reproduce, or hinder my offspring before a subsequent event (see below), then it can continue existing.

    So my first point is that it is not necessary for any one mutation to be an improvement for that mutation to live on through generations -- it just can't be detrimental to the point that it extinguishes itself too soon.

    Now, suppose that I'm carrying this first mutation, the mole. Now all of a sudden another mutation happens in myself causes this particular kind of mole to start boosting my immune system. *Now* I have an advantage. The mole before was useless, or minorly harmful, but I've now had a second change that builds upon the first, combining to make something extremely useful.

    So if you can accept that these so called "irreducibly complex" things are built of simpler parts, you're half way there. You just have to discard your statement that each part must be worthy in its own right. I see no reason for that whatsoever.

    The only requiremnt is that the coinciding pieces must exist long engough for them to coincide to have their combined properties fully realized and passed on, advantagously.

    1. Re:Why must a step be an improvement? by Elwood+P+Dowd · · Score: 1
      I was just trying to restate Behe's argument. Given the functionality of an eyeball or blood clotting, it's clear that there must have been intermediate steps that provided some advantage. I will grant him that. It is too unlikely that the huge numbers of mutations that created the first 40 proteins involved in blood clotting survived without cause, and the 41st protein was the result of the first mutation to provide any advantage.
      The only requiremnt is that the coinciding pieces must exist long engough for them to coincide to have their combined properties fully realized and passed on, advantagously.
      Yeah. Exactly. Everyone agrees that that is too unlikely in the cases that Behe looks at. There must have been beneficial intermediate states in order for evolution to make any sense at all. Same thing for the Iris and the bee. Old, old argument.
      --

      There are no trails. There are no trees out here.
  87. kawabonga by N3wsByt3 · · Score: 1

    Fuck.

    Now *this* was a *really* good post.

    You're not doing bad, Rei, I remember other posts of you that imprseed me (though, granted, I usually only recognise they are/were from you by your '99 dead dualists sigpic', which isn't there, on this post).

    Let's hope no one else uses such a sig. ;-)

    --
    --- "To pee or not to pee, that is the question." ---
  88. What would you hope to observe in the past? by Trinition · · Score: 1

    The past (unless/until we can time travel) cannot be observed,...

    What is it you would hope to observe in the past with your hypothetical time machine that would be proof of evolution. Do you expect to see a monkey giving birth to a human? If so, you won't see it because that's not how evolution works

    Instead, what you'd be better off doing is using your time machien to take time lapse photography of the diversification of populations, and following them as those populations spread out .

    But we already have *some* evidence of just that in the fossil record. Unfortunately, its mostly skeletal which is only the tip of the iceberg.

    My point is, yuo can continue to observe evolution today if you want, and you don't even need a time machine, because you're already moving through time. But what you shoudl do now, is do what nature is already doing, but on a more thorough scale. Take a detailed picture of every animal on earth from now through the end of time. Do this for say, a million years, and you'll start to see some differences between some animals now and their counterparts in the future.

    Its not that "macroevolution" can't be observed, its just that it occurs on such a vast and lengthy scale, no one is patient enough to watch it.

  89. And why is there a law? by Trinition · · Score: 1

    Well, as far as I know in most of the USA it's against the law not to wear clothes in public, and indoctrinating kids to obey laws makes a fair bit of sense to me.

    And why do we have the law?

    1. Re:And why is there a law? by jhantin · · Score: 1

      And why do we have the law?

      I purposely wasn't attempting to address that question. :-)

      --
      ...when you're writing a game...tweak the difficulty of "Easy" to something [your mother] can cope with. -- onion2k
  90. Extending your logic by benhocking · · Score: 1

    Focusing on your second paragraph, and making sure that "whatver" does not necessarily equal "Christian" makes your argument difficult (for me, at least) to understand. For example, if I say that a good reason for saying someone is not a "true Slashdot poster" is that they have never posted to Slashdot (even though they are a "self-proclaimed Slashdot poster"), then I will agree that there are people who I accept as a "true Slashdot poster" who might have bad reasons for claiming that I'm not a "true Slashdot poster", but I do not see (to answer your question) that there "is also a good reason for someone [I] accept as a 'true [Slashdot Poster]' to deny that [I am] a 'true [Slashdot Poster]'". Please explain how you see this.

    The key word, of course, is "good" (as in "good reason"). Note, that I am not denying that there are several bad reasons to say that someone is not a "true Christian" (since I suspect that when "whatever" = "Christian" is the main contention here, and not my actual logic!). However, it seems clear to me that "not accepting Christ as his/her savior" is a good reason to say someone is not a "true Christian". Well, OK, maybe not. But only because it's arguably not our responsibility to say who is and who is not a "true Christian". Nevertheless, I don't see that the more general concept of someone actually being a "true Christian" is philosophically bankrupt, even if it is a bit "overdrawn" (if you'll pardon the banking analogy), by millions of people using bad reasons for making such a distinction.

    You'll note that I've also said that "true Christians" do in fact commit "un-Christian acts", such as Peter denying Christ 3 times before the rooster crowed.

    P.S. Some people saying other people aren't Christians doesn't work for me, either, in case I hadn't already made that clear.

    --
    Ben Hocking
    Need a professional organizer?
  91. Ending Spam by amyamie28 · · Score: 1

    This is such a great idea on how to stop spam on the internet. Thought the interview was great and his ideas right on.

  92. Is Bogofilter Bayesian? by pfafrich · · Score: 1

    Have a look at A Statistical Approach to the Spam Problem which as far as I can tell describes the Bogofilter approach. Which seems to be

    1. Calculate the probabilities p(spam|word) for each word in spam. The formula is a modification of the standard bayes rule to account for new words not found in corpus. As the the number of emails containing the word increases it does tend to the standard Bayes rule.
    2. Combine the probabilities for all the words in the email. This step is where the Chi squared test comes in.

    A lot of the debate seem to on precisely what we mean by Bayesian. It true to say that Bogofilter is not a Naive Bayes classifier, but it does use techniques of Bayesian inference.

    --
    There are four sorts of people in the world: fools, lunatics, idiots and morons. - Umberto Eco, Foucaut's pendulum.
  93. Thanks by jbn-o · · Score: 1

    Thank you, you're very kind. I'll stop by in #GNU on freenode.

  94. Dual-licencing? by 42forty-two42 · · Score: 1

    Correct me if I'm wrong, but wouldn't it be impossible for the GPLv3 to prevent dual-licencing? All that's happening, after all, is the copyright holder granting additional rights above and beyond what the GPL gives, to selected parties, for a fee. No licence can work against the wishes of the copyright holder like that.

  95. Because you know by OneArmedMan · · Score: 1

    believing in an untestable book about a mythical Carpenter and his dad "The Wizard" makes so much more sence..

    but hey ... what ever floats your boat.

  96. Reviewing the book before one sees it is not wise. by jbn-o · · Score: 1

    It's hardly convincing to speculate on what a license will say and then contemplate the outcome of scenarios from one's own speculation. I prefer to review the GPLs we have available to us here and now and then give the new GPL the same consideration. This requires waiting for the new GPL to be published.