The Computational Chemistry List (CCL) "was established on January 11, 1991, as an independent electronic forum for chemistry researchers and educators from around the world." It was created and operated for three and a half decades by Jan Labanowski, Ph.D., and comprised many things, incluing a job board, a software archive, and a document repository. But, its most well known component was almost certainly the [CCL.NET mailing list][list frontpage], via which researchers and educators around the world discussed countless topics in and adjacent to computational chemistry.
Before we look at some common commands, I just want to note a few keyboard commands that are very helpful:
Up Arrow: Will show your last commandDown Arrow: Will show your next commandTab: Will auto-complete your commandCtrl + L: Will clear the screen
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # download 3.5.8 or neo4j-enterprise-4.0.0-alpha09mr02-unix | |
| !curl https://neo4j.com/artifact.php?name=neo4j-community-3.5.8-unix.tar.gz -o neo4j.tar.gz | |
| # decompress and rename | |
| !tar -xf neo4j.tar.gz # or --strip-components=1 | |
| !mv neo4j-community-3.5.8 nj | |
| # disable password, and start server | |
| !sed -i '/#dbms.security.auth_enabled/s/^#//g' nj/conf/neo4j.conf | |
| !nj/bin/neo4j start |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <meta http-equiv="X-UA-Compatible" content="ie=edge"> | |
| <link rel="stylesheet" href="style.css"> | |
| <title>Devtools Test</title> | |
| </head> | |
| <body> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # GET VERSION | |
| npm -v (or --version) | |
| # GET HELP | |
| npm help | |
| npm | |
| # CREATE PACKAGE.JSON | |
| npm init | |
| npm init -y (or --yes) |
| Action | Mix | Cargo |
|---|---|---|
| Create a project | mix new [--app APP] PATH |
cargo new [--bin] PATH |
| Run your project | iex -S mix / mix run --no-halt / mix phoenix.server |
cargo run |
| Get help | mix help cmd |
cargo [cmd] --help |
| Build configuration | mix.exs | Cargo.toml |
| Project commands | mix COMMAND |
N/A |
| Global add-on commands | mix archive.install PACKAGE |
cargo install PACKAGE |
| Integrating with other languag |