You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* docs: fix typos on first-time-contributors
* fix minor typos
* ping makim version on dev.yml
* add automaticdally generated .md file for another blog entry
* add automatically created .md file
---------
Co-authored-by: Ana Krelling <[email protected]>
Copy file name to clipboardExpand all lines: pages/blog/artbox-what-is-it-how-to-collaborete/index.md
+1-5Lines changed: 1 addition & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -17,11 +17,7 @@ template: "blog-post.html"
17
17
ArtBox is a versatile tool set designed for efficient multimedia file handling, offering a range of valuable functions to enhance your multimedia processing experience.
18
18
19
19
20
-
ArtBox offers a variety of features such as converting text to audio, downloading YouTube videos, creating songs based on musical notes, removing audio from videos, extracting audio from videos, and combining audio and video files, providing users with convenient solutions for various multimedia tasks.
21
-
22
-
23
-
These key features make ArtBox an great tool for multimedia enthusiasts, content creators, and anyone seeking efficient and user-friendly solutions for multimedia file manipulation. Explore the possibilities with ArtBox and elevate your multimedia processing capabilities.
24
-
20
+
Key features of ArtBox include capabilities for text-to-audio conversion, YouTube video downloading, musical composition from notes, audio removal from video clips, audio extraction, and merging audio with video files. These functionalities position ArtBox as a pivotal tool for multimedia enthusiasts, content creators, and anyone in need of efficient multimedia processing solutions.
Copy file name to clipboardExpand all lines: pages/blog/first-time-contributors/index.ipynb
+17-9Lines changed: 17 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -219,7 +219,7 @@
219
219
"$ git config --global pull.rebase true\n",
220
220
"```\n",
221
221
"\n",
222
-
"OSL recommend the usage of git rebase\n"
222
+
"OSL recommends the usage of git rebase\n"
223
223
]
224
224
},
225
225
{
@@ -372,7 +372,7 @@
372
372
"\n",
373
373
"Choosing between GitHub Flow and GitFlow depends on your team's specific needs and project requirements:\n",
374
374
"\n",
375
-
"- **GitHub Flow**: Ideal for teams focused on continuous delivery, rapid iteration, and simplicity. This is most used in a bunch of proyects.\n",
375
+
"- **GitHub Flow**: Ideal for teams focused on continuous delivery, rapid iteration, and simplicity. This is most used in a bunch of projects.\n",
376
376
"- **GitFlow**: Suited for larger projects with longer release cycles, strict versioning, and a more structured approach to development.\n",
377
377
"\n",
378
378
"While both workflows have their merits, it's essential to assess your team's workflow preferences, project size, and release cycle frequency before making a decision.\n",
@@ -381,7 +381,7 @@
381
381
"\n",
382
382
"For a deeper dive into GitFlow's advantages and implementation details, consider referring to the following blog post: [click here](https://lucamezzalira.medium.com/git-flow-vs-github-flow-76b93f4782f7).\n",
383
383
"\n",
384
-
"OSL recommend the github flow"
384
+
"OSL recommends the github flow"
385
385
]
386
386
},
387
387
{
@@ -500,7 +500,7 @@
500
500
"\n",
501
501
"- **Cookiecutter**: Cookiecutter is a command-line utility that generates projects from project templates. It prompts you for project-specific details and then creates a customized project structure based on the selected template. There are many community-contributed templates available for various types of Python projects, including web applications, libraries, and data analysis projects.\n",
502
502
"\n",
503
-
"- **SciCookie**: SciCookie is a project template ocused on the scientific python community, but it can be used by any python project. It includes a structured directory layout, documentation templates, and example code snippets. SciCookie helps streamline the setup process for scientific Python projects and encourages best practices in testing and documentation.\n",
503
+
"- **SciCookie**: SciCookie is a project template focused on the scientific python community, but it can be used by any python project. It includes a structured directory layout, documentation templates, and example code snippets. SciCookie helps streamline the setup process for scientific Python projects and encourages best practices in testing and documentation.\n",
504
504
"\n",
505
505
"In summary, while `unittest` provides a robust framework for writing unit tests in Python, alternative frameworks like Pytest and Hypothesis offer additional features and flexibility. When starting a new project, leveraging project templates such as `scicookie` with tools like `cookiecutter` can accelerate setup and promote best practices in project organization and testing."
506
506
]
@@ -509,11 +509,11 @@
509
509
"cell_type": "markdown",
510
510
"metadata": {},
511
511
"source": [
512
-
"# What is a virtual enviroments and why it is important?\n",
512
+
"# What is a virtual enviroment and why is it important?\n",
513
513
"\n",
514
514
"A virtual environment is a self-contained directory that isolates the dependencies for a specific project, regardless of the programming language. It can house an interpreter (like Python) along with its associated libraries, but it can also manage dependencies for other languages and tools. This isolation ensures that the project's requirements don't conflict with those of other projects on the same system.\n",
515
515
"\n",
516
-
"When you create a virtual environment for each of your project, it essentially creates a sandboxed environment where you can install packages and dependencies without affecting the global Python installation on your system. This isolation is crucial because different projects often require different versions of libraries or dependencies, and conflicts can arise if they share the same environment.\n",
516
+
"When you create a virtual environment for each of your projects, it essentially creates a sandboxed environment where you can install packages and dependencies without affecting the global Python installation on your system. This isolation is crucial because different projects often require different versions of libraries or dependencies, and conflicts can arise if they share the same environment.\n",
517
517
"\n",
518
518
"Creating virtual environments is crucial for several reasons:\n",
Copy file name to clipboardExpand all lines: pages/blog/first-time-contributors/index.md
+8-8Lines changed: 8 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
---
2
2
title: "First Time Contributors"
3
3
slug: first-time-contributors
4
-
date: 2024-04-05
4
+
date: 2024-04-08
5
5
authors: ["Daniela Iglesias Rocabado"]
6
6
tags: [open-source, contributors, git, osl]
7
7
categories: [contributors]
@@ -161,7 +161,7 @@ It's worth noting that some organizations, such as the Open Source Initiative (O
161
161
$ git config --global pull.rebase true
162
162
```
163
163
164
-
OSL recommend the usage of git rebase
164
+
OSL recommends the usage of git rebase
165
165
166
166
167
167
## Mergin a Pull Requests (PRs)
@@ -285,7 +285,7 @@ GitFlow, developed by Vincent Driessen, provides a more organized approach to br
285
285
286
286
Choosing between GitHub Flow and GitFlow depends on your team's specific needs and project requirements:
287
287
288
-
- **GitHub Flow**: Ideal for teams focused on continuous delivery, rapid iteration, and simplicity. This is most used in a bunch of proyects.
288
+
- **GitHub Flow**: Ideal for teams focused on continuous delivery, rapid iteration, and simplicity. This is most used in a bunch of projects.
289
289
- **GitFlow**: Suited for larger projects with longer release cycles, strict versioning, and a more structured approach to development.
290
290
291
291
While both workflows have their merits, it's essential to assess your team's workflow preferences, project size, and release cycle frequency before making a decision.
@@ -294,7 +294,7 @@ While both workflows have their merits, it's essential to assess your team's wor
294
294
295
295
For a deeper dive into GitFlow's advantages and implementation details, consider referring to the following blog post: [click here](https://lucamezzalira.medium.com/git-flow-vs-github-flow-76b93f4782f7).
296
296
297
-
OSL recommend the github flow
297
+
OSL recommends the github flow
298
298
299
299
## Python Linters Overview
300
300
@@ -389,15 +389,15 @@ When starting a new Python project, it's beneficial to use project templates tha
389
389
390
390
- **Cookiecutter**: Cookiecutter is a command-line utility that generates projects from project templates. It prompts you for project-specific details and then creates a customized project structure based on the selected template. There are many community-contributed templates available for various types of Python projects, including web applications, libraries, and data analysis projects.
391
391
392
-
- **SciCookie**: SciCookie is a project template ocused on the scientific python community, but it can be used by any python project. It includes a structured directory layout, documentation templates, and example code snippets. SciCookie helps streamline the setup process for scientific Python projects and encourages best practices in testing and documentation.
392
+
- **SciCookie**: SciCookie is a project template focused on the scientific python community, but it can be used by any python project. It includes a structured directory layout, documentation templates, and example code snippets. SciCookie helps streamline the setup process for scientific Python projects and encourages best practices in testing and documentation.
393
393
394
394
In summary, while `unittest` provides a robust framework for writing unit tests in Python, alternative frameworks like Pytest and Hypothesis offer additional features and flexibility. When starting a new project, leveraging project templates such as `scicookie` with tools like `cookiecutter` can accelerate setup and promote best practices in project organization and testing.
395
395
396
-
# What is a virtual enviroments and why it is important?
396
+
# What is a virtual enviroment and why is it important?
397
397
398
398
A virtual environment is a self-contained directory that isolates the dependencies for a specific project, regardless of the programming language. It can house an interpreter (like Python) along with its associated libraries, but it can also manage dependencies for other languages and tools. This isolation ensures that the project's requirements don't conflict with those of other projects on the same system.
399
399
400
-
When you create a virtual environment for each of your project, it essentially creates a sandboxed environment where you can install packages and dependencies without affecting the global Python installation on your system. This isolation is crucial because different projects often require different versions of libraries or dependencies, and conflicts can arise if they share the same environment.
400
+
When you create a virtual environment for each of your projects, it essentially creates a sandboxed environment where you can install packages and dependencies without affecting the global Python installation on your system. This isolation is crucial because different projects often require different versions of libraries or dependencies, and conflicts can arise if they share the same environment.
401
401
402
402
Creating virtual environments is crucial for several reasons:
403
403
@@ -533,6 +533,6 @@ Key highlights of Pixi include:
533
533
For comprehensive information, detailed installation guidelines, and practical examples, visit the official [Pixi website](https://pixi.sh/latest). Explore Pixi today to streamline your development process across multiple languages with ease.
534
534
535
535
536
-
## CONSLUSION
536
+
## Conclusion
537
537
538
538
The proficiency in specific techniques and methodologies is crucial for anyone looking to make meaningful contributions to open-source projects. This article delineates the essential skills and practices required for effective participation, including but not limited to, adeptness with collaborative tools, version control systems, adherence to coding standards, and familiarity with contribution guidelines. Emphasizing the significance of tailored mentorship, accessible documentation, and active engagement within the community, the article serves as a comprehensive guide for enhancing the quality and impact of contributions. By adopting best practices in code review, project management, and fostering an inclusive dialogue, contributors can significantly elevate the collaborative dynamics and innovation within open-source endeavors. Thus, reading this article is instrumental for those aiming to navigate the complexities of open-source projects successfully and contribute to the advancement of collective scientific and technological objectives.
0 commit comments