Skip to content

Commit 0f89659

Browse files
Add a blog post.
1 parent 581fca4 commit 0f89659

File tree

5 files changed

+23
-1
lines changed

5 files changed

+23
-1
lines changed

src/components/blog/_config.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ copyright:
44
type_title: All rights reserved
55

66
blog:
7+
- url: https://medium.com/@QuantStack/introducing-mamba-2-0-0e8d5c6d1d0c
8+
title: "Introducing Mamba 2.0"
9+
image: https://miro.medium.com/v2/resize:fit:828/format:webp/0*q3RzcOZXWZzyfDIG
10+
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."
11+
date: July 16, 2024
12+
authors: Antoine Prouvost, Joel Lamotte, Johan Mabille, Hind Montassif
713

814
- url: https://medium.com/@QuantStack/quantstack-open-source-internship-program-049755b6d44b
915
title: "QuantStack open-source internship program"

src/components/blog/blogpostsDetails.json

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,17 @@
11
[
2+
{
3+
"url": "https://medium.com/@QuantStack/introducing-mamba-2-0-0e8d5c6d1d0c",
4+
"title": "Introducing Mamba 2.0",
5+
"image": "/img/blogposts/Introducing-Mamba-2-0.png",
6+
"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.",
7+
"date": "July 16, 2024",
8+
"authors": "Antoine Prouvost, Joel Lamotte, Johan Mabille, Hind Montassif",
9+
"imageID": "blogpost-image-119",
10+
"imageNaturalWidth": 828,
11+
"imageNaturalHeight": 328,
12+
"imageRenderedWidth": 305,
13+
"imageRenderedHeight": 120.82125603864735
14+
},
215
{
316
"url": "https://medium.com/@QuantStack/quantstack-open-source-internship-program-049755b6d44b",
417
"title": "QuantStack open-source internship program",
@@ -106,7 +119,7 @@
106119
{
107120
"url": "https://blog.jupyter.org/recent-keyboard-navigation-improvements-in-jupyter-4df32f97628d",
108121
"title": "Recent keyboard navigation improvements in Jupyter",
109-
"image": "/img/blogposts/Recent-keyboard-navigation-improvements-in-Jupyter.gif",
122+
"image": "/img/blogposts/Recent-keyboard-navigation-improvements-in-Jupyter.png",
110123
"summary": "Upcoming versions of JupyterLab (4.1.0) and Notebook (7.1.0) will include major keyboard accessibility fixes.",
111124
"date": "December 16th, 2023",
112125
"authors": "Nicolas Brichet, Gabriel Fouasnon",

src/components/blog/yml-to-json.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,9 @@ function defineImagesNames(data) {
3333
} else if (blogpost.image.includes(".svg")) {
3434
fileExtension = ".svg";
3535
}
36+
else {
37+
fileExtension = ".png";
38+
}
3639
let name = blogpost.title;
3740
name = name.split("!").join("");
3841
name = name.split(" - ").join("-");
18.8 KB
Loading

0 commit comments

Comments
 (0)