Author Topic: I really *really* like the look of "FlowCode"! :-D  (Read 21988 times)

0 Members and 1 Guest are viewing this topic.

Offline IanB

  • Super Contributor
  • ***
  • Posts: 11858
  • Country: us
Re: I really *really* like the look of "FlowCode"! :-D
« Reply #25 on: May 15, 2012, 02:08:26 pm »
True, but math isn't something that really goes anywhere. You can see you need some math but beyond add/sub/mul/div students find it hard to care much about it.  It's needed for problems but it really doesn't do anything (except maybe PHD level math on cutting edge science).

Wow, that really fails to understand what mathematics is all about. Such a view is probably an outcome of the failed teaching of mathematics in schools.

Mathematics is about conceptual and logical thinking, about seeing patterns and connections in things, about using this to build up from simpler ideas to more complex ideas while keeping things straight in your mind. Mathematics is not merely about sums and algebra and solving problems, although such basic mental calisthenics are a natural part of a learning program.

It's really sad the the teaching of mathematics in schools is so often reduced to the routine teaching of simple rules and procedures. It does a great disservice to the children exposed to it by taking a wonderfully creative subject and reducing it to tedious boredom.
 

Online Psi

  • Super Contributor
  • ***
  • Posts: 9930
  • Country: nz
Re: I really *really* like the look of "FlowCode"! :-D
« Reply #26 on: May 15, 2012, 02:33:58 pm »
True, but math isn't something that really goes anywhere. You can see you need some math but beyond add/sub/mul/div students find it hard to care much about it.  It's needed for problems but it really doesn't do anything (except maybe PHD level math on cutting edge science).

Wow, that really fails to understand what mathematics is all about. Such a view is probably an outcome of the failed teaching of mathematics in schools.

I was describing it from the point of view of the student.
Doing school math for no other reason than getting an answer doesn't lead to anything. Doing programming leads to an output, something semi-tangible that you can see a use for.

It was a comment on BoredAtWork's statement that  "most people suck at simple math after they finished school"
They suck because doing math for no reason other than doing math has no value to them. For young people to see value in something it needs to have an output other than the learning itself.

And as you say. it should be about teaching conceptual and logical thinking.
« Last Edit: May 15, 2012, 02:36:20 pm by Psi »
Greek letter 'Psi' (not Pounds per Square Inch)
 

Offline free_electron

  • Super Contributor
  • ***
  • Posts: 8517
  • Country: us
    • SiliconValleyGarage
Re: I really *really* like the look of "FlowCode"! :-D
« Reply #27 on: May 15, 2012, 03:11:27 pm »
but then SW pros don't need comments because the source is self commenting, right.
Real programmers write hex straight into mask-rom. all this namby pamby stuff with high level languages , compilers , flash , retry , breakpoints debuggers is for beginners. Real programmers know the whole instruction set in its hexadecimal form ( opcodes are for 'intermediate programmers' ) and write flawless, elegant code that you can directly put into mask rom. It will work first time right. Anybody that does it different is a 'wanna-be' (that includes myself ).

@steve_w : I sometimes write 'critical' code and there is a whole bunch of rules.. no dynamic memory allocation, no function pointers . We can use 'C' but a whole bunch of constructs are 'illegal'. We have a pre-processor (a kind of linter) that goes over the code and blocks compilation if we do anything deemed 'potentially unsafe'. code is profiled the snot out of it. every pathway is walked to make sure the code can complete its task, barring severe hardware problems, in the alotted amount of time.

I don't know about flowcode and i'm not going to comment on it but , from what i have seen : it looks like a graphical wrapper around standard 'c'.
In essence you drop down a block , define in and out parameters , doubleclick it and fill in the code. This i kind of like. In a modern day and age it is stupid that you have to define a function prototype in the .h file , then type exaclty the same thing again in another file. If you need to modify the parameters , you need to go back in the .h and tweak the prototype .. there has to be an easier way. These are the boring ridiculous 'typing jobs' that can easily be replaced by a smart IDE. i think that is what flowcode attempts to do. Take the tedious, boring, time consuming , error prone , easily overlooked things away so you can focus on writing the functional part of the code.

Why do we even need things like forward declaration anymore ? just make the compiler multipass. first pass collects all the functions and compiles them. whenever there is a call to an , as yet unknown , function : leave a marker behind. once the first pass is done you now have a map. go back and replace the markers with the final function address... this is a 'mechanical' job that can perfectly be done by a compiler.
« Last Edit: May 15, 2012, 03:32:08 pm by free_electron »
Professional Electron Wrangler.
Any comments, or points of view expressed, are my own and not endorsed , induced or compensated by my employer(s).
 

Offline FreeThinker

  • Frequent Contributor
  • **
  • Posts: 791
  • Country: england
  • Truth through Thought
Re: I really *really* like the look of "FlowCode"! :-D
« Reply #28 on: May 15, 2012, 04:25:31 pm »
but then SW pros don't need comments because the source is self commenting, right.
Real programmers write hex straight into mask-rom. all this namby pamby stuff with high level languages , compilers , flash , retry , breakpoints debuggers is for beginners. Real programmers know the whole instruction set in its hexadecimal form ( opcodes are for 'intermediate programmers' ) and write flawless, elegant code that you can directly put into mask rom. It will work first time right. Anybody that does it different is a 'wanna-be' (that includes myself ).

@steve_w : I sometimes write 'critical' code and there is a whole bunch of rules.. no dynamic memory allocation, no function pointers . We can use 'C' but a whole bunch of constructs are 'illegal'. We have a pre-processor (a kind of linter) that goes over the code and blocks compilation if we do anything deemed 'potentially unsafe'. code is profiled the snot out of it. every pathway is walked to make sure the code can complete its task, barring severe hardware problems, in the alotted amount of time.

I don't know about flowcode and i'm not going to comment on it but , from what i have seen : it looks like a graphical wrapper around standard 'c'.
In essence you drop down a block , define in and out parameters , doubleclick it and fill in the code. This i kind of like. In a modern day and age it is stupid that you have to define a function prototype in the .h file , then type exaclty the same thing again in another file. If you need to modify the parameters , you need to go back in the .h and tweak the prototype .. there has to be an easier way. These are the boring ridiculous 'typing jobs' that can easily be replaced by a smart IDE. i think that is what flowcode attempts to do. Take the tedious, boring, time consuming , error prone , easily overlooked things away so you can focus on writing the functional part of the code.

Why do we even need things like forward declaration anymore ? just make the compiler multipass. first pass collects all the functions and compiles them. whenever there is a call to an , as yet unknown , function : leave a marker behind. once the first pass is done you now have a map. go back and replace the markers with the final function address... this is a 'mechanical' job that can perfectly be done by a compiler.
After playing with it for a day or so I can confirm that it is indeed simply a wrapper around a c complier. You can add code and (I think) even alter the predefines macros so you can drill down quite deep to the core. You can down load a crippleware version from the website to play with.
Machines were mice and Men were lions once upon a time, but now that it's the opposite it's twice upon a time.
MOONDOG
 

Offline Bored@Work

  • Super Contributor
  • ***
  • Posts: 3932
  • Country: 00
Re: I really *really* like the look of "FlowCode"! :-D
« Reply #29 on: May 15, 2012, 05:47:10 pm »
Real programmers write hex straight into mask-rom.

Bullshit. Real programmers write binary directly into mask ROMs by bending the path of the photons in the photolitographic phase of ROM creation with bare hands. Non of that modern hex stuff. Bah.
I delete PMs unread. If you have something to say, say it in public.
For all else: Profile->[Modify Profile]Buddies/Ignore List->Edit Ignore List
 

Offline Mechatrommer

  • Super Contributor
  • ***
  • Posts: 11622
  • Country: my
  • reassessing directives...
Re: I really *really* like the look of "FlowCode"! :-D
« Reply #30 on: May 15, 2012, 05:57:06 pm »
but then SW pros don't need comments because the source is self commenting, right.
SW pros do need comments, alot of it. code monkeys dont.

Real programmers write hex straight into mask-rom. all this namby pamby stuff with high level languages , compilers , flash , retry , breakpoints debuggers is for beginners. Real programmers know the whole instruction set in its hexadecimal form ( opcodes are for 'intermediate programmers' ) and write flawless, elegant code that you can directly put into mask rom. It will work first time right. Anybody that does it different is a 'wanna-be' (that includes myself ).
with your postulate, i believe everybody is wannabe including the "Real programmers write hex straight into mask-rom". the only one i know that doesnt make mistake and "work first time right" is God. pls name "human" if you know any. i'm positive it wont be "Bill" or "Steve"
Nature: Evolution and the Illusion of Randomness (Stephen L. Talbott): Its now indisputable that... organisms “expertise” contextualizes its genome, and its nonsense to say that these powers are under the control of the genome being contextualized - Barbara McClintock
 

Offline SeanB

  • Super Contributor
  • ***
  • Posts: 16276
  • Country: za
Re: I really *really* like the look of "FlowCode"! :-D
« Reply #31 on: May 15, 2012, 06:15:51 pm »
Real programmers write hex straight into mask-rom.

Bullshit. Real programmers write binary directly into mask ROMs by bending the path of the photons in the photolitographic phase of ROM creation with bare hands. Non of that modern hex stuff. Bah.

You write the bits in by plugging a fusible link prom into a breadboard, connecting a power supply and blow bits using wire links to set up the address and data then briefly powering the prom to blow the fuses. Followed by reading with a voltmeter after setting the power supply back down to 5V from the programming voltage of 6V. Other option was wiring a core memory with sense wiring to make a read only core.
 

Offline Mechatrommer

  • Super Contributor
  • ***
  • Posts: 11622
  • Country: my
  • reassessing directives...
Re: I really *really* like the look of "FlowCode"! :-D
« Reply #32 on: May 15, 2012, 06:32:05 pm »
real programmers only need a punch and hardpaper card, no electrons and nics and inductism is involved.
Nature: Evolution and the Illusion of Randomness (Stephen L. Talbott): Its now indisputable that... organisms “expertise” contextualizes its genome, and its nonsense to say that these powers are under the control of the genome being contextualized - Barbara McClintock
 

Offline A Hellene

  • Frequent Contributor
  • **
  • Posts: 602
  • Country: gr
Re: I really *really* like the look of "FlowCode"! :-D
« Reply #33 on: May 15, 2012, 07:13:30 pm »
Real programmers write hex straight into mask-rom. all this namby pamby stuff with high level languages , compilers , flash , retry , breakpoints debuggers is for beginners. Real programmers know the whole instruction set in its hexadecimal form ( opcodes are for 'intermediate programmers' ) and write flawless, elegant code that you can directly put into mask rom. It will work first time right. Anybody that does it different is a 'wanna-be' (that includes myself ).
with your postulate, i believe everybody is wannabe including the "Real programmers write hex straight into mask-rom". the only one i know that doesnt make mistake and "work first time right" is God. pls name "human" if you know any. i'm positive it wont be "Bill" or "Steve"

Well, without claiming any titles --any titles at all-- I have recently done that!

Specifically, I patched the DS1000EUpdate.RGL v2.06 (the Rigol firmware update binary file), replacing a code chunk with a custom one, inspired by Krater's Homebrew work on the firmware v2.05.

What I did, was to:
1. Spot the chunk of code to be replaced in the disassembly listing of the image loaded into the SDRAM system space,
2. Write in assembly the piece of code I needed to replace the original one with,
3. Convert the instructions to op-codes,
4. Manually calculate the source and the target function and buffer offsets,
5. Write down the corrected op-codes, without invoking any Blackfin assemblers or linkers,
6. Calculate the offsets of the new chunk of code within the executable image file (the "DS1000EUpdate.RGL") and replace the original code chunk,
7. Confirm in disassembler that the new image works as expected,
8. Load the new firmware and, finally,
9. Successfully test it!

How much time did all this take for me to do it? Almost two working days (a day and a half, actually)!

Why I did I choose that path? Because of the minimal time it required from me to do it, by only using the Blackfin documentation (the ADSP Instruction Set, the Hardware and the Programming references and the Boot-ROM Engineer Note), without having to get myself to learn the Analog Devices VisualDSP platform.

So, yes, there certainly are many ways for a job to be done!


-George
« Last Edit: May 15, 2012, 07:47:52 pm by A Hellene »
Hi! This is George; and I am three and a half years old!
(This was one of my latest realisations, now in my early fifties!...)
 

Offline Mechatrommer

  • Super Contributor
  • ***
  • Posts: 11622
  • Country: my
  • reassessing directives...
Re: I really *really* like the look of "FlowCode"! :-D
« Reply #34 on: May 15, 2012, 07:59:24 pm »
thats called hacking, not programming. and worst, copycatting with luck :P
or are you claiming you are better than rigol programmer who built the "buggy FW" from scratch?
Nature: Evolution and the Illusion of Randomness (Stephen L. Talbott): Its now indisputable that... organisms “expertise” contextualizes its genome, and its nonsense to say that these powers are under the control of the genome being contextualized - Barbara McClintock
 

Offline A Hellene

  • Frequent Contributor
  • **
  • Posts: 602
  • Country: gr
Re: I really *really* like the look of "FlowCode"! :-D
« Reply #35 on: May 15, 2012, 08:13:42 pm »
You can call it anyway you like; I've already stated that I do not claim any titles for that!

What I claim is that the modification described above was built from scratch, it was applied directly to the op-code level with the aid of a calculator (without using any fancy GUIs or any other programming band-aids), it was really fast to be done, and it worked right from the first time.

Oh! And that I am human! :P


-George
« Last Edit: May 15, 2012, 08:17:49 pm by A Hellene »
Hi! This is George; and I am three and a half years old!
(This was one of my latest realisations, now in my early fifties!...)
 

Offline Kremmen

  • Super Contributor
  • ***
  • Posts: 1289
  • Country: fi
Re: I really *really* like the look of "FlowCode"! :-D
« Reply #36 on: May 15, 2012, 09:55:09 pm »
but then SW pros don't need comments because the source is self commenting, right.
Real programmers write hex straight into mask-rom. all this namby pamby stuff with high level languages , compilers , flash , retry , breakpoints debuggers is for beginners. Real programmers know the whole instruction set in its hexadecimal form ( opcodes are for 'intermediate programmers' ) and write flawless, elegant code that you can directly put into mask rom. It will work first time right. Anybody that does it different is a 'wanna-be' (that includes myself ).
Been there, done it. Used to be i knew the 8085 opcodes in hex almost all by heart. Needed them too as the only ISIS-2 development systems were expensive, big and definitely did not leave the office. All field fixes were done directly to 27xxx UVEEPROMS using a manual programmer. I don't miss those days.

but then SW pros don't need comments because the source is self commenting, right.
SW pros do need comments, alot of it. code monkeys dont.
That was sarcasm. I know for the amerikans the word "irony" means something with lots of iron in it. You come from elsewhere so you should do better  ;D. As a rule, I have my code monkeys read "Code Complete", in my opinion one of the best books about practical level code construction. After they assimilate the book, they are not monkeys any more. They also know how to annotate the code in a meaningful way.

While on the topic of Real Programmers: The Story of Mel http://www.pbm.com/~lindahl/mel.html.
Nothing sings like a kilovolt.
Dr W. Bishop
 

Offline free_electron

  • Super Contributor
  • ***
  • Posts: 8517
  • Country: us
    • SiliconValleyGarage
Re: I really *really* like the look of "FlowCode"! :-D
« Reply #37 on: May 15, 2012, 10:10:23 pm »
yay ! an isis-2 ! the blue one or the more advanced white one with built in terminal ?
i had one of those with the S100 blade with one of those rainbow flatcables ( twisted pair version ) and a real ICE-51 box at the other end.
Later we also had those for the i960 ... now THAT was a processor... when everybody was still mumbling about 'risc is the future' that thing already ate anything our there...

Isis.. and iRMX .. those were the days. Compiling PL/M code. iRMX is one of the most bulletproof operating systems out there.

Best 'error trap' i have ever seen on an iRMX system:

'Beep' .... in the console status line appears a little text : Parity error in RAM ,Pages 800 to 816 ( or something along those lines ). Contents redirected. Autocontine.

that was it. just a little message that part of the computers live RAM had died , it had relocated these pages , reloaded the data and went on about its business.

The bloody damn thing just continued running as if nothing had happened ! it just had one of its ram chips on the motherboard fail.. completely ( the ram chip was dead ) the iRMX kernel detected this , located what was stored there , retrieved it from disk , allocated memory somewhere else for this , changed the runtime on the fly to use the updated addresses and marked these ram blocks int he memory manager as 'bad' so it would not go there. The whole machine kept on running for weeks without a single failure... then it was time for a scheduled maintenance. we took it down . located the bad memory ( They used 42256 chips. This was an old 80386 pc board from Radisys). we pulled the chips out of the sockets , put some new ones in , booted in manager mode , ran the memory test to verify the ram was now good and iRMX reenabled those pages... and happily thrundled off doing its business..

Any operating system that can pull something like that off is a real operating system. Here you have this catastrophical hardware failure and it just relocates code , puts a little message on the console , marks the offending hardware as 'do not use' and keeps on running ...
I'd like to see you pull a stunt like that on anything else ...

Professional Electron Wrangler.
Any comments, or points of view expressed, are my own and not endorsed , induced or compensated by my employer(s).
 

Offline free_electron

  • Super Contributor
  • ***
  • Posts: 8517
  • Country: us
    • SiliconValleyGarage
Re: I really *really* like the look of "FlowCode"! :-D
« Reply #38 on: May 15, 2012, 10:35:03 pm »
?? what ego battle ? i was talking about iRMX and the isis systems.

Has nothing to do with what i did .. i couldn't begin to make such a thing ...
There's plenty of people that have done waaaaay more interesting things in life than the little bit of dabbling i have done ... Like Gary Kildall when he made the PL/M language and wrote CP/M....
Professional Electron Wrangler.
Any comments, or points of view expressed, are my own and not endorsed , induced or compensated by my employer(s).
 

Offline steve_w

  • Regular Contributor
  • *
  • Posts: 190
  • Country: au
Re: I really *really* like the look of "FlowCode"! :-D
« Reply #39 on: May 15, 2012, 11:03:10 pm »
Free_electron

The point I was making was that code generators dont allow the inspection that you describes, you dont know how the code is implemented.  If you write it yourself, then it can be peer reviewed and walkthroughed and checked for conformance to standards.  If you have a flow chart and an executable and a code generator what do you inspect?

regards

SW
So long and thanks for all the fish
 

Offline EEVblog

  • Administrator
  • *****
  • Posts: 37730
  • Country: au
    • EEVblog
Re: I really *really* like the look of "FlowCode"! :-D
« Reply #40 on: May 15, 2012, 11:15:10 pm »
After playing with it for a day or so I can confirm that it is indeed simply a wrapper around a c complier. You can add code and (I think) even alter the predefines macros so you can drill down quite deep to the core. You can down load a crippleware version from the website to play with.

I've been told by a user that this is indeed the case. You can use inline C any time you want.

Dave.
 

Offline A Hellene

  • Frequent Contributor
  • **
  • Posts: 602
  • Country: gr
Re: I really *really* like the look of "FlowCode"! :-D
« Reply #41 on: May 15, 2012, 11:54:30 pm »
... and so the ego battle has started; "I've done something to upstage YOU". Bah! ;-)
Well, in the case of that "ego-battle" statement being an aftereffect of my messages, I just stated that no fancy software would be really needed if someone really knew what they were doing.

Now, my previous message was a tease to our co-EEVBlogger who asked if there was any known human being to be programming straight in hex, since he wrote that "only God acts without making any mistakes." I also stressed that I did not claim any titles for what I did, nor am I the Tetragrammaton (= YHWH: "he who is") because I am unreligious (meaning that I am indifferent to religions and I do not recognise any religious dogmas as authorities in my life, as we had already discussed that in the past).


-George
Hi! This is George; and I am three and a half years old!
(This was one of my latest realisations, now in my early fifties!...)
 

Offline free_electron

  • Super Contributor
  • ***
  • Posts: 8517
  • Country: us
    • SiliconValleyGarage
Re: I really *really* like the look of "FlowCode"! :-D
« Reply #42 on: May 16, 2012, 12:09:48 am »
Free_electron

The point I was making was that code generators dont allow the inspection that you describes, you dont know how the code is implemented.  If you write it yourself, then it can be peer reviewed and walkthroughed and checked for conformance to standards.  If you have a flow chart and an executable and a code generator what do you inspect?

regards

SW
as i understand it this is only a wrapper around a bunch of c libraries and your code ( which is also c). if they provided the source to the libraries ... you are set.
Professional Electron Wrangler.
Any comments, or points of view expressed, are my own and not endorsed , induced or compensated by my employer(s).
 

Offline HackedFridgeMagnet

  • Super Contributor
  • ***
  • Posts: 2028
  • Country: au
Re: I really *really* like the look of "FlowCode"! :-D
« Reply #43 on: May 16, 2012, 12:28:28 am »
I am not one for Nationalistic flame wars but I LOL when I read.
Quote
I know for the amerikans the word "irony" means something with lots of iron in it.
 

Quote
As a rule, I have my code monkeys read "Code Complete"
Great book. Handed to me when I was turned into a code monkey, that and the directive that I had to learn to touch type, so I could type out all those long method names.
 

Offline Mechatrommer

  • Super Contributor
  • ***
  • Posts: 11622
  • Country: my
  • reassessing directives...
Re: I really *really* like the look of "FlowCode"! :-D
« Reply #44 on: May 16, 2012, 01:36:39 am »
Quote
Now, my previous message was a tease to our co-EEVBlogger who asked if there was any known human being to be programming straight in hex
i believe we've been talking different terminology here. where for me, programming is... 'at some level of intelligence' code execution/creation. not 1+1=yada :P whatever it is. edit and by 'at some level of intelligence' i mean something that cannot be done in 2-3 days time, no matter how correctly and hardly you do it. YMMV.

Quote
I dare say: he/she/it, if existing,  screwed up really bad when creating the human species
its by design! whether you want to accept it or not, your choice :) thats the way how it works, god's choice.

btw a food for thought. if you see one ant raping or killing the other ant what will you do? flat it on the floor with your thumb? excessively off-topic :P
« Last Edit: May 16, 2012, 01:39:45 am by Mechatrommer »
Nature: Evolution and the Illusion of Randomness (Stephen L. Talbott): Its now indisputable that... organisms “expertise” contextualizes its genome, and its nonsense to say that these powers are under the control of the genome being contextualized - Barbara McClintock
 

Offline Mechatrommer

  • Super Contributor
  • ***
  • Posts: 11622
  • Country: my
  • reassessing directives...
Re: I really *really* like the look of "FlowCode"! :-D
« Reply #45 on: May 16, 2012, 02:05:46 am »
btw. the hardest part that recently came across in my life is 'programming silicons and electrons' the way we want them to be. i never faced such difficulty in software domain.
Nature: Evolution and the Illusion of Randomness (Stephen L. Talbott): Its now indisputable that... organisms “expertise” contextualizes its genome, and its nonsense to say that these powers are under the control of the genome being contextualized - Barbara McClintock
 

Offline Mechatrommer

  • Super Contributor
  • ***
  • Posts: 11622
  • Country: my
  • reassessing directives...
Re: I really *really* like the look of "FlowCode"! :-D
« Reply #46 on: May 16, 2012, 03:33:01 am »
i tried reply #57, but as usual its unstopable. so.... just following the 'flow' or the 'code' ;) and i didnt take any offense, i'm... 'neutral' 8) and its not night around here, infact 30 minutes to noon :P
« Last Edit: May 16, 2012, 03:34:42 am by Mechatrommer »
Nature: Evolution and the Illusion of Randomness (Stephen L. Talbott): Its now indisputable that... organisms “expertise” contextualizes its genome, and its nonsense to say that these powers are under the control of the genome being contextualized - Barbara McClintock
 

Offline Mechatrommer

  • Super Contributor
  • ***
  • Posts: 11622
  • Country: my
  • reassessing directives...
Re: I really *really* like the look of "FlowCode"! :-D
« Reply #47 on: May 16, 2012, 03:38:25 am »
maybe later. i've no intention going SW right now. i'm stucked at the analog :( may give it a try next time. thanks for sharing the info, it maybe the "future"!
Nature: Evolution and the Illusion of Randomness (Stephen L. Talbott): Its now indisputable that... organisms “expertise” contextualizes its genome, and its nonsense to say that these powers are under the control of the genome being contextualized - Barbara McClintock
 

Offline Mechatrommer

  • Super Contributor
  • ***
  • Posts: 11622
  • Country: my
  • reassessing directives...
Re: I really *really* like the look of "FlowCode"! :-D
« Reply #48 on: May 16, 2012, 03:54:44 am »
Quote
and more time with PHYSICAL hardware
as i get older i prefer the easier. i partly understand why people prefer the premade chip instead of discrete transistors. maybe this is one time only i delve so deep into the analog for an exercise. after this maybe i'll just get back to arduino and code somthing fun. enjoy life right? before we embrace 'nonexistency' :P
Nature: Evolution and the Illusion of Randomness (Stephen L. Talbott): Its now indisputable that... organisms “expertise” contextualizes its genome, and its nonsense to say that these powers are under the control of the genome being contextualized - Barbara McClintock
 


Share me

Digg  Facebook  SlashDot  Delicious  Technorati  Twitter  Google  Yahoo
Smf