Skip to content

Commit 86e3147

Browse files
committed
[#39]:svarga:github, migration from vargaconsulting to vargalabs
1 parent 42cd380 commit 86e3147

11 files changed

Lines changed: 19 additions & 19 deletions

File tree

docs/blog/posts/2025-05-25.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,5 +73,5 @@ In the most common form, the curve is defined by the **Weierstrass equation**:$E
7373

7474
Perfect for **learning, prototyping, or experimenting** with elliptic curve cryptography — without the overhead of production-grade libraries.
7575

76-
🔗 [Source code on GitHub](https://github.com/vargaconsulting/tiny-crypto)
76+
🔗 [Source code on GitHub](https://github.com/vargalabs/tiny-crypto)
7777

docs/blog/posts/2025-09-05.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ Here’s what we found.
4141

4242
??? example ":simple-convertio:{.example} Step 1 — Convert PCAPs into Stats with [IEX2H5](https://steven-varga.ca/site/iex2h5/)"
4343

44-
Before we can rank stocks, we need **summary statistics** from the raw IEX market data feeds. That’s where [`iex2h5`](https://vargaconsulting.github.io/iex2h5/) comes in — a high-performance HDF5-based data converter purpose-built for handling **PCAP dumps from IEX**.
44+
Before we can rank stocks, we need **summary statistics** from the raw IEX market data feeds. That’s where [`iex2h5`](https://vargalabs.github.io/iex2h5/) comes in — a high-performance HDF5-based data converter purpose-built for handling **PCAP dumps from IEX**.
4545

4646
To extract stats only (and skip writing any tick data), we use the `--command none` mode. We'll name the output file something meaningful like `statistics.h5`, and pass in a file glob — the glorious Unix-era invention (from B at Bell Labs) — pointing to our compressed dataset, e.g. `/lake/iex/tops/*.pcap.gz`.
4747

@@ -50,7 +50,7 @@ Here’s what we found.
5050
```bash
5151
steven@saturn:~/shared-tmp$ iex2h5 -c none -o statistics.h5 /lake/iex/tops/*.pcap.gz
5252
[iex2h5] Converting 2194 files using backend: hdf5 — using 1 thread — © Varga Consulting, 2017–2025
53-
[iex2h5] Visit https://vargaconsulting.github.io/iex2h5/ — Star it, Share it, Support Open Tools ⭐️
53+
[iex2h5] Visit https://vargalabs.github.io/iex2h5/ — Star it, Share it, Support Open Tools ⭐️
5454
▫ 2016-12-13 14:30:00 21:00:00 ✓
5555
▫ 2016-12-14 14:30:00 21:00:00 ✓
5656
▫ 2016-12-15 17:31:52 21:00:00 ✓

docs/blog/posts/2025-09-12.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,4 +82,4 @@ So here’s **the moral of the story:** If you’re serious about market data—
8282
```cpp linenums="292" title="producer.hpp" hl_lines="60-64"
8383
--8<-- "iex2h5-pcapng.cpp"
8484
```
85-
:material-cursor-default-click-outline: [Explore the docs](https://steven-varga.ca/iex2h5/) :material-github: [Download the MIT licensed project from GitHub](https://github.com/vargaconsulting/iex2h5)
85+
:material-cursor-default-click-outline: [Explore the docs](https://steven-varga.ca/iex2h5/) :material-github: [Download the MIT licensed project from GitHub](https://github.com/vargalabs/iex2h5)

docs/blog/posts/2025-09-25.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,5 +74,5 @@ turns that torrent into tidy, high-performance HDF5 files.
7474

7575
So there you have it: **IEX-DOWNLOAD**, 4,597 files and 13.26 TB of market microstructure, distilled into a 3.5 MB Rust binary. And to Brandon — thank you for asking the right question. Sometimes all it takes is a good headhunter’s nudge to turn an idea into a tool. Rust may be the new kid, but in the right hands it can move mountains… or at least download a few terabytes before lunch.
7676

77-
[100]: https://github.com/vargaconsulting/iex-download
77+
[100]: https://github.com/vargalabs/iex-download
7878
[101]: /blog/longest-active-stocks-from-iex-pcap/

docs/site/h5cpp-compiler.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,6 @@ h5cpp your_translation_unit.cpp -- -std=c++17 -Imy/include/path
7171
This emits a file (e.g., `generated.hpp`) containing all required `h5::dt_t<T>` specializations.
7272

7373
> 🔗 **Explore the Project**
74-
> GitHub: [github.com/steven-varga/h5cpp-compiler](https://github.com/steven-varga/h5cpp-compiler)
74+
> GitHub: [github.com/vargalabs/h5cpp-compiler](https://github.com/vargalabs/h5cpp-compiler)
7575
Build once, persist anywhere. Let your structs speak HDF5.
7676

docs/site/h5cpp.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,6 @@ auto ds = h5::create<my_struct>(fd, "mpi/data", h5::mpiio{mpi_config},
7979

8080

8181
> 🔗 **Explore the Project**
82-
> GitHub: [github.com/steven-varga/h5cpp](https://github.com/steven-varga/h5cpp)
82+
> GitHub: [github.com/vargalabs/h5cpp](https://github.com/vargalabs/h5cpp)
8383
> 💬 Featured on [The HDF Group Blog](https://blog.hdfgroup.org/) and presented at ISC’19 & EHUG.
8484

docs/site/iex2h5.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ IEX2H5 enables researchers, quants, and infrastructure teams to store and proces
2424

2525
Whether you want to build a custom factor model, simulate an HFT strategy, or just explore market microstructure—the data’s ready.
2626
> :fontawesome-brands-internet-explorer:{.icon} **Explore the Project**
27-
> GitHub: [github.com/vargaconsulting/iex2h5](https://github.com/vargaconsulting/iex2h5)
28-
> Docs: [vargaconsulting.github.io/iex2h5](https://vargaconsulting.github.io/iex2h5)
27+
> GitHub: [github.com/vargalabs/iex2h5](https://github.com/vargalabs/iex2h5)
28+
> Docs: [vargalabs.github.io/iex2h5](https://vargalabs.github.io/iex2h5)
2929
30-
[repo]: https://github.com/vargaconsulting/iex2h5
31-
[docs]: https://vargaconsulting.github.io/iex2h5
30+
[repo]: https://github.com/vargalabs/iex2h5
31+
[docs]: https://vargalabs.github.io/iex2h5

docs/site/iexdownload.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ Paired with **IEX2H5**, the Rust downloader + C++ converter form a complete pipe
3333
:material-vector-arrange-above:{.icon} **download terabytes of PCAPs** → :material-database:{.icon} **convert into compressed HDF5 arrays** → :material-brain:{.icon} **analyze at scale**.
3434

3535
> :fontawesome-brands-github:{.icon} **Explore the Project**
36-
> GitHub: [github.com/vargaconsulting/iex-download](https://github.com/vargaconsulting/iex-download)
37-
> Docs: [vargaconsulting.github.io/iex-download](https://vargaconsulting.github.io/iex-download)
36+
> GitHub: [github.com/vargalabs/iex-download](https://github.com/vargalabs/iex-download)
37+
> Docs: [vargalabs.github.io/iex-download](https://vargalabs.github.io/iex-download)
3838
39-
[repo]: https://github.com/vargaconsulting/iex-download
40-
[docs]: https://vargaconsulting.github.io/iex-download
39+
[repo]: https://github.com/vargalabs/iex-download
40+
[docs]: https://vargalabs.github.io/iex-download

docs/site/nss.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,4 +81,4 @@ getent hosts compute-01
8181

8282
If the upstream directory is down or unreachable, you’ll get prompt, well-typed errors rather than hangs.&#x20;
8383

84-
*H5NSS is proprietary software by Varga Consulting.*
84+
*H5NSS is proprietary software by Varga Labs.*

docs/site/openssl.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,5 +75,5 @@ Perfect addition :material-check-all: Let’s extend the list and flag **StarkNe
7575
## Licensing & availability
7676

7777
* **Proprietary, single-header library.**
78-
* Commercial licensing via **Varga Consulting** (Toronto, Canada).
78+
* Commercial licensing via **Varga Labs** (Toronto, Canada).
7979
* Contact: **[info@vargaconsulting.ca](mailto:info@vargaconsulting.ca)**.

0 commit comments

Comments
 (0)