Earlier quoted context omitted.
> We have no idea what happens in our own code That's an overstatement. Sure code can be very complex but we actually can see exactly what's going on whenever we really want to. It's just that we cannot see what's going on with all the code all the time.
code can be very simple, and we don't always know what it will do. Simple example: can you tell me if this snippet of (python) code will ever terminate or not? x=0.5 while x 0.7: x=3.59*x*(1-x) print x ... and what if the 3.59 was replaced by a different number - maybe 3.60 ? or 3.84 ?
New organisms have been formed using the first ever 6-letter genetic code
51–60 of 152 posts
Re: New organisms have been formed using the first ever 6-letter genetic code
#52Star Trek depicted one of the scarier applications of such a technology: There, The Jem'Hadaar are a genetically engineered race of warriors controlled by the Dominion, who exert power over them by being the sole provider of a substance (Ketracel-White) that they need in order to survive: https://en.wikipedia.org/wiki/Dominion_(Star_Trek) http://memory-alpha.wikia.com/wiki/Ketracel-white If my reading of the paper is…
It's good as long self-termination is a nice-to-have feature. If you REALLY want them to self-terminate but you found out that they mutated and can now synthesize X & Y, you're in trouble. Genetically modified organisms are a bit scary, but genetically modified organisms that replicate autonomously are more than a bit scary. As programmers - a profession that managed to spread Shellshock, the dumbest imaginable backd…
Re: New organisms have been formed using the first ever 6-letter genetic code
#53Earlier quoted context omitted.
code can be very simple, and we don't always know what it will do. Simple example: can you tell me if this snippet of (python) code will ever terminate or not? x=0.5 while x 0.7: x=3.59*x*(1-x) print x ... and what if the 3.59 was replaced by a different number - maybe 3.60 ? or 3.84 ?
It will eventually terminate, if only because the machine it is running on will eventually be shut down.
The original poster seems to imply that knowing the code means that you can know the behaviour of the system; I do not think that is the case, and my simple (chaotic) example tries to demonstrate this.
Re: New organisms have been formed using the first ever 6-letter genetic code
#54Earlier quoted context omitted.
It will eventually terminate, if only because the machine it is running on will eventually be shut down.
OK, well we can always say that the heat-death of the universe renders all problems irrelevent, but it's a bit of a cheat in my opinion. The original poster seems to imply that knowing the code means that you can know the behaviour of the system; I do not think that is the case, and my simple (chaotic) example tries to demonstrate this.
Re: New organisms have been formed using the first ever 6-letter genetic code
#55"create organisms with wholly unnatural attributes and traits not found elsewhere in nature" I'd argue that this shouldn't add anything categorically new, just like switching from 32 to 64 bit programs doesn't change the world.
This is less like 32bit to 64bit and more like moving from binary to trinary logic.
Re: New organisms have been formed using the first ever 6-letter genetic code
#56Earlier quoted context omitted.
It will eventually terminate, if only because the machine it is running on will eventually be shut down.
OK, well we can always say that the heat-death of the universe renders all problems irrelevent, but it's a bit of a cheat in my opinion. The original poster seems to imply that knowing the code means that you can know the behaviour of the system; I do not think that is the case, and my simple (chaotic) example tries to demonstrate this.
Re: New organisms have been formed using the first ever 6-letter genetic code
#57Re: New organisms have been formed using the first ever 6-letter genetic code
#58Re: New organisms have been formed using the first ever 6-letter genetic code
#59Star Trek depicted one of the scarier applications of such a technology: There, The Jem'Hadaar are a genetically engineered race of warriors controlled by the Dominion, who exert power over them by being the sole provider of a substance (Ketracel-White) that they need in order to survive: https://en.wikipedia.org/wiki/Dominion_(Star_Trek) http://memory-alpha.wikia.com/wiki/Ketracel-white If my reading of the paper is…
It's good as long self-termination is a nice-to-have feature. If you REALLY want them to self-terminate but you found out that they mutated and can now synthesize X & Y, you're in trouble. Genetically modified organisms are a bit scary, but genetically modified organisms that replicate autonomously are more than a bit scary. As programmers - a profession that managed to spread Shellshock, the dumbest imaginable backd…
Also, if they get powerful enough that they can take over your synthesis facility...
Re: New organisms have been formed using the first ever 6-letter genetic code
#60Can the organism replicate the XY pairs during DNA replication (and pass it on to divided cells)? I haven't seen that mentioned, only that it "holds onto it for its entire lifespan" which is not clear to me. There's also nothing about the interaction of these pairs with existing mechanisms, like transcription (DNA-->RNA) and translation (RNA-->protein). Could the new new pair increase the space of aminoacids from whi…