-
Notifications
You must be signed in to change notification settings - Fork 49
/
Copy pathblogpostsDetails.json
1705 lines (1705 loc) · 85.4 KB
/
blogpostsDetails.json
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
[
{
"url": "https://david-brochart.medium.com/making-qt-collaborative-using-crdts-94c470703253",
"title": "Making Qt collaborative using CRDTs",
"image": "/img/blogposts/Collaborative-Qt.png",
"summary": "A journal on creating a collaborative application with Qt",
"date": "March 31, 2025",
"authors": "David Brochart",
"imageID": "blogpost-image-129",
"imageNaturalWidth": 976,
"imageNaturalHeight": 288,
"imageRenderedWidth": 273,
"imageRenderedHeight": 80.56
},
{
"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/Xeus-R-Lite.png",
"summary": "R is now available in emscripten-forge, enabling the Xeus-R kernel in JupyterLite.",
"date": "February 28, 2025",
"authors": "Isabel Paredes",
"imageID": "blogpost-image-129",
"imageNaturalWidth": 1920,
"imageNaturalHeight": 840,
"imageRenderedWidth": 273,
"imageRenderedHeight": 119.43
},
{
"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/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": "February 26, 2025",
"authors": "Meriem Ben Ismail, Nicolas Brichet, David Brochart, Matt Fisher, Anne Fouilloux, Greg Mooney, Martin Renou, Arjun Verma",
"imageID": "blogpost-image-128",
"imageNaturalWidth": 3840,
"imageNaturalHeight": 2041,
"imageRenderedWidth": 273,
"imageRenderedHeight": 145.10
},
{
"url": "https://medium.com/@PyDataParis/pydata-paris-2025-50ff2bf2dc39",
"title": "PyData Paris 2025 Keynotes",
"image": "/img/blogposts/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": "February 19, 2025",
"authors": "Sandrine Pataut",
"imageID": "blogpost-image-127",
"imageNaturalWidth": 372,
"imageNaturalHeight": 353,
"imageRenderedWidth": 171.27,
"imageRenderedHeight": 180
},
{
"url": "https://blog.jupyter.org/announcing-jupytercad-3-0-d8f4b7b0a719",
"title": "Announcing JupyterCAD 3.0",
"image": "/img/blogposts/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": "February 17, 2025",
"authors": "Arjun Verma, Trung Le, Martin Renou",
"imageID": "blogpost-image-126",
"imageNaturalWidth": 2940,
"imageNaturalHeight": 1462,
"imageRenderedWidth": 273,
"imageRenderedHeight": 136.25
},
{
"url": "https://johan-mabille.medium.com/sparrow-1f23817f6696",
"title": "Sparrow",
"image": "/img/blogposts/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": "January 31, 2025",
"authors": "Johan Mabille, Alexis Placet, Thorsten Beier, Joël Lamotte",
"imageID": "blogpost-image-125",
"imageNaturalWidth": 1600,
"imageNaturalHeight": 800,
"imageRenderedWidth": 273,
"imageRenderedHeight": 136.5
},
{
"url": "https://blog.jupyter.org/jupyterlite-terminal-edb3f80dc1c0",
"title": "JupyterLite Terminal",
"image": "/img/blogposts/Jupyterlite-Terminal.gif",
"summary": "QuantStack are delighted to announce that we have been working on a new Terminal for JupyterLite.",
"date": "November 13, 2024",
"authors": "Ian Thomas",
"imageID": "blogpost-image-124",
"imageNaturalWidth": 2000,
"imageNaturalHeight": 1200,
"imageRenderedWidth": 273,
"imageRenderedHeight": 163.8
},
{
"url": "https://blog.jupyter.org/automate-your-releases-with-the-jupyter-releaser-701e7b9841e6",
"title": "Automate your releases with the Jupyter Releaser 🚀",
"image": "/img/blogposts/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": "October 28, 2024",
"authors": "Jeremy Tuloup",
"imageID": "blogpost-image-123",
"imageNaturalWidth": 1700,
"imageNaturalHeight": 900,
"imageRenderedWidth": 273,
"imageRenderedHeight": 144.529411765
},
{
"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/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": "October 22, 2024",
"authors": "Sylvain Corlay",
"imageID": "blogpost-image-123",
"imageNaturalWidth": 1700,
"imageNaturalHeight": 900,
"imageRenderedWidth": 273,
"imageRenderedHeight": 144.529411765
},
{
"url": "https://blog.jupyter.org/interactive-mapping-with-ipyopenlayers-2b8bc93bb6c4",
"title": "Interactive Mapping with ipyopenlayers",
"image": "/img/blogposts/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": "September 6, 2024",
"authors": "Nour Cheour",
"imageID": "blogpost-image-122",
"imageNaturalWidth": 1400,
"imageNaturalHeight": 642,
"imageRenderedWidth": 273,
"imageRenderedHeight": 125.64857142857142
},
{
"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/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": "September 4, 2024",
"authors": "Johan Mabille, on behalf of the Jupyter Distinguished Contributors",
"imageID": "blogpost-image-121",
"imageNaturalWidth": 670,
"imageNaturalHeight": 160,
"imageRenderedWidth": 273,
"imageRenderedHeight": 65.19402985074626
},
{
"url": "https://blog.jupyter.org/ipydatagrid-is-now-part-of-project-jupyter-3b3dfb877664",
"title": "Ipydatagrid is now part of Project Jupyter",
"image": "/img/blogposts/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": "August 22, 2024",
"authors": "Sylvain Corlay, on behalf of the Jupyter Widgets Council",
"imageID": "blogpost-image-120",
"imageNaturalWidth": 1490,
"imageNaturalHeight": 760,
"imageRenderedWidth": 273,
"imageRenderedHeight": 138.2281879194631
},
{
"url": "https://medium.com/@QuantStack/introducing-mamba-2-0-0e8d5c6d1d0c",
"title": "Introducing Mamba 2.0",
"image": "/img/blogposts/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": "July 16, 2024",
"authors": "Antoine Prouvost, Joël Lamotte, Johan Mabille, Hind Montassif",
"imageID": "blogpost-image-119",
"imageNaturalWidth": 828,
"imageNaturalHeight": 328,
"imageRenderedWidth": 273,
"imageRenderedHeight": 108.14492753623189
},
{
"url": "https://medium.com/@QuantStack/quantstack-open-source-internship-program-049755b6d44b",
"title": "QuantStack open-source internship program",
"image": "/img/blogposts/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": "July 9, 2024",
"authors": "Sylvain Corlay",
"imageID": "blogpost-image-118",
"imageNaturalWidth": 1240,
"imageNaturalHeight": 405,
"imageRenderedWidth": 273,
"imageRenderedHeight": 89.16532258064517
},
{
"url": "https://medium.com/@QuantStack/jupytercad-2-0-4b9c4e18d22a",
"title": "JupyterCAD 2.0",
"image": "/img/blogposts/JupyterCAD-2-0.png",
"summary": "We are thrilled to introduce JupyterCAD 2.0, the newest version of the JupyterLab-based CAD modeler.",
"date": "July 5, 2024",
"authors": "Trung Le, Martin Renou",
"imageID": "blogpost-image-117",
"imageNaturalWidth": 828,
"imageNaturalHeight": 441,
"imageRenderedWidth": 273,
"imageRenderedHeight": 145.40217391304347
},
{
"url": "https://blog.jupyter.org/jupytergis-d63b7adf9d0c",
"title": "JupyterGIS",
"image": "/img/blogposts/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": "June 12, 2024",
"authors": "Sylvain Corlay, Anne Fouilloux, Monika Weissschnur",
"imageID": "blogpost-image-116",
"imageNaturalWidth": 1400,
"imageNaturalHeight": 621,
"imageRenderedWidth": 273,
"imageRenderedHeight": 121.09500000000001
},
{
"url": "https://medium.com/@SylvainCorlay/commit-cdf57415b94b",
"title": "Commit!",
"image": "/img/blogposts/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": "May 29, 2024",
"authors": "Sylvain Corlay",
"imageID": "blogpost-image-115",
"imageNaturalWidth": 1600,
"imageNaturalHeight": 896,
"imageRenderedWidth": 273,
"imageRenderedHeight": 152.88
},
{
"url": "/blogs/Fanny",
"title": "In memoriam: Fanny Loustau Chartez",
"image": "/img/blogposts/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": "May 16, 2024",
"authors": "Sylvain Corlay",
"imageID": "blogpost-image-114",
"imageNaturalWidth": 333,
"imageNaturalHeight": 333,
"imageRenderedWidth": 180,
"imageRenderedHeight": 180
},
{
"url": "https://medium.com/@PyDataParis/announcing-pydata-paris-2024-700220accc72",
"title": "Announcing PyData Paris 2024",
"image": "/img/blogposts/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": "March 11, 2024",
"authors": "Sylvain Corlay",
"imageID": "blogpost-image-113",
"imageNaturalWidth": 1100,
"imageNaturalHeight": 733,
"imageRenderedWidth": 273,
"imageRenderedHeight": 181.91727272727275
},
{
"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/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": "January 22nd, 2024",
"authors": "Romain François",
"imageID": "blogpost-image-112",
"imageNaturalWidth": 1400,
"imageNaturalHeight": 540,
"imageRenderedWidth": 273,
"imageRenderedHeight": 105.3
},
{
"url": "https://medium.com/@QuantStack/quantstack-2023-in-review-94fea0a35520",
"title": "QuantStack: 2023 in review",
"image": "/img/blogposts/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": "January 3rd, 2024",
"authors": "Sylvain Corlay",
"imageID": "blogpost-image-111",
"imageNaturalWidth": 1600,
"imageNaturalHeight": 893,
"imageRenderedWidth": 273,
"imageRenderedHeight": 152.368125
},
{
"url": "https://blog.jupyter.org/recent-keyboard-navigation-improvements-in-jupyter-4df32f97628d",
"title": "Recent keyboard navigation improvements in Jupyter",
"image": "/img/blogposts/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": "December 16th, 2023",
"authors": "Nicolas Brichet, Gabriel Fouasnon",
"imageID": "blogpost-image-110",
"imageNaturalWidth": 320,
"imageNaturalHeight": 172,
"imageRenderedWidth": 273,
"imageRenderedHeight": 146.7375
},
{
"url": "https://blog.jupyter.org/and-voici-e02367197ba2",
"title": "And Voici!",
"image": "/img/blogposts/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": "December 6th, 2023",
"authors": "Trung Duc Le, Martin Renou",
"imageID": "blogpost-image-109",
"imageNaturalWidth": 1400,
"imageNaturalHeight": 559,
"imageRenderedWidth": 273,
"imageRenderedHeight": 109.005
},
{
"url": "https://blog.jupyter.org/plug-your-application-into-the-jupyter-world-805e48918801",
"title": "Plug your application into the Jupyter world",
"image": "/img/blogposts/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": "October 23rd, 2023",
"authors": "David Brochart",
"imageID": "blogpost-image-108",
"imageNaturalWidth": 715,
"imageNaturalHeight": 300,
"imageRenderedWidth": 273,
"imageRenderedHeight": 114.54545454545455
},
{
"url": "https://blog.jupyter.org/voil%C3%A0-0-5-0-homecoming-66f2465aa86f",
"title": "Voilà 0.5 - Homecoming",
"image": "/img/blogposts/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": "September 25th, 2023",
"authors": "Jeremy Tuloup, Martin Renou, Trung Duc Le",
"imageID": "blogpost-image-107",
"imageNaturalWidth": 1512,
"imageNaturalHeight": 1111,
"imageRenderedWidth": 244.96849684968495,
"imageRenderedHeight": 180
},
{
"url": "https://blog.jupyter.org/announcing-jupyter-notebook-7-8d6d66126dcf",
"title": "Announcing Jupyter Notebook 7",
"image": "/img/blogposts/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": "July 26th, 2023",
"authors": "Jeremy Tuloup",
"imageID": "blogpost-image-106",
"imageNaturalWidth": 1400,
"imageNaturalHeight": 788,
"imageRenderedWidth": 273,
"imageRenderedHeight": 153.66
},
{
"url": "https://blog.jupyter.org/jupytercon-2023-recordings-now-live-on-youtube-17564b75a2a",
"title": "🎉 JupyterCon 2023 recordings now live on YouTube! 🎉",
"image": "/img/blogposts/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": "July 22nd, 2023",
"authors": "Gayle Ollington, Sylvain Corlay",
"imageID": "blogpost-image-105",
"imageNaturalWidth": 1011,
"imageNaturalHeight": 328,
"imageRenderedWidth": 273,
"imageRenderedHeight": 88.56973293768546
},
{
"url": "https://blog.jupyter.org/a-theme-editor-for-jupyterlab-8f08ab62894d",
"title": "A theme editor for JupyterLab",
"image": "/img/blogposts/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": "June 19th, 2023",
"authors": "Florence Haudin",
"imageID": "blogpost-image-104",
"imageNaturalWidth": 1400,
"imageNaturalHeight": 1015,
"imageRenderedWidth": 248.27586206896552,
"imageRenderedHeight": 180
},
{
"url": "https://blog.jupyter.org/collaborative-cad-in-jupyterlab-8eb9e8f81f0",
"title": "Collaborative CAD in JupyterLab",
"image": "/img/blogposts/Collaborative-CAD-in-JupyterLab.png",
"summary": "Introducing JupyterCAD, a tool that integrates Computer-Aided Design (CAD) capabilities into JupyterLab.",
"date": "June 2nd, 2023",
"authors": "Duc Trung Le, Martin Renou",
"imageID": "blogpost-image-103",
"imageNaturalWidth": 1400,
"imageNaturalHeight": 627,
"imageRenderedWidth": 273,
"imageRenderedHeight": 122.265
},
{
"url": "https://blog.jupyter.org/congratulations-distinguished-contributors-7a7b215b8bd0",
"title": "Congratulations, Distinguished Contributors!",
"image": "/img/blogposts/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": "June 2nd, 2023",
"authors": "Johan Mabille",
"imageID": "blogpost-image-102",
"imageNaturalWidth": 1202,
"imageNaturalHeight": 672,
"imageRenderedWidth": 273,
"imageRenderedHeight": 152.62562396006655
},
{
"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/Embed-interactive-itkwidgets-3D-renderings-into-JupyterLite-deployments.gif",
"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": "March 15th, 2023",
"authors": "Matt McCormick, Brianna Major, Jeremy Tuloup, Wei Ouyang, Stephen Aylward",
"imageID": "blogpost-image-101",
"imageNaturalWidth": 600,
"imageNaturalHeight": 641,
"imageRenderedWidth": 168.48673946957877,
"imageRenderedHeight": 180
},
{
"url": "https://blog.jupyter.org/improving-the-accessibility-of-jupyter-6c695db518d3",
"title": "Improving the accessibility of Jupyter",
"image": "/img/blogposts/Improving-the-accessibility-of-Jupyter.png",
"summary": "This article presents some of the recent accessibility improvements in the Jupyter Notebook codebase.",
"date": "February 24th, 2023",
"authors": "Nicolas Brichet, Johan Mabille, Jeremy Tuloup, Frédéric Collonval, Sylvain Corlay",
"imageID": "blogpost-image-100",
"imageNaturalWidth": 1238,
"imageNaturalHeight": 482,
"imageRenderedWidth": 273,
"imageRenderedHeight": 106.28917609046849
},
{
"url": "https://blog.jupyter.org/a-jupyter-kernel-for-gnu-octave-b6d29e56341f",
"title": "A Jupyter kernel for GNU Octave",
"image": "/img/blogposts/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": "January 11th, 2023",
"authors": "Giulio Girardi, Antoine Prouvost",
"imageID": "blogpost-image-99",
"imageNaturalWidth": 1308,
"imageNaturalHeight": 482,
"imageRenderedWidth": 273,
"imageRenderedHeight": 100.60091743119266
},
{
"url": "https://medium.com/@QuantStack/quantstack-2022-in-review-7d4704b1db42",
"title": "QuantStack: 2022 in review",
"image": "/img/blogposts/QuantStack-2022-in-review.webp",
"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": "December 26th, 2022",
"authors": "Sylvain Corlay",
"imageID": "blogpost-image-98",
"imageNaturalWidth": 1400,
"imageNaturalHeight": 781,
"imageRenderedWidth": 273,
"imageRenderedHeight": 152.295
},
{
"url": "https://medium.com/@AntoineProuvost/managing-conflicts-with-mamba-6a5fa10ed6a",
"title": "Managing conflicts with Mamba",
"image": "/img/blogposts/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": "November 29th, 2022",
"authors": "Antoine Prouvost",
"imageID": "blogpost-image-97",
"imageNaturalWidth": 2072,
"imageNaturalHeight": 1460,
"imageRenderedWidth": 273,
"imageRenderedHeight": 192.36486486486487
},
{
"url": "https://blog.jupyter.org/jupytercon-is-back-in-2023-90e5c25eeec9",
"title": "JupyterCon is back in 2023",
"image": "/img/blogposts/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": "October 17th, 2022",
"authors": "Gayle Ollington",
"imageID": "blogpost-image-96",
"imageNaturalWidth": 1400,
"imageNaturalHeight": 783,
"imageRenderedWidth": 273,
"imageRenderedHeight": 152.685
},
{
"url": "https://blog.jupyter.org/accelerating-jupyterlab-68942bb8d602",
"title": "Accelerating JupyterLab",
"image": "/img/blogposts/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": "September 15th, 2022",
"authors": "Frédéric Collonval, Johan Mabille, David Brochart, Afshin Darian",
"imageID": "blogpost-image-95",
"imageNaturalWidth": 1400,
"imageNaturalHeight": 781,
"imageRenderedWidth": 273,
"imageRenderedHeight": 152.295
},
{
"url": "https://blog.jupyter.org/upgrading-nbgrader-99c56ae56c47",
"title": "Upgrading nbgrader",
"image": "/img/blogposts/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": "September 15th, 2022",
"authors": "Nicolas Brichet",
"imageID": "blogpost-image-94",
"imageNaturalWidth": 512,
"imageNaturalHeight": 256,
"imageRenderedWidth": 273,
"imageRenderedHeight": 136.5
},
{
"url": "https://blog.jupyter.org/visual-programming-in-jupyterlab-with-blockly-7731ec3e113c",
"title": "Visual programming in JupyterLab with Blockly",
"image": "/img/blogposts/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": "July 29th, 2022",
"authors": "Denisa Checiu, Carlos Herrero",
"imageID": "blogpost-image-93",
"imageNaturalWidth": 1400,
"imageNaturalHeight": 770,
"imageRenderedWidth": 273,
"imageRenderedHeight": 150.15
},
{
"url": "https://blog.jupyter.org/mamba-meets-jupyterlite-88ef49ac4dc8",
"title": "Mamba meets JupyterLite",
"image": "/img/blogposts/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": "July 14th, 2022",
"authors": "Thorsten Beier, Martin Renou",
"imageID": "blogpost-image-92",
"imageNaturalWidth": 1400,
"imageNaturalHeight": 1032,
"imageRenderedWidth": 244.1860465116279,
"imageRenderedHeight": 180
},
{
"url": "https://blog.jupyter.org/inspector-jupyterlab-404cce3e1df6",
"title": "Inspector JupyterLab",
"image": "/img/blogposts/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": "April 11th, 2022",
"authors": "Martin Renou",
"imageID": "blogpost-image-91",
"imageNaturalWidth": 675,
"imageNaturalHeight": 540,
"imageRenderedWidth": 225,
"imageRenderedHeight": 180
},
{
"url": "https://blog.pyodide.org/posts/canvas-renderer-matplotlib-in-pyodide/",
"title": "HTML5 <canvas> based renderer for Matplotlib in Pyodide",
"image": "/img/blogposts/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": "April 1st, 2022",
"authors": "Madhur Tandon",
"imageID": "blogpost-image-90",
"imageNaturalWidth": 2268,
"imageNaturalHeight": 1062,
"imageRenderedWidth": 273,
"imageRenderedHeight": 127.83333333333333
},
{
"url": "https://wolfv.medium.com/the-future-of-mamba-fdf6d628b3df",
"title": "The future of mamba",
"image": "/img/blogposts/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": "March 31st, 2022",
"authors": "Wolf Vollprecht",
"imageID": "blogpost-image-89",
"imageNaturalWidth": 1400,
"imageNaturalHeight": 836,
"imageRenderedWidth": 273,
"imageRenderedHeight": 163.01999999999998
},
{
"url": "https://blog.jupyter.org/congratulations-distinguished-contributors-bc349fa60d68",
"title": "Congratulations, Distinguished Contributors!",
"image": "/img/blogposts/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": "March 16th, 2022",
"authors": "Johan Mabille",
"imageID": "blogpost-image-88",
"imageNaturalWidth": 1202,
"imageNaturalHeight": 672,
"imageRenderedWidth": 273,
"imageRenderedHeight": 152.62562396006655
},
{
"url": "https://blog.jupyter.org/jupyter-everywhere-f8151c2cc6e8",
"title": "Jupyter Everywhere",
"image": "/img/blogposts/Jupyter-Everywhere.jpg",
"summary": "Easily embed a console, a notebook, or a fully-fledged IDE on any web page.",
"date": "March 15th, 2022",
"authors": "Martin Renou, Jeremy Tuloup",
"imageID": "blogpost-image-87",
"imageNaturalWidth": 671,
"imageNaturalHeight": 372,
"imageRenderedWidth": 273,
"imageRenderedHeight": 151.35022354694487
},
{
"url": "https://medium.com/@kmathewos92/ros2-support-for-zethus-e6ecfcdb1c4c",
"title": "ROS2 support for Zethus",
"image": "/img/blogposts/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": "February 17th, 2022",
"authors": "Kedus Mathewos",
"imageID": "blogpost-image-86",
"imageNaturalWidth": 1400,
"imageNaturalHeight": 788,
"imageRenderedWidth": 273,
"imageRenderedHeight": 153.66
},
{
"url": "https://medium.com/@QuantStack/quantstack-2021-in-review-fe5eac2e0f6d",
"title": "QuantStack: 2021 in review",
"image": "/img/blogposts/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": "December 18th, 2021",
"authors": "Sylvain Corlay",
"imageID": "blogpost-image-85",
"imageNaturalWidth": 2500,
"imageNaturalHeight": 1400,
"imageRenderedWidth": 273,
"imageRenderedHeight": 152.88
},
{
"url": "https://blog.jupyter.org/jupyter-games-cda20dc15a21",
"title": "Jupyter Games",
"image": "/img/blogposts/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": "December 14th, 2021",
"authors": "Thorsten Beier",
"imageID": "blogpost-image-84",
"imageNaturalWidth": 2427,
"imageNaturalHeight": 1203,
"imageRenderedWidth": 273,
"imageRenderedHeight": 135.31891223733004
},
{
"url": "https://blog.jupyter.org/need-for-speed-voil%C3%A0-edition-a9e1300ab3b2",
"title": "Need for speed: Voilà edition",
"image": "/img/blogposts/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": "December 10th, 2021",
"authors": "Duc Trung Le",
"imageID": "blogpost-image-83",
"imageNaturalWidth": 2000,
"imageNaturalHeight": 691,
"imageRenderedWidth": 273,
"imageRenderedHeight": 94.3215
},
{
"url": "https://adelsalle.medium.com/towards-a-more-secure-conda-ecosystem-5ce65a27d7d5",
"title": "Towards a more secure conda ecosystem",
"image": "/img/blogposts/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": "November 16th, 2021",
"authors": "Adrien Delsalle",
"imageID": "blogpost-image-82",
"imageNaturalWidth": 2000,
"imageNaturalHeight": 625,
"imageRenderedWidth": 273,
"imageRenderedHeight": 85.3125
},
{
"url": "https://johan-mabille.medium.com/toward-a-faster-and-thinner-xsimd-9e4eef41bc17",
"title": "Toward a faster and thinner xsimd",
"image": "/img/blogposts/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": "October 29th, 2021",
"authors": "Serge Guelton, Johan Mabille",
"imageID": "blogpost-image-81",
"imageNaturalWidth": 832,
"imageNaturalHeight": 251,
"imageRenderedWidth": 273,
"imageRenderedHeight": 82.359375
},
{
"url": "https://blog.jupyter.org/xeus-lite-379e96bb199d",
"title": "Xeus-Lite",
"image": "/img/blogposts/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": "October 25th, 2021",
"authors": "Thorsten Beier",
"imageID": "blogpost-image-80",
"imageNaturalWidth": 2010,
"imageNaturalHeight": 1582,
"imageRenderedWidth": 228.69785082174462,
"imageRenderedHeight": 180
},
{
"url": "https://wolfv.medium.com/the-mamba-project-and-the-czi-grant-ec88fb27c25",
"title": "The mamba project and the CZI grant",
"image": "/img/blogposts/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": "October 19th, 2021",
"authors": "Wolf Vollprecht",
"imageID": "blogpost-image-79",
"imageNaturalWidth": 2000,
"imageNaturalHeight": 877,
"imageRenderedWidth": 273,
"imageRenderedHeight": 119.7105
},
{
"url": "https://blog.jupyter.org/looking-at-notebooks-from-a-new-perspective-bfd06797f188",
"title": "Looking at notebooks from a new perspective",
"image": "/img/blogposts/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": "October 5th, 2021",
"authors": "Mariana Meireles",
"imageID": "blogpost-image-78",
"imageNaturalWidth": 1500,
"imageNaturalHeight": 750,
"imageRenderedWidth": 273,
"imageRenderedHeight": 136.5
},
{
"url": "https://blog.jupyter.org/xeus-2-0-cb460d4daed4",
"title": "Xeus 2.0",
"image": "/img/blogposts/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": "September 28th, 2021",
"authors": "Johan Mabille, Sylvain Corlay",
"imageID": "blogpost-image-77",
"imageNaturalWidth": 1000,
"imageNaturalHeight": 600,
"imageRenderedWidth": 273,
"imageRenderedHeight": 163.79999999999998
},
{
"url": "https://blog.jupyter.org/from-jupyter-to-the-moon-2e432df402c8",
"title": "From Jupyter to the Moon",
"image": "/img/blogposts/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": "September 24th, 2021",
"authors": "Thorsten Beier",
"imageID": "blogpost-image-76",
"imageNaturalWidth": 1375,
"imageNaturalHeight": 562,
"imageRenderedWidth": 273,
"imageRenderedHeight": 111.58254545454547
},
{
"url": "https://blog.jupyter.org/jupyterlite-jupyter-%EF%B8%8F-webassembly-%EF%B8%8F-python-f6e2e41ab3fa",
"title": "Jupyter ❤️ WebAssembly ❤️ Python",
"image": "/img/blogposts/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": "July 13th, 2021",
"authors": "Jeremy Tuloup",
"imageID": "blogpost-image-75",
"imageNaturalWidth": 512,
"imageNaturalHeight": 512,
"imageRenderedWidth": 180,
"imageRenderedHeight": 180
},
{
"url": "https://wolfv.medium.com/mamba-0-15-0-475d1dca0418",
"title": "Mamba 0.15.0",
"image": "/img/blogposts/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": "July 9th, 2021",
"authors": "Wolf Vollprecht, Adrien Delsalle",
"imageID": "blogpost-image-74",
"imageNaturalWidth": 2000,
"imageNaturalHeight": 904,
"imageRenderedWidth": 273,
"imageRenderedHeight": 123.396
},
{
"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/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": "June 18th, 2021",
"authors": "Fondation École Polytechnique",
"imageID": "blogpost-image-73",
"imageNaturalWidth": 280,
"imageNaturalHeight": 396,
"imageRenderedWidth": 127.27272727272727,
"imageRenderedHeight": 180
},
{
"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/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": "June 12th, 2021",
"authors": "Kevin Jahns",
"imageID": "blogpost-image-72",
"imageNaturalWidth": 800,
"imageNaturalHeight": 258,
"imageRenderedWidth": 273,
"imageRenderedHeight": 88.04249999999999
},
{
"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/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": "May 27th, 2021",
"authors": "Jeremy Tuloup",
"imageID": "blogpost-image-71",
"imageNaturalWidth": 1000,
"imageNaturalHeight": 750,
"imageRenderedWidth": 240,
"imageRenderedHeight": 180
},
{
"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/Rhumba-the-fast-R-distribution-is-available-on-Windows.gif",
"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": "May 18th, 2021",
"authors": "Adrien Delsalle",
"imageID": "blogpost-image-70",
"imageNaturalWidth": 1285,
"imageNaturalHeight": 771,
"imageRenderedWidth": 273,
"imageRenderedHeight": 163.79999999999998
},
{
"url": "https://blog.jupyter.org/enabling-the-jupyterlab-debugger-with-ipykernel-8d7248f522b0",
"title": "Enabling the JupyterLab Debugger with ipykernel",
"image": "/img/blogposts/Enabling-the-JupyterLab-Debugger-with-ipykernel.gif",
"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": "May 13th, 2021",
"authors": "Sylvain Corlay, Johan Mabille",
"imageID": "blogpost-image-69",
"imageNaturalWidth": 2107,
"imageNaturalHeight": 1134,
"imageRenderedWidth": 273,
"imageRenderedHeight": 146.93023255813952
},
{
"url": "https://medium.com/@mari_meir/jupyter-%EF%B8%8F-%EF%B8%8F-cytoscape-e2e77be8e0f9",
"title": "Jupyter ❤️ Cytoscape",
"image": "/img/blogposts/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": "May 11th, 2021",
"authors": "Mariana Meireles",
"imageID": "blogpost-image-68",
"imageNaturalWidth": 250,
"imageNaturalHeight": 250,
"imageRenderedWidth": 180,
"imageRenderedHeight": 180
},
{
"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/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": "Apr 29th, 2021",
"authors": "Johan Mabille",
"imageID": "blogpost-image-67",
"imageNaturalWidth": 391,
"imageNaturalHeight": 391,
"imageRenderedWidth": 180,
"imageRenderedHeight": 180
},
{
"url": "https://blog.jupyter.org/nbterm-jupyter-notebooks-in-the-terminal-6a2b55d08b70",
"title": "nbterm: Jupyter Notebooks in the terminal",
"image": "/img/blogposts/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": "Apr 26th, 2021",
"authors": "David Brochart",
"imageID": "blogpost-image-66",
"imageNaturalWidth": 1120,
"imageNaturalHeight": 436,
"imageRenderedWidth": 273,
"imageRenderedHeight": 106.27499999999999
},
{
"url": "https://blog.jupyter.org/abracadabra-bringing-the-magics-to-xeus-python-9d17bcfacb4",
"title": "Abracadabra! Bringing the Magics to Xeus-Python",
"image": "/img/blogposts/Abracadabra-Bringing-the-Magics-to-Xeus-Python.gif",
"summary": "Last year, we set ourselves to implement a visual debugger for JupyterLab. This endeavor required major developments in the JupyterLab…",
"date": "Feb 18th, 2021",
"authors": "Martin Renou",
"imageID": "blogpost-image-65",
"imageNaturalWidth": 1250,
"imageNaturalHeight": 750,
"imageRenderedWidth": 273,
"imageRenderedHeight": 163.79999999999998
},
{
"url": "https://medium.com/robostack/cross-platform-conda-packages-for-ros-fa1974fd1de3",
"title": "Cross-platform Conda Packages for ROS",
"image": "/img/blogposts/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": "February 16th, 2021",
"authors": "Wolf Vollprecht, Tobias Fischer",
"imageID": "blogpost-image-64",
"imageNaturalWidth": 2000,
"imageNaturalHeight": 1345,
"imageRenderedWidth": 273,
"imageRenderedHeight": 183.5925
},
{
"url": "https://blog.jupyter.org/genomic-data-representation-in-jupyter-c57a5bb518d6",
"title": "Genomic Data representation in Jupyter",
"image": "/img/blogposts/Genomic-Data-representation-in-Jupyter.gif",
"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": "February 8th, 2021",
"authors": "Jean-David Harrouet",
"imageID": "blogpost-image-63",
"imageNaturalWidth": 800,
"imageNaturalHeight": 487,
"imageRenderedWidth": 273,
"imageRenderedHeight": 166.18875
},
{
"url": "https://blog.jupyter.org/an-sql-solution-for-jupyter-ef4a00a0d925?postPublishedType=initial",
"title": "An SQL Solution for Jupyter",
"image": "/img/blogposts/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": "February 3rd, 2021",
"authors": "Mariana Meireles",
"imageID": "blogpost-image-62",
"imageNaturalWidth": 620,
"imageNaturalHeight": 530,
"imageRenderedWidth": 210.56603773584905,
"imageRenderedHeight": 180
},
{
"url": "https://blog.jupyter.org/a-curiously-recurring-widget-library-261a65bd56fe",
"title": "A Curiously Recurring Widget Library",
"image": "/img/blogposts/A-Curiously-Recurring-Widget-Library.png",
"summary": "Diving into the implementation of xwidgets…",
"date": "January 27th, 2021",
"authors": "Sylvain Corlay",
"imageID": "blogpost-image-61",
"imageNaturalWidth": 1120,
"imageNaturalHeight": 803,
"imageRenderedWidth": 251.0585305105853,
"imageRenderedHeight": 180
},
{
"url": "https://blog.jupyter.org/robotic-process-automation-with-jupyterlab-713b5630e457",
"title": "Robotic Process Automation with JupyterLab",
"image": "/img/blogposts/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": "January 18th, 2021",
"authors": "Martin Renou, Johan Mabille",
"imageID": "blogpost-image-60",
"imageNaturalWidth": 700,
"imageNaturalHeight": 313,
"imageRenderedWidth": 273,
"imageRenderedHeight": 122.07
},
{
"url": "https://blog.jupyter.org/dashboarding-with-jupyterlab-3-789fcb1a5857",
"title": "Dashboarding with JupyterLab 3.0",
"image": "/img/blogposts/Dashboarding-with-JupyterLab-3-0.gif",
"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": "January 8th, 2021",
"authors": "Carlos Herrero, Jeremy Tuloup",
"imageID": "blogpost-image-59",
"imageNaturalWidth": 1918,
"imageNaturalHeight": 968,
"imageRenderedWidth": 273,
"imageRenderedHeight": 137.78102189781023
},
{
"url": "https://blog.jupyter.org/jupyterlab-3-0-is-out-4f58385e25bb",
"title": "JupyterLab 3.0 is Released!",
"image": "/img/blogposts/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": "January 5th, 2021",
"authors": "Jeremy Tuloup",
"imageID": "blogpost-image-58",
"imageNaturalWidth": 1000,
"imageNaturalHeight": 750,
"imageRenderedWidth": 240,
"imageRenderedHeight": 180
},
{
"url": "https://blog.llvm.org/posts/2020-12-21-interactive-cpp-for-data-science/",
"title": "Interactive C++ for Data Science",
"image": "/img/blogposts/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 more accessible users.",
"date": "Dec 23, 2020",
"authors": "Vassil Vassilev, David Lange, Simeon Ehrig, Sylvain Corlay",
"imageID": "blogpost-image-57",
"imageNaturalWidth": 1000,
"imageNaturalHeight": 599,
"imageRenderedWidth": 273,
"imageRenderedHeight": 163.52700000000002
},
{
"url": "https://david-brochart.medium.com/xtensor-%EF%B8%8F-zarr-4f5cf25c65e5",
"title": "Xtensor ❤️ Zarr",
"image": "/img/blogposts/Xtensor-Zarr.png",
"summary": "A C++ implementation of the Zarr specification…",
"date": "Dec 15, 2020",
"authors": "David Brochart",
"imageID": "blogpost-image-56",
"imageNaturalWidth": 2160,
"imageNaturalHeight": 949,
"imageRenderedWidth": 273,
"imageRenderedHeight": 119.94305555555555
},
{
"url": "https://blog.jupyter.org/a-c-backend-for-vega-lite-bd2524b247c2",
"title": "A C++ API for Vega-Lite",
"image": "/img/blogposts/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": "Dec 2, 2020",
"authors": "Madhur Tandon",
"imageID": "blogpost-image-55",
"imageNaturalWidth": 700,
"imageNaturalHeight": 567,
"imageRenderedWidth": 222.2222222222222,