Search
1000 results for “drcode”
-
#Fadec is an opcode decoder.
Fadec takes in x86 or x86-64 machine code and decodes it into assembly. Decoding instructions is very simple, and is performed by indexing a very fast and reasonably sized (24 kiB) lookup table. Fadec can also encode (#Faenc) machine code by building instructions from macros.
Website 🔗️: https://github.com/aengelke/fadec
-
Keyboard Matrix Decode
I found an old keyboard, a “KSP970” which is a sub £20 keyboard with full size (non touch sensitive) keys, that was being thrown out as battery acid had corroded away most of the circuit board inside, but the keyboard itself was still intact so I thought it would make an interesting project to attempt to read the keyboard.
- In the second part, I add MIDI.
These are the key Arduino tutorials for the main concepts used in this project:
If you are new to Arduino, see the Getting Started pages.
Parts list
- Arduino Nano
- 16x LEDs (optional)
- 8x 220Ω resistors (to go with the LEDs – also optional)
- Breadboard and jumper wires
- Scrap keyboard!
The Circuit
Most keyboards and keypads use a “matrix” method of decoding keypresses. I won’t go into the details here, but the Open Music Labs tutorial has an excellent description of the concept, but the general principle is that the keys are decoded as “rows” and “columns” even though on a music keyboard they are naturally sequential. If you are lucky, as I was, the keyboard will have two sets of connecting wires (see the two silvered ribbon cables in the photo) – one for “rows” and one for “columns” which can be linked up to your Arduino’s IO pins.
The trick is to work out which keys are linked to which pins, which is where this simple circuit comes in.
I have a 61 note keyboard and each of the ribbons is 8 wires wide. I can see from the underside of the keyboard pcb that each key’s switch is linked via a diode to the “row” pins. I’ve only shown one key circuit in the above, but the Open Music Lab’s tutorial shows the “matrix” in more detail and the same circuit seems to be used here.
One simplification for me though was that I have several of these really cheap “8 bit” LED “bars” which make decoding the key matrix very easy – they contain 8 LEDs and associated resistors in a breadboard-friendly format.
My final test circuit looks like this:
I feed power into the two breadboard rails (5V) and then can work out which keys light up the second set of LEDs and thus map keys to combinations of “rows” and “columns”. Note, in the above photo I’ve applied power to all of the “rows”, but in practice you’d only want power on one at a time to see which keys light up the other LEDs.
Once I knew how the keys were decoded (it turned out pretty simple and logical) then I could hook it up to an Arduino and see if I could detect keypresses.
I used a Nano which means I could relatively simply attach the two 8-way connectors to the two sides of the board, with one proviso. I am using the analog ports as digital IO pins, which works fine for A0 to A5, but you can’t use A6 and A7 in that way so I had to re-route the last two pins over to D11 and D12. As I had a new cheap Nano to use, I was able to desolder the pins on A6 and A7 leaving them unconnected from the 8-way headers.
The Code
Once the Nano was involved, I was able to install the Keypad library for the Arduino (search for Keypad and find the library simply called “Keypad” by Mark Stanley) and modify the MultiKey demo sketch as follows:
- I need a 8×8 matrix decoding, so the array at the start of the sketch needs updating.
- As the keys on my keyboard decoded sequentially in a straightforward manner, I didn’t have any complicated reordering of the keys to be done to match up with Arduino pin numbers.
- I want to eventually output MIDI note numbers, so I changed the characters in the array to MIDI note numbers.
- On printing, I forced the code to print the MIDI note number rather than the letter names.
My first try had the rows and columns the wrong way round and yielding nothing. The mapping I eventually used was as follows.
const byte ROWS = 8;const byte COLS = 8;char keys[ROWS][COLS] = {{36,37,38,39,40,41,42,43},{44,45,46,47,48,49,50,51},{52,53,54,55,56,57,58,59},{60,61,62,63,64,65,66,67},{68,69,70,71,72,73,74,75},{76,77,78,79,80,81,82,83},{84,85,86,87,88,89,90,91},{92,93,94,95,96,97,98,99}};byte rowPins[ROWS] = {A0,A1,A2,A3,A4,A5,11,12}; //connect to the row pinouts of the kpdbyte colPins[COLS] = {2,3,4,5,6,7,8,9}; //connect to the column pinouts of the kpdThis seems to work very nicely. You can see it hooked up and the serial output from playing a “chord” below.
Closing Thoughts
Decoding the key presses ended up being relatively simple for this keyboard which was a bonus. Next I will add the MIDI library and get it actually outputting MIDI messages.
I’ve had a play with the tone generating module, just to get an idea for what it can do (I might write that up one day too), but it isn’t really salvageable.
However the power supply and built-in amplifier and speakers seem fine so it would be really interesting to use this as a housing for some of my other Arduino music projects.
Kevin
#arduinoNano #keyboardMatrix #keyboardScanning #keypad #midi
-
Keyboard Matrix Decode
I found an old keyboard, a “KSP970” which is a sub £20 keyboard with full size (non touch sensitive) keys, that was being thrown out as battery acid had corroded away most of the circuit board inside, but the keyboard itself was still intact so I thought it would make an interesting project to attempt to read the keyboard.
- In the second part, I add MIDI.
These are the key Arduino tutorials for the main concepts used in this project:
If you are new to Arduino, see the Getting Started pages.
Parts list
- Arduino Nano
- 16x LEDs (optional)
- 8x 220Ω resistors (to go with the LEDs – also optional)
- Breadboard and jumper wires
- Scrap keyboard!
The Circuit
Most keyboards and keypads use a “matrix” method of decoding keypresses. I won’t go into the details here, but the Open Music Labs tutorial has an excellent description of the concept, but the general principle is that the keys are decoded as “rows” and “columns” even though on a music keyboard they are naturally sequential. If you are lucky, as I was, the keyboard will have two sets of connecting wires (see the two silvered ribbon cables in the photo) – one for “rows” and one for “columns” which can be linked up to your Arduino’s IO pins.
The trick is to work out which keys are linked to which pins, which is where this simple circuit comes in.
I have a 61 note keyboard and each of the ribbons is 8 wires wide. I can see from the underside of the keyboard pcb that each key’s switch is linked via a diode to the “row” pins. I’ve only shown one key circuit in the above, but the Open Music Lab’s tutorial shows the “matrix” in more detail and the same circuit seems to be used here.
One simplification for me though was that I have several of these really cheap “8 bit” LED “bars” which make decoding the key matrix very easy – they contain 8 LEDs and associated resistors in a breadboard-friendly format.
My final test circuit looks like this:
I feed power into the two breadboard rails (5V) and then can work out which keys light up the second set of LEDs and thus map keys to combinations of “rows” and “columns”. Note, in the above photo I’ve applied power to all of the “rows”, but in practice you’d only want power on one at a time to see which keys light up the other LEDs.
Once I knew how the keys were decoded (it turned out pretty simple and logical) then I could hook it up to an Arduino and see if I could detect keypresses.
I used a Nano which means I could relatively simply attach the two 8-way connectors to the two sides of the board, with one proviso. I am using the analog ports as digital IO pins, which works fine for A0 to A5, but you can’t use A6 and A7 in that way so I had to re-route the last two pins over to D11 and D12. As I had a new cheap Nano to use, I was able to desolder the pins on A6 and A7 leaving them unconnected from the 8-way headers.
The Code
Once the Nano was involved, I was able to install the Keypad library for the Arduino (search for Keypad and find the library simply called “Keypad” by Mark Stanley) and modify the MultiKey demo sketch as follows:
- I need a 8×8 matrix decoding, so the array at the start of the sketch needs updating.
- As the keys on my keyboard decoded sequentially in a straightforward manner, I didn’t have any complicated reordering of the keys to be done to match up with Arduino pin numbers.
- I want to eventually output MIDI note numbers, so I changed the characters in the array to MIDI note numbers.
- On printing, I forced the code to print the MIDI note number rather than the letter names.
My first try had the rows and columns the wrong way round and yielding nothing. The mapping I eventually used was as follows.
const byte ROWS = 8;const byte COLS = 8;char keys[ROWS][COLS] = {{36,37,38,39,40,41,42,43},{44,45,46,47,48,49,50,51},{52,53,54,55,56,57,58,59},{60,61,62,63,64,65,66,67},{68,69,70,71,72,73,74,75},{76,77,78,79,80,81,82,83},{84,85,86,87,88,89,90,91},{92,93,94,95,96,97,98,99}};byte rowPins[ROWS] = {A0,A1,A2,A3,A4,A5,11,12}; //connect to the row pinouts of the kpdbyte colPins[COLS] = {2,3,4,5,6,7,8,9}; //connect to the column pinouts of the kpdThis seems to work very nicely. You can see it hooked up and the serial output from playing a “chord” below.
Closing Thoughts
Decoding the key presses ended up being relatively simple for this keyboard which was a bonus. Next I will add the MIDI library and get it actually outputting MIDI messages.
I’ve had a play with the tone generating module, just to get an idea for what it can do (I might write that up one day too), but it isn’t really salvageable.
However the power supply and built-in amplifier and speakers seem fine so it would be really interesting to use this as a housing for some of my other Arduino music projects.
Kevin
#arduinoNano #keyboardMatrix #keyboardScanning #keypad #midi
-
Keyboard Matrix Decode
I found an old keyboard, a “KSP970” which is a sub £20 keyboard with full size (non touch sensitive) keys, that was being thrown out as battery acid had corroded away most of the circuit board inside, but the keyboard itself was still intact so I thought it would make an interesting project to attempt to read the keyboard.
- In the second part, I add MIDI.
These are the key Arduino tutorials for the main concepts used in this project:
If you are new to Arduino, see the Getting Started pages.
Parts list
- Arduino Nano
- 16x LEDs (optional)
- 8x 220Ω resistors (to go with the LEDs – also optional)
- Breadboard and jumper wires
- Scrap keyboard!
The Circuit
Most keyboards and keypads use a “matrix” method of decoding keypresses. I won’t go into the details here, but the Open Music Labs tutorial has an excellent description of the concept, but the general principle is that the keys are decoded as “rows” and “columns” even though on a music keyboard they are naturally sequential. If you are lucky, as I was, the keyboard will have two sets of connecting wires (see the two silvered ribbon cables in the photo) – one for “rows” and one for “columns” which can be linked up to your Arduino’s IO pins.
The trick is to work out which keys are linked to which pins, which is where this simple circuit comes in.
I have a 61 note keyboard and each of the ribbons is 8 wires wide. I can see from the underside of the keyboard pcb that each key’s switch is linked via a diode to the “row” pins. I’ve only shown one key circuit in the above, but the Open Music Lab’s tutorial shows the “matrix” in more detail and the same circuit seems to be used here.
One simplification for me though was that I have several of these really cheap “8 bit” LED “bars” which make decoding the key matrix very easy – they contain 8 LEDs and associated resistors in a breadboard-friendly format.
My final test circuit looks like this:
I feed power into the two breadboard rails (5V) and then can work out which keys light up the second set of LEDs and thus map keys to combinations of “rows” and “columns”. Note, in the above photo I’ve applied power to all of the “rows”, but in practice you’d only want power on one at a time to see which keys light up the other LEDs.
Once I knew how the keys were decoded (it turned out pretty simple and logical) then I could hook it up to an Arduino and see if I could detect keypresses.
I used a Nano which means I could relatively simply attach the two 8-way connectors to the two sides of the board, with one proviso. I am using the analog ports as digital IO pins, which works fine for A0 to A5, but you can’t use A6 and A7 in that way so I had to re-route the last two pins over to D11 and D12. As I had a new cheap Nano to use, I was able to desolder the pins on A6 and A7 leaving them unconnected from the 8-way headers.
The Code
Once the Nano was involved, I was able to install the Keypad library for the Arduino (search for Keypad and find the library simply called “Keypad” by Mark Stanley) and modify the MultiKey demo sketch as follows:
- I need a 8×8 matrix decoding, so the array at the start of the sketch needs updating.
- As the keys on my keyboard decoded sequentially in a straightforward manner, I didn’t have any complicated reordering of the keys to be done to match up with Arduino pin numbers.
- I want to eventually output MIDI note numbers, so I changed the characters in the array to MIDI note numbers.
- On printing, I forced the code to print the MIDI note number rather than the letter names.
My first try had the rows and columns the wrong way round and yielding nothing. The mapping I eventually used was as follows.
const byte ROWS = 8;const byte COLS = 8;char keys[ROWS][COLS] = {{36,37,38,39,40,41,42,43},{44,45,46,47,48,49,50,51},{52,53,54,55,56,57,58,59},{60,61,62,63,64,65,66,67},{68,69,70,71,72,73,74,75},{76,77,78,79,80,81,82,83},{84,85,86,87,88,89,90,91},{92,93,94,95,96,97,98,99}};byte rowPins[ROWS] = {A0,A1,A2,A3,A4,A5,11,12}; //connect to the row pinouts of the kpdbyte colPins[COLS] = {2,3,4,5,6,7,8,9}; //connect to the column pinouts of the kpdThis seems to work very nicely. You can see it hooked up and the serial output from playing a “chord” below.
Closing Thoughts
Decoding the key presses ended up being relatively simple for this keyboard which was a bonus. Next I will add the MIDI library and get it actually outputting MIDI messages.
I’ve had a play with the tone generating module, just to get an idea for what it can do (I might write that up one day too), but it isn’t really salvageable.
However the power supply and built-in amplifier and speakers seem fine so it would be really interesting to use this as a housing for some of my other Arduino music projects.
Kevin
#arduinoNano #keyboardMatrix #keyboardScanning #keypad #midi
-
Keyboard Matrix Decode
I found an old keyboard, a “KSP970” which is a sub £20 keyboard with full size (non touch sensitive) keys, that was being thrown out as battery acid had corroded away most of the circuit board inside, but the keyboard itself was still intact so I thought it would make an interesting project to attempt to read the keyboard.
- In the second part, I add MIDI.
These are the key Arduino tutorials for the main concepts used in this project:
If you are new to Arduino, see the Getting Started pages.
Parts list
- Arduino Nano
- 16x LEDs (optional)
- 8x 220Ω resistors (to go with the LEDs – also optional)
- Breadboard and jumper wires
- Scrap keyboard!
The Circuit
Most keyboards and keypads use a “matrix” method of decoding keypresses. I won’t go into the details here, but the Open Music Labs tutorial has an excellent description of the concept, but the general principle is that the keys are decoded as “rows” and “columns” even though on a music keyboard they are naturally sequential. If you are lucky, as I was, the keyboard will have two sets of connecting wires (see the two silvered ribbon cables in the photo) – one for “rows” and one for “columns” which can be linked up to your Arduino’s IO pins.
The trick is to work out which keys are linked to which pins, which is where this simple circuit comes in.
I have a 61 note keyboard and each of the ribbons is 8 wires wide. I can see from the underside of the keyboard pcb that each key’s switch is linked via a diode to the “row” pins. I’ve only shown one key circuit in the above, but the Open Music Lab’s tutorial shows the “matrix” in more detail and the same circuit seems to be used here.
One simplification for me though was that I have several of these really cheap “8 bit” LED “bars” which make decoding the key matrix very easy – they contain 8 LEDs and associated resistors in a breadboard-friendly format.
My final test circuit looks like this:
I feed power into the two breadboard rails (5V) and then can work out which keys light up the second set of LEDs and thus map keys to combinations of “rows” and “columns”. Note, in the above photo I’ve applied power to all of the “rows”, but in practice you’d only want power on one at a time to see which keys light up the other LEDs.
Once I knew how the keys were decoded (it turned out pretty simple and logical) then I could hook it up to an Arduino and see if I could detect keypresses.
I used a Nano which means I could relatively simply attach the two 8-way connectors to the two sides of the board, with one proviso. I am using the analog ports as digital IO pins, which works fine for A0 to A5, but you can’t use A6 and A7 in that way so I had to re-route the last two pins over to D11 and D12. As I had a new cheap Nano to use, I was able to desolder the pins on A6 and A7 leaving them unconnected from the 8-way headers.
The Code
Once the Nano was involved, I was able to install the Keypad library for the Arduino (search for Keypad and find the library simply called “Keypad” by Mark Stanley) and modify the MultiKey demo sketch as follows:
- I need a 8×8 matrix decoding, so the array at the start of the sketch needs updating.
- As the keys on my keyboard decoded sequentially in a straightforward manner, I didn’t have any complicated reordering of the keys to be done to match up with Arduino pin numbers.
- I want to eventually output MIDI note numbers, so I changed the characters in the array to MIDI note numbers.
- On printing, I forced the code to print the MIDI note number rather than the letter names.
My first try had the rows and columns the wrong way round and yielding nothing. The mapping I eventually used was as follows.
const byte ROWS = 8;const byte COLS = 8;char keys[ROWS][COLS] = {{36,37,38,39,40,41,42,43},{44,45,46,47,48,49,50,51},{52,53,54,55,56,57,58,59},{60,61,62,63,64,65,66,67},{68,69,70,71,72,73,74,75},{76,77,78,79,80,81,82,83},{84,85,86,87,88,89,90,91},{92,93,94,95,96,97,98,99}};byte rowPins[ROWS] = {A0,A1,A2,A3,A4,A5,11,12}; //connect to the row pinouts of the kpdbyte colPins[COLS] = {2,3,4,5,6,7,8,9}; //connect to the column pinouts of the kpdThis seems to work very nicely. You can see it hooked up and the serial output from playing a “chord” below.
Closing Thoughts
Decoding the key presses ended up being relatively simple for this keyboard which was a bonus. Next I will add the MIDI library and get it actually outputting MIDI messages.
I’ve had a play with the tone generating module, just to get an idea for what it can do (I might write that up one day too), but it isn’t really salvageable.
However the power supply and built-in amplifier and speakers seem fine so it would be really interesting to use this as a housing for some of my other Arduino music projects.
Kevin
#arduinoNano #keyboardMatrix #keyboardScanning #keypad #midi
-
A machine learning-based decoder framework for the cortical voltage-sensitive dye responses to retinal neuromorphic microstimulation: A proof-of-concept simulation study https://www.mdpi.com/2306-5354/13/2/231 Seizure risks not accounted for (e.g. edge-only vision), nor receptive field sizes, etc; #ICMS #BCI #NeuroTech
-
🌟🐴 Horses’ unique neigh decoded! Scientists reveal this whinny—mixing grunt & squeal—comes from a whistle-like voice box trick, expressing joy, greetings & more. A equine language breakthrough! Read more: https://apnews.com/article/horse-neigh-whinny-voice-box-whistle-1cd9c808a07e8dd96afe185774706a0d
#GoodNews #HorseNeigh #AnimalScience #NatureDiscovery #WildlifeWin
-
🌟🐴 Horses’ unique neigh decoded! Scientists reveal this whinny—mixing grunt & squeal—comes from a whistle-like voice box trick, expressing joy, greetings & more. A equine language breakthrough! Read more: https://apnews.com/article/horse-neigh-whinny-voice-box-whistle-1cd9c808a07e8dd96afe185774706a0d
#GoodNews #HorseNeigh #AnimalScience #NatureDiscovery #WildlifeWin
-
🌟🐴 Horses’ unique neigh decoded! Scientists reveal this whinny—mixing grunt & squeal—comes from a whistle-like voice box trick, expressing joy, greetings & more. A equine language breakthrough! Read more: https://apnews.com/article/horse-neigh-whinny-voice-box-whistle-1cd9c808a07e8dd96afe185774706a0d
#GoodNews #HorseNeigh #AnimalScience #NatureDiscovery #WildlifeWin
-
Wicked's wardrobe decoded from £1m wand and tiara to Glinda's £60 butterfly necklace
https://web.brid.gy/r/https://www.mirror.co.uk/film/wickeds-wardrobe-decoded-1m-wand-36240945
-
Wicked's wardrobe decoded from £1m wand and tiara to Glinda's £60 butterfly necklace
https://web.brid.gy/r/https://www.mirror.co.uk/film/wickeds-wardrobe-decoded-1m-wand-36240945
-
Wicked's wardrobe decoded from £1m wand and tiara to Glinda's £60 butterfly necklace
https://web.brid.gy/r/https://www.mirror.co.uk/film/wickeds-wardrobe-decoded-1m-wand-36240945
-
Wicked's wardrobe decoded from £1m wand and tiara to Glinda's £60 butterfly necklace
https://web.brid.gy/r/https://www.mirror.co.uk/film/wickeds-wardrobe-decoded-1m-wand-36240945
-
Podcast train ride from Decoder about Mastodon.
#lahti #helsinki #finland #suomi #finnish #suomalainen #blue #sininen #bluemoment #sininenhetki #malemodel #miesmalli #finnishmodel #suomimalli #model #malli #portrait #muotokuva #selfie #profile #profilephoto #photo #valokuva #podcast #train #juna #travel #matkustaminen #art #taide #mastoart #mastodon #fediverse
-
Podcast train ride from Decoder about Mastodon.
#lahti #helsinki #finland #suomi #finnish #suomalainen #blue #sininen #bluemoment #sininenhetki #malemodel #miesmalli #finnishmodel #suomimalli #model #malli #portrait #muotokuva #selfie #profile #profilephoto #photo #valokuva #podcast #train #juna #travel #matkustaminen #art #taide #mastoart #mastodon #fediverse
-
🌟📜 Dead Sea Scrolls decoded! Scholar cracks “Cryptic B”—an ancient substitution cipher hiding a priestly calendar in Hebrew, used for secret knowledge 2,000 years ago. Mysteries unveiled! Read more: https://thedebrief.org/this-enigmatic-ancient-script-hidden-within-the-dead-sea-scrolls-was-thought-to-be-indecipherable-until-now/
#DeadSeaScrolls #AncientCipher #ArchaeologyWin #HistoryMystery
-
🌟📜 Dead Sea Scrolls decoded! Scholar cracks “Cryptic B”—an ancient substitution cipher hiding a priestly calendar in Hebrew, used for secret knowledge 2,000 years ago. Mysteries unveiled! Read more: https://thedebrief.org/this-enigmatic-ancient-script-hidden-within-the-dead-sea-scrolls-was-thought-to-be-indecipherable-until-now/
#DeadSeaScrolls #AncientCipher #ArchaeologyWin #HistoryMystery
-
🌟📜 Dead Sea Scrolls decoded! Scholar cracks “Cryptic B”—an ancient substitution cipher hiding a priestly calendar in Hebrew, used for secret knowledge 2,000 years ago. Mysteries unveiled! Read more: https://thedebrief.org/this-enigmatic-ancient-script-hidden-within-the-dead-sea-scrolls-was-thought-to-be-indecipherable-until-now/
#DeadSeaScrolls #AncientCipher #ArchaeologyWin #HistoryMystery
-
🌟📜 Dead Sea Scrolls decoded! Scholar cracks “Cryptic B”—an ancient substitution cipher hiding a priestly calendar in Hebrew, used for secret knowledge 2,000 years ago. Mysteries unveiled! Read more: https://thedebrief.org/this-enigmatic-ancient-script-hidden-within-the-dead-sea-scrolls-was-thought-to-be-indecipherable-until-now/
#DeadSeaScrolls #AncientCipher #ArchaeologyWin #HistoryMystery
-
Endemm (encoder and decoder for multimedia) development update:
Endemm can now output status text as JSON on the command line. Furthermore, the "acodec" and "vcodec" parameters got basic support so that the codecs of outputs can be specified. Support for setting the bitrate/quality is still missing, but is on the todo list, as well as being able to use ffmpeg codecs.
More about endemm: https://codeberg.org/ncc1988/endemm
-
Implanted brain-computer interface functionality during nighttime in late-stage amyotrophic lateral sclerosis https://www.nature.com/articles/s41598-026-44228-7 "When applied to night data, daytime decoders caused unintentional BCI activations in 100% of nights." #ALS #BCI #NeuroTech
-
J. #CraigVenter, Scientist Who Decoded the #Human #Genome, Dies at 79
A risk-taking outsider, he brought speed, competition and controversy to one of science’s biggest races.
Dr. #Venter, a risk-taker and intense competitor, made a bold move when he decided that the #HumanGenomeProject, a $3 billion government program for decoding the human genome, was moving slowly enough that he could enter the race late and beat it with a much faster method.
https://www.nytimes.com/2026/04/30/science/j-craig-venter-dead.html
https://archive.ph/ACJEt -
J. #CraigVenter, Scientist Who Decoded the #Human #Genome, Dies at 79
A risk-taking outsider, he brought speed, competition and controversy to one of science’s biggest races.
Dr. #Venter, a risk-taker and intense competitor, made a bold move when he decided that the #HumanGenomeProject, a $3 billion government program for decoding the human genome, was moving slowly enough that he could enter the race late and beat it with a much faster method.
https://www.nytimes.com/2026/04/30/science/j-craig-venter-dead.html
https://archive.ph/ACJEt -
J. #CraigVenter, Scientist Who Decoded the #Human #Genome, Dies at 79
A risk-taking outsider, he brought speed, competition and controversy to one of science’s biggest races.
Dr. #Venter, a risk-taker and intense competitor, made a bold move when he decided that the #HumanGenomeProject, a $3 billion government program for decoding the human genome, was moving slowly enough that he could enter the race late and beat it with a much faster method.
https://www.nytimes.com/2026/04/30/science/j-craig-venter-dead.html
https://archive.ph/ACJEt -
J. #CraigVenter, Scientist Who Decoded the #Human #Genome, Dies at 79
A risk-taking outsider, he brought speed, competition and controversy to one of science’s biggest races.
Dr. #Venter, a risk-taker and intense competitor, made a bold move when he decided that the #HumanGenomeProject, a $3 billion government program for decoding the human genome, was moving slowly enough that he could enter the race late and beat it with a much faster method.
https://www.nytimes.com/2026/04/30/science/j-craig-venter-dead.html
https://archive.ph/ACJEt -
J. #CraigVenter, Scientist Who Decoded the #Human #Genome, Dies at 79
A risk-taking outsider, he brought speed, competition and controversy to one of science’s biggest races.
Dr. #Venter, a risk-taker and intense competitor, made a bold move when he decided that the #HumanGenomeProject, a $3 billion government program for decoding the human genome, was moving slowly enough that he could enter the race late and beat it with a much faster method.
https://www.nytimes.com/2026/04/30/science/j-craig-venter-dead.html
https://archive.ph/ACJEt