forked from QuantStack/quantstack.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathblogpostsDetails.js
More file actions
1346 lines (1346 loc) · 82.2 KB
/
blogpostsDetails.js
File metadata and controls
1346 lines (1346 loc) · 82.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.blogpostsDetails = void 0;
exports.blogpostsDetails = [
{
url: "https://medium.com/@AntoineProuvost/faster-reads-for-apache-parquet-improving-integer-unpacking-f6e21ce49a85",
title: "Faster Reads for Apache Parquet: Improving Integer Unpacking",
image: "img/blogposts/resized-images/Accelerating-Arrow.png",
summary: "By rewriting the SIMD optimizations of a critical low-level algorithm in Arrow C++, we have been able to deliver substantial speedups when reading Parquet data, up to 60% on some Arrow benchmarks with specific column encodings.",
date: "2026-03-16",
authors: "Antoine Prouvost",
imageID: "blogpost-image-149"
},
{
url: "https://blog.jupyter.org/expanding-geospatial-workflows-in-jupytergis-stac-browsing-and-story-maps-7fb98eece82e",
title: "Expanding Geospatial Workflows in JupyterGIS: STAC Browsing and Story Maps",
image: "img/blogposts/resized-images/Story-Maps.png",
summary: "We introduce two new JupyterGIS features: a STAC browser integrated directly into JupyterGIS, and a new Story Map feature, which makes it possible to combine maps and narrative content in a single, interactive view.",
date: "2026-02-19",
authors: "Gregory Mooney",
imageID: "blogpost-image-148"
},
{
url: "https://blog.jupyter.org/jupyterlite-officially-joins-project-jupyter-77df24c8db80",
title: "JupyterLite Officially Joins Project Jupyter",
image: "img/blogposts/resized-images/JupyterLite-Joins-Jupyter.png",
summary: "We are thrilled to announce that JupyterLite is now an official part of Project Jupyter. This milestone marks a significant step forward for interactive computing in the browser and strengthens JupyterLite’s role within the Jupyter ecosystem.",
date: "2026-02-12",
authors: "Jérémy Tuloup, Sylvain Corlay, Fernando Pérez",
imageID: "blogpost-image-147"
},
{
url: "https://blog.jupyter.org/instantly-view-parquet-files-in-jupyterlab-with-arbalister-4799c28bbce7",
title: "Instantly view Parquet files in JupyterLab with Arbalister",
image: "img/blogposts/resized-images/Arbalister.png",
summary: "Arbalister is a JupyterLab extension that enables seamless viewing of many tabular file formats, including Parquet, CSV, Avro, ORC, and SQLite.",
date: "2026-01-29",
authors: "Antoine Prouvost",
imageID: "blogpost-image-146"
},
{
url: "https://medium.com/@QuantStack/introducing-notebook-link-the-future-of-notebook-sharing-5de900a97b4a",
title: "Introducing notebook.link: The Future of Notebook Sharing",
image: "img/blogposts/resized-images/Introducing-Notebook-Link.png",
summary: "We are excited to unveil notebook.link, a groundbreaking platform that simplifies sharing and running notebooks like never before.",
date: "2026-01-22",
authors: "QuantStack",
imageID: "blogpost-image-145"
},
{
url: "https://blog.jupyter.org/jupyterlite-0-7-is-released-67db4d1609ad",
title: "JupyterLite 0.7 is released! 🎉",
image: "img/blogposts/resized-images/JupyterLite-07.png",
summary: "The new 0.7 release includes a number of new features, bug fixes, and enhancements. This release also brings significant improvements to the user experience and new customization options for JupyterLite deployments.",
date: "2025-12-04",
authors: "Jeremy Tuloup",
imageID: "blogpost-image-144"
},
{
url: "https://thenewstack.io/teaching-a-billion-people-to-code-how-jupyterlite-is-scaling-the-impossible/",
title: "Teaching a Billion People to Code: How JupyterLite Is Scaling the Impossible",
image: "img/blogposts/resized-images/Teaching-a-Billion-People.png",
summary: "QuantStack, an “almost accidental startup,” is building a serverless distro of JupyterLab for Jupyter’s global adoption.",
date: "2025-12-01",
authors: "Michelle Gienow",
imageID: "blogpost-image-143"
},
{
url: "https://blog.jupyter.org/jupyterlab-4-5-and-notebook-7-5-are-available-1bcd1fa19a47",
title: "JupyterLab 4.5 and Notebook 7.5 are available!",
image: "img/blogposts/resized-images/JupyterLab-45.png",
summary: "JupyterLab 4.5 has been released! This new minor release of JupyterLab includes 51 new features and enhancements, 81 bug fixes, 44 maintenance tasks and 38 documentation improvements.",
date: "2025-11-24",
authors: "Jeremy Tuloup",
imageID: "blogpost-image-142"
},
{
url: "https://blog.jupyter.org/gnu-octave-meets-jupyterlite-compute-anywhere-anytime-8b033afbbcdc",
title: "GNU Octave Meets JupyterLite: Compute Anywhere, Anytime!",
image: "img/blogposts/resized-images/Octave-Lite.png",
summary: "We are thrilled to announce the newest member of our JupyterLite kernel ecosystem: Xeus-Octave. Xeus-Octave allows you to run GNU Octave code directly on your browser.",
date: "2025-10-16",
authors: "Isabel Paredes",
imageID: "blogpost-image-141"
},
{
url: "https://eo4society.esa.int/2025/10/16/jupytergis-breaks-through-to-the-next-level/",
title: "JupyterGIS breaks through to the next level",
image: "img/blogposts/resized-images/JupyterGIS-Next-Level.png",
summary: "Launched in June 2024, JupyterGIS was introduced as a collaborative, web-based GIS environment built on the JupyterLab framework. Its objective is to bring QGIS-inspired workflows into the browser…",
date: "2025-10-16",
authors: "Martin Renou, Arjun Verma, Gregory Mooney, Sylvain Corlay",
imageID: "blogpost-image-140"
},
{
url: "https://medium.com/@QuantStack/sovereign-tech-agency-invests-in-apache-arrows-future-with-quantstack-d2f84c21c2cc",
title: "Sovereign Tech Agency Invests in Apache Arrow’s Future with QuantStack",
image: "img/blogposts/resized-images/STF-Arrow.png",
summary: "We are thrilled to announce that the Sovereign Tech Fund is providing critical funding to sustain and improve Apache Arrow, an essential open-source project in the modern data ecosystem.",
date: "2025-10-07",
authors: "Antoine Pitrou, Raúl Cumplido",
imageID: "blogpost-image-139"
},
{
url: "https://www.open-source-ward.com/from-linux-parties-to-global-impact-an-interview-with-sylvain-corlay-founder-of-quantstack/",
title: "From Linux Parties to Global Impact: An Interview with Sylvain Corlay, Founder of QuantStack",
image: "img/blogposts/resized-images/An-Interview-with-Sylvain-Corlay.png",
summary: "In today’s article, we had the chance to speak with Sylvain Corlay, long-time contributor of the Jupyter project, used by millions of people worldwide, and CEO-founder of QuantStack, an open-source development company employing around thirty people.",
date: "2025-09-18",
authors: "Sylvain Corlay, Arthur Vervaet",
imageID: "blogpost-image-138"
},
{
url: "https://medium.com/@QuantStack/a-year-in-review-quantstacks-contributions-to-apache-arrow-7eba38acbcf2",
title: "A Year in Review: QuantStack’s Contributions to Apache Arrow",
image: "img/blogposts/resized-images/Arrow-a-Year-in-Review.png",
summary: "Since November 2024, QuantStack has been involved in the maintenance and development of Apache Arrow. We have a team of several engineers working…",
date: "2025-09-02",
authors: "Antoine Pitrou, Raúl Cumplido",
imageID: "blogpost-image-137"
},
{
url: "https://david-brochart.medium.com/create-your-own-layers-in-jupytergis-cbb995a89b16",
title: "Create your own layers in JupyterGIS",
image: "img/blogposts/resized-images/Create-layers-JupyterGIS.png",
summary: "JupyterGIS-tiler is a JupyterGIS extension that lets you use a notebook to process your (Xarray) data and make it available as raster tiles, so that it can be visualized in JupyterGIS.",
date: "2025-06-25",
authors: "David Brochart",
imageID: "blogpost-image-136"
},
{
url: "https://blog.jupyter.org/c-in-jupyter-interpreting-c-in-the-web-c9d93542f20b",
title: "C++ in Jupyter — Interpreting C++ in the Web",
image: "img/blogposts/resized-images/CPP-in-JupyterLite.png",
summary: "Scientists and engineers utilize programming languages not only to build software systems but also to drive interactive exploratory workflows. They leverage developer tools to explore and reason through problems effectively.",
date: "2025-06-19",
authors: "Anutosh Bhat, Vassil Vassilev",
imageID: "blogpost-image-135"
},
{
url: "https://blog.jupyter.org/jupyterlite-0-6-0-is-released-b4bc69bfc8f4",
title: "JupyterLite 0.6.0 is released! 🎉",
image: "img/blogposts/resized-images/JupyterLite-06.png",
summary: "The new 0.6.0 release includes a number of new features, bug fixes, and enhancements. This release also brings significant improvements to the user experience and new customization options for JupyterLite deployments.",
date: "2025-06-12",
authors: "Jeremy Tuloup",
imageID: "blogpost-image-134"
},
{
url: "https://blog.jupyter.org/jupyterlab-4-4-and-notebook-7-4-are-available-aca2782d4f3d",
title: "JupyterLab 4.4 and Notebook 7.4 are available!",
image: "img/blogposts/resized-images/JupyterLab-44.png",
summary: "JupyterLab 4.4 has been released! This new minor release of JupyterLab includes 28 new features and enhancements, 76 bug fixes, 63 maintenance tasks and 34 documentation improvements.",
date: "2025-05-21",
authors: "Jeremy Tuloup",
imageID: "blogpost-image-133"
},
{
url: "https://blog.jupyter.org/congratulations-distinguished-contributors-2504029fc5a9",
title: "Congratulations, Distinguished Contributors!",
image: "/img/blogposts/resized-images/Congratulations-Distinguished-Contributors-2025.png",
summary: "We are proud to announce the recipients of the Jupyter Distinguished Contributor (JDC) award for the 2024 cohort of contributors.",
date: "2025-05-15",
authors: "Johan Mabille",
imageID: "blogpost-image-132"
},
{
url: "https://david-brochart.medium.com/making-qt-collaborative-using-crdts-94c470703253",
title: "Making Qt collaborative using CRDTs",
image: "/img/blogposts/resized-images/Collaborative-Qt.png",
summary: "A journal on creating a collaborative application with Qt",
date: "2025-03-31",
authors: "David Brochart",
imageID: "blogpost-image-131"
},
{
url: "https://blog.jupyter.org/r-in-the-browser-announcing-our-webassembly-distribution-9450e9539ed5",
title: "R in the Browser: Announcing Our WebAssembly Distribution",
image: "/img/blogposts/resized-images/Xeus-R-Lite.png",
summary: "R is now available in emscripten-forge, enabling the Xeus-R kernel in JupyterLite.",
date: "2025-02-28",
authors: "Isabel Paredes",
imageID: "blogpost-image-130"
},
{
url: "https://blog.jupyter.org/real-time-collaboration-and-collaborative-editing-for-gis-workflows-with-jupyter-and-qgis-d25dbe2832a6",
title: "Real-time collaboration and collaborative editing for GIS workflows with Jupyter and QGIS",
image: "/img/blogposts/resized-images/Collaborative-GIS.png",
summary: "We are excited to announce JupyterGIS, a web-based, collaborative, and extensible interface for GIS, leveraging the JupyterLab application framework and integrating seamlessly with the Jupyter notebook interface.",
date: "2025-02-26",
authors: "Meriem Ben Ismail, Nicolas Brichet, David Brochart, Matt Fisher, Anne Fouilloux, Greg Mooney, Martin Renou, Arjun Verma",
imageID: "blogpost-image-129"
},
{
url: "https://medium.com/@PyDataParis/pydata-paris-2025-50ff2bf2dc39",
title: "PyData Paris 2025 Keynotes",
image: "/img/blogposts/resized-images/PyData-Paris-2025-Keynotes.png",
summary: "We are thrilled to announce the keynote speakers for the upcoming PyData Paris 2025, the leading gathering of the open-source data science and AI/ML community in France.",
date: "2025-02-19",
authors: "Sandrine Pataut",
imageID: "blogpost-image-128"
},
{
url: "https://blog.jupyter.org/announcing-jupytercad-3-0-d8f4b7b0a719",
title: "Announcing JupyterCAD 3.0",
image: "/img/blogposts/resized-images/Announcing-JupyterCAD-3.0.png",
summary: "We are thrilled to introduce JupyterCAD 3.0, the newest version of the collaborative CAD modeler designed for JupyterLab.",
date: "2025-02-17",
authors: "Arjun Verma, Trung Le, Martin Renou",
imageID: "blogpost-image-127"
},
{
url: "https://johan-mabille.medium.com/sparrow-1f23817f6696",
title: "Sparrow",
image: "/img/blogposts/resized-images/sparrow.png",
summary: "We are thrilled to introduce Sparrow, a new library designed to simplify the integration of Apache Arrow’s columnar format into C++ applications.",
date: "2025-01-31",
authors: "Johan Mabille, Alexis Placet, Thorsten Beier, Joël Lamotte",
imageID: "blogpost-image-126"
},
{
url: "https://blog.jupyter.org/jupyterlite-terminal-edb3f80dc1c0",
title: "JupyterLite Terminal",
image: "/img/blogposts/resized-images/Jupyterlite-Terminal.png",
summary: "QuantStack are delighted to announce that we have been working on a new Terminal for JupyterLite.",
date: "2024-11-13",
authors: "Ian Thomas",
imageID: "blogpost-image-125"
},
{
url: "https://blog.jupyter.org/automate-your-releases-with-the-jupyter-releaser-701e7b9841e6",
title: "Automate your releases with the Jupyter Releaser 🚀",
image: "/img/blogposts/resized-images/Automate-releases-jupyter-releaser.png",
summary: "Jupyter Releaser is an automation tool developed by the Jupyter team to streamline and standardize the release process across Jupyter projects.",
date: "2024-10-28",
authors: "Jeremy Tuloup",
imageID: "blogpost-image-124"
},
{
url: "https://medium.com/@QuantStack/quantstack-steps-up-to-support-apache-arrow-with-new-dedicated-team-9ddc952f20e2",
title: "QuantStack Steps Up to Support Apache Arrow with New Dedicated Team",
image: "/img/blogposts/resized-images/QuantStack-Steps-Up-to-Support-Apache-Arrow-with-New-Dedicated-Team.png",
summary: " We are thrilled to announce that QuantStack is starting a new team dedicated to the maintenance and development of Apache Arrow.",
date: "2024-10-22",
authors: "Sylvain Corlay",
imageID: "blogpost-image-123"
},
{
url: "https://blog.jupyter.org/interactive-mapping-with-ipyopenlayers-2b8bc93bb6c4",
title: "Interactive Mapping with ipyopenlayers",
image: "/img/blogposts/resized-images/Interactive-Mapping-with-ipyopenlayers.png",
summary: " In this article, we present the main features of ipyopenlayers and demonstrate how this library can transform your geospatial data into dynamic, interactive visualizations.",
date: "2024-09-06",
authors: "Nour Cheour",
imageID: "blogpost-image-122"
},
{
url: "https://blog.jupyter.org/announcing-the-2023-jupyter-distinguished-contributor-award-recipients-1b2cc4ba203f",
title: "Announcing the 2023 cohort of Jupyter distinguished contributors",
image: "/img/blogposts/resized-images/Announcing-the-2023-Jupyter-Distinguished-Contributors.png",
summary: "We are delighted to announce the recipients of the Jupyter Distinguished Contributor (JDC) award for the 2023 cohort.",
date: "2024-09-04",
authors: "Johan Mabille, on behalf of the Jupyter Distinguished Contributors",
imageID: "blogpost-image-121"
},
{
url: "https://blog.jupyter.org/ipydatagrid-is-now-part-of-project-jupyter-3b3dfb877664",
title: "Ipydatagrid is now part of Project Jupyter",
image: "/img/blogposts/resized-images/Ipydatagrid-is-now-part-of-ProjectJupyter.png",
summary: "Today, we are proud to announce that the ipydatagrid open source project has been incorporated into Project Jupyter as part of the Jupyter Widgets subproject.",
date: "2024-08-22",
authors: "Sylvain Corlay, on behalf of the Jupyter Widgets Council",
imageID: "blogpost-image-120"
},
{
url: "https://medium.com/@QuantStack/introducing-mamba-2-0-0e8d5c6d1d0c",
title: "Introducing Mamba 2.0",
image: "/img/blogposts/resized-images/Introducing-Mamba-2-0.png",
summary: "We are excited to present the first release candidate of Mamba 2.0, a significant upgrade to the mamba package manager. This update brings considerable enhancements for both users and developers, following an extensive year-long development effort.",
date: "2024-07-16",
authors: "Antoine Prouvost, Joël Lamotte, Johan Mabille, Hind Montassif",
imageID: "blogpost-image-119"
},
{
url: "https://medium.com/@QuantStack/quantstack-open-source-internship-program-049755b6d44b",
title: "QuantStack open-source internship program",
image: "/img/blogposts/resized-images/QuantStack-open-source-internship-program.png",
summary: "Today, we are announcing a new internship program that aims to empower a new cohort of open-source contributors and future maintainers to make an impact within our ecosystem.",
date: "2024-07-09",
authors: "Sylvain Corlay",
imageID: "blogpost-image-118"
},
{
url: "https://medium.com/@QuantStack/jupytercad-2-0-4b9c4e18d22a",
title: "JupyterCAD 2.0",
image: "/img/blogposts/resized-images/JupyterCAD-2-0.png",
summary: "We are thrilled to introduce JupyterCAD 2.0, the newest version of the JupyterLab-based CAD modeler.",
date: "2024-07-05",
authors: "Trung Le, Martin Renou",
imageID: "blogpost-image-117"
},
{
url: "https://blog.jupyter.org/jupytergis-d63b7adf9d0c",
title: "JupyterGIS",
image: "/img/blogposts/resized-images/JupyterGIS.png",
summary: "We are thrilled to announce that the European Space Agency (ESA) is funding our proposal “Real-time collaboration and collaborative editing for GIS workflows with Jupyter and QGIS.”",
date: "2024-06-12",
authors: "Sylvain Corlay, Anne Fouilloux, Monika Weissschnur",
imageID: "blogpost-image-116"
},
{
url: "https://medium.com/@SylvainCorlay/commit-cdf57415b94b",
title: "Commit!",
image: "/img/blogposts/resized-images/Commit.png",
summary: "Open-source projects are not just about the latest exciting updates and features, but also the principles and people that drive these projects to success. In this blog post, I reflect on the dynamics…",
date: "2024-05-29",
authors: "Sylvain Corlay",
imageID: "blogpost-image-115"
},
{
url: "/blogs/Fanny",
title: "In memoriam: Fanny Loustau Chartez",
image: "/img/blogposts/resized-images/In-memoriam-Fanny-Loustau-Chartez.jpg",
summary: "It is with great sadness that we announce the passing of our colleague and friend, Fanny Loustau Chartez, who served as the Chief Financial Officer of QuantStack since 2021.",
date: "2024-05-16",
authors: "Sylvain Corlay",
imageID: "blogpost-image-114"
},
{
url: "https://medium.com/@PyDataParis/announcing-pydata-paris-2024-700220accc72",
title: "Announcing PyData Paris 2024",
image: "/img/blogposts/resized-images/Announcing-PyData-Paris-2024.png",
summary: "We are thrilled to announce the upcoming PyData Paris 2024, the gathering of the open-source data science and AI/ML community in France. PyData Paris will take place at the Cité des Sciences from September 25 to September 26, 2024.",
date: "2024-03-11",
authors: "Sylvain Corlay",
imageID: "blogpost-image-113"
},
{
url: "https://blog.jupyter.org/meet-xeus-r-a-future-proof-jupyter-kernel-for-r-1adc5fdd09ab",
title: "Meet Xeus-R: a future-proof Jupyter kernel for R",
image: "/img/blogposts/resized-images/Meet-Xeus-R-a-future-proof-Jupyter-kernel-for-R.png",
summary: "Today, we, a collaborative team led by Romain François and supported by QuantStack, are thrilled to announce the initial release of Xeus-R, a future-proof Jupyter kernel for R.",
date: "2024-01-22",
authors: "Romain François",
imageID: "blogpost-image-112"
},
{
url: "https://medium.com/@QuantStack/quantstack-2023-in-review-94fea0a35520",
title: "QuantStack: 2023 in review",
image: "/img/blogposts/resized-images/QuantStack-2023-in-review.png",
summary: "Since QuantStack was founded in 2016, we have remained committed to releasing our work under permissive open-source licenses. Here are some highlights of the 2023 achievements. Buckle up!",
date: "2024-01-03",
authors: "Sylvain Corlay",
imageID: "blogpost-image-111"
},
{
url: "https://blog.jupyter.org/recent-keyboard-navigation-improvements-in-jupyter-4df32f97628d",
title: "Recent keyboard navigation improvements in Jupyter",
image: "/img/blogposts/resized-images/Recent-keyboard-navigation-improvements-in-Jupyter.png",
summary: "Upcoming versions of JupyterLab (4.1.0) and Notebook (7.1.0) will include major keyboard accessibility fixes.",
date: "2023-12-16",
authors: "Nicolas Brichet, Gabriel Fouasnon",
imageID: "blogpost-image-110"
},
{
url: "https://blog.jupyter.org/and-voici-e02367197ba2",
title: "And Voici!",
image: "/img/blogposts/resized-images/And-Voici.png",
summary: "Voici (meaning “here is” in French) is a novel project reshaping Jupyter-based interactive dashboards by combining Voilà and JupyterLite features. It facilitates the creation of dynamic, in-browser environments for data visualization and exploration.",
date: "2023-12-06",
authors: "Trung Duc Le, Martin Renou",
imageID: "blogpost-image-109"
},
{
url: "https://blog.jupyter.org/plug-your-application-into-the-jupyter-world-805e48918801",
title: "Plug your application into the Jupyter world",
image: "/img/blogposts/resized-images/Plug-your-application-into-the-Jupyter-world.png",
summary: "Kernels are a simple but powerful abstraction in the Jupyter architecture. They encapsulate language interpreters and make them accessible through a standardized interface. This is the key to…",
date: "2023-10-23",
authors: "David Brochart",
imageID: "blogpost-image-108"
},
{
url: "https://blog.jupyter.org/voil%C3%A0-0-5-0-homecoming-66f2465aa86f",
title: "Voilà 0.5 - Homecoming",
image: "/img/blogposts/resized-images/Voila-0-5-Homecoming.png",
summary: "Following the launch of Jupyter Notebook 7, it is now Voilà’s turn to join the JupyterLab family. In Version 0.5.0, the front-end of Voilà has been rebuilt from scratch using JupyterLab 4.0 components, just like in the case of Notebook 7.",
date: "2023-09-25",
authors: "Jeremy Tuloup, Martin Renou, Trung Duc Le",
imageID: "blogpost-image-107"
},
{
url: "https://blog.jupyter.org/announcing-jupyter-notebook-7-8d6d66126dcf",
title: "Announcing Jupyter Notebook 7",
image: "/img/blogposts/resized-images/Announcing-Jupyter-Notebook-7.jpg",
summary: "Jupyter Notebook 7 is the most significant release of the Jupyter Notebook in years. Some highlights of this release include real-time collaboration, interactive debugging, table of contents, theming and dark mode, internationalization, improved accessibility, compact view on mobile devices.",
date: "2023-07-26",
authors: "Jeremy Tuloup",
imageID: "blogpost-image-106"
},
{
url: "https://blog.jupyter.org/jupytercon-2023-recordings-now-live-on-youtube-17564b75a2a",
title: "🎉 JupyterCon 2023 recordings now live on YouTube! 🎉",
image: "/img/blogposts/resized-images/JupyterCon-2023-recordings-now-live-on-YouTube.png",
summary: "Get ready to relive the magic of JupyterCon 2023, because the long-awaited moment is finally here! The JupyterCon YouTube channel has just dropped a treasure trove of content — all the talk and keynote recordings from the most epic conference of the year.",
date: "2023-07-22",
authors: "Gayle Ollington, Sylvain Corlay",
imageID: "blogpost-image-105"
},
{
url: "https://blog.jupyter.org/a-theme-editor-for-jupyterlab-8f08ab62894d",
title: "A theme editor for JupyterLab",
image: "/img/blogposts/resized-images/A-theme-editor-for-JupyterLab.png",
summary: "To lower the bar for customizing JupyterLab we created a new tool providing a simple interface for tuning the JupyterLab appearance interactively.",
date: "2023-06-19",
authors: "Florence Haudin",
imageID: "blogpost-image-104"
},
{
url: "https://blog.jupyter.org/collaborative-cad-in-jupyterlab-8eb9e8f81f0",
title: "Collaborative CAD in JupyterLab",
image: "/img/blogposts/resized-images/Collaborative-CAD-in-JupyterLab.png",
summary: "Introducing JupyterCAD, a tool that integrates Computer-Aided Design (CAD) capabilities into JupyterLab.",
date: "2023-06-02",
authors: "Duc Trung Le, Martin Renou",
imageID: "blogpost-image-103"
},
{
url: "https://blog.jupyter.org/congratulations-distinguished-contributors-7a7b215b8bd0",
title: "Congratulations, Distinguished Contributors!",
image: "/img/blogposts/resized-images/Congratulations-Distinguished-Contributors.png",
summary: "We are proud to announce the recipients of the Jupyter Distinguished Contributor (JDC) award for the 2022 cohort of contributors.",
date: "2023-06-02",
authors: "Johan Mabille",
imageID: "blogpost-image-102"
},
{
url: "https://blog.jupyter.org/embed-interactive-itkwidgets-3d-renderings-into-jupyterlite-deployments-10eb9ea30980",
title: "Embed interactive itkwidgets 3D renderings into JupyterLite deployments",
image: "/img/blogposts/resized-images/Embed-interactive-itkwidgets-3D-renderings-into-JupyterLite-deployments.png",
summary: "A tutorial that demonstrates a zero-server, interactive 3D rendering notebook and walks through the quick and easy configuration that can be customized to your needs.",
date: "2023-03-15",
authors: "Matt McCormick, Brianna Major, Jeremy Tuloup, Wei Ouyang, Stephen Aylward",
imageID: "blogpost-image-101"
},
{
url: "https://blog.jupyter.org/improving-the-accessibility-of-jupyter-6c695db518d3",
title: "Improving the accessibility of Jupyter",
image: "/img/blogposts/resized-images/Improving-the-accessibility-of-Jupyter.png",
summary: "This article presents some of the recent accessibility improvements in the Jupyter Notebook codebase.",
date: "2023-02-24",
authors: "Nicolas Brichet, Johan Mabille, Jeremy Tuloup, Frédéric Collonval, Sylvain Corlay",
imageID: "blogpost-image-100"
},
{
url: "https://blog.jupyter.org/a-jupyter-kernel-for-gnu-octave-b6d29e56341f",
title: "A Jupyter kernel for GNU Octave",
image: "/img/blogposts/resized-images/A-Jupyter-kernel-for-GNU-Octave.png",
summary: "We are happy to announce the xeus-octave project, a Jupyter kernel for GNU Octave. Xeus-octave was created by Giulio Girardi, recently joined by Antoine Prouvost - and has been incorporated into the Project Jupyter governance.",
date: "2023-01-11",
authors: "Giulio Girardi, Antoine Prouvost",
imageID: "blogpost-image-99"
},
{
url: "https://medium.com/@QuantStack/quantstack-2022-in-review-7d4704b1db42",
title: "QuantStack: 2022 in review",
image: "/img/blogposts/resized-images/QuantStack-2022-in-review.png",
summary: "2022 was an amazing year of innovation for the open-source developers at QuantStack. Developments range from major improvements to the Jupyter project to the packaging ecosystem and high-performance computing.",
date: "2022-12-26",
authors: "Sylvain Corlay",
imageID: "blogpost-image-98"
},
{
url: "https://medium.com/@AntoineProuvost/managing-conflicts-with-mamba-6a5fa10ed6a",
title: "Managing conflicts with Mamba",
image: "/img/blogposts/resized-images/Managing-conflicts-with-Mamba.png",
summary: "A key aspect of package management is finding a set of compatible versions of the required packages. Indeed, even in the case when few packages are explicitly required, second-order dependencies may…",
date: "2022-11-29",
authors: "Antoine Prouvost",
imageID: "blogpost-image-97"
},
{
url: "https://blog.jupyter.org/jupytercon-is-back-in-2023-90e5c25eeec9",
title: "JupyterCon is back in 2023",
image: "/img/blogposts/resized-images/JupyterCon-is-back-in-2023.png",
summary: "JupyterCon 2023 will be held May 10–12 (Thursday to Friday) in the city of light, Paris, France at the largest science museum in Europe, the Cité des Sciences et de l’Industrie.",
date: "2022-10-17",
authors: "Gayle Ollington",
imageID: "blogpost-image-96"
},
{
url: "https://blog.jupyter.org/accelerating-jupyterlab-68942bb8d602",
title: "Accelerating JupyterLab",
image: "/img/blogposts/resized-images/Accelerating-JupyterLab.png",
summary: "The next major release of JupyterLab will be significantly faster than previous versions. This was achieved both through systematic tracking of performance bugs and through significant upgrades to the Jupyter communication protocol and rendering mechanism for documents.",
date: "2022-09-15",
authors: "Frédéric Collonval, Johan Mabille, David Brochart, Afshin Darian",
imageID: "blogpost-image-95"
},
{
url: "https://blog.jupyter.org/upgrading-nbgrader-99c56ae56c47",
title: "Upgrading nbgrader",
image: "/img/blogposts/resized-images/Upgrading-nbgrader.png",
summary: "Project Jupyter provides a broad collection of open-source tools for interactive computing that has become ubiquitous in data science and scientific computing, and is very popular in educational…",
date: "2022-09-15",
authors: "Nicolas Brichet",
imageID: "blogpost-image-94"
},
{
url: "https://blog.jupyter.org/visual-programming-in-jupyterlab-with-blockly-7731ec3e113c",
title: "Visual programming in JupyterLab with Blockly",
image: "/img/blogposts/resized-images/Visual-programming-in-JupyterLab-with-Blockly.png",
summary: "When moving from block-based programming to a more classical language like Python, students often have to switch to a completely new environment. In order to provide a smooth ramp of complexity for learners, we designed a JupyterLab extension for Blockly so that Jupyter can be used from the very first steps of their learning journey.",
date: "2022-07-29",
authors: "Denisa Checiu, Carlos Herrero",
imageID: "blogpost-image-93"
},
{
url: "https://blog.jupyter.org/mamba-meets-jupyterlite-88ef49ac4dc8",
title: "Mamba meets JupyterLite",
image: "/img/blogposts/resized-images/Mamba-meets-JupyterLite.png",
summary: "JupyterLite is a Jupyter distribution that runs entirely in the web browser without any server components. To achieve this, all language kernels must also run in the browser. A significant benefit of…",
date: "2022-07-14",
authors: "Thorsten Beier, Martin Renou",
imageID: "blogpost-image-92"
},
{
url: "https://blog.jupyter.org/inspector-jupyterlab-404cce3e1df6",
title: "Inspector JupyterLab",
image: "/img/blogposts/resized-images/Inspector-JupyterLab.png",
summary: "JupyterLab provides multiple ways to improve your coding workflow: code highlighting, code completion, theming, debugger with rich variable rendering and more.",
date: "2022-04-11",
authors: "Martin Renou",
imageID: "blogpost-image-91"
},
{
url: "https://blog.pyodide.org/posts/canvas-renderer-matplotlib-in-pyodide/",
title: "HTML5 <canvas> based renderer for Matplotlib in Pyodide",
image: "/img/blogposts/resized-images/HTML5-<canvas>-based-renderer-for-Matplotlib-in-Pyodide.png",
summary: "In this post, we present a new backend for Matplotlib enabling the rendering of figures in the browser by leveraging the <canvas> element. This showcases how JavaScript and Python can interact with each other, thanks to Pyodide.",
date: "2022-04-01",
authors: "Madhur Tandon",
imageID: "blogpost-image-90"
},
{
url: "https://wolfv.medium.com/the-future-of-mamba-fdf6d628b3df",
title: "The future of mamba",
image: "/img/blogposts/resized-images/The-future-of-mamba.png",
summary: "The recent adoption of libmamba by the conda project was a great validation of our work. Several other game-changing innovations are in the works by the mamba team. Stay tuned!",
date: "2022-03-01",
authors: "Wolf Vollprecht",
imageID: "blogpost-image-89"
},
{
url: "https://blog.jupyter.org/congratulations-distinguished-contributors-bc349fa60d68",
title: "Congratulations, Distinguished Contributors!",
image: "/img/blogposts/resized-images/Congratulations-Distinguished-Contributors.png",
summary: "We are proud to announce the recipients of the Jupyter Distinguished Contributor (JDC) award for the 2021 cohort of contributors.",
date: "2022-03-16",
authors: "Johan Mabille",
imageID: "blogpost-image-88"
},
{
url: "https://blog.jupyter.org/jupyter-everywhere-f8151c2cc6e8",
title: "Jupyter Everywhere",
image: "/img/blogposts/resized-images/Jupyter-Everywhere.jpg",
summary: "Easily embed a console, a notebook, or a fully-fledged IDE on any web page.",
date: "2022-03-15",
authors: "Martin Renou, Jeremy Tuloup",
imageID: "blogpost-image-87"
},
{
url: "https://medium.com/@kmathewos92/ros2-support-for-zethus-e6ecfcdb1c4c",
title: "ROS2 support for Zethus",
image: "/img/blogposts/resized-images/ROS2-support-for-Zethus.png",
summary: "Zethus is an Open Source library for Robot visualization in the browser. Initially developed by Rapyuta Robotics, it provides a web-based…",
date: "2022-02-17",
authors: "Kedus Mathewos",
imageID: "blogpost-image-86"
},
{
url: "https://medium.com/@QuantStack/quantstack-2021-in-review-fe5eac2e0f6d",
title: "QuantStack: 2021 in review",
image: "/img/blogposts/resized-images/QuantStack-2021-in-review.png",
summary: "This was a crazy year of innovation for the open-source team at QuantStack. From JupyterLab to the packaging ecosystem and high-performance computing, we made some major strides in all areas, while almost doubling the size of the team.",
date: "2021-12-18",
authors: "Sylvain Corlay",
imageID: "blogpost-image-85"
},
{
url: "https://blog.jupyter.org/jupyter-games-cda20dc15a21",
title: "Jupyter Games",
image: "/img/blogposts/resized-images/Jupyter-Games.png",
summary: "Making their own tiny video games can be a great way for kids to learn programming in a playful matter. While Jupyter is widely used as a scientific and educational tool, Jupyter is seldom used as a…",
date: "2021-12-14",
authors: "Thorsten Beier",
imageID: "blogpost-image-84"
},
{
url: "https://blog.jupyter.org/need-for-speed-voil%C3%A0-edition-a9e1300ab3b2",
title: "Need for speed: Voilà edition",
image: "/img/blogposts/resized-images/Need-for-speed-Voila-edition.png",
summary: "Voilà turns Jupyter notebooks into standalone applications without requiring any modification to the content. You want to share your content with non-technical readers? Just call Voilà with the…",
date: "2021-12-10",
authors: "Duc Trung Le",
imageID: "blogpost-image-83"
},
{
url: "https://adelsalle.medium.com/towards-a-more-secure-conda-ecosystem-5ce65a27d7d5",
title: "Towards a more secure conda ecosystem",
image: "/img/blogposts/resized-images/Towards-a-more-secure-conda-ecosystem.png",
summary: "Supply chain security is crucial to the overall security of package managers, which are a major attack vector of information systems. Today, we are pleased to announce that mamba has gained the…",
date: "2021-11-16",
authors: "Adrien Delsalle",
imageID: "blogpost-image-82"
},
{
url: "https://johan-mabille.medium.com/toward-a-faster-and-thinner-xsimd-9e4eef41bc17",
title: "Toward a faster and thinner xsimd",
image: "/img/blogposts/resized-images/Toward-a-faster-and-thinner-xsimd.png",
summary: "xsimd, the SIMD library by QuantStack, got more and more adoption in recent years. While it helped improve the library, adoption also brought new requirements. Among them was the abitility to...",
date: "2021-10-29",
authors: "Serge Guelton, Johan Mabille",
imageID: "blogpost-image-81"
},
{
url: "https://blog.jupyter.org/xeus-lite-379e96bb199d",
title: "Xeus-Lite",
image: "/img/blogposts/resized-images/Xeus-Lite.png",
summary: "JupyterLite is a JupyterLab distribution that runs entirely in the web browser, backed by in-browser language kernels. Xeus is C++ library for writing Jupyter kernels. In this blogpost we show how…",
date: "2021-10-25",
authors: "Thorsten Beier",
imageID: "blogpost-image-80"
},
{
url: "https://wolfv.medium.com/the-mamba-project-and-the-czi-grant-ec88fb27c25",
title: "The mamba project and the CZI grant",
image: "/img/blogposts/resized-images/The-mamba-project-and-the-CZI-grant.png",
summary: "For those who don't know yet: mamba is a fast, cross-platform & non-language-specific package manager widely used in the scientific space. Mamba works with conda -packages and works great in tandem…",
date: "2021-10-19",
authors: "Wolf Vollprecht",
imageID: "blogpost-image-79"
},
{
url: "https://blog.jupyter.org/looking-at-notebooks-from-a-new-perspective-bfd06797f188",
title: "Looking at notebooks from a new perspective",
image: "/img/blogposts/resized-images/Looking-at-notebooks-from-a-new-perspective.png",
summary: "Jupyter notebooks are a great tool for practitioners of scientific computing from the research phase of their work to the communication of their results. The interleaving of code and rich text makes…",
date: "2021-10-05",
authors: "Mariana Meireles",
imageID: "blogpost-image-78"
},
{
url: "https://blog.jupyter.org/xeus-2-0-cb460d4daed4",
title: "Xeus 2.0",
image: "/img/blogposts/resized-images/Xeus-2-0.png",
summary: "We have just released Xeus 2.0. This is a major release of the library. While it includes backward-incompatible changes, they are very limited and upgrading your kernels should be relatively easy…",
date: "2021-09-28",
authors: "Johan Mabille, Sylvain Corlay",
imageID: "blogpost-image-77"
},
{
url: "https://blog.jupyter.org/from-jupyter-to-the-moon-2e432df402c8",
title: "From Jupyter to the Moon",
image: "/img/blogposts/resized-images/From-Jupyter-to-the-Moon.png",
summary: "A key principle in Jupyter’s design is language agnosticism, and one of the main extension points of the Jupyter ecosystem is the kernel, the part of the architecture responsible for executing the…",
date: "2021-09-24",
authors: "Thorsten Beier",
imageID: "blogpost-image-76"
},
{
url: "https://blog.jupyter.org/jupyterlite-jupyter-%EF%B8%8F-webassembly-%EF%B8%8F-python-f6e2e41ab3fa",
title: "Jupyter ❤️ WebAssembly ❤️ Python",
image: "/img/blogposts/resized-images/Jupyter-WebAssembly-Python.png",
summary: "JupyterLite is a JupyterLab distribution that runs entirely in the web browser, backed by in-browser language kernels. JupyterLite is a reboot of several attempts at making a full static Jupyter…",
date: "2021-07-13",
authors: "Jeremy Tuloup",
imageID: "blogpost-image-75"
},
{
url: "https://wolfv.medium.com/mamba-0-15-0-475d1dca0418",
title: "Mamba 0.15.0",
image: "/img/blogposts/resized-images/Mamba-0-15-0.png",
summary: "We’ve just dropped one of the biggest releases of mamba (the fast conda package manager)— along with some nice improvements in libsolv! This is a quick update on some new and improved features in…",
date: "2021-07-09",
authors: "Wolf Vollprecht, Adrien Delsalle",
imageID: "blogpost-image-74"
},
{
url: "https://www.polytechnique.edu/fondation/content/le-calcul-haute-performance-au-service-de-l%E2%80%99innovation",
title: "Le calcul haute performance au service de l'innovation (in French)",
image: "/img/blogposts/resized-images/Le-calcul-haute-performance-au-service-de-l'innovation-in-French.png",
summary: "Led by Professor Marc Massot (Center for Applied Mathematics), the HPC@Maths initiative aims at developing a strong expertise in high-performance computing at École Polytechnique. This project is supported by the X Foundation, and by QuantStack.",
date: "2021-06-18",
authors: "Fondation École Polytechnique",
imageID: "blogpost-image-73"
},
{
url: "https://blog.jupyter.org/how-we-made-jupyter-notebooks-collaborative-with-yjs-b8dff6a9d8af",
title: "How we made Jupyter notebooks collaborative with Yjs",
image: "/img/blogposts/resized-images/How-we-made-Jupyter-notebooks-collaborative-with-Yjs.png",
summary: "Collaborative editing — à la Google Docs — is a feature that you still rarely find in applications. One of the few good things that came out of this pandemic is that more people seem to care about…",
date: "2021-06-12",
authors: "Kevin Jahns",
imageID: "blogpost-image-72"
},
{
url: "https://blog.jupyter.org/retrolab-a-jupyterlab-distribution-with-a-retro-look-and-feel-8096b8b223d0",
title: "RetroLab - A JupyterLab distribution with a retro look and feel",
image: "/img/blogposts/resized-images/RetroLab-A-JupyterLab-distribution-with-a-retro-look-and-feel.png",
summary: "RetroLab is an alternative JupyterLab distribution, built from the ground-up, providing a notebook interface with a retro look and feel. Currently at version 3.0, JupyterLab provides an advanced…",
date: "2021-06-27",
authors: "Jeremy Tuloup",
imageID: "blogpost-image-71"
},
{
url: "https://adelsalle.medium.com/rhumba-the-fast-r-distribution-is-available-on-windows-fa975b2aefa2",
title: "Rhumba, the fast R distribution is available on Windows",
image: "/img/blogposts/resized-images/Rhumba-the-fast-R-distribution-is-available-on-Windows.png",
summary: "A few months ago, Mariana Meireles created Rhumba, a fast R package manager and distribution leveraging the conda-forge initiative and the mamba library. Today, we’re happy to announce a new major…",
date: "2021-05-18",
authors: "Adrien Delsalle",
imageID: "blogpost-image-70"
},
{
url: "https://blog.jupyter.org/enabling-the-jupyterlab-debugger-with-ipykernel-8d7248f522b0",
title: "Enabling the JupyterLab Debugger with ipykernel",
image: "/img/blogposts/resized-images/Enabling-the-JupyterLab-Debugger-with-ipykernel.png",
summary: "JupyterLab 3.0 includes a visual debugger that allows to interactively set breakpoints, step into functions, and inspect variables with any Jupyter kernel that implements the Jupyter debugger…",
date: "2021-05-13",
authors: "Sylvain Corlay, Johan Mabille",
imageID: "blogpost-image-69"
},
{
url: "https://medium.com/@mari_meir/jupyter-%EF%B8%8F-%EF%B8%8F-cytoscape-e2e77be8e0f9",
title: "Jupyter ❤️ Cytoscape",
image: "/img/blogposts/resized-images/Jupyter-Cytoscape.png",
summary: "Cytoscape is an open source software platform for visualizing complex networks and integrating these with any type of attribute data. While the project was started in the life sciences community, it…",
date: "2021-05-11",
authors: "Mariana Meireles",
imageID: "blogpost-image-68"
},
{
url: "https://johan-mabille.medium.com/zarray-a-dynamic-expression-system-based-on-xtensor-ded69f37ff5e",
title: "zarray: a dynamic expression system based on xtensor",
image: "/img/blogposts/resized-images/zarray-a-dynamic-expression-system-based-on-xtensor.png",
summary: "In this article we demonstrate how we pushed xtensor one step further, implementing a dynamic expression system on top of it. xtensor is a comprehensive C++framework for multi-dimensional array…",
date: "2021-04-29",
authors: "Johan Mabille",
imageID: "blogpost-image-67"
},
{
url: "https://blog.jupyter.org/nbterm-jupyter-notebooks-in-the-terminal-6a2b55d08b70",
title: "nbterm: Jupyter Notebooks in the terminal",
image: "/img/blogposts/resized-images/nbterm-Jupyter-Notebooks-in-the-terminal.png",
summary: "Jupyter notebooks are mostly known for their web-based user interface, such as JupyterLab or the Classic Notebook. They offer a great user experience, allow for rich output rendering, provide…",
date: "2021-04-26",
authors: "David Brochart",
imageID: "blogpost-image-66"
},
{
url: "https://blog.jupyter.org/abracadabra-bringing-the-magics-to-xeus-python-9d17bcfacb4",
title: "Abracadabra! Bringing the Magics to Xeus-Python",
image: "/img/blogposts/resized-images/Abracadabra-Bringing-the-Magics-to-Xeus-Python.png",
summary: "Last year, we set ourselves to implement a visual debugger for JupyterLab. This endeavor required major developments in the JupyterLab…",
date: "2021-02-18",
authors: "Martin Renou",
imageID: "blogpost-image-65"
},
{
url: "https://medium.com/robostack/cross-platform-conda-packages-for-ros-fa1974fd1de3",
title: "Cross-platform Conda Packages for ROS",
image: "/img/blogposts/resized-images/Cross-platform-Conda-Packages-for-ROS.jpg",
summary: "2020 has been a busy year for the RoboStack project. We collaboratively published ros-noetic on four platforms (Windows, macOS, Linux x64 and ARM64) and revamped how ROS packages can be released on…",
date: "2021-02-16",
authors: "Wolf Vollprecht, Tobias Fischer",
imageID: "blogpost-image-64"
},
{
url: "https://blog.jupyter.org/genomic-data-representation-in-jupyter-c57a5bb518d6",
title: "Genomic Data representation in Jupyter",
image: "/img/blogposts/resized-images/Genomic-Data-representation-in-Jupyter.png",
summary: "If there is one thing that recent events tell us, it is that genomics is a large source of data, and that its manipulation and understanding allow for the quick development of new drugs and…",
date: "2021-02-08",
authors: "Jean-David Harrouet",
imageID: "blogpost-image-63"
},
{
url: "https://blog.jupyter.org/an-sql-solution-for-jupyter-ef4a00a0d925?postPublishedType=initial",
title: "An SQL Solution for Jupyter",
image: "/img/blogposts/resized-images/An-SQL-Solution-for-Jupyter.png",
summary: "A few months ago we released xeus-sqlite, a Jupyter kernel that allows users to make SQLite queries directly from the notebook. With the needs of the Jupyter data science community in mind we decided…",
date: "2021-02-03",
authors: "Mariana Meireles",
imageID: "blogpost-image-62"
},
{
url: "https://blog.jupyter.org/a-curiously-recurring-widget-library-261a65bd56fe",
title: "A Curiously Recurring Widget Library",
image: "/img/blogposts/resized-images/A-Curiously-Recurring-Widget-Library.png",
summary: "Diving into the implementation of xwidgets…",
date: "2021-01-27",
authors: "Sylvain Corlay",
imageID: "blogpost-image-61"
},
{
url: "https://blog.jupyter.org/robotic-process-automation-with-jupyterlab-713b5630e457",
title: "Robotic Process Automation with JupyterLab",
image: "/img/blogposts/resized-images/Robotic-Process-Automation-with-JupyterLab.png",
summary: "Robotic Process Automation (RPA) differs from classical automation tools in that the actions to automate can be developed by observing a user perform a task in a graphical user interface, across…",
date: "2021-01-18",
authors: "Martin Renou, Johan Mabille",
imageID: "blogpost-image-60"
},
{
url: "https://blog.jupyter.org/dashboarding-with-jupyterlab-3-789fcb1a5857",
title: "Dashboarding with JupyterLab 3.0",
image: "/img/blogposts/resized-images/Dashboarding-with-JupyterLab-3-0.png",
summary: "Project Jupyter offers a complete suite of open-source tools for the scientific computing community, reaching from the exploratory phase of a project to the presentation of the results. In this last…",
date: "2021-01-08",
authors: "Carlos Herrero, Jeremy Tuloup",
imageID: "blogpost-image-59"
},
{
url: "https://blog.jupyter.org/jupyterlab-3-0-is-out-4f58385e25bb",
title: "JupyterLab 3.0 is Released!",
image: "/img/blogposts/resized-images/JupyterLab-3-0-is-Released.png",
summary: "The 3.0 release of JupyterLab brings many new features to users and substantial improvements to the extension distribution system.",
date: "2021-01-05",
authors: "Jeremy Tuloup",
imageID: "blogpost-image-58"
},
{
url: "https://blog.llvm.org/posts/2020-12-21-interactive-cpp-for-data-science/",
title: "Interactive C++ for Data Science",
image: "/img/blogposts/resized-images/Interactive-C++-for-Data-Science.png",
summary: "This post will discuss some applications of Cling developed to support data science researchers. In particular, interactively probing data and interfaces makes complex libraries and complex data…",
date: "2020-12-23",
authors: "Vassil Vassilev, David Lange, Simeon Ehrig, Sylvain Corlay",
imageID: "blogpost-image-57"
},
{
url: "https://david-brochart.medium.com/xtensor-%EF%B8%8F-zarr-4f5cf25c65e5",
title: "Xtensor ❤️ Zarr",
image: "/img/blogposts/resized-images/Xtensor-Zarr.png",
summary: "A C++ implementation of the Zarr specification…",
date: "2020-12-15",
authors: "David Brochart",
imageID: "blogpost-image-56"
},
{
url: "https://blog.jupyter.org/a-c-backend-for-vega-lite-bd2524b247c2",
title: "A C++ API for Vega-Lite",
image: "/img/blogposts/resized-images/A-C++-API-for-Vega-Lite.png",
summary: "In this post, we present the first public release of XVega, a C++ library for producing Vega-Lite charts. Data science workflows differ from traditional software development in that engineers make…",
date: "2020-12-02",
authors: "Madhur Tandon",
imageID: "blogpost-image-55"
},
{
url: "https://blog.jupyter.org/ipygany-jupyter-into-the-third-dimension-29a97597fc33",
title: "Ipygany, Jupyter into the Third Dimension",
image: "/img/blogposts/resized-images/Ipygany-Jupyter-into-the-Third-Dimension.png",
summary: "From Paraview to Mayavi, there are multiple solutions for data analysis on 3D meshes on the desktop. Most of these tools provide high-level APIs that can be driven with a scripting language like…",
date: "2020-10-14",
authors: "Martin Renou",
imageID: "blogpost-image-54"
},
{
url: "https://medium.com/@mari_meir/rhumba-a-faster-r-distribution-d619fb93043a",
title: "Rhumba, a Faster R Distribution",
image: "/img/blogposts/resized-images/Rhumba-a-Faster-R-Distribution.png",
summary: "CRAN is the official package manager for the R ecosystem. Unfortunately, simple operations such as creating new environments or installing packages with it can be very time-consuming due to the fact…",
date: "2020-10-13",
authors: "Mariana Meireles",
imageID: "blogpost-image-53"
},
{
url: "https://blog.jupyter.org/the-templating-system-of-nbconvert-6-47ea781eacd2",
title: "The Templating System of Nbconvert 6",
image: "/img/blogposts/resized-images/The-Templating-System-of-Nbconvert-6.png",
summary: "One of the main changes in nbconvert 6 is the refactor of the template system, which should be easier to extend and build upon. In this article, we dive into the template system, and provide a…",
date: "2020-09-26",
authors: "Sylvain Corlay",
imageID: "blogpost-image-52"
},
{
url: "https://medium.com/@mari_meir/memestra-a21c0c1f362",
title: "Memestra!",
image: "/img/blogposts/resized-images/Memestra.png",
summary: "Modern IDE features such as interactive debugging, linting, code formatting, and refactoring tools are now available in JupyterLab, thanks to the JupyterLab-LSP extension and the recent release of…",
date: "2020-09-21",
authors: "Mariana Meireles",
imageID: "blogpost-image-51"
},
{
url: "https://medium.com/@martinRenou/real-time-rendering-of-water-caustics-59cda1d74aa",
title: "Real-time Rendering of Water Caustics",
image: "/img/blogposts/resized-images/Real-time-Rendering-of-Water-Caustics.png",
summary: "In this article, I present an attempt for generalizing caustics computation in real-time using WebGL and ThreeJS. The fact that it is an attempt is important, finding a solution that works well in…",
date: "2020-08-27",
authors: "Martin Renou",
imageID: "blogpost-image-50"
},
{
url: "https://blog.jupyter.org/jupyterlab-ros-3dc9dab7f421",
title: "JupyterLab, the Cloud Robotics Command Station",
image: "/img/blogposts/resized-images/JupyterLab-the-Cloud-Robotics-Command-Station.png",
summary: "Building the next generation of robotics cloud computing using ROS and JupyterLab",
date: "2020-08-11",
authors: "Carlos Herrero, Wolf Vollprecht",
imageID: "blogpost-image-49"
},
{
url: "https://blog.jupyter.org/slicerjupyter-a-3d-slicer-kernel-for-interactive-publications-6f2ad829f635",
title: "SlicerJupyter, a 3-D Slicer Kernel for Interactive Publications",
image: "/img/blogposts/resized-images/SlicerJupyter-a-3-D-Slicer-Kernel-for-Interactive-Publications.png",
summary: "Use Jupyter and 3D Slicer kernel to implement biomedical data processing workflows in a notebook.",
date: "2020-07-08",
authors: "Sylvain Corlay, Jean-Christophe Fillion-Robin, Mike Grauer, Andras Lasso, Matt MacCormick, Isaiah Norton, Steve Pieper, Martin Renou, Mike Sarahan",
imageID: "blogpost-image-48"
},
{
url: "https://medium.com/@QuantStack/open-software-packaging-for-science-61cecee7fc23",
title: "Open Software Packaging for Science",
image: "/img/blogposts/resized-images/Open-Software-Packaging-for-Science.png",
summary: "Modern scientific applications typically depend on a very large number of libraries written in various programming languages, ranging from Fortran to TypeScript, C, C++, Python, etc. So, we need to…",
date: "2020-07-19",
authors: "Wolf Vollprecht, Mario Buikhuizen, Marianne Corvellec, Johan Mabille, David Brochart",
imageID: "blogpost-image-47"
},
{
url: "https://blog.jupyter.org/a-jupyter-kernel-for-sqlite-9549c5dcf551",
title: "A Jupyter Kernel for SQLite",
image: "/img/blogposts/resized-images/A-Jupyter-Kernel-for-SQLite.png",
summary: "While it is well known in the Python scientific computing community, Jupyter is in fact a language-agnostic development environment. High-quality language kernels exist for the main languages of data…",
date: "2020-06-11",
authors: "Mariana Meireles",
imageID: "blogpost-image-46"
},
{
url: "https://blog.jupyter.org/plasma-a-learning-platform-powered-by-jupyter-1b850fcd8624",
title: "PLASMA, a Learning Platform Powered by Jupyter",
image: "/img/blogposts/resized-images/PLASMA-a-Learning-Platform-Powered-by-Jupyter.png",
summary: "Jupyter has been a great choice for education for many years. The Jupyter Notebook has become one of the most popular tools to conduct workshops, tutorials, and teach online classes. Recently we have…",
date: "2020-05-11",
authors: "Jeremy Tuloup",
imageID: "blogpost-image-45"
},
{
url: "https://blog.jupyter.org/interactive-graph-visualization-in-jupyter-with-ipycytoscape-a8828a54ab63",
title: "Interactive Graph Visualization in Jupyter with IPycytoscape",
image: "/img/blogposts/resized-images/Interactive-Graph-Visualization-in-Jupyter-with-IPycytoscape.png",
summary: "The Jupyter widgets ecosystem offers a broad variety of data visualization tools for exploratory analysis in the notebook. However, we…",
date: "2020-04-30",
authors: "Mariana Meireles",
imageID: "blogpost-image-44"
},
{
url: "https://blog.jupyter.org/a-visual-debugger-for-jupyter-914e61716559",
title: "A Visual Debugger for Jupyter",
image: "/img/blogposts/resized-images/A-Visual-Debuger-for-Jupyter.png",
summary: "Most of the progress made in software projects comes from incrementalism. The ability to quickly see the outcome of an execution and iterate has been one of the main reasons for the success of…",
date: "2020-03-25",
authors: "Jeremy Tuloup, Borys Palka, Johan Mabille, Martin Renou, Afshin Darian, Sylvain Corlay",
imageID: "blogpost-image-43"
},
{
url: "https://blog.jupyter.org/report-on-the-jupyter-community-workshop-on-dashboarding-14f8ad9f3c0",
title: "Field Report on the Jupyter Community Workshop on Dashboarding",
image: "/img/blogposts/resized-images/Field-Report-on-the-Jupyter-Community-Workshop-on-Dashboarding.png",
summary: "From June 3rd to June 6th 2019, thirty-five developers from the Jupyter community met in Paris for a four-day workshop on dashboarding with Project Jupyter. For four days, attendees worked full time…",
date: "2020-02-14",
authors: "Sylvain Corlay",
imageID: "blogpost-image-42"
},
{
url: "https://medium.com/@wolfv/introducing-scikit-geometry-ae1dccaad5fd",
title: "Introducing Scikit-Geometry",
image: "/img/blogposts/resized-images/Introducing-Scikit-Geometry.png",
summary: "As a robotics researcher (but also in many other fields) computations on geometric primitives are used very frequently— but it’s harder than anticipated to find the right abstractions in a nice…",
date: "2020-01-24",
authors: "Wolf Vollprecht",
imageID: "blogpost-image-41"
},
{
url: "https://medium.com/@johan.mabille/how-we-wrote-xtensor-8-n-iterators-7df77e3223f7",
title: "How we Wrote Xtensor (Episode 8) - Iterators",
image: "/img/blogposts/resized-images/How-we-Wrote-Xtensor-Episode-8-Iterators.png",
summary: "In the previous article, we implemented the broadcasting rules so that we can compute the shape of arbitrary complex trees that involve arrays with different but compatible shapes. This is the first…",
date: "2020-01-07",
authors: "Johan Mabille",
imageID: "blogpost-image-40"
},
{
url: "https://medium.com/@wolfv/2019-in-review-d7d03fb0d17d",
title: "2019 in Review",
image: "/img/blogposts/resized-images/2019-in-Review.png",
summary: "This year has seen major changes in xeus and xeus-python, driven by the requirements for developing a visual debugger. We have implemented a prototype that supports the Debug Adapter Protocol from…",
date: "2020-01-02",