Skip to content

Commit 8181f1b

Browse files
author
Thinh Nguyen
committed
update "change password" section - adjust "part" table description for ephys
1 parent d114056 commit 8181f1b

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

00-ConnectingToDatabase.ipynb

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@
108108
"source": [
109109
"For this workshop, some of the configuration values are pre-filled (e.g. `database.host` already points to the workshop database). Let's complete the configuration by specifying the username and password.\n",
110110
"\n",
111-
"Go ahead and open up the email you received when you signed up for the workshop. The email should contain your username (should be the same as your GitHub account username) and a randomly generated password. If you need the email to be resent, simply visit and signup again at https://datajoint.io/workshop."
111+
"Go ahead and enter the username and password of your [datajoint.io](https://datajoint.io) account below."
112112
]
113113
},
114114
{
@@ -241,7 +241,9 @@
241241
"cell_type": "markdown",
242242
"metadata": {},
243243
"source": [
244-
"When you signed up for the workshop at https://datajoint.io/workshop, you received a default, randomly generated password to connect to the database. It is recommended that you change this to something that you can remember better. You can do so easily using `dj.set_password` function."
244+
"The username and password used to connect to this tutorial database is that of your ***datajoint.io*** account, you can change this password on the [datajoint.io](https://datajoint.io) website. \n",
245+
"\n",
246+
"You can also directly change this database connection password using the `dj.set_password()` method. This is particularly useful if you are using DataJoint outside of this tutorial, where your ***datajoint.io*** credentials are not used for database connection."
245247
]
246248
},
247249
{
@@ -327,7 +329,7 @@
327329
"name": "python",
328330
"nbconvert_exporter": "python",
329331
"pygments_lexer": "ipython3",
330-
"version": "3.7.3"
332+
"version": "3.7.0"
331333
}
332334
},
333335
"nbformat": 4,

electrophysiology/03-Computed Tables - Completed.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2277,7 +2277,7 @@
22772277
"cell_type": "markdown",
22782278
"metadata": {},
22792279
"source": [
2280-
"The `-> master` syntax denotes that the `Waveform` part table is foreign key constrained by `Spike` table - i.e. the master table. And the content of the part table is always ingested together with the content of the master table, all in one step (i.e. one `make()` call)."
2280+
"The `-> master` syntax denotes that the `Waveform` part table is foreign key constrained by `Spike` table - i.e. the master table. The master table drives the ***populate*** logic, and the content of the part table is generally ingested together with the content of the master table, all in one step (i.e. one `make()` call)."
22812281
]
22822282
},
22832283
{

electrophysiology/03-Computed Tables - Interactive.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -950,7 +950,7 @@
950950
"cell_type": "markdown",
951951
"metadata": {},
952952
"source": [
953-
"The `-> master` syntax denotes that the `Waveform` part table is foreign key constrained by `Spike` table - i.e. the master table. And the content of the part table is always ingested together with the content of the master table, all in one step (i.e. one `make()` call)."
953+
"The `-> master` syntax denotes that the `Waveform` part table is foreign key constrained by `Spike` table - i.e. the master table. The master table drives the ***populate*** logic, and the content of the part table is generally ingested together with the content of the master table, all in one step (i.e. one `make()` call)."
954954
]
955955
},
956956
{

0 commit comments

Comments
 (0)