<?xml version="1.0" encoding="utf-8"?><!-- generator="wordpress/1.5" -->
<rss version="2.0" 
	xmlns:content="http://purl.org/rss/1.0/modules/content/">
<channel>
	<title>Jeffrey Yasskin’s blog Comments</title>
	<link>http://jeffrey.yasskin.info/blog</link>
	<description>questions and comments on the world</description>
	<pubDate>Sat, 22 Nov 2008 06:24:03 +0000</pubDate>
	<generator>http://wordpress.org/?v=1.5</generator>

	<item>
		<title>by: Jeffrey Yasskin</title>
		<link>http://jeffrey.yasskin.info/blog/archives/2006/08/05/scientific-specialization/#comment-15506</link>
		<pubDate>Sun, 22 Oct 2006 05:04:56 -0700</pubDate>
		<guid>http://jeffrey.yasskin.info/blog/archives/2006/08/05/scientific-specialization/#comment-15506</guid>
					<description>Right, truths aren't necessarily scientific, and creationism might be true. By &quot;useful&quot;, I meant that the theory itself defines the experiments as useful. I can't provide any outside definition without proposing my own theory, rather than the metatheory I have here. ;) So, evolution says that studying certain groups of animals will give useful-according-to-evolution results. Conversely, creationism says that experimental investigation is pointless because we've already seen that order and structure in humans.</description>
		<content:encoded><![CDATA[	<p>Right, truths aren&#8217;t necessarily scientific, and creationism might be true. By &#8220;useful&#8221;, I meant that the theory itself defines the experiments as useful. I can&#8217;t provide any outside definition without proposing my own theory, rather than the metatheory I have here. <img src='http://jeffrey.yasskin.info/blog/wp-images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  So, evolution says that studying certain groups of animals will give useful-according-to-evolution results. Conversely, creationism says that experimental investigation is pointless because we&#8217;ve already seen that order and structure in humans.
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: Dan Graham</title>
		<link>http://jeffrey.yasskin.info/blog/archives/2006/08/05/scientific-specialization/#comment-8586</link>
		<pubDate>Wed, 06 Sep 2006 00:07:31 -0700</pubDate>
		<guid>http://jeffrey.yasskin.info/blog/archives/2006/08/05/scientific-specialization/#comment-8586</guid>
					<description>It seems to me that you're putting yourself in the position of saying that truths don't have to be scientific. This might be true, it's just not the usual position taken by most &quot;scientific&quot; people. 

You say that creationism isn't scientific. Fair enough. But surely, you'd say that it's at least a possibility that it might be true, after all, proving a negative is pretty difficult. So if it is true, then it's not scientific?

Does a theory really have to propose &quot;useful&quot; experiments? I'm assuming that by useful, you mean possible? And what types of experiments, in the instance of creationism would you be willing to accept? 

If you take evolution, for example, you can say things like &quot;If our theory is correct, we should see certain similarities between these groups of animals, and differences between these similar animals that have been separated&quot; and so forth. Now maybe this isn't the type of experiments you are talking about, but if it is, the same things can be said of creationism. &quot;If our theory is correct, and an intelligent being has designed mankind, we should see some order and structure in humans.&quot; Alot of it depends on what your presuppositions are.

Scientists don't usually claim that their art is merely a matter to catalogue observations, but rather a tool for advancing both predictability and more importantly truths about the world around us. But really, there are a million ways to explain things, we can come up with a formula for gravitational pull, and atomic cohesion but the idea of gravity and its cause and of atomic cohesion have no explanation. They are just made up to patch holes that offer no &quot;useful experiment&quot; for their existence or truth. One could just as easily start with a god and say that god makes sure all those formulas work instead of this &quot;gravity&quot; thing.</description>
		<content:encoded><![CDATA[	<p>It seems to me that you&#8217;re putting yourself in the position of saying that truths don&#8217;t have to be scientific. This might be true, it&#8217;s just not the usual position taken by most &#8220;scientific&#8221; people. </p>
	<p>You say that creationism isn&#8217;t scientific. Fair enough. But surely, you&#8217;d say that it&#8217;s at least a possibility that it might be true, after all, proving a negative is pretty difficult. So if it is true, then it&#8217;s not scientific?</p>
	<p>Does a theory really have to propose &#8220;useful&#8221; experiments? I&#8217;m assuming that by useful, you mean possible? And what types of experiments, in the instance of creationism would you be willing to accept? </p>
	<p>If you take evolution, for example, you can say things like &#8220;If our theory is correct, we should see certain similarities between these groups of animals, and differences between these similar animals that have been separated&#8221; and so forth. Now maybe this isn&#8217;t the type of experiments you are talking about, but if it is, the same things can be said of creationism. &#8220;If our theory is correct, and an intelligent being has designed mankind, we should see some order and structure in humans.&#8221; Alot of it depends on what your presuppositions are.</p>
	<p>Scientists don&#8217;t usually claim that their art is merely a matter to catalogue observations, but rather a tool for advancing both predictability and more importantly truths about the world around us. But really, there are a million ways to explain things, we can come up with a formula for gravitational pull, and atomic cohesion but the idea of gravity and its cause and of atomic cohesion have no explanation. They are just made up to patch holes that offer no &#8220;useful experiment&#8221; for their existence or truth. One could just as easily start with a god and say that god makes sure all those formulas work instead of this &#8220;gravity&#8221; thing.
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: Bob</title>
		<link>http://jeffrey.yasskin.info/blog/archives/2005/02/09/haskell-vs-scheme/#comment-6343</link>
		<pubDate>Tue, 25 Jul 2006 18:31:20 -0700</pubDate>
		<guid>http://jeffrey.yasskin.info/blog/archives/2005/02/09/haskell-vs-scheme/#comment-6343</guid>
					<description>I don't think this comparison of guile's map1 to haskell's map is entirely fair, since in scheme I would just directly convert the purely functional map primitive into a tail recursive version without using set-car! and such.  

eg. using
&lt;pre&gt;(define (map f lst)
   (let loop ((lst lst)
              (res '()))
     (if (null? lst)
       (reverse res)
       (loop (cdr lst)
             (cons (f (car lst)) res)))))&lt;/pre&gt;

instead of:

&lt;pre&gt;(define (map f lst)
   (if (null? lst)
     lst
     (cons (f (car lst))
           (map f (cdr lst)))))&lt;/pre&gt;

I know it's non idiomatic, but I would also consider defining lazy-map in scheme, (I use a purely functional implementation of delay and force) and I would be open to using foldr to implement map, one of those would be preferable.

I would be interested to learn more about sexpr-like prefix syntax in haskell, maybe I am crazy but I really don't care for complex syntaxes.</description>
		<content:encoded><![CDATA[	<p>I don&#8217;t think this comparison of guile&#8217;s map1 to haskell&#8217;s map is entirely fair, since in scheme I would just directly convert the purely functional map primitive into a tail recursive version without using set-car! and such.  </p>
	<p>eg. using</p>
	<pre>(define (map f lst)
   (let loop ((lst lst)
              (res '()))
     (if (null? lst)
       (reverse res)
       (loop (cdr lst)
             (cons (f (car lst)) res)))))</pre>
	<p>instead of:</p>
	<pre>(define (map f lst)
   (if (null? lst)
     lst
     (cons (f (car lst))
           (map f (cdr lst)))))</pre>
	<p>I know it&#8217;s non idiomatic, but I would also consider defining lazy-map in scheme, (I use a purely functional implementation of delay and force) and I would be open to using foldr to implement map, one of those would be preferable.</p>
	<p>I would be interested to learn more about sexpr-like prefix syntax in haskell, maybe I am crazy but I really don&#8217;t care for complex syntaxes.
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: Lance Hunter</title>
		<link>http://jeffrey.yasskin.info/blog/archives/2006/03/19/remember-remember-the-fifth-of-november/#comment-2728</link>
		<pubDate>Mon, 20 Mar 2006 02:08:12 -0800</pubDate>
		<guid>http://jeffrey.yasskin.info/blog/archives/2006/03/19/remember-remember-the-fifth-of-november/#comment-2728</guid>
					<description>Have you had a chance to read the book? It's fantastic, and also goes further into the idea of anarchy.</description>
		<content:encoded><![CDATA[	<p>Have you had a chance to read the book? It&#8217;s fantastic, and also goes further into the idea of anarchy.
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: Carly</title>
		<link>http://jeffrey.yasskin.info/blog/archives/2006/03/19/remember-remember-the-fifth-of-november/#comment-2726</link>
		<pubDate>Sun, 19 Mar 2006 11:30:19 -0800</pubDate>
		<guid>http://jeffrey.yasskin.info/blog/archives/2006/03/19/remember-remember-the-fifth-of-november/#comment-2726</guid>
					<description>I'm hoping to go see it today!</description>
		<content:encoded><![CDATA[	<p>I&#8217;m hoping to go see it today!
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: Phoenix</title>
		<link>http://jeffrey.yasskin.info/blog/archives/2006/03/06/girlfriend-and-memage/#comment-2679</link>
		<pubDate>Mon, 06 Mar 2006 14:42:22 -0800</pubDate>
		<guid>http://jeffrey.yasskin.info/blog/archives/2006/03/06/girlfriend-and-memage/#comment-2679</guid>
					<description>congratulations !!!! ;) could not have happened to a better person </description>
		<content:encoded><![CDATA[	<p>congratulations !!!! <img src='http://jeffrey.yasskin.info/blog/wp-images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  could not have happened to a better person
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: Jeffrey Yasskin</title>
		<link>http://jeffrey.yasskin.info/blog/archives/2006/01/14/choice/#comment-2063</link>
		<pubDate>Sun, 15 Jan 2006 20:36:20 -0800</pubDate>
		<guid>http://jeffrey.yasskin.info/blog/archives/2006/01/14/choice/#comment-2063</guid>
					<description>heartandcomfort: By 1 and 3, do you mean that the father has the right to prevent the mother from getting an abortion? My first instinct would not be to call a fetus a parasite, and most pregnancies are not life-threatening (although you can't know that in the first couple months, which are the best time to abort). But I wouldn't be the one carrying it, so it's not my call.

I just disagree with 2. If one parent tricked or coerced the other, of course the trick-ee has no obligations. But if they just weren't careful, then the father should share the costs of only the cheapest reasonable method of &quot;dealing with&quot; the pregnancy. If the mother had no particular objections to abortions before, that's an abortion. Otherwise, it may be the full cost of the pregnancy and adoption process, but nothing more. The mother doesn't have the right to force a child on the father any more than he has the right to force one on her. (This is an amendment to my position in the post.)

4: We'll just have to rely on the rightness of our ideas. ;) More seriously, it is a problem, and I do plan to have kids. But if you're the worst kind of &quot;right-wing nut&quot; we get, I'm not too worried.</description>
		<content:encoded><![CDATA[	<p>heartandcomfort: By 1 and 3, do you mean that the father has the right to prevent the mother from getting an abortion? My first instinct would not be to call a fetus a parasite, and most pregnancies are not life-threatening (although you can&#8217;t know that in the first couple months, which are the best time to abort). But I wouldn&#8217;t be the one carrying it, so it&#8217;s not my call.</p>
	<p>I just disagree with 2. If one parent tricked or coerced the other, of course the trick-ee has no obligations. But if they just weren&#8217;t careful, then the father should share the costs of only the cheapest reasonable method of &#8220;dealing with&#8221; the pregnancy. If the mother had no particular objections to abortions before, that&#8217;s an abortion. Otherwise, it may be the full cost of the pregnancy and adoption process, but nothing more. The mother doesn&#8217;t have the right to force a child on the father any more than he has the right to force one on her. (This is an amendment to my position in the post.)</p>
	<p>4: We&#8217;ll just have to rely on the rightness of our ideas. <img src='http://jeffrey.yasskin.info/blog/wp-images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  More seriously, it is a problem, and I do plan to have kids. But if you&#8217;re the worst kind of &#8220;right-wing nut&#8221; we get, I&#8217;m not too worried.
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: Phoenix</title>
		<link>http://jeffrey.yasskin.info/blog/archives/2006/01/14/choice/#comment-2062</link>
		<pubDate>Sun, 15 Jan 2006 16:46:54 -0800</pubDate>
		<guid>http://jeffrey.yasskin.info/blog/archives/2006/01/14/choice/#comment-2062</guid>
					<description>(to heartandcomfort) in a super techincal sence a baby is a parasite.... and a woman's body reacts to it as such but - i do agree it is a wonderful experiance and a mother's love knows no bounds</description>
		<content:encoded><![CDATA[	<p>(to heartandcomfort) in a super techincal sence a baby is a parasite&#8230;. and a woman&#8217;s body reacts to it as such but - i do agree it is a wonderful experiance and a mother&#8217;s love knows no bounds
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: Phoenix</title>
		<link>http://jeffrey.yasskin.info/blog/archives/2006/01/14/choice/#comment-2060</link>
		<pubDate>Sun, 15 Jan 2006 16:29:18 -0800</pubDate>
		<guid>http://jeffrey.yasskin.info/blog/archives/2006/01/14/choice/#comment-2060</guid>
					<description>&quot; think the decision to pay child support is entirely up to Tom. If Tom didn’t want a kid, Sally has no right to force one on him. Of course, he should make this decision early, before Sally decides whether to abort, and if he decides not to help support the kid, it is simply no longer his child: he gets no parental rights. A promise to help support the kid should be legally and ethically binding even if he changes his mind later. But if Tom doesn’t want a child, and makes that known early, he is not a deadbeat dad.&quot;

here is the issue with that from a livingin Texas stand point .... if the mother does not disclose who the father is he is not responsible for child support(duh since we don't &quot;know&quot;who that is). how ever .... in this state she would not be eligible for any support for her or her child ever - which sucks ....the state will compel the mother to name Tom as the father so that he can pay child support and that way they thing thaty won't have to foot the bill.

i find that this is an idioic way of doing things - per haps the mother does not want the father in her life and that childs life, per haps as you suggest the father never wanted that baby in the 1st place  he really should not have be resonsible for the child . ther my 2 cents on the one issue =)</description>
		<content:encoded><![CDATA[	<p>&#8221; think the decision to pay child support is entirely up to Tom. If Tom didn’t want a kid, Sally has no right to force one on him. Of course, he should make this decision early, before Sally decides whether to abort, and if he decides not to help support the kid, it is simply no longer his child: he gets no parental rights. A promise to help support the kid should be legally and ethically binding even if he changes his mind later. But if Tom doesn’t want a child, and makes that known early, he is not a deadbeat dad.&#8221;</p>
	<p>here is the issue with that from a livingin Texas stand point &#8230;. if the mother does not disclose who the father is he is not responsible for child support(duh since we don&#8217;t &#8220;know&#8221;who that is). how ever &#8230;. in this state she would not be eligible for any support for her or her child ever - which sucks &#8230;.the state will compel the mother to name Tom as the father so that he can pay child support and that way they thing thaty won&#8217;t have to foot the bill.</p>
	<p>i find that this is an idioic way of doing things - per haps the mother does not want the father in her life and that childs life, per haps as you suggest the father never wanted that baby in the 1st place  he really should not have be resonsible for the child . ther my 2 cents on the one issue =)
</p>
]]></content:encoded>
				</item>
	<item>
		<title>by: heartandcomfort </title>
		<link>http://jeffrey.yasskin.info/blog/archives/2006/01/14/choice/#comment-2061</link>
		<pubDate>Sun, 15 Jan 2006 08:42:36 -0800</pubDate>
		<guid>http://jeffrey.yasskin.info/blog/archives/2006/01/14/choice/#comment-2061</guid>
					<description>&lt;strong&gt;Just had to comment on this one&lt;/strong&gt;

Ok so here is my two cents.

1. With modern medicine, few pregnancies are actually life threatening. In the US, about 1 out of 2500 mothers die in childbirth. If you want to talk about one of those cases, then ok. But what about the 2499 where it isn't life threatening? Also, in some cases a vaginal delivery is life threatenng but not a planned c-section. How does that change the scales?

2. If Tom didn't want a kid, and Sally went off the birth control w/o telling him, then I agree with you on the child support. I still think it would be the upright thing to do to be a Dad to the kid, because that would be in the child's best interest. However, if Tom knew that Sally wasn't on birthcontrol, or in the heat of the moment couldn't be bothered with protection, then he is equally responsible and should pony up. Basically I think the circumstances of the conception come in to play on this issue.

3. As a mother, it bothers me that anyone would think to call a baby (or fetus) a parasite. Being pregnant, giving birth, and raising a child are some of the most wonderful, emotionally charged things a woman can do. You can never understand the boundless love a parent has for a child until you become a parent yourself. Maybe that's why so many adoption laws give the biological parents 30 days to change their minds.

4. How do you think politics in the future (say a couple of generations from now) will change considering that:
a- people who consider children &quot;parasites&quot; aren't likely to have many
b- right-wing nuts like myself will probably reproduce at above the national average</description>
		<content:encoded><![CDATA[	<p><strong>Just had to comment on this one</strong></p>
	<p>Ok so here is my two cents.</p>
	<p>1. With modern medicine, few pregnancies are actually life threatening. In the US, about 1 out of 2500 mothers die in childbirth. If you want to talk about one of those cases, then ok. But what about the 2499 where it isn&#8217;t life threatening? Also, in some cases a vaginal delivery is life threatenng but not a planned c-section. How does that change the scales?</p>
	<p>2. If Tom didn&#8217;t want a kid, and Sally went off the birth control w/o telling him, then I agree with you on the child support. I still think it would be the upright thing to do to be a Dad to the kid, because that would be in the child&#8217;s best interest. However, if Tom knew that Sally wasn&#8217;t on birthcontrol, or in the heat of the moment couldn&#8217;t be bothered with protection, then he is equally responsible and should pony up. Basically I think the circumstances of the conception come in to play on this issue.</p>
	<p>3. As a mother, it bothers me that anyone would think to call a baby (or fetus) a parasite. Being pregnant, giving birth, and raising a child are some of the most wonderful, emotionally charged things a woman can do. You can never understand the boundless love a parent has for a child until you become a parent yourself. Maybe that&#8217;s why so many adoption laws give the biological parents 30 days to change their minds.</p>
	<p>4. How do you think politics in the future (say a couple of generations from now) will change considering that:<br />
a- people who consider children &#8220;parasites&#8221; aren&#8217;t likely to have many<br />
b- right-wing nuts like myself will probably reproduce at above the national average
</p>
]]></content:encoded>
				</item>
</channel>
</rss>
