Skip to content

Commit

Permalink
update content
Browse files Browse the repository at this point in the history
  • Loading branch information
outofambit committed Mar 1, 2024
1 parent fbbc71a commit f691dd0
Show file tree
Hide file tree
Showing 128 changed files with 9 additions and 137 deletions.
1 change: 0 additions & 1 deletion src/content/contributor-docs/ar/README.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -55,4 +55,3 @@
للدليل الخاص بالمتعهدين/ات أو الصيانة العامة لمستودع p5.js على جيت هب، يمكنك إلقاء نظرة على [دليل المتعهدين](./steward_guidelines/)



1 change: 0 additions & 1 deletion src/content/contributor-docs/en/README.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -48,4 +48,3 @@ There are many more ways to contribute to p5.js through non-source code contribu
## [Stewards and maintainers](./steward_guidelines/)
For information related to area stewards or general maintenance of p5.js GitHub repository, please check out the [steward guidelines](./steward_guidelines/).


1 change: 0 additions & 1 deletion src/content/contributor-docs/en/access.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -43,4 +43,3 @@ There are other things we haven't thought of yet and we're excited to figure out

We also affirm our intention to maintain the existing feature set of p5.js. We'd like to fix bugs regardless of which area of the codebase they're in because we believe consistency of the tool makes it more accessible for beginners.


Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,3 @@
# Benchmarking p5.js

Benchmarking has been moved to its own repo available at https://github.com/limzykenneth/p5-benchmark. A overall view of the benchmark result of the latest version of p5.js can be seen at https://limzykenneth.github.io/p5-benchmark/. This is still a work in progress.

1 change: 0 additions & 1 deletion src/content/contributor-docs/en/archive/discussions.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,3 @@ Joining in on the discussion about how p5 is developed is a great way to contrib

The documents in this subsection are developed based on these discussion. This is where we compile ideas about current and future design for the library.


1 change: 0 additions & 1 deletion src/content/contributor-docs/en/archive/es6-adoption.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -90,4 +90,3 @@ While for the most part browser compatibility can be ignored, the same is not tr
### Current Issues
- [`#3883`](https://github.com/processing/p5.js/issues/3883): Failure to construct `new p5()` when using `combineModules` to create custom bundles. Global mode is unaffected and behaves as expected.


1 change: 0 additions & 1 deletion src/content/contributor-docs/en/archive/roadmap.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -69,4 +69,3 @@ With the exception of ES6 migration, the tasks here are not ordered by priority.
## Etc
* For 1.0 release, drop a sweet new set of curated examples from artists and coders.


Original file line number Diff line number Diff line change
Expand Up @@ -42,4 +42,3 @@ While the examples in the reference are meant to be very simplistic snippets of
* Add your name to the [contributors list](https://github.com/processing/p5.js#contributors) in the readme.md file! Instructions [here](https://github.com/processing/p5.js/issues/2309).
* And of course, if you're more of a bug fixer kind of person, feel free to jump into any of the [issues](https://github.com/processing/p5.js/issues)!


1 change: 0 additions & 1 deletion src/content/contributor-docs/en/contributor_guidelines.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -555,4 +555,3 @@ If changes are requested of your PR and you are able to make those changes, foll
[**⬆ back to top**](#contributor-guidelines)



7 changes: 3 additions & 4 deletions src/content/contributor-docs/en/creating_libraries.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -65,15 +65,15 @@ function setup() {
```html
<html>
  <head>
    <!-- Other tags -->
    {/* Other tags */}

    <script src="./p5.js"></script>
    <script src="./p5.loadcsv.js"></script>

    <!-- Other tags -->
    {/* Other tags */}
  </head>

  <!-- Other tags -->
  {/* Other tags */}

</html>
```
Expand Down Expand Up @@ -312,4 +312,3 @@ p5.prototype.myMethod = function(){
**Let us know!** Once your library is ready for distribution, send an email to hello\@p5js.org with a link and some info. We'll include it on the [libraries page](http://p5js.org/libraries/)! If you have created a library and would like to have it included on the [p5js.org/libraries](https://p5js.org/libraries) page, please fill in [this form](https://docs.google.com/forms/d/e/1FAIpQLSdWWb95cfvosaIFI7msA7XC5zOEVsNruaA5klN1jH95ESJVcw/viewform).



1 change: 0 additions & 1 deletion src/content/contributor-docs/en/custom_p5_build.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -47,4 +47,3 @@ npm run grunt combineModules:min:module_x:module_y uglify
- `npm run grunt combineModules:min:core/shape:color:math:image`
Generates a `p5Custom.pre-min.js` in the `lib/modules` directory with the `combineModules:min` task. Note that in this example `npm run grunt uglify` can be run separately after running the `combineModules:min` task.


1 change: 0 additions & 1 deletion src/content/contributor-docs/en/design_principles.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,3 @@
- **Processing and its community** p5.js is a direct response to the Processing language and its community, and aims to make the transition from Processing to JavaScript easy and clear. Supporting the Processing API and community is a priority for p5.js, while also expanding to include the new possibilities of creative coding on the web, and taking a Processing-style approach to exposing that API to beginners.



Original file line number Diff line number Diff line change
Expand Up @@ -1222,4 +1222,3 @@ function preload() {

**[⬆ back to top](#table-of-contents)**


1 change: 0 additions & 1 deletion src/content/contributor-docs/en/friendly_error_system.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -171,4 +171,3 @@ The single minified file of p5 (i.e., p5.min.js) automatically omits the FES.

[disable the FES for performance]: https://github.com/processing/p5.js/wiki/Optimizing-p5.js-Code-for-Performance#disable-the-friendly-error-system-fes


1 change: 0 additions & 1 deletion src/content/contributor-docs/en/inline_documentation.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -417,4 +417,3 @@ For additional details about the reference system, you can checkout the document
For examples of issues related to the reference, have a look at [#6519](https://github.com/processing/p5.js/issues/6519) and [#6045](https://github.com/processing/p5.js/issues/6045). The [contributor guidelines](https://docs.google.com/document/d/1roBu-7s9xspuie3M6EhEokYWc82DZhDNYO2SQiY4k68/edit?tab=t.0#heading=h.627q50vo09fb) document is also a good place to start.



1 change: 0 additions & 1 deletion src/content/contributor-docs/en/internationalization.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -97,4 +97,3 @@ However, if you want to see your changes (or any other changes which aren't rele

See the [i18next translation function documentation](https://www.i18next.com/translation-function/essentials). Everything documented above is just a subset of their functionality.


1 change: 0 additions & 1 deletion src/content/contributor-docs/en/issue_labels.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -50,4 +50,3 @@ All the labels below are coordinated with the rest of the steward [focus areas](
* Documentation



3 changes: 1 addition & 2 deletions src/content/contributor-docs/en/navbar.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
---

---
<!-- _navbar.md -->
{/* _navbar.md */}

* [En](/)
* [Es](/es/)
Expand All @@ -13,4 +13,3 @@
* [Hi](/hi/)
* [Ar](/ar/)


1 change: 0 additions & 1 deletion src/content/contributor-docs/en/organization.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -48,4 +48,3 @@ Anyone interested can volunteer to be a steward! There are no specific requireme

Once added, a steward's username will remain in the [stewards section of the readme](https://github.com/processing/p5.js#stewards) until they request to be removed. If a steward is unresponsive for an extended period of time, we may ping them to ask about their status. And you can always take a break as a steward and come back!


Original file line number Diff line number Diff line change
Expand Up @@ -120,4 +120,3 @@ Also i loved dicussing the issues of others related to the library and reviewi
# Acknowldegements
I am extremly grateful to Processing Foundation and GSOC team to let me live my dream here .I would like to thank my amazing mentors Jason Sigal and Kyle James for their unmeasured support and motivation throughout this amazing GSOC period .


Original file line number Diff line number Diff line change
Expand Up @@ -167,4 +167,3 @@ Any questions pertaining to this project may be communicated via Issues on the [

I'd like to give an extra special thanks to my GSOC mentor Yining Shi for her support, guidance, understanding, and encouragement throughout the project. I'd also like to thank Lauren McCarthy for talking through some of the pedagogical applications of *p5.touchgui* with me during its development. Finally, thank you to all of the contributors and community members of *p5.js* who make it such a fantastic resource and community!


1 change: 0 additions & 1 deletion src/content/contributor-docs/en/project_wrapups/README.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -118,4 +118,3 @@ https://github.com/processing/p5.js/blob/main/contributor_docs/project_wrapups/j




Original file line number Diff line number Diff line change
Expand Up @@ -52,4 +52,3 @@ Your feedback is golden! Let us know what you think of the project: [Feedback fo
This project was made possible by [Google Summer of Code 2019](https://summerofcode.withgoogle.com/) and the [Processing Foundation](https://processing.org/). We're extremely thankful for the support of our incredible mentors [Ellen Nickles](https://ellennickles.site/) and Gregory Benedis-Grab. Without their insights, this project wouldn't have been a success.



Original file line number Diff line number Diff line change
Expand Up @@ -72,4 +72,3 @@ I learned a lot this summer. I would like to thank my mentor, [Stalgia Grigg](ht
to this library.

Thanks everyone! 😃

Original file line number Diff line number Diff line change
Expand Up @@ -58,4 +58,3 @@ I would like to thank my mentors **Jithin KS** and **Nick McIntyre** for their i
* [Animating maths in p5.js](https://discourse.processing.org/t/animating-maths-in-p5-js/31583)
* [Discussion and Review of Proposal - Addon Library Development - p5-teach.js](https://discourse.processing.org/t/discussion-and-review-of-proposal-addon-library-development-p5-teach-js/29065)


Original file line number Diff line number Diff line change
Expand Up @@ -56,4 +56,3 @@ A full list of my contributions to the WebGL branch can be found [here](https://

Working on this project for p5.js has been an incredible learning experience and a joy. I am extremely grateful to the Processing community and especially to my mentor, Kate Hollenbach, for a summer's worth of guidance, debugging, git tutorials, WebGL articles and support. Thank you!


Original file line number Diff line number Diff line change
Expand Up @@ -107,4 +107,3 @@ I really enjoyed working on this project. I learned a lot of new things. I would
1. https://github.com/processing/p5.js/blob/8226395d40a9df0113b13e42c983ae578b3856fa/src/core/error_helpers.js#L300
2. https://github.com/processing/p5.js/pull/4629
3. https://github.com/processing/p5.js/blob/b52226962eebf9f58f70eed68c4ce32661677d23/src/core/friendly_errors/browser_errors.js

Original file line number Diff line number Diff line change
Expand Up @@ -110,4 +110,3 @@ Future work could investigate performance issues with text in VR.
## Conclusion
Even though it was challenging for me as a novice coder working with an experimental program, I had fun making these examples and I learned so many new things! First and foremost, I'd like to thank my mentor Stalgia Grigg for all the patience, kindness, and encouragement they've given to me this past summer. They've been such a great mentor to me and I don't think I wouldn't have gotten this far in the program without them and their guidance. I would also like to thank the Processing Foundation and Google for giving me this opportunity to contribute something cool to their community <3


Original file line number Diff line number Diff line change
Expand Up @@ -152,4 +152,3 @@ Effective teamwork, collaboration, and communication proved essential in this op
I eagerly anticipate expanding my contributions and honing my skills. This summer has instilled
a sense of purpose in me, and I'm profoundly grateful for the mentorship and knowledge gained.


Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,3 @@ In summary:
## Acknowledgements
Even before I was accepted to participate in GSoC, my journey as a technologist has been shaped by so many affiliated with the Processing Foundation. My first programming class was actually the undergrad section of Intro to Computational Media at NYU, where Dan O (and Dan Shiffman) taught us Processing and Arduino! Processing Community Day in Los Angeles back in January 2019 inspired me to go for this particular opportunity of working on a showcase to celebrate a community like p5.js. Thanks to Saber Khan and Evelyn Masso for their feedback on my proposal. Thanks to Kate Hollenbach for her support, availability, and understanding throughout this summer. Thanks to the NYU ITP students and campers back in June for expanding what I think is possible with p5.js and beyond. Thanks to Lauren McCarthy, Claire Kearney-Volpe, and Sina Bahram for your feedback. And of course, thanks to those who let me feature their projects with much enthusiasm and generosity—Roni Cantor, Phuong Ngo, Dae In Chung, Qianqian Ye, Casey Conchinha, Louise Lessél, Moon Jang, and Xin Xin.


Original file line number Diff line number Diff line change
Expand Up @@ -202,4 +202,3 @@ Literally every doubt I had, was answered either on Github itself or on mails.
I would continue contributing to the Processing Organisation and would even love to mentor other GSoC Students in the future.

I would suggest the future contributors to be free of worries about any lack of support from the mentors and Processing in general, everything is answered well on time and is pretty well managed.

Original file line number Diff line number Diff line change
Expand Up @@ -67,4 +67,3 @@ However, what really made this summer's GSoC experience with p5.js and the Proce

All in all, this project has provided me with a wonderful first experience in contributing to open source and I'm forever grateful. I can't wait to see where p5.js takes off to next.


Original file line number Diff line number Diff line change
Expand Up @@ -150,4 +150,3 @@ This journey also highlighted the importance of collaboration, teamwork, and eff

Looking ahead, I'm excited to continue contributing to open-source projects and refining my skills. This summer has given me purpose and a desire to make meaningful contributions. I'm grateful for this opportunity, the mentorship, and the knowledge gained. Here's to more open-source adventures in the future!


Original file line number Diff line number Diff line change
Expand Up @@ -51,4 +51,3 @@ I would like to thank my mentor Evelyn Masso, and Lauren McCarthy for their supp

I learned so much while working on this project - thanks to the Processing foundation for having me on the team.


Original file line number Diff line number Diff line change
Expand Up @@ -92,4 +92,3 @@ There are definitely points of improvement on the editor, for instance:
- **22/08 - [#1543 Add Login/Logout functionality to mobile layout](https://github.com/processing/p5.js-web-editor/pull/1543)**
- **22/08 - [#1564 Feature/switch mobile desktop](https://github.com/processing/p5.js-web-editor/pull/1564)**


Original file line number Diff line number Diff line change
Expand Up @@ -122,4 +122,3 @@ The first person I want to thank is Inhwa. I have to say, I looooove Inhwa as my

I would also like to thank Saber and Qianqian.The discussion with them about education has been very profitable and I have a more solid idea about my project.


Original file line number Diff line number Diff line change
Expand Up @@ -100,4 +100,3 @@ First and foremost, I would like to deeply thank my mentor Qianqian for her full

I also feel especially grateful to Lauren McCarthy, who was my very first p5.js teacher and informed me of those amazing opportunities I could have with Processing Foundation for the last six months. I have spent a substantial amount of time with the organization and was indeed grateful of instant responses and supports from all the other members and organizers, as well. Evelyn Masso and Aarón Montoya-Moraga, to name a few, had also offered an insight to this project with detail feedback. Last but not least, I would like to thank Connie Liu for having me accompanyied throughout the GSoC program with our cheerful talks across the art & design & technology.


Original file line number Diff line number Diff line change
Expand Up @@ -133,4 +133,3 @@ I'm so grateful to [Andrew Mead](https://github.com/andrewjmead) and his course




Original file line number Diff line number Diff line change
Expand Up @@ -107,12 +107,12 @@ The dropdown menu is made with an element that contains the links in li elements
<a href="/index" class="navLink">Topic Navigation Link Name</a>
<div class="dropdown">
<ul class="dropdownContent">
<!-- Default Text -->
{/* Default Text */}
<li><div class="dropdownTextDefault">
<p class="pageName">Cool Subject Title Here!</p>
<p class="pageDescription">Snarky description here.</p>
</div></li>
<!-- Inner Navigation Link(s) -->
{/* Inner Navigation Link(s) */}
<li class="dropdownEntry">
<a href="link/to/page" class="innerNav">PageName
<div class="dropdownText">
Expand Down Expand Up @@ -167,4 +167,3 @@ Images can speak a thousand words. They also look prettier than a thousand words
## Afterward
All in all, this was a project that was fun, interesting, and frustrating (mostly fun and interesting though). I learned a lot about things in HTML that I didn’t know. If I had the time, I would definitely have kept going to try and standardize all the pages (via CSS) to fit the new theme. I tried to integrate the files (as I mentioned before) but saw that it would take maybe another week to a month of work, then some more to add all the features I want to (and more). I don’t know if this will be finished any time soon because the new semester is starting, but if this new design is good then I’m willing to continue working on it!


Original file line number Diff line number Diff line change
Expand Up @@ -65,4 +65,3 @@ Huge thanks goes to my mentor Jason Sigal for all his support and guidance throu

Thank you so much!


Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,3 @@ I have conducted testing on Chrome and Safari using the built-in screen reader o
I am so grateful towards the Processing Foundation for picking my proposal and giving me this opportunity. I am also thankful for my mentors Rachel Lim and Claire Kearney-Volpe for teaching me so much about web accessibility and for helping me with my project. I would also like to thank Qianqian Ye. Q is my professor at USC and first introduced me to creative coding and to p5.js. She also was the one who encouraged me to apply to GSoC. This is my first time contributing to the open source community and I am so grateful for such a supportive and caring environment.



Original file line number Diff line number Diff line change
Expand Up @@ -54,4 +54,3 @@ Any questions pertaining to this project may be addressed via Issues on the [p5.
l would like to express my great gratitude to the Processing foundation for giving me the opportunity to work on this project and again my mentor for helping me!

Thank you so much to make it possible!

Original file line number Diff line number Diff line change
Expand Up @@ -58,4 +58,3 @@ In the future, I will help the p5.js team conduct more usability testing (specif

Thank you to the whole Processing Foundation team for this wonderful opportunity, and thank you to Claire Kearney-Volpe, Paula Isabel Signo, and Caleb Foss for the great mentoring!


Original file line number Diff line number Diff line change
Expand Up @@ -56,4 +56,3 @@ I am grateful to Kate Hollenbach for their guidance, feedback and assistance, to
:heart:



Original file line number Diff line number Diff line change
Expand Up @@ -123,4 +123,3 @@ It doesn't matter how great your example is, if it isn't easy for the reader to
## Acknowledgements

I would like to thank Tyler, Saber and Qianqian. The project would not have reached this stage without the amazing guidance and support from them.

Original file line number Diff line number Diff line change
Expand Up @@ -104,4 +104,3 @@ a triangle with mouseX… | Example | V | | x |
### TextHeight
[p5.js Web Editor](https://editor.p5js.org/munusshih/sketches/4BwL7q2Fe)
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,3 @@ Furthermore, I would like to thank Japanese American photographer HATSUE and Jap

I am very appreciative of this wonderful experience provided by Google and my mentor organization, The Processing Foundation. I look forward to continuing my contribution to open-source and the processing community.


Original file line number Diff line number Diff line change
Expand Up @@ -89,4 +89,3 @@ Unfortunately, the additional comments inserted by Webpack into the compiled bun

I'm extremely grateful to the Processing Foundation for giving me the opportunity to contribute to p5.js, as well as to my mentor Jason Sigal for all of his support over the course of this project.


Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,3 @@ The search bar is live, which means that the sketchlist is filtered as the user

I deeply express my gratitude to the Processing foundation for giving me such a wonderful opportunity and to my mentor, Cassie Tarakajian, for her education, patience, and support!


Original file line number Diff line number Diff line change
Expand Up @@ -88,4 +88,3 @@ As you can see below, the before and after images, I've implemented more than 30

I am extremely grateful to the community and Gsoc. I sincerely appreciate my mentor [Guillermo](https://github.com/guillemontecinos) for his constant support and motivation provided throughout the period. I had a great time!!


0 comments on commit f691dd0

Please sign in to comment.