ChimieAnglaisHugo

Depth-First

Depth-First
Recent content on Depth-First
Page d'accueil
language
ChimieAnglais
Publié

Ein Fehler ist aufgetreten. Sieh dir dieses Video auf www.youtube.com an oder aktiviere JavaScript, falls es in deinem Browser deaktiviert sein sollte. PyMOL is relatively simple to install on Windows. The tutorial shows how. This video is the second lesson of what I hope will become a free introductory online video course on PyMOL that will be hosted right here. Comments and suggestions are welcome.

ChimieAnglais
Publié

Ein Fehler ist aufgetreten. Sieh dir dieses Video auf www.youtube.com an oder aktiviere JavaScript, falls es in deinem Browser deaktiviert sein sollte. PyMOL can be tricky to install on Linux. The tutorial describes two ways to install PyMOL on Ubuntu Oneiric - through the package manager and by compiling source.

ChimieAnglais
Publié

Ein Fehler ist aufgetreten. Sieh dir dieses Video auf www.youtube.com an oder aktiviere JavaScript, falls es in deinem Browser deaktiviert sein sollte. ChemVector™ is a pure JavaScript library for client-side chemical structure imaging. This video demonstrates the key features of ChemVector using live examples with code.

ChimieAnglais
Publié

Ein Fehler ist aufgetreten. Sieh dir dieses Video auf www.youtube.com an oder aktiviere JavaScript, falls es in deinem Browser deaktiviert sein sollte. Foldit is a multiplayer video game with the goal of solving unsolved structural biology problems. It’s an example of what Louis Van Ahn calls ‘Games with a Purpose’. Recently Foldit players helped solve the crystal structure M-PMV retroviral protease.

ChimieAnglais
Publié

Some time ago I needed to validate CAS Numbers in Ruby. Recently, I needed to validate CAS Numbers in JavaScript. The problem boils down to comparing the terminal check digit with the expected value. The function validateCAS does the trick: var validateCAS = function(cas) { if (!cas || !cas.match(/[0-9]{2,7}-[0-9]{2}-[0-9]/)) { return false;