You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: appendix.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -15,7 +15,7 @@ Here you may find conceptual content related to the exercises in the book.
15
15
16
16
## qsv version
17
17
18
-
qsv has multiple versions and may differ for each system. Here we run [a command](https://github.com/jqnatividad/qsv/blob/master/docs/PERFORMANCE.md#version-details) to show what version of qsv this book is using along with other information:
18
+
qsv has multiple versions and may differ for each system. Here we run [a command](https://github.com/dathere/qsv/blob/master/docs/PERFORMANCE.md#version-details) to show what version of qsv this book is using along with other information:
Copy file name to clipboardExpand all lines: exercises-setup.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -67,9 +67,9 @@ If you already have qsv installed on your system and accessible from `PATH` then
67
67
68
68
##### Download and extract qsv
69
69
70
-
You may download qsv as an executable file which you may run in a terminal like other commands. There are [multiple ways](https://github.com/jqnatividad/qsv#installation-options) to download qsv and multiple versions of qsv.
70
+
You may download qsv as an executable file which you may run in a terminal like other commands. There are [multiple ways](https://github.com/dathere/qsv#installation-options) to download qsv and multiple versions of qsv.
71
71
72
-
Here's one way to download the latest version (arbitrarily represented as version `X.Y.Z`). You may download the latest version of qsv from the latest releases on GitHub at: [https://github.com/jqnatividad/qsv/releases/latest](https://github.com/jqnatividad/qsv/releases/latest#). Under the Assets section of the latest release you may find many files, so choose the right one based on your operating system and system architecture.
72
+
Here's one way to download the latest version (arbitrarily represented as version `X.Y.Z`). You may download the latest version of qsv from the latest releases on GitHub at: [https://github.com/dathere/qsv/releases/latest](https://github.com/dathere/qsv/releases/latest#). Under the Assets section of the latest release you may find many files, so choose the right one based on your operating system and system architecture.
73
73
74
74
Here are the files we suggest if you're unsure:
75
75
@@ -107,14 +107,14 @@ Tab completions allow you to press the tab key at certain locations while typing
107
107
108
108
qsv currently supports completions for the following shells: bash, zsh, powershell, fish, nushell, fig, and elvish.
109
109
110
-
Download the current completions file for your shell from qsv's source code at [`contrib/completions/examples`](https://github.com/jqnatividad/qsv/blob/master/contrib/completions/examples).
110
+
Download the current completions file for your shell from qsv's source code at [`contrib/completions/examples`](https://github.com/dathere/qsv/blob/master/contrib/completions/examples).
111
111
112
112
For example to enable the Bash completions:
113
113
114
114
1. Run `source qsv.bash` to enable the completions in your current terminal instance (or replace `qsv.bash` to the path to it if not in your current working directory).
115
115
2. You may also move `qsv.bash` to your home directory (`~/qsv.bash`) and also create a `.bashrc` file in your home directory (`~/.bashrc`) to include `source qsv.bash` as a line within it for the completions script to run whenever you launch a bash terminal.
116
116
117
-
Feel free to contribute to maintaining the completions if you know a bit of Rust [here](https://github.com/jqnatividad/qsv/tree/master/contrib/completions).
117
+
Feel free to contribute to maintaining the completions if you know a bit of Rust [here](https://github.com/dathere/qsv/tree/master/contrib/completions).
Copy file name to clipboardExpand all lines: index.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,9 +7,9 @@ You may report errors on [the issues page](https://github.com/dathere/100.dather
7
7
8
8
Welcome to 100 exercises with qsv!
9
9
10
-
In this book you may learn how to solve various data engineering issues with [qsv](https://github.com/jqnatividad/qsv).
10
+
In this book you may learn how to solve various data engineering issues with [qsv](https://github.com/dathere/qsv).
11
11
12
-
qsv is a **command-line tool** built with Rust for spreadsheet data wrangling (CSV, Excel, TSV, TAB, etc.) and can handle large file sizes in relatively fast speeds. With [50+ commands](https://github.com/jqnatividad/qsv?tab=readme-ov-file#available-commands) (when all features are enabled), there are plenty of use cases qsv can handle.
12
+
qsv is a **command-line tool** built with Rust for spreadsheet data wrangling (CSV, Excel, TSV, TAB, etc.) and can handle large file sizes in relatively fast speeds. With [50+ commands](https://github.com/dathere/qsv?tab=readme-ov-file#available-commands) (when all features are enabled), there are plenty of use cases qsv can handle.
13
13
14
14
If you're unfamiliar with qsv then don't worry. The initial exercises are intended for beginners that haven't tried qsv yet. We'll explore multiple features qsv has to offer while solving problems you may find in real-world scenarios. You may learn to use qsv in an interactive way by practicing exercises to resolve data wrangling issues.
Copy file name to clipboardExpand all lines: lessons/0/index.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -110,7 +110,7 @@ The exercise requires finding the **total number of rows** in `fruits.csv`. As d
110
110
111
111
If you run `qsv count fruits.csv` then in your terminal you should see `3` as the output. Running it again this time with the `--no-headers` flag (or `-n` for short), you get the correct number of total rows `4` which includes the header row (which is the first row in the CSV file).
112
112
113
-
It may sound unusual that by using the `--no-headers` flag, the header row gets included in the row count. You may share any ideas for improvements to qsv on [qsv's GitHub discussions](https://github.com/jqnatividad/qsv/discussions).
113
+
It may sound unusual that by using the `--no-headers` flag, the header row gets included in the row count. You may share any ideas for improvements to qsv on [qsv's GitHub discussions](https://github.com/dathere/qsv/discussions).
0 commit comments