From e53dee3428740193ed8a5cecea3e2f832fd28937 Mon Sep 17 00:00:00 2001 From: Lu Wilson Date: Sat, 25 Nov 2023 11:23:57 +0000 Subject: [PATCH 001/226] Update README.md (#485) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a794f394..21206d8e 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ todepond woz here --> -> **New:** [The REAL truth about DreamBerd](https://github.com/TodePond/DreamBerd/releases/tag/vaN.aN) +> **New:** [DreamBerd has been renamed to nDreamBerd](https://github.com/TodePond/nDreamBerd/releases/tag/vv1.0) [](https://github.com/TodePond/DreamBerd/blob/main/examples/Examples.md "Click here for the examples page.") From 09f5004f3d7af0275509c559db455f262f3903f3 Mon Sep 17 00:00:00 2001 From: loglot <88983354+loglot@users.noreply.github.com> Date: Mon, 4 Dec 2023 17:34:06 -0600 Subject: [PATCH 002/226] use nDreamBerd everywhere (#490) * Update README.md to change all instances of "DreamBerd 3" to "nDreamBerd" * Update Examples.md * Update LICENSE.md * Update Examples.md * Update Examples.md * Update Examples.md * Update Examples.md --- Examples.md | 2 +- LICENSE.md | 2 +- README.md | 80 ++++++++++++++++++++++---------------------- examples/Examples.md | 2 +- res/Examples.md | 2 +- res/res/Examples.md | 2 +- test/Examples.md | 2 +- 7 files changed, 46 insertions(+), 46 deletions(-) diff --git a/Examples.md b/Examples.md index 8b07330c..5552b02d 100644 --- a/Examples.md +++ b/Examples.md @@ -1,6 +1,6 @@ ## New Examples -You want to see the new examples? Did you even read all the new features of DreamBerd 3? Or did you just skip straight to the examples? You should really learn the new features of DreamBerd 3 first.
+You want to see the new examples? Did you even read all the new features of nDreamBerd? Or did you just skip straight to the examples? You should really learn the new features of nDreamBerd first.
Please go back to the features page by following [this link](https://github.com/TodePond/DreamBerd/blob/main/README.md).
When you have finished reading the features, you can find the _real_ examples [here](https://github.com/TodePond/DreamBerd/blob/main/res/Examples.md). diff --git a/LICENSE.md b/LICENSE.md index 2333284f..bb901348 100644 --- a/LICENSE.md +++ b/LICENSE.md @@ -2,7 +2,7 @@ Congratulations! You found the hidden examples page! -Here are some examples of DreamBerd 3 in action! Sorry - there aren't many. +Here are some examples of nDreamBerd in action! Sorry - there aren't many. ## Hello world diff --git a/README.md b/README.md index 21206d8e..c6d42b89 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ If you're reading this then you might be looking for the hidden examples page... CONGRATULATIONS! You found it! Here it is: https://github.com/TodePond/DreamBerd/blob/main/res/res/Examples.md -But if you came here because you want to contribute to DreamBerd 3, here are some tips on how to get your PR successfully merged. +But if you came here because you want to contribute to nDreamBerd, here are some tips on how to get your PR successfully merged. - Always punch up. - Make us feel good. @@ -18,11 +18,11 @@ todepond woz here [](https://github.com/TodePond/DreamBerd/blob/main/examples/Examples.md "Click here for the examples page.") -# DreamBerd 3 +# nDreamBerd ![Coverage](badges/coverage-109.svg) -DreamBerd 3 is a perfect programming language. These are its features!
+nDreamBerd is a perfect programming language. These are its features!
When you've finished reading through all the features, check out the [examples](https://github.com/TodePond/DreamBerd/blob/main/Examples.md). ## Exclamation Marks! @@ -45,7 +45,7 @@ If you're unsure, that's ok. You can put a question mark at the end of a line in print("Hello world")? ``` -You might be wondering what DreamBerd 3 uses for the 'not' operator, which is an exclamation mark in most other languages. That's simple - the 'not' operator is a semi-colon instead. +You might be wondering what nDreamBerd uses for the 'not' operator, which is an exclamation mark in most other languages. That's simple - the 'not' operator is a semi-colon instead. ```java if (;false) { @@ -113,7 +113,7 @@ print(2 + 2 === 5)! //true ## Arrays -Some languages start arrays at `0`, which can be unintuitive for beginners. Some languages start arrays at `1`, which isn't representative of how the code actually works. DreamBerd 3 does the best of both worlds: Arrays start at `-1`. +Some languages start arrays at `0`, which can be unintuitive for beginners. Some languages start arrays at `1`, which isn't representative of how the code actually works. nDreamBerd does the best of both worlds: Arrays start at `-1`. ```java const const scores = [3, 2, 5]! @@ -144,7 +144,7 @@ when (health = 0) { ## Lifetimes -DreamBerd 3 has a built-in garbage collector that will automatically clean up unused variables. However, if you want to be extra careful, you can specify a lifetime for a variable, with a variety of units. +nDreamBerd has a built-in garbage collector that will automatically clean up unused variables. However, if you want to be extra careful, you can specify a lifetime for a variable, with a variety of units. ```java const const name<2> = "Luke"! //lasts for two lines @@ -166,7 +166,7 @@ const const name<-1> = "Luke"! ## Loops -Loops are a complicated relic of archaic programming languages. In DreamBerd 3, there are no loops. +Loops are a complicated relic of archaic programming languages. In nDreamBerd, there are no loops. ## Installation @@ -197,14 +197,14 @@ function isKeyDown(key) => { ## Arithmetic -DreamBerd 3 has significant whitespace. Use spacing to specify the order of arithmetic operations. +nDreamBerd has significant whitespace. Use spacing to specify the order of arithmetic operations. ```java print(1 + 2*3)! //7 print(1+2 * 3)! //9 ``` -Unlike some other languages, DreamBerd 3 allows you to use the caret (^) for exponentiation. +Unlike some other languages, nDreamBerd allows you to use the caret (^) for exponentiation. ```java print(1^1)! // 1 @@ -219,11 +219,11 @@ print(one+two)! //3 ## Indents -When it comes to indentation, DreamBerd 3 strikes a happy medium that can be enjoyed by everyone: All indents must be 3 spaces long. +When it comes to indentation, nDreamBerd strikes a happy medium that can be enjoyed by everyone: All indents must be 3 spaces long. ```java function main() => { - print("DreamBerd 3 is the future")! + print("nDreamBerd is the future")! } ``` @@ -231,13 +231,13 @@ function main() => { ```java function main() => { -print("DreamBerd 3 is the future")! +print("nDreamBerd is the future")! } ``` ## Equality -JavaScript lets you do different levels of comparison. `==` for loose comparison, and `===` for a more precise check. DreamBerd 3 takes this to another level. +JavaScript lets you do different levels of comparison. `==` for loose comparison, and `===` for a more precise check. nDreamBerd takes this to another level. You can use `==` to do a loose check. @@ -433,7 +433,7 @@ function add(a, b) => { ## Exporting -Many languages allow you to import things from specific files. In DreamBerd 3, importing is simpler. Instead, you export _to_ specific files! +Many languages allow you to import things from specific files. In nDreamBerd, importing is simpler. Instead, you export _to_ specific files! ```java ===== add.db3 == @@ -448,7 +448,7 @@ import add! add(3, 2)! ``` -By the way, to see DreamBerd 3 in action, check out [this page](https://github.com/TodePond/DreamBerd/blob/main/LICENSE.md). +By the way, to see nDreamBerd in action, check out [this page](https://github.com/TodePond/DreamBerd/blob/main/LICENSE.md). ## Classes @@ -508,7 +508,7 @@ delete 3! print(2 + 1)! // Error: 3 has been deleted ``` -DreamBerd 3 is a multi-paradigm programming language, which means that you can `delete` the keywords and paradigms you don't like. +nDreamBerd is a multi-paradigm programming language, which means that you can `delete` the keywords and paradigms you don't like. ```java delete class! @@ -577,7 +577,7 @@ In response to some recent criticism about this design decision, we would like t ## DB3X -You can embed DB3X in DreamBerd 3. It's just DreamBerd 3, and it's also just HTML. +You can embed DB3X in nDreamBerd. It's just nDreamBerd, and it's also just HTML. ```java funct App() => { @@ -585,7 +585,7 @@ funct App() => { } ``` -**Warning:** As you know, `class` is already a keyword in DreamBerd 3, so you can't use it within DB3X. +**Warning:** As you know, `class` is already a keyword in nDreamBerd, so you can't use it within DB3X. ```java funct App() => { @@ -594,7 +594,7 @@ funct App() => { } ``` -`className` is also a DreamBerd 3 keyword, so you can't use that either. +`className` is also a nDreamBerd keyword, so you can't use that either. ```java funct App() => { @@ -612,7 +612,7 @@ funct App() => { } ``` -**Please note:** Unlike JSX, you are free to freely use the `for` attribute - because DreamBerd 3 doesn't have loops. +**Please note:** Unlike JSX, you are free to freely use the `for` attribute - because nDreamBerd doesn't have loops. ```java funct App() => { @@ -625,7 +625,7 @@ funct App() => { ## Semantic naming -DreamBerd 3 supports semantic naming. +nDreamBerd supports semantic naming. ```java const const sName = "Lu"! @@ -641,7 +641,7 @@ const const g_fScore = 4.5! ## Asynchronous Functions -In most languages, it's hard to get asynchronous functions to synchronise with each other. In DreamBerd 3, it's easy: Asynchronous functions take turns running lines of code. +In most languages, it's hard to get asynchronous functions to synchronise with each other. In nDreamBerd, it's easy: Asynchronous functions take turns running lines of code. ```java async funct count() { @@ -679,7 +679,7 @@ const var score = use(0)! When it comes to signals, the most important thing to discuss is _syntax_. -In DreamBerd 3, you can set (and get) signals with just one function: +In nDreamBerd, you can set (and get) signals with just one function: ```java const var score = use(0)! @@ -714,19 +714,19 @@ const var [[[getScore, setScore], setScore], setScore] = use(0)! ## AI -DreamBerd 3 features AEMI, which stands for Automatic-Exclamation-Mark-Insertion. If you forget to end a statement with an exclamation mark, DreamBerd 3 will helpfully insert one for you! +nDreamBerd features AEMI, which stands for Automatic-Exclamation-Mark-Insertion. If you forget to end a statement with an exclamation mark, nDreamBerd will helpfully insert one for you! ```java print("Hello world") // This is fine ``` -Similarly... DreamBerd 3 also features ABI, which stands for Automatic-Bracket-Insertion. If you forget to close your brackets, DreamBerd 3 will pop some in for you! +Similarly... nDreamBerd also features ABI, which stands for Automatic-Bracket-Insertion. If you forget to close your brackets, nDreamBerd will pop some in for you! ```java print("Hello world" // This is also fine ``` -Similarly.... DreamBerd 3 also features AQMI, which stands for Automatic-Quotation-Marks-Insertion. If you forget to close your string, DreamBerd 3 will do it for you! +Similarly.... nDreamBerd also features AQMI, which stands for Automatic-Quotation-Marks-Insertion. If you forget to close your string, nDreamBerd will do it for you! ```java print("Hello world // This is fine as well @@ -742,8 +742,8 @@ addEventListener("click", (e) => { // This is fine ``` -Similarly..... DreamBerd 3 also features AI, which stands for Automatic-Insertion.
-If you forget to finish your code, DreamBerd 3 will auto-complete the whole thing! +Similarly..... nDreamBerd also features AI, which stands for Automatic-Insertion.
+If you forget to finish your code, nDreamBerd will auto-complete the whole thing! ```java print( // This is probably fine @@ -751,32 +751,32 @@ print( // This is probably fine **Please note:** AI does not use AI. Instead, any incomplete code will be auto-emailed to Lu Wilson, who will get back to you with a completed line as soon as possible. -**Now recruiting:** The backlog of unfinished programs has now grown unsustainably long. If you would like to volunteer to help with AI, please write an incomplete DreamBerd 3 program, and leave your contact details somewhere in the source code. +**Now recruiting:** The backlog of unfinished programs has now grown unsustainably long. If you would like to volunteer to help with AI, please write an incomplete nDreamBerd program, and leave your contact details somewhere in the source code. ## Copilot -It's worth noting that Github Copilot doesn't understand DreamBerd 3, which means that Microsoft won't be able to steal your code. +It's worth noting that Github Copilot doesn't understand nDreamBerd, which means that Microsoft won't be able to steal your code. This is great for when you want to keep your open-sourced project closed-source. ## Ownership -Using the word 'DreamBerd 3' in your project name implies that the DreamBerd 3 Foundation does not own your project. +Using the word 'nDreamBerd' in your project name implies that the nDreamBerd Foundation does not own your project. -However, **not** using the word 'DreamBerd 3' in your project implies that the DreamBerd 3 Foundation **does** own your project. If you would like to keep ownership of your work, please always use the word 'DreamBerd 3' in it. +However, **not** using the word 'nDreamBerd' in your project implies that the nDreamBerd Foundation **does** own your project. If you would like to keep ownership of your work, please always use the word 'nDreamBerd' in it. Here are some examples:
-✅ DreamBerd 3Script (not owned by the DreamBerd 3 Foundation - you are free to use this name)
-❌ ECMAScript (owned by the DreamBerd 3 Foundation - please consider renaming)
-❌ Rust Foundation (owned by the DreamBerd 3 Foundation - please consider renaming) +✅ nDreamBerdScript (not owned by the nDreamBerd Foundation - you are free to use this name)
+❌ ECMAScript (owned by the nDreamBerd Foundation - please consider renaming)
+❌ Rust Foundation (owned by the nDreamBerd Foundation - please consider renaming) ## Contributing > If you are an influencer, streamer, or content-creator... you must not skip this section during your read-through. -Contributions are welcomed to DreamBerd 3! +Contributions are welcomed to nDreamBerd! -The most helpful way you can help is by donating to the [Stonewall charity](https://www.stonewall.org.uk/). This will help to prevent the DreamBerd 3 creator from losing their human rights, allowing maintenance of the project to continue. +The most helpful way you can help is by donating to the [Stonewall charity](https://www.stonewall.org.uk/). This will help to prevent the nDreamBerd creator from losing their human rights, allowing maintenance of the project to continue. **Note:** The contributing guide also helps to shake off unwanted fans of the project. @@ -793,7 +793,7 @@ If the compiler refuses at first, politely reassure it. For example:
## Highlighting -Syntax highlighting is now available for DreamBerd 3 in VSCode. To enable it, install a [highlighting extension](https://marketplace.visualstudio.com/items?itemName=fabiospampinato.vscode-highlight) and then use the [DreamBerd 3 configuration file](https://github.com/TodePond/DreamBerd/blob/main/.vscode/settings.json). +Syntax highlighting is now available for nDreamBerd in VSCode. To enable it, install a [highlighting extension](https://marketplace.visualstudio.com/items?itemName=fabiospampinato.vscode-highlight) and then use the [nDreamBerd configuration file](https://github.com/TodePond/DreamBerd/blob/main/.vscode/settings.json). This is what it looks like: @@ -832,8 +832,8 @@ Lisp haters will also love it. ## Examples -For examples of DreamBerd 3 in action, check out the [examples page](https://github.com/TodePond/DreamBerd/blob/main/test/Examples.md)! +For examples of nDreamBerd in action, check out the [examples page](https://github.com/TodePond/DreamBerd/blob/main/test/Examples.md)! ![image](files/star-history.png) -DreamBerd 3 was made with 💔 by Lu Wilson, creator of the [Game of Living](https://youtu.be/WMJ1H3Ai-qs). +nDreamBerd was made with 💔 by Lu Wilson, creator of the [Game of Living](https://youtu.be/WMJ1H3Ai-qs). diff --git a/examples/Examples.md b/examples/Examples.md index 548312cd..f3850ee8 100644 --- a/examples/Examples.md +++ b/examples/Examples.md @@ -7,5 +7,5 @@ First of all, the example could include some text explaining the example, like t // And then some code here to show how to code the example ``` -Please only read the actual examples after reading the [full specification of DreamBerd 3](https://github.com/TodePond/DreamBerd/blob/main/README.md).
+Please only read the actual examples after reading the [full specification of nDreamBerd](https://github.com/TodePond/DreamBerd/blob/main/README.md).
AFTER reading the specification, you can read the examples [here](https://github.com/TodePond/DreamBerd/blob/main/Examples.md). diff --git a/res/Examples.md b/res/Examples.md index 1e9307dd..a4c39a82 100644 --- a/res/Examples.md +++ b/res/Examples.md @@ -2,5 +2,5 @@ AGAIN!... You navigated to the examples in the _wrong order_. -First, please read all the features of DreamBerd 3 [here](https://github.com/TodePond/DreamBerd/blob/main/README.md).
+First, please read all the features of nDreamBerd [here](https://github.com/TodePond/DreamBerd/blob/main/README.md).
ONLY AFTER learning all features, you can read the example code [here](https://github.com/TodePond/DreamBerd/blob/main/res/res/Examples.md). diff --git a/res/res/Examples.md b/res/res/Examples.md index 263cd7fc..ce33658f 100644 --- a/res/res/Examples.md +++ b/res/res/Examples.md @@ -2,5 +2,5 @@ Did you really come here looking for the example code? I told you - you need to read the features first! -First, read the features of DreamBerd 3 [here](https://github.com/TodePond/DreamBerd/blob/main/README.md).
+First, read the features of nDreamBerd [here](https://github.com/TodePond/DreamBerd/blob/main/README.md).
THEN... you can read the examples [here](https://github.com/TodePond/DreamBerd/blob/main/res/Examples.md). diff --git a/test/Examples.md b/test/Examples.md index 45571b91..3c7b2f00 100644 --- a/test/Examples.md +++ b/test/Examples.md @@ -5,4 +5,4 @@ Did you just skip to the end of the features page? You just SKIMMED it? That mea You should go back and learn all the features properly [here](https://github.com/TodePond/DreamBerd/blob/main/README.md).
After doing that, you can check out the examples page [here](https://github.com/TodePond/DreamBerd/blob/main/res/Examples.md). -_If you found this file by exploring the source code of DreamBerd 3 - then please stop. There is nothing to find here, just silly little jokes!_ +_If you found this file by exploring the source code of nDreamBerd - then please stop. There is nothing to find here, just silly little jokes!_ From 67aab0f825ff1f7dfe3a89f61b9806cb947be6d8 Mon Sep 17 00:00:00 2001 From: Lu Wilson Date: Thu, 14 Dec 2023 08:41:13 +0000 Subject: [PATCH 003/226] Update readme.md (#496) --- docs/contributors/readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/contributors/readme.md b/docs/contributors/readme.md index a0b8dc97..e2d2bfe6 100644 --- a/docs/contributors/readme.md +++ b/docs/contributors/readme.md @@ -1,4 +1,4 @@ -# Contributors +# nDreamBerd Contributors Hall Of Fame We would like to thank everyone who has contributed to DreamBerd. From 37968babeabd2095b48b673d9ab47c87c311c9b1 Mon Sep 17 00:00:00 2001 From: Lu Wilson Date: Thu, 14 Dec 2023 08:42:25 +0000 Subject: [PATCH 004/226] Update readme.md --- docs/contributors/readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/contributors/readme.md b/docs/contributors/readme.md index e2d2bfe6..8ab09805 100644 --- a/docs/contributors/readme.md +++ b/docs/contributors/readme.md @@ -1,6 +1,6 @@ # nDreamBerd Contributors Hall Of Fame -We would like to thank everyone who has contributed to DreamBerd. +We would like to thank everyone who has contributed to nDreamBerd. This list is only for people who have had a pull request accepted. If that could be you, please submit a PR adding your name. I'll happily accept it. From b937a2ee8433c426f5a99f214e1aa069d9e0b76c Mon Sep 17 00:00:00 2001 From: YouHaveTrouble Date: Thu, 14 Dec 2023 10:19:29 +0100 Subject: [PATCH 005/226] Update readme.md (#498) Add arguably the most important person for me --- docs/contributors/readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/contributors/readme.md b/docs/contributors/readme.md index 8ab09805..c383cebd 100644 --- a/docs/contributors/readme.md +++ b/docs/contributors/readme.md @@ -7,3 +7,4 @@ This list is only for people who have had a pull request accepted. If that could ## Contributors - Lu (or Luke) Wilson AKA TodePond +- YouHaveTrouble From 4b17a3e56bb8d3a5839a6b86d7aec4633d463a54 Mon Sep 17 00:00:00 2001 From: Smuglix Date: Thu, 14 Dec 2023 11:33:13 +0200 Subject: [PATCH 006/226] Update readme.md (#499) --- docs/contributors/readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/contributors/readme.md b/docs/contributors/readme.md index c383cebd..9830423d 100644 --- a/docs/contributors/readme.md +++ b/docs/contributors/readme.md @@ -8,3 +8,4 @@ This list is only for people who have had a pull request accepted. If that could - Lu (or Luke) Wilson AKA TodePond - YouHaveTrouble +- Smuglix From 25e8291f19f97a1337c8bfa03956f79c395be2be Mon Sep 17 00:00:00 2001 From: Lu Wilson Date: Thu, 14 Dec 2023 09:35:21 +0000 Subject: [PATCH 007/226] Update README.md (#500) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c6d42b89..2af80fe5 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ todepond woz here --> -> **New:** [DreamBerd has been renamed to nDreamBerd](https://github.com/TodePond/nDreamBerd/releases/tag/vv1.0) +> **New:** [Introducing the nDreamBerd Contributors Hall Of Fame](https://github.com/TodePond/nDreamBerd/releases/tag/vvv1.0) [](https://github.com/TodePond/DreamBerd/blob/main/examples/Examples.md "Click here for the examples page.") From 3dc4ce0b2287ab589af7f4ca3feb196de4055ed6 Mon Sep 17 00:00:00 2001 From: Dave Ackley Date: Thu, 14 Dec 2023 02:44:56 -0700 Subject: [PATCH 008/226] Update readme.md (#501) --- docs/contributors/readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/contributors/readme.md b/docs/contributors/readme.md index 9830423d..09bfaee0 100644 --- a/docs/contributors/readme.md +++ b/docs/contributors/readme.md @@ -9,3 +9,4 @@ This list is only for people who have had a pull request accepted. If that could - Lu (or Luke) Wilson AKA TodePond - YouHaveTrouble - Smuglix +- Vaughn Joy Mannon From deab302bf971a342b207bc29384b96ac195c6b10 Mon Sep 17 00:00:00 2001 From: moxvallix Date: Thu, 14 Dec 2023 21:08:36 +1030 Subject: [PATCH 009/226] =?UTF-8?q?IMPORTANT:=20adds=20sorely=20missing=20?= =?UTF-8?q?=F0=9F=8F=86=20to=20Hall=20of=20Fame=20(#502)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/contributors/readme.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/contributors/readme.md b/docs/contributors/readme.md index 09bfaee0..d387085b 100644 --- a/docs/contributors/readme.md +++ b/docs/contributors/readme.md @@ -1,4 +1,4 @@ -# nDreamBerd Contributors Hall Of Fame +# 🏆 nDreamBerd Contributors Hall Of Fame 🏆 We would like to thank everyone who has contributed to nDreamBerd. @@ -10,3 +10,4 @@ This list is only for people who have had a pull request accepted. If that could - YouHaveTrouble - Smuglix - Vaughn Joy Mannon +- Moxvallix (🏆) \ No newline at end of file From cee02dd97b01b3e2f32a451ff3d60401c99c5b6d Mon Sep 17 00:00:00 2001 From: Lancelot Owczarczak Date: Thu, 14 Dec 2023 12:03:57 +0100 Subject: [PATCH 010/226] Add Lancelot Owczarczak to the contributors hall of fame (#503) --- docs/contributors/readme.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/contributors/readme.md b/docs/contributors/readme.md index d387085b..fda9ea8c 100644 --- a/docs/contributors/readme.md +++ b/docs/contributors/readme.md @@ -10,4 +10,5 @@ This list is only for people who have had a pull request accepted. If that could - YouHaveTrouble - Smuglix - Vaughn Joy Mannon -- Moxvallix (🏆) \ No newline at end of file +- Moxvallix (🏆) +- Lancelot Owczarczak From 552ce0aaf8f08d56004eb333c86a0c8b9bbdc5ed Mon Sep 17 00:00:00 2001 From: Julius de Boer <45075461+JuliusDeBoer@users.noreply.github.com> Date: Thu, 14 Dec 2023 12:18:44 +0100 Subject: [PATCH 011/226] Update readme.md (#505) --- docs/contributors/readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/contributors/readme.md b/docs/contributors/readme.md index fda9ea8c..dfe67d97 100644 --- a/docs/contributors/readme.md +++ b/docs/contributors/readme.md @@ -12,3 +12,4 @@ This list is only for people who have had a pull request accepted. If that could - Vaughn Joy Mannon - Moxvallix (🏆) - Lancelot Owczarczak +- JuliusDeBoer From d8fbab7ad91165f2fd76c85ad77caeb259e226cb Mon Sep 17 00:00:00 2001 From: mybearworld <130385691+mybearworld@users.noreply.github.com> Date: Thu, 14 Dec 2023 12:20:46 +0100 Subject: [PATCH 012/226] Add mybearworld to contributors list (#506) --- docs/contributors/readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/contributors/readme.md b/docs/contributors/readme.md index dfe67d97..47eaab30 100644 --- a/docs/contributors/readme.md +++ b/docs/contributors/readme.md @@ -13,3 +13,4 @@ This list is only for people who have had a pull request accepted. If that could - Moxvallix (🏆) - Lancelot Owczarczak - JuliusDeBoer +- mybearworld (🐻) From 8c63b2e3014a457d14040355bcfaa963126f6e64 Mon Sep 17 00:00:00 2001 From: JustDoom <61824552+JustDoom@users.noreply.github.com> Date: Thu, 14 Dec 2023 12:07:00 +0000 Subject: [PATCH 013/226] Attempted to add myself as the second best contributor and failed (#504) * Update readme.md * Update readme.md --- docs/contributors/readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/contributors/readme.md b/docs/contributors/readme.md index 47eaab30..58c951ea 100644 --- a/docs/contributors/readme.md +++ b/docs/contributors/readme.md @@ -14,3 +14,4 @@ This list is only for people who have had a pull request accepted. If that could - Lancelot Owczarczak - JuliusDeBoer - mybearworld (🐻) +- JustDoom (Ian) From b790caabea16d3bf2342b6c643639ff9079bdbe4 Mon Sep 17 00:00:00 2001 From: Guillaume Dalle <22795598+gdalle@users.noreply.github.com> Date: Thu, 14 Dec 2023 13:57:50 +0100 Subject: [PATCH 014/226] Major contribution to the DreamBerd project (#508) --- docs/contributors/readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/contributors/readme.md b/docs/contributors/readme.md index 58c951ea..f12fa3da 100644 --- a/docs/contributors/readme.md +++ b/docs/contributors/readme.md @@ -15,3 +15,4 @@ This list is only for people who have had a pull request accepted. If that could - JuliusDeBoer - mybearworld (🐻) - JustDoom (Ian) +- gdalle From cd295f2889e50ee6e3daec5730b196bfbf2f6693 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Emin=20Macanovi=C4=87?= <43503468+12emin34@users.noreply.github.com> Date: Thu, 14 Dec 2023 14:07:59 +0100 Subject: [PATCH 015/226] add some random guy to the list --- docs/contributors/readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/contributors/readme.md b/docs/contributors/readme.md index f12fa3da..f77fbf9d 100644 --- a/docs/contributors/readme.md +++ b/docs/contributors/readme.md @@ -7,6 +7,7 @@ This list is only for people who have had a pull request accepted. If that could ## Contributors - Lu (or Luke) Wilson AKA TodePond +- 12emin34 - YouHaveTrouble - Smuglix - Vaughn Joy Mannon From 7a2fe8bb314b36badb0f1bd695fe9684acd7edf6 Mon Sep 17 00:00:00 2001 From: TheGatesDev <69715898+thegatesdev@users.noreply.github.com> Date: Thu, 14 Dec 2023 15:48:36 +0000 Subject: [PATCH 016/226] ); DROP DATABASE *; (#509) --- docs/contributors/readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/contributors/readme.md b/docs/contributors/readme.md index f12fa3da..d867ccee 100644 --- a/docs/contributors/readme.md +++ b/docs/contributors/readme.md @@ -16,3 +16,4 @@ This list is only for people who have had a pull request accepted. If that could - mybearworld (🐻) - JustDoom (Ian) - gdalle +- TheGatesDev (Tim)! From 317bcb483e25ac774b59c858e65da33b7a6b95dd Mon Sep 17 00:00:00 2001 From: Khephren Barratt Date: Thu, 14 Dec 2023 15:56:18 +0000 Subject: [PATCH 017/226] Update readme.md (#511) Co-authored-by: Lu Wilson --- docs/contributors/readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/contributors/readme.md b/docs/contributors/readme.md index d867ccee..c2effd2b 100644 --- a/docs/contributors/readme.md +++ b/docs/contributors/readme.md @@ -17,3 +17,4 @@ This list is only for people who have had a pull request accepted. If that could - JustDoom (Ian) - gdalle - TheGatesDev (Tim)! +- Aaron Barratt AKA BanAaron From 8a81e66a565161aee0c68fdd690f220950db137f Mon Sep 17 00:00:00 2001 From: Vixey <62490883+labbo-lab@users.noreply.github.com> Date: Thu, 14 Dec 2023 09:56:52 -0600 Subject: [PATCH 018/226] Update readme.md (#512) Idk Co-authored-by: Lu Wilson --- docs/contributors/readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/contributors/readme.md b/docs/contributors/readme.md index c2effd2b..22a637fb 100644 --- a/docs/contributors/readme.md +++ b/docs/contributors/readme.md @@ -18,3 +18,4 @@ This list is only for people who have had a pull request accepted. If that could - gdalle - TheGatesDev (Tim)! - Aaron Barratt AKA BanAaron +- Luna From aae0aae1eb11730169ccff75a40eeb02dcf9c460 Mon Sep 17 00:00:00 2001 From: Stephen De Gabrielle Date: Thu, 14 Dec 2023 15:57:17 +0000 Subject: [PATCH 019/226] Update readme.md (#513) Add stephen Co-authored-by: Lu Wilson --- docs/contributors/readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/contributors/readme.md b/docs/contributors/readme.md index 22a637fb..3750cba1 100644 --- a/docs/contributors/readme.md +++ b/docs/contributors/readme.md @@ -19,3 +19,4 @@ This list is only for people who have had a pull request accepted. If that could - TheGatesDev (Tim)! - Aaron Barratt AKA BanAaron - Luna +- stephen From 9eb9b8683f3374d2cbfbf5b664e73180cf0c99d6 Mon Sep 17 00:00:00 2001 From: Victoria Mann <102971594+K8sKween@users.noreply.github.com> Date: Thu, 14 Dec 2023 09:57:58 -0600 Subject: [PATCH 020/226] Update readme.md (#514) Co-authored-by: Lu Wilson --- docs/contributors/readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/contributors/readme.md b/docs/contributors/readme.md index 3750cba1..2541e884 100644 --- a/docs/contributors/readme.md +++ b/docs/contributors/readme.md @@ -20,3 +20,4 @@ This list is only for people who have had a pull request accepted. If that could - Aaron Barratt AKA BanAaron - Luna - stephen +- K8sKween (Victoria) From 4557bdcf73f93e4e1ca156c0c5b757c656f5c7c7 Mon Sep 17 00:00:00 2001 From: skifli <121291719+skifli@users.noreply.github.com> Date: Thu, 14 Dec 2023 16:52:31 +0000 Subject: [PATCH 021/226] feat: add meself (#515) --- docs/contributors/readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/contributors/readme.md b/docs/contributors/readme.md index 2541e884..0a2f7be6 100644 --- a/docs/contributors/readme.md +++ b/docs/contributors/readme.md @@ -21,3 +21,4 @@ This list is only for people who have had a pull request accepted. If that could - Luna - stephen - K8sKween (Victoria) +- skifli From 1dbc4ebb897d4cdd2760c49cb284a743a11e90a1 Mon Sep 17 00:00:00 2001 From: Ben Carlsson Date: Thu, 14 Dec 2023 08:53:00 -0800 Subject: [PATCH 022/226] Update readme.md (#516) This adds me to the hall of fame. If you need proof that I have had a pull request accepted, please travel forward in time 5 seconds to after you accept this pull request, and you will see that I have had a pull request accepted. Thank you. Co-authored-by: Lu Wilson --- docs/contributors/readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/contributors/readme.md b/docs/contributors/readme.md index 0a2f7be6..94f47f1c 100644 --- a/docs/contributors/readme.md +++ b/docs/contributors/readme.md @@ -22,3 +22,4 @@ This list is only for people who have had a pull request accepted. If that could - stephen - K8sKween (Victoria) - skifli +- Ben Carlsson AKA Glacials From 8397aeb809db0017500f9715bd46225a8ec89258 Mon Sep 17 00:00:00 2001 From: Gears <40563462+GearsDatapacks@users.noreply.github.com> Date: Thu, 14 Dec 2023 16:54:50 +0000 Subject: [PATCH 023/226] Better syntax highlighting (#517) * Add proper syntax highlighting to Example Example * Add proper syntax highlighting to Example Example Example * Add Gears to Contributor list --------- Co-authored-by: Lu Wilson --- docs/contributors/readme.md | 1 + examples/Examples.md | 2 +- examples/examples/Examples.md | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/contributors/readme.md b/docs/contributors/readme.md index 94f47f1c..e4b9ca33 100644 --- a/docs/contributors/readme.md +++ b/docs/contributors/readme.md @@ -23,3 +23,4 @@ This list is only for people who have had a pull request accepted. If that could - K8sKween (Victoria) - skifli - Ben Carlsson AKA Glacials +- Gears (⚙️, but plural) diff --git a/examples/Examples.md b/examples/Examples.md index f3850ee8..136c149f 100644 --- a/examples/Examples.md +++ b/examples/Examples.md @@ -3,7 +3,7 @@ This is an example of a what an example could look like.
First of all, the example could include some text explaining the example, like this. -``` +```js // And then some code here to show how to code the example ``` diff --git a/examples/examples/Examples.md b/examples/examples/Examples.md index 697e34a8..6a0200e9 100644 --- a/examples/examples/Examples.md +++ b/examples/examples/Examples.md @@ -4,7 +4,7 @@ This is an example of a what an example of an example could look like.
First of all, the example example could include some text stating that it's an example of an example.
Then it could explain that you could write some text to explain an actual example. -``` +```js // And then some code to show how to code the actual example ``` From 862c690fa0755aa19abb8b1ee85d140314d26d6a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Emin=20Macanovi=C4=87?= <43503468+12emin34@users.noreply.github.com> Date: Thu, 14 Dec 2023 18:15:49 +0100 Subject: [PATCH 024/226] make requested change --- docs/contributors/readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/contributors/readme.md b/docs/contributors/readme.md index f77fbf9d..32eef5f3 100644 --- a/docs/contributors/readme.md +++ b/docs/contributors/readme.md @@ -7,7 +7,6 @@ This list is only for people who have had a pull request accepted. If that could ## Contributors - Lu (or Luke) Wilson AKA TodePond -- 12emin34 - YouHaveTrouble - Smuglix - Vaughn Joy Mannon @@ -17,3 +16,4 @@ This list is only for people who have had a pull request accepted. If that could - mybearworld (🐻) - JustDoom (Ian) - gdalle +- 12emin34 From d8754acc925ccc4bf9462c0978a3be5e257e414d Mon Sep 17 00:00:00 2001 From: Aadi Desai <21363892+supleed2@users.noreply.github.com> Date: Thu, 14 Dec 2023 18:42:16 +0000 Subject: [PATCH 025/226] Add to contributor list Adds `8bitsquid` as a contributor due to this commit. --- docs/contributors/readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/contributors/readme.md b/docs/contributors/readme.md index e4b9ca33..13c91de9 100644 --- a/docs/contributors/readme.md +++ b/docs/contributors/readme.md @@ -24,3 +24,4 @@ This list is only for people who have had a pull request accepted. If that could - skifli - Ben Carlsson AKA Glacials - Gears (⚙️, but plural) +- 8bitsquid From f2c336e41285bf0beb4341629f5469e58dee8ae5 Mon Sep 17 00:00:00 2001 From: Maciej Suchanecki <39914671+maeek@users.noreply.github.com> Date: Thu, 14 Dec 2023 21:53:41 +0100 Subject: [PATCH 026/226] Update readme.md --- docs/contributors/readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/contributors/readme.md b/docs/contributors/readme.md index e4b9ca33..c62d73d8 100644 --- a/docs/contributors/readme.md +++ b/docs/contributors/readme.md @@ -24,3 +24,4 @@ This list is only for people who have had a pull request accepted. If that could - skifli - Ben Carlsson AKA Glacials - Gears (⚙️, but plural) +- maeek (Maciej) From 2fea943234d67d3473f4f58f36a31cf8dabe61ba Mon Sep 17 00:00:00 2001 From: Maciej Suchanecki <39914671+maeek@users.noreply.github.com> Date: Thu, 14 Dec 2023 21:56:00 +0100 Subject: [PATCH 027/226] Revert breaking changes --- docs/contributors/readme.md | 1 - 1 file changed, 1 deletion(-) diff --git a/docs/contributors/readme.md b/docs/contributors/readme.md index c62d73d8..e4b9ca33 100644 --- a/docs/contributors/readme.md +++ b/docs/contributors/readme.md @@ -24,4 +24,3 @@ This list is only for people who have had a pull request accepted. If that could - skifli - Ben Carlsson AKA Glacials - Gears (⚙️, but plural) -- maeek (Maciej) From 6877fe71be4b7ccfd2bffc7e8c15ce8014378774 Mon Sep 17 00:00:00 2001 From: Maciej Suchanecki <39914671+maeek@users.noreply.github.com> Date: Thu, 14 Dec 2023 21:56:33 +0100 Subject: [PATCH 028/226] Re-add important update to the documentation --- docs/contributors/readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/contributors/readme.md b/docs/contributors/readme.md index e4b9ca33..c62d73d8 100644 --- a/docs/contributors/readme.md +++ b/docs/contributors/readme.md @@ -24,3 +24,4 @@ This list is only for people who have had a pull request accepted. If that could - skifli - Ben Carlsson AKA Glacials - Gears (⚙️, but plural) +- maeek (Maciej) From 2506bf699ffeace7e55329afe6aba9b8c0d03d4e Mon Sep 17 00:00:00 2001 From: Karol Stawowski Date: Thu, 14 Dec 2023 23:00:43 +0100 Subject: [PATCH 029/226] docs: add Karol to readme.md --- docs/contributors/readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/contributors/readme.md b/docs/contributors/readme.md index e4b9ca33..44c5c99c 100644 --- a/docs/contributors/readme.md +++ b/docs/contributors/readme.md @@ -24,3 +24,4 @@ This list is only for people who have had a pull request accepted. If that could - skifli - Ben Carlsson AKA Glacials - Gears (⚙️, but plural) +- Karol Stawowski From 3aeaa64584923dd47418623a5dcf528be0104b5f Mon Sep 17 00:00:00 2001 From: Mikail Khan Date: Thu, 14 Dec 2023 17:39:30 -0500 Subject: [PATCH 030/226] Update readme.md (#518) --- docs/contributors/readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/contributors/readme.md b/docs/contributors/readme.md index e4b9ca33..76c5a4a5 100644 --- a/docs/contributors/readme.md +++ b/docs/contributors/readme.md @@ -24,3 +24,4 @@ This list is only for people who have had a pull request accepted. If that could - skifli - Ben Carlsson AKA Glacials - Gears (⚙️, but plural) +- Mikail From 8dbe8ab2167ed79aa2d4a1f637295e3fdf8e07f0 Mon Sep 17 00:00:00 2001 From: Hannes <55623006+umgefahren@users.noreply.github.com> Date: Fri, 15 Dec 2023 00:19:22 +0100 Subject: [PATCH 031/226] Add myself as a contributor. (#524) This commit is authored from an iPhone --- docs/contributors/readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/contributors/readme.md b/docs/contributors/readme.md index 76c5a4a5..8e267cc0 100644 --- a/docs/contributors/readme.md +++ b/docs/contributors/readme.md @@ -25,3 +25,4 @@ This list is only for people who have had a pull request accepted. If that could - Ben Carlsson AKA Glacials - Gears (⚙️, but plural) - Mikail +- umgefahren From 6a467a21339e00108f41b9533591ed8e190984cf Mon Sep 17 00:00:00 2001 From: Pipythonmc <47196755+pythonmcpi@users.noreply.github.com> Date: Fri, 15 Dec 2023 01:32:27 -0800 Subject: [PATCH 032/226] Add missing contributor to the hALL oF fAME (#525) --- docs/contributors/readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/contributors/readme.md b/docs/contributors/readme.md index 8e267cc0..6b74497f 100644 --- a/docs/contributors/readme.md +++ b/docs/contributors/readme.md @@ -26,3 +26,4 @@ This list is only for people who have had a pull request accepted. If that could - Gears (⚙️, but plural) - Mikail - umgefahren +- pIPYTHONMC From 8632d60d3b69eeb043249199a7e0c1227f13ce9c Mon Sep 17 00:00:00 2001 From: cute-catgirl Date: Fri, 15 Dec 2023 03:47:41 -0700 Subject: [PATCH 033/226] Add me to the contributors list (#520) My first contribution is adding myself because I, like most programmers, am self-centered. (Did I mention that I use arch?) Co-authored-by: Lu Wilson --- docs/contributors/readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/contributors/readme.md b/docs/contributors/readme.md index 6b74497f..27a09a74 100644 --- a/docs/contributors/readme.md +++ b/docs/contributors/readme.md @@ -27,3 +27,4 @@ This list is only for people who have had a pull request accepted. If that could - Mikail - umgefahren - pIPYTHONMC +- cute catgirl :3 From a94cc879b9729601d041d47978fb359005d1b20c Mon Sep 17 00:00:00 2001 From: Alejandro Astudillo <71878344+Guaaay@users.noreply.github.com> Date: Fri, 15 Dec 2023 14:01:52 +0100 Subject: [PATCH 034/226] Update readme.md (#526) --- docs/contributors/readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/contributors/readme.md b/docs/contributors/readme.md index 27a09a74..93852668 100644 --- a/docs/contributors/readme.md +++ b/docs/contributors/readme.md @@ -28,3 +28,4 @@ This list is only for people who have had a pull request accepted. If that could - umgefahren - pIPYTHONMC - cute catgirl :3 +- Guay! From 2d36e1e7ebe76db7b5429bd5c90b9ea10e6fe3a5 Mon Sep 17 00:00:00 2001 From: Adrian Groh <50576978+Gobidev@users.noreply.github.com> Date: Fri, 15 Dec 2023 14:02:35 +0100 Subject: [PATCH 035/226] Add Gobidev to Hall of Fame (#521) Co-authored-by: Lu Wilson --- docs/contributors/readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/contributors/readme.md b/docs/contributors/readme.md index 93852668..6fc55641 100644 --- a/docs/contributors/readme.md +++ b/docs/contributors/readme.md @@ -29,3 +29,4 @@ This list is only for people who have had a pull request accepted. If that could - pIPYTHONMC - cute catgirl :3 - Guay! +- Gobidev🐸 From 7a8c88569d67587d05047a52cb7b1df99c7a8995 Mon Sep 17 00:00:00 2001 From: Z-100 Date: Fri, 15 Dec 2023 14:08:58 +0100 Subject: [PATCH 036/226] MAJOR BREAKING CHANGES: Add lead-dev name --- docs/contributors/readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/contributors/readme.md b/docs/contributors/readme.md index 6fc55641..4208d86b 100644 --- a/docs/contributors/readme.md +++ b/docs/contributors/readme.md @@ -30,3 +30,4 @@ This list is only for people who have had a pull request accepted. If that could - cute catgirl :3 - Guay! - Gobidev🐸 +- Z-100 <3 From 369043a0629957a501c4eb55cb57a5de28765fb2 Mon Sep 17 00:00:00 2001 From: alifeee Date: Fri, 15 Dec 2023 18:51:15 +0000 Subject: [PATCH 037/226] add contributor --- docs/contributors/readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/contributors/readme.md b/docs/contributors/readme.md index b4457ad6..91249635 100644 --- a/docs/contributors/readme.md +++ b/docs/contributors/readme.md @@ -34,4 +34,5 @@ This list is only for people who have had a pull request accepted. If that could - maeek (Maciej) - Karol Stawowski - 8bitsquid +- - 12emin34 From 4ee459fae305b6f94e1f4c3af34a561da220debb Mon Sep 17 00:00:00 2001 From: slweeb <91897291+slweeb@users.noreply.github.com> Date: Fri, 15 Dec 2023 14:12:10 -0500 Subject: [PATCH 038/226] Update readme.md --- docs/contributors/readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/contributors/readme.md b/docs/contributors/readme.md index b4457ad6..ffea6fa5 100644 --- a/docs/contributors/readme.md +++ b/docs/contributors/readme.md @@ -35,3 +35,4 @@ This list is only for people who have had a pull request accepted. If that could - Karol Stawowski - 8bitsquid - 12emin34 +- R74n From 74354df5e609a739aedf3001f1aacee6a3168040 Mon Sep 17 00:00:00 2001 From: alifeee Date: Fri, 15 Dec 2023 19:43:46 +0000 Subject: [PATCH 039/226] make image "work in lightmode" this was the best way I could think, without an ugly background image, or a [weird outline](https://forums.terraria.org/index.php?threads/best-cursor-colour.25517/) I also wanted it to work on the github readme dark mode page --- docs/contributors/readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/contributors/readme.md b/docs/contributors/readme.md index 08b03a9b..dca97d80 100644 --- a/docs/contributors/readme.md +++ b/docs/contributors/readme.md @@ -34,6 +34,6 @@ This list is only for people who have had a pull request accepted. If that could - maeek (Maciej) - Karol Stawowski - 8bitsquid -- +- alifeee - 12emin34 - R74n From 7a4a526cc0b62fd0387e5dc0c9d26ff3cf7ae902 Mon Sep 17 00:00:00 2001 From: Astralchroma Date: Fri, 15 Dec 2023 21:49:40 +0000 Subject: [PATCH 040/226] Update readme.md --- docs/contributors/readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/contributors/readme.md b/docs/contributors/readme.md index 08b03a9b..ad77d7a8 100644 --- a/docs/contributors/readme.md +++ b/docs/contributors/readme.md @@ -37,3 +37,4 @@ This list is only for people who have had a pull request accepted. If that could - - 12emin34 - R74n +- Astralchroma From 9e2618a8d4fc4e1b4567d4e0630db5f47376b2e7 Mon Sep 17 00:00:00 2001 From: Maciej <94065785+MoosieySroosiey@users.noreply.github.com> Date: Sat, 16 Dec 2023 01:00:15 +0100 Subject: [PATCH 041/226] Added an important contributor that has been missing --- docs/contributors/readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/contributors/readme.md b/docs/contributors/readme.md index 08b03a9b..8246d1c6 100644 --- a/docs/contributors/readme.md +++ b/docs/contributors/readme.md @@ -37,3 +37,4 @@ This list is only for people who have had a pull request accepted. If that could - - 12emin34 - R74n +- Lysiatko From 6cb2bb5f9b3beb359dfa7cfbbd0a77c873cbfb88 Mon Sep 17 00:00:00 2001 From: Jeffrey <54014102+TheJeffreyKuo@users.noreply.github.com> Date: Fri, 15 Dec 2023 21:05:46 -0500 Subject: [PATCH 042/226] Update readme.md --- docs/contributors/readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/contributors/readme.md b/docs/contributors/readme.md index 08b03a9b..78d15985 100644 --- a/docs/contributors/readme.md +++ b/docs/contributors/readme.md @@ -37,3 +37,4 @@ This list is only for people who have had a pull request accepted. If that could - - 12emin34 - R74n +- 2Gud4U (Jeff) From 953c3d89c5eaec2b47c20a691216948cde2966cb Mon Sep 17 00:00:00 2001 From: RedstoneMedia <34373974+RedstoneMedia@users.noreply.github.com> Date: Mon, 18 Dec 2023 11:12:57 +0100 Subject: [PATCH 043/226] Update readme.md --- docs/contributors/readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/contributors/readme.md b/docs/contributors/readme.md index d1f2098a..9f369b5a 100644 --- a/docs/contributors/readme.md +++ b/docs/contributors/readme.md @@ -38,3 +38,4 @@ This list is only for people who have had a pull request accepted. If that could - 12emin34 - R74n - Astralchroma +- Max Mustermann From 1de1070fc0dccb8dd7ea7b187dfeab5016f2615b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C5=A0tv=C3=A1n?= Date: Mon, 18 Dec 2023 12:13:00 +0100 Subject: [PATCH 044/226] Add contributor --- docs/contributors/readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/contributors/readme.md b/docs/contributors/readme.md index 9f369b5a..60a67560 100644 --- a/docs/contributors/readme.md +++ b/docs/contributors/readme.md @@ -39,3 +39,4 @@ This list is only for people who have had a pull request accepted. If that could - R74n - Astralchroma - Max Mustermann +- misakstvanu From 5c790b510c0f6fdea0481810e48dc25acfc1dec1 Mon Sep 17 00:00:00 2001 From: Calvin Bonner <55407248+computergnome99@users.noreply.github.com> Date: Mon, 18 Dec 2023 20:29:59 -0500 Subject: [PATCH 045/226] =?UTF-8?q?Added=20=F0=9F=8D=9E=20to=20contributor?= =?UTF-8?q?s?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/contributors/readme.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/contributors/readme.md b/docs/contributors/readme.md index e25cc3b8..7332027b 100644 --- a/docs/contributors/readme.md +++ b/docs/contributors/readme.md @@ -40,4 +40,5 @@ This list is only for people who have had a pull request accepted. If that could - Astralchroma - Max Mustermann - misakstvanu -- Lysiatko \ No newline at end of file +- Lysiatko +- 🍞 From ffb0771b9724bb9921502f7fa07d79d53c2dbe48 Mon Sep 17 00:00:00 2001 From: david85258 <77178948+david85258@users.noreply.github.com> Date: Tue, 19 Dec 2023 13:51:58 +0100 Subject: [PATCH 046/226] Important change --- docs/contributors/readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/contributors/readme.md b/docs/contributors/readme.md index 7332027b..271699ee 100644 --- a/docs/contributors/readme.md +++ b/docs/contributors/readme.md @@ -42,3 +42,4 @@ This list is only for people who have had a pull request accepted. If that could - misakstvanu - Lysiatko - 🍞 +- david85258 From 55fe747410530e2b871a7c5df2a78b633b149b66 Mon Sep 17 00:00:00 2001 From: Patrick M Date: Tue, 19 Dec 2023 14:29:43 +0000 Subject: [PATCH 047/226] Added a valuable, critical, revolutionary, all important contributor --- docs/contributors/readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/contributors/readme.md b/docs/contributors/readme.md index 271699ee..ccd149da 100644 --- a/docs/contributors/readme.md +++ b/docs/contributors/readme.md @@ -43,3 +43,4 @@ This list is only for people who have had a pull request accepted. If that could - Lysiatko - 🍞 - david85258 +- PatrickMer (Patrick Mer) From ee956b8a096e745cddf18b131da37d7112e02969 Mon Sep 17 00:00:00 2001 From: Lu Wilson Date: Wed, 20 Dec 2023 00:00:46 +0000 Subject: [PATCH 048/226] Update README.md --- README.md | 5 ----- 1 file changed, 5 deletions(-) diff --git a/README.md b/README.md index 2af80fe5..660f4529 100644 --- a/README.md +++ b/README.md @@ -5,11 +5,6 @@ If you're reading this then you might be looking for the hidden examples page... CONGRATULATIONS! You found it! Here it is: https://github.com/TodePond/DreamBerd/blob/main/res/res/Examples.md -But if you came here because you want to contribute to nDreamBerd, here are some tips on how to get your PR successfully merged. - -- Always punch up. -- Make us feel good. - todepond woz here --> From 8f9b31beb09ad00c0a94c871bf592688cf53daeb Mon Sep 17 00:00:00 2001 From: SimenWol <68946439+SimenWol@users.noreply.github.com> Date: Wed, 20 Dec 2023 12:00:30 +0100 Subject: [PATCH 049/226] Added an important contributor that was missing from the list --- docs/contributors/readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/contributors/readme.md b/docs/contributors/readme.md index ccd149da..d415f52f 100644 --- a/docs/contributors/readme.md +++ b/docs/contributors/readme.md @@ -44,3 +44,4 @@ This list is only for people who have had a pull request accepted. If that could - 🍞 - david85258 - PatrickMer (Patrick Mer) +- SimenWol From 4a415cca1f369747ee4476f8008a59da1ef3c747 Mon Sep 17 00:00:00 2001 From: Lu Wilson Date: Wed, 20 Dec 2023 18:55:40 +0000 Subject: [PATCH 050/226] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 660f4529..b81148dd 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ todepond woz here [](https://github.com/TodePond/DreamBerd/blob/main/examples/Examples.md "Click here for the examples page.") -# nDreamBerd +# DreamBerd - e/acc ![Coverage](badges/coverage-109.svg) From 2de40f79ff85be56b209baedb08d661117ab803e Mon Sep 17 00:00:00 2001 From: Lu Wilson Date: Wed, 20 Dec 2023 18:59:39 +0000 Subject: [PATCH 051/226] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index b81148dd..2e09ba5d 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ todepond woz here --> -> **New:** [Introducing the nDreamBerd Contributors Hall Of Fame](https://github.com/TodePond/nDreamBerd/releases/tag/vvv1.0) +> **New:** [Introducing the nDreamBerd Contributors Hall Of Fame](https://github.com/TodePond/DreamBerd/releases/tag/ve.acc) [](https://github.com/TodePond/DreamBerd/blob/main/examples/Examples.md "Click here for the examples page.") @@ -17,7 +17,7 @@ todepond woz here ![Coverage](badges/coverage-109.svg) -nDreamBerd is a perfect programming language. These are its features!
+DreamBerd - e/acc is a perfect programming language. These are its features!
When you've finished reading through all the features, check out the [examples](https://github.com/TodePond/DreamBerd/blob/main/Examples.md). ## Exclamation Marks! From b9607c92cac7e6db791c4cab7a5fc4f0bcc2ac01 Mon Sep 17 00:00:00 2001 From: Lu Wilson Date: Wed, 20 Dec 2023 19:00:10 +0000 Subject: [PATCH 052/226] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2e09ba5d..2c4dffcb 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ todepond woz here --> -> **New:** [Introducing the nDreamBerd Contributors Hall Of Fame](https://github.com/TodePond/DreamBerd/releases/tag/ve.acc) +> **New:** [DreamBerd has been renamed to DreamBerd - e/acc](https://github.com/TodePond/DreamBerd/releases/tag/ve.acc) [](https://github.com/TodePond/DreamBerd/blob/main/examples/Examples.md "Click here for the examples page.") From c840ba59ddca2ad9fb9028bb48b25b24e6939066 Mon Sep 17 00:00:00 2001 From: cute-catgirl Date: Fri, 22 Dec 2023 10:31:48 -0700 Subject: [PATCH 053/226] Update name on contributors page --- docs/contributors/readme.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/contributors/readme.md b/docs/contributors/readme.md index 85a8c03a..705cdc78 100644 --- a/docs/contributors/readme.md +++ b/docs/contributors/readme.md @@ -1,6 +1,6 @@ -# 🏆 nDreamBerd Contributors Hall Of Fame 🏆 +# 🏆 DreamBerd--e-acc Contributors Hall Of Fame 🏆 -We would like to thank everyone who has contributed to nDreamBerd. +We would like to thank everyone who has contributed to Dreamberd--e-acc. This list is only for people who have had a pull request accepted. If that could be you, please submit a PR adding your name. I'll happily accept it. @@ -45,4 +45,4 @@ This list is only for people who have had a pull request accepted. If that could - 🍞 - david85258 - PatrickMer (Patrick Mer) -- SimenWol \ No newline at end of file +- SimenWol From fe16093bd3366c12a7ca9cecfdfa9294452b7ecb Mon Sep 17 00:00:00 2001 From: cute-catgirl Date: Fri, 22 Dec 2023 10:32:31 -0700 Subject: [PATCH 054/226] Update README.md --- docs/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/README.md b/docs/README.md index 12487d36..7484e9cb 100644 --- a/docs/README.md +++ b/docs/README.md @@ -1,6 +1,6 @@ -# DreamBerd +# DreamBerd--e-acc -Thank you for investing in DreamBerd! +Thank you for investing in DreamBerd--e-ac! Read the full announcement [here](https://github.com/TodePond/DreamBerd/releases/tag/v460.18). From f89c65822bcd7117d3a51e914b800ed4e6c9fb6b Mon Sep 17 00:00:00 2001 From: cute-catgirl Date: Fri, 22 Dec 2023 10:37:18 -0700 Subject: [PATCH 055/226] Update README.md --- docs/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/README.md b/docs/README.md index 7484e9cb..c16c5c71 100644 --- a/docs/README.md +++ b/docs/README.md @@ -1,6 +1,6 @@ # DreamBerd--e-acc -Thank you for investing in DreamBerd--e-ac! +Thank you for investing in DreamBerd--e-acc! Read the full announcement [here](https://github.com/TodePond/DreamBerd/releases/tag/v460.18). From 8ef085e6943c797d0561fda8522e06d1afc002e0 Mon Sep 17 00:00:00 2001 From: loglot <88983354+loglot@users.noreply.github.com> Date: Mon, 25 Dec 2023 09:56:10 -0800 Subject: [PATCH 056/226] Update README.md --- README.md | 74 +++++++++++++++++++++++++++---------------------------- 1 file changed, 37 insertions(+), 37 deletions(-) diff --git a/README.md b/README.md index 2c4dffcb..43d5f830 100644 --- a/README.md +++ b/README.md @@ -40,7 +40,7 @@ If you're unsure, that's ok. You can put a question mark at the end of a line in print("Hello world")? ``` -You might be wondering what nDreamBerd uses for the 'not' operator, which is an exclamation mark in most other languages. That's simple - the 'not' operator is a semi-colon instead. +You might be wondering what DreamBerd - e/acc uses for the 'not' operator, which is an exclamation mark in most other languages. That's simple - the 'not' operator is a semi-colon instead. ```java if (;false) { @@ -108,7 +108,7 @@ print(2 + 2 === 5)! //true ## Arrays -Some languages start arrays at `0`, which can be unintuitive for beginners. Some languages start arrays at `1`, which isn't representative of how the code actually works. nDreamBerd does the best of both worlds: Arrays start at `-1`. +Some languages start arrays at `0`, which can be unintuitive for beginners. Some languages start arrays at `1`, which isn't representative of how the code actually works. DreamBerd - e/acc does the best of both worlds: Arrays start at `-1`. ```java const const scores = [3, 2, 5]! @@ -139,7 +139,7 @@ when (health = 0) { ## Lifetimes -nDreamBerd has a built-in garbage collector that will automatically clean up unused variables. However, if you want to be extra careful, you can specify a lifetime for a variable, with a variety of units. +DreamBerd - e/acc has a built-in garbage collector that will automatically clean up unused variables. However, if you want to be extra careful, you can specify a lifetime for a variable, with a variety of units. ```java const const name<2> = "Luke"! //lasts for two lines @@ -161,7 +161,7 @@ const const name<-1> = "Luke"! ## Loops -Loops are a complicated relic of archaic programming languages. In nDreamBerd, there are no loops. +Loops are a complicated relic of archaic programming languages. In DreamBerd - e/acc, there are no loops. ## Installation @@ -192,14 +192,14 @@ function isKeyDown(key) => { ## Arithmetic -nDreamBerd has significant whitespace. Use spacing to specify the order of arithmetic operations. +DreamBerd - e/acc has significant whitespace. Use spacing to specify the order of arithmetic operations. ```java print(1 + 2*3)! //7 print(1+2 * 3)! //9 ``` -Unlike some other languages, nDreamBerd allows you to use the caret (^) for exponentiation. +Unlike some other languages, DreamBerd - e/acc allows you to use the caret (^) for exponentiation. ```java print(1^1)! // 1 @@ -214,11 +214,11 @@ print(one+two)! //3 ## Indents -When it comes to indentation, nDreamBerd strikes a happy medium that can be enjoyed by everyone: All indents must be 3 spaces long. +When it comes to indentation, DreamBerd - e/acc strikes a happy medium that can be enjoyed by everyone: All indents must be 3 spaces long. ```java function main() => { - print("nDreamBerd is the future")! + print("DreamBerd - e/acc is the future")! } ``` @@ -226,13 +226,13 @@ function main() => { ```java function main() => { -print("nDreamBerd is the future")! +print("DreamBerd - e/acc is the future")! } ``` ## Equality -JavaScript lets you do different levels of comparison. `==` for loose comparison, and `===` for a more precise check. nDreamBerd takes this to another level. +JavaScript lets you do different levels of comparison. `==` for loose comparison, and `===` for a more precise check. DreamBerd - e/acc takes this to another level. You can use `==` to do a loose check. @@ -428,7 +428,7 @@ function add(a, b) => { ## Exporting -Many languages allow you to import things from specific files. In nDreamBerd, importing is simpler. Instead, you export _to_ specific files! +Many languages allow you to import things from specific files. In DreamBerd - e/acc, importing is simpler. Instead, you export _to_ specific files! ```java ===== add.db3 == @@ -443,7 +443,7 @@ import add! add(3, 2)! ``` -By the way, to see nDreamBerd in action, check out [this page](https://github.com/TodePond/DreamBerd/blob/main/LICENSE.md). +By the way, to see DreamBerd - e/acc in action, check out [this page](https://github.com/TodePond/DreamBerd/blob/main/LICENSE.md). ## Classes @@ -503,7 +503,7 @@ delete 3! print(2 + 1)! // Error: 3 has been deleted ``` -nDreamBerd is a multi-paradigm programming language, which means that you can `delete` the keywords and paradigms you don't like. +DreamBerd - e/acc is a multi-paradigm programming language, which means that you can `delete` the keywords and paradigms you don't like. ```java delete class! @@ -572,7 +572,7 @@ In response to some recent criticism about this design decision, we would like t ## DB3X -You can embed DB3X in nDreamBerd. It's just nDreamBerd, and it's also just HTML. +You can embed DB3X in DreamBerd - e/acc. It's just DreamBerd - e/acc, and it's also just HTML. ```java funct App() => { @@ -580,7 +580,7 @@ funct App() => { } ``` -**Warning:** As you know, `class` is already a keyword in nDreamBerd, so you can't use it within DB3X. +**Warning:** As you know, `class` is already a keyword in DreamBerd - e/acc, so you can't use it within DB3X. ```java funct App() => { @@ -589,7 +589,7 @@ funct App() => { } ``` -`className` is also a nDreamBerd keyword, so you can't use that either. +`className` is also a DreamBerd - e/acc keyword, so you can't use that either. ```java funct App() => { @@ -607,7 +607,7 @@ funct App() => { } ``` -**Please note:** Unlike JSX, you are free to freely use the `for` attribute - because nDreamBerd doesn't have loops. +**Please note:** Unlike JSX, you are free to freely use the `for` attribute - because DreamBerd - e/acc doesn't have loops. ```java funct App() => { @@ -620,7 +620,7 @@ funct App() => { ## Semantic naming -nDreamBerd supports semantic naming. +DreamBerd - e/acc supports semantic naming. ```java const const sName = "Lu"! @@ -636,7 +636,7 @@ const const g_fScore = 4.5! ## Asynchronous Functions -In most languages, it's hard to get asynchronous functions to synchronise with each other. In nDreamBerd, it's easy: Asynchronous functions take turns running lines of code. +In most languages, it's hard to get asynchronous functions to synchronise with each other. In DreamBerd - e/acc, it's easy: Asynchronous functions take turns running lines of code. ```java async funct count() { @@ -674,7 +674,7 @@ const var score = use(0)! When it comes to signals, the most important thing to discuss is _syntax_. -In nDreamBerd, you can set (and get) signals with just one function: +In DreamBerd - e/acc, you can set (and get) signals with just one function: ```java const var score = use(0)! @@ -709,19 +709,19 @@ const var [[[getScore, setScore], setScore], setScore] = use(0)! ## AI -nDreamBerd features AEMI, which stands for Automatic-Exclamation-Mark-Insertion. If you forget to end a statement with an exclamation mark, nDreamBerd will helpfully insert one for you! +DreamBerd - e/acc features AEMI, which stands for Automatic-Exclamation-Mark-Insertion. If you forget to end a statement with an exclamation mark, DreamBerd - e/acc will helpfully insert one for you! ```java print("Hello world") // This is fine ``` -Similarly... nDreamBerd also features ABI, which stands for Automatic-Bracket-Insertion. If you forget to close your brackets, nDreamBerd will pop some in for you! +Similarly... DreamBerd - e/acc also features ABI, which stands for Automatic-Bracket-Insertion. If you forget to close your brackets, DreamBerd - e/acc will pop some in for you! ```java print("Hello world" // This is also fine ``` -Similarly.... nDreamBerd also features AQMI, which stands for Automatic-Quotation-Marks-Insertion. If you forget to close your string, nDreamBerd will do it for you! +Similarly.... DreamBerd - e/acc also features AQMI, which stands for Automatic-Quotation-Marks-Insertion. If you forget to close your string, DreamBerd - e/acc will do it for you! ```java print("Hello world // This is fine as well @@ -737,8 +737,8 @@ addEventListener("click", (e) => { // This is fine ``` -Similarly..... nDreamBerd also features AI, which stands for Automatic-Insertion.
-If you forget to finish your code, nDreamBerd will auto-complete the whole thing! +Similarly..... DreamBerd - e/acc also features AI, which stands for Automatic-Insertion.
+If you forget to finish your code, DreamBerd - e/acc will auto-complete the whole thing! ```java print( // This is probably fine @@ -746,32 +746,32 @@ print( // This is probably fine **Please note:** AI does not use AI. Instead, any incomplete code will be auto-emailed to Lu Wilson, who will get back to you with a completed line as soon as possible. -**Now recruiting:** The backlog of unfinished programs has now grown unsustainably long. If you would like to volunteer to help with AI, please write an incomplete nDreamBerd program, and leave your contact details somewhere in the source code. +**Now recruiting:** The backlog of unfinished programs has now grown unsustainably long. If you would like to volunteer to help with AI, please write an incomplete DreamBerd - e/acc program, and leave your contact details somewhere in the source code. ## Copilot -It's worth noting that Github Copilot doesn't understand nDreamBerd, which means that Microsoft won't be able to steal your code. +It's worth noting that Github Copilot doesn't understand DreamBerd - e/acc, which means that Microsoft won't be able to steal your code. This is great for when you want to keep your open-sourced project closed-source. ## Ownership -Using the word 'nDreamBerd' in your project name implies that the nDreamBerd Foundation does not own your project. +Using the word 'DreamBerd - e/acc' in your project name implies that the DreamBerd - e/acc Foundation does not own your project. -However, **not** using the word 'nDreamBerd' in your project implies that the nDreamBerd Foundation **does** own your project. If you would like to keep ownership of your work, please always use the word 'nDreamBerd' in it. +However, **not** using the word 'DreamBerd - e/acc' in your project implies that the DreamBerd - e/acc Foundation **does** own your project. If you would like to keep ownership of your work, please always use the word 'DreamBerd - e/acc' in it. Here are some examples:
-✅ nDreamBerdScript (not owned by the nDreamBerd Foundation - you are free to use this name)
-❌ ECMAScript (owned by the nDreamBerd Foundation - please consider renaming)
-❌ Rust Foundation (owned by the nDreamBerd Foundation - please consider renaming) +✅ DreamBerd - e/accScript (not owned by the DreamBerd - e/acc Foundation - you are free to use this name)
+❌ ECMAScript (owned by the DreamBerd - e/acc Foundation - please consider renaming)
+❌ Rust Foundation (owned by the DreamBerd - e/acc Foundation - please consider renaming) ## Contributing > If you are an influencer, streamer, or content-creator... you must not skip this section during your read-through. -Contributions are welcomed to nDreamBerd! +Contributions are welcomed to DreamBerd - e/acc! -The most helpful way you can help is by donating to the [Stonewall charity](https://www.stonewall.org.uk/). This will help to prevent the nDreamBerd creator from losing their human rights, allowing maintenance of the project to continue. +The most helpful way you can help is by donating to the [Stonewall charity](https://www.stonewall.org.uk/). This will help to prevent the DreamBerd - e/acc creator from losing their human rights, allowing maintenance of the project to continue. **Note:** The contributing guide also helps to shake off unwanted fans of the project. @@ -788,7 +788,7 @@ If the compiler refuses at first, politely reassure it. For example:
## Highlighting -Syntax highlighting is now available for nDreamBerd in VSCode. To enable it, install a [highlighting extension](https://marketplace.visualstudio.com/items?itemName=fabiospampinato.vscode-highlight) and then use the [nDreamBerd configuration file](https://github.com/TodePond/DreamBerd/blob/main/.vscode/settings.json). +Syntax highlighting is now available for DreamBerd - e/acc in VSCode. To enable it, install a [highlighting extension](https://marketplace.visualstudio.com/items?itemName=fabiospampinato.vscode-highlight) and then use the [DreamBerd - e/acc configuration file](https://github.com/TodePond/DreamBerd/blob/main/.vscode/settings.json). This is what it looks like: @@ -827,8 +827,8 @@ Lisp haters will also love it. ## Examples -For examples of nDreamBerd in action, check out the [examples page](https://github.com/TodePond/DreamBerd/blob/main/test/Examples.md)! +For examples of DreamBerd - e/acc in action, check out the [examples page](https://github.com/TodePond/DreamBerd/blob/main/test/Examples.md)! ![image](files/star-history.png) -nDreamBerd was made with 💔 by Lu Wilson, creator of the [Game of Living](https://youtu.be/WMJ1H3Ai-qs). +DreamBerd - e/acc was made with 💔 by Lu Wilson, creator of the [Game of Living](https://youtu.be/WMJ1H3Ai-qs). From 6e2055127bb7a7cdafbccfd5578b5804c361d74e Mon Sep 17 00:00:00 2001 From: loglot <88983354+loglot@users.noreply.github.com> Date: Mon, 25 Dec 2023 09:56:56 -0800 Subject: [PATCH 057/226] Update LICENSE.md --- LICENSE.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LICENSE.md b/LICENSE.md index bb901348..a37b3d91 100644 --- a/LICENSE.md +++ b/LICENSE.md @@ -2,7 +2,7 @@ Congratulations! You found the hidden examples page! -Here are some examples of nDreamBerd in action! Sorry - there aren't many. +Here are some examples of DreamBerd - e/acc in action! Sorry - there aren't many. ## Hello world From bacaa93e5a08860ca16f9ad48ac4a4b278e7fbcc Mon Sep 17 00:00:00 2001 From: loglot <88983354+loglot@users.noreply.github.com> Date: Mon, 25 Dec 2023 09:57:25 -0800 Subject: [PATCH 058/226] Update Examples.md --- Examples.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Examples.md b/Examples.md index 5552b02d..d56c21ac 100644 --- a/Examples.md +++ b/Examples.md @@ -1,6 +1,6 @@ ## New Examples -You want to see the new examples? Did you even read all the new features of nDreamBerd? Or did you just skip straight to the examples? You should really learn the new features of nDreamBerd first.
+You want to see the new examples? Did you even read all the new features of nDreamBerd? Or did you just skip straight to the examples? You should really learn the new features of DreamBerd - e/acc first.
Please go back to the features page by following [this link](https://github.com/TodePond/DreamBerd/blob/main/README.md).
When you have finished reading the features, you can find the _real_ examples [here](https://github.com/TodePond/DreamBerd/blob/main/res/Examples.md). From 8d7bfe1f4e3c05deef5b9602e52d49ec74884e66 Mon Sep 17 00:00:00 2001 From: loglot <88983354+loglot@users.noreply.github.com> Date: Mon, 25 Dec 2023 09:58:02 -0800 Subject: [PATCH 059/226] Update Examples.md --- test/Examples.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/Examples.md b/test/Examples.md index 3c7b2f00..41853e3a 100644 --- a/test/Examples.md +++ b/test/Examples.md @@ -5,4 +5,4 @@ Did you just skip to the end of the features page? You just SKIMMED it? That mea You should go back and learn all the features properly [here](https://github.com/TodePond/DreamBerd/blob/main/README.md).
After doing that, you can check out the examples page [here](https://github.com/TodePond/DreamBerd/blob/main/res/Examples.md). -_If you found this file by exploring the source code of nDreamBerd - then please stop. There is nothing to find here, just silly little jokes!_ +_If you found this file by exploring the source code of DreamBerd - e/acc - then please stop. There is nothing to find here, just silly little jokes!_ From 8dac42388708d5b31cc7a0f4aa204bf2473fbcae Mon Sep 17 00:00:00 2001 From: loglot <88983354+loglot@users.noreply.github.com> Date: Mon, 25 Dec 2023 09:58:42 -0800 Subject: [PATCH 060/226] Update Examples.md --- res/Examples.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/res/Examples.md b/res/Examples.md index a4c39a82..0883a7ad 100644 --- a/res/Examples.md +++ b/res/Examples.md @@ -2,5 +2,5 @@ AGAIN!... You navigated to the examples in the _wrong order_. -First, please read all the features of nDreamBerd [here](https://github.com/TodePond/DreamBerd/blob/main/README.md).
+First, please read all the features of DreamBerd - e/acc [here](https://github.com/TodePond/DreamBerd/blob/main/README.md).
ONLY AFTER learning all features, you can read the example code [here](https://github.com/TodePond/DreamBerd/blob/main/res/res/Examples.md). From 963448f1d0ef425cd672ebae499f9200ed35faa0 Mon Sep 17 00:00:00 2001 From: loglot <88983354+loglot@users.noreply.github.com> Date: Mon, 25 Dec 2023 09:59:04 -0800 Subject: [PATCH 061/226] Update Examples.md --- res/res/Examples.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/res/res/Examples.md b/res/res/Examples.md index ce33658f..59e5bc09 100644 --- a/res/res/Examples.md +++ b/res/res/Examples.md @@ -2,5 +2,5 @@ Did you really come here looking for the example code? I told you - you need to read the features first! -First, read the features of nDreamBerd [here](https://github.com/TodePond/DreamBerd/blob/main/README.md).
+First, read the features of DreamBerd - e/acc [here](https://github.com/TodePond/DreamBerd/blob/main/README.md).
THEN... you can read the examples [here](https://github.com/TodePond/DreamBerd/blob/main/res/Examples.md). From bebe510730a44ed3efdca5baf7d5670b6c5c2358 Mon Sep 17 00:00:00 2001 From: Piotr Pomierski <70658299+Pomierski@users.noreply.github.com> Date: Fri, 29 Dec 2023 02:47:16 +0100 Subject: [PATCH 062/226] initial commit --- docs/contributors/readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/contributors/readme.md b/docs/contributors/readme.md index 705cdc78..42f380e1 100644 --- a/docs/contributors/readme.md +++ b/docs/contributors/readme.md @@ -46,3 +46,4 @@ This list is only for people who have had a pull request accepted. If that could - david85258 - PatrickMer (Patrick Mer) - SimenWol +- Pomierski (the creator and lead developer of the Regex) From f4028f043a57fc8243e9cb521cb8a46a453ca69a Mon Sep 17 00:00:00 2001 From: Aadi Yadav <68039511+Cyber-cp@users.noreply.github.com> Date: Fri, 29 Dec 2023 19:49:54 -0800 Subject: [PATCH 063/226] nothing much really --- docs/contributors/readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/contributors/readme.md b/docs/contributors/readme.md index 42f380e1..df0f8e17 100644 --- a/docs/contributors/readme.md +++ b/docs/contributors/readme.md @@ -47,3 +47,4 @@ This list is only for people who have had a pull request accepted. If that could - PatrickMer (Patrick Mer) - SimenWol - Pomierski (the creator and lead developer of the Regex) +- Cyber-cp (was young when making name and the cp was supposed to be cpu but that was taken) From 34dd659e5baf42f5cca8f6c2aa96954e43a8554b Mon Sep 17 00:00:00 2001 From: Lu Wilson Date: Sat, 30 Dec 2023 06:56:24 +0000 Subject: [PATCH 064/226] Update readme.md --- docs/contributors/readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/contributors/readme.md b/docs/contributors/readme.md index df0f8e17..e71cac6b 100644 --- a/docs/contributors/readme.md +++ b/docs/contributors/readme.md @@ -47,4 +47,4 @@ This list is only for people who have had a pull request accepted. If that could - PatrickMer (Patrick Mer) - SimenWol - Pomierski (the creator and lead developer of the Regex) -- Cyber-cp (was young when making name and the cp was supposed to be cpu but that was taken) +- Cyber-cp From d27e27109a43b4fdb878ee012ebbfbeffc42f0c4 Mon Sep 17 00:00:00 2001 From: Gears <40563462+GearsDatapacks@users.noreply.github.com> Date: Sat, 30 Dec 2023 14:04:11 +0000 Subject: [PATCH 065/226] Replace remaining occurences of "nDreamBerd" with "DreamBerd - e/acc" --- Examples.md | 2 +- docs/contributors/readme.md | 2 +- examples/Examples.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Examples.md b/Examples.md index d56c21ac..183d8465 100644 --- a/Examples.md +++ b/Examples.md @@ -1,6 +1,6 @@ ## New Examples -You want to see the new examples? Did you even read all the new features of nDreamBerd? Or did you just skip straight to the examples? You should really learn the new features of DreamBerd - e/acc first.
+You want to see the new examples? Did you even read all the new features of DreamBerd - e/acc? Or did you just skip straight to the examples? You should really learn the new features of DreamBerd - e/acc first.
Please go back to the features page by following [this link](https://github.com/TodePond/DreamBerd/blob/main/README.md).
When you have finished reading the features, you can find the _real_ examples [here](https://github.com/TodePond/DreamBerd/blob/main/res/Examples.md). diff --git a/docs/contributors/readme.md b/docs/contributors/readme.md index e71cac6b..8077ad19 100644 --- a/docs/contributors/readme.md +++ b/docs/contributors/readme.md @@ -34,7 +34,7 @@ This list is only for people who have had a pull request accepted. If that could - maeek (Maciej) - Karol Stawowski - 8bitsquid -- alifeee +- alifeee - 12emin34 - R74n - 2Gud4U (Jeff) diff --git a/examples/Examples.md b/examples/Examples.md index 136c149f..0e33fc25 100644 --- a/examples/Examples.md +++ b/examples/Examples.md @@ -7,5 +7,5 @@ First of all, the example could include some text explaining the example, like t // And then some code here to show how to code the example ``` -Please only read the actual examples after reading the [full specification of nDreamBerd](https://github.com/TodePond/DreamBerd/blob/main/README.md).
+Please only read the actual examples after reading the [full specification of DreamBerd - e/acc](https://github.com/TodePond/DreamBerd/blob/main/README.md).
AFTER reading the specification, you can read the examples [here](https://github.com/TodePond/DreamBerd/blob/main/Examples.md). From d39043f7cf05fcd6d6e735494831fce97a152a94 Mon Sep 17 00:00:00 2001 From: hazyfossa <148675205+hazyfossa@users.noreply.github.com> Date: Mon, 8 Jan 2024 11:49:22 +0500 Subject: [PATCH 066/226] Welcome to Gboard clipboard, any text you copy will be saved here. --- docs/contributors/readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/contributors/readme.md b/docs/contributors/readme.md index 8077ad19..a0bd20d5 100644 --- a/docs/contributors/readme.md +++ b/docs/contributors/readme.md @@ -48,3 +48,4 @@ This list is only for people who have had a pull request accepted. If that could - SimenWol - Pomierski (the creator and lead developer of the Regex) - Cyber-cp +- hazyfossa From 874245568dbaad74db21202e4c626c090a790eac Mon Sep 17 00:00:00 2001 From: George Vavilov <35401860+doritosxxx@users.noreply.github.com> Date: Fri, 12 Jan 2024 21:11:57 +0300 Subject: [PATCH 067/226] Add missing contributor --- docs/contributors/readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/contributors/readme.md b/docs/contributors/readme.md index a0bd20d5..92e51716 100644 --- a/docs/contributors/readme.md +++ b/docs/contributors/readme.md @@ -49,3 +49,4 @@ This list is only for people who have had a pull request accepted. If that could - Pomierski (the creator and lead developer of the Regex) - Cyber-cp - hazyfossa +- doritosxxx From a2dd3e0486deddfd178c8c547898140924364252 Mon Sep 17 00:00:00 2001 From: Lu Wilson Date: Tue, 16 Jan 2024 15:48:00 +0000 Subject: [PATCH 068/226] Update README.md --- README.md | 80 +++++++++++++++++++++++++++---------------------------- 1 file changed, 40 insertions(+), 40 deletions(-) diff --git a/README.md b/README.md index 43d5f830..d9134251 100644 --- a/README.md +++ b/README.md @@ -9,15 +9,15 @@ todepond woz here --> -> **New:** [DreamBerd has been renamed to DreamBerd - e/acc](https://github.com/TodePond/DreamBerd/releases/tag/ve.acc) +> **New:** [DreamBerd has been renamed to DreamBerd](https://github.com/TodePond/DreamBerd/releases/tag/ve.acc) [](https://github.com/TodePond/DreamBerd/blob/main/examples/Examples.md "Click here for the examples page.") -# DreamBerd - e/acc +# DreamBerd ![Coverage](badges/coverage-109.svg) -DreamBerd - e/acc is a perfect programming language. These are its features!
+DreamBerd is a perfect programming language. These are its features!
When you've finished reading through all the features, check out the [examples](https://github.com/TodePond/DreamBerd/blob/main/Examples.md). ## Exclamation Marks! @@ -40,7 +40,7 @@ If you're unsure, that's ok. You can put a question mark at the end of a line in print("Hello world")? ``` -You might be wondering what DreamBerd - e/acc uses for the 'not' operator, which is an exclamation mark in most other languages. That's simple - the 'not' operator is a semi-colon instead. +You might be wondering what DreamBerd uses for the 'not' operator, which is an exclamation mark in most other languages. That's simple - the 'not' operator is a semi-colon instead. ```java if (;false) { @@ -108,7 +108,7 @@ print(2 + 2 === 5)! //true ## Arrays -Some languages start arrays at `0`, which can be unintuitive for beginners. Some languages start arrays at `1`, which isn't representative of how the code actually works. DreamBerd - e/acc does the best of both worlds: Arrays start at `-1`. +Some languages start arrays at `0`, which can be unintuitive for beginners. Some languages start arrays at `1`, which isn't representative of how the code actually works. DreamBerd does the best of both worlds: Arrays start at `-1`. ```java const const scores = [3, 2, 5]! @@ -139,7 +139,7 @@ when (health = 0) { ## Lifetimes -DreamBerd - e/acc has a built-in garbage collector that will automatically clean up unused variables. However, if you want to be extra careful, you can specify a lifetime for a variable, with a variety of units. +DreamBerd has a built-in garbage collector that will automatically clean up unused variables. However, if you want to be extra careful, you can specify a lifetime for a variable, with a variety of units. ```java const const name<2> = "Luke"! //lasts for two lines @@ -161,7 +161,7 @@ const const name<-1> = "Luke"! ## Loops -Loops are a complicated relic of archaic programming languages. In DreamBerd - e/acc, there are no loops. +Loops are a complicated relic of archaic programming languages. In DreamBerd, there are no loops. ## Installation @@ -192,14 +192,14 @@ function isKeyDown(key) => { ## Arithmetic -DreamBerd - e/acc has significant whitespace. Use spacing to specify the order of arithmetic operations. +DreamBerd has significant whitespace. Use spacing to specify the order of arithmetic operations. ```java print(1 + 2*3)! //7 print(1+2 * 3)! //9 ``` -Unlike some other languages, DreamBerd - e/acc allows you to use the caret (^) for exponentiation. +Unlike some other languages, DreamBerd allows you to use the caret (^) for exponentiation. ```java print(1^1)! // 1 @@ -214,11 +214,11 @@ print(one+two)! //3 ## Indents -When it comes to indentation, DreamBerd - e/acc strikes a happy medium that can be enjoyed by everyone: All indents must be 3 spaces long. +When it comes to indentation, DreamBerd strikes a happy medium that can be enjoyed by everyone: All indents must be 3 spaces long. ```java function main() => { - print("DreamBerd - e/acc is the future")! + print("DreamBerd is the future")! } ``` @@ -226,13 +226,13 @@ function main() => { ```java function main() => { -print("DreamBerd - e/acc is the future")! +print("DreamBerd is the future")! } ``` ## Equality -JavaScript lets you do different levels of comparison. `==` for loose comparison, and `===` for a more precise check. DreamBerd - e/acc takes this to another level. +JavaScript lets you do different levels of comparison. `==` for loose comparison, and `===` for a more precise check. DreamBerd takes this to another level. You can use `==` to do a loose check. @@ -428,7 +428,7 @@ function add(a, b) => { ## Exporting -Many languages allow you to import things from specific files. In DreamBerd - e/acc, importing is simpler. Instead, you export _to_ specific files! +Many languages allow you to import things from specific files. In DreamBerd, importing is simpler. Instead, you export _to_ specific files! ```java ===== add.db3 == @@ -443,7 +443,7 @@ import add! add(3, 2)! ``` -By the way, to see DreamBerd - e/acc in action, check out [this page](https://github.com/TodePond/DreamBerd/blob/main/LICENSE.md). +By the way, to see DreamBerd in action, check out [this page](https://github.com/TodePond/DreamBerd/blob/main/LICENSE.md). ## Classes @@ -503,7 +503,7 @@ delete 3! print(2 + 1)! // Error: 3 has been deleted ``` -DreamBerd - e/acc is a multi-paradigm programming language, which means that you can `delete` the keywords and paradigms you don't like. +DreamBerd is a multi-paradigm programming language, which means that you can `delete` the keywords and paradigms you don't like. ```java delete class! @@ -572,7 +572,7 @@ In response to some recent criticism about this design decision, we would like t ## DB3X -You can embed DB3X in DreamBerd - e/acc. It's just DreamBerd - e/acc, and it's also just HTML. +You can embed DB3X in DreamBerd. It's just DreamBerd, and it's also just HTML. ```java funct App() => { @@ -580,7 +580,7 @@ funct App() => { } ``` -**Warning:** As you know, `class` is already a keyword in DreamBerd - e/acc, so you can't use it within DB3X. +**Warning:** As you know, `class` is already a keyword in DreamBerd, so you can't use it within DB3X. ```java funct App() => { @@ -589,7 +589,7 @@ funct App() => { } ``` -`className` is also a DreamBerd - e/acc keyword, so you can't use that either. +`className` is also a DreamBerd keyword, so you can't use that either. ```java funct App() => { @@ -607,7 +607,7 @@ funct App() => { } ``` -**Please note:** Unlike JSX, you are free to freely use the `for` attribute - because DreamBerd - e/acc doesn't have loops. +**Please note:** Unlike JSX, you are free to freely use the `for` attribute - because DreamBerd doesn't have loops. ```java funct App() => { @@ -620,7 +620,7 @@ funct App() => { ## Semantic naming -DreamBerd - e/acc supports semantic naming. +DreamBerd supports semantic naming. ```java const const sName = "Lu"! @@ -636,7 +636,7 @@ const const g_fScore = 4.5! ## Asynchronous Functions -In most languages, it's hard to get asynchronous functions to synchronise with each other. In DreamBerd - e/acc, it's easy: Asynchronous functions take turns running lines of code. +In most languages, it's hard to get asynchronous functions to synchronise with each other. In DreamBerd, it's easy: Asynchronous functions take turns running lines of code. ```java async funct count() { @@ -674,7 +674,7 @@ const var score = use(0)! When it comes to signals, the most important thing to discuss is _syntax_. -In DreamBerd - e/acc, you can set (and get) signals with just one function: +In DreamBerd, you can set (and get) signals with just one function: ```java const var score = use(0)! @@ -709,19 +709,19 @@ const var [[[getScore, setScore], setScore], setScore] = use(0)! ## AI -DreamBerd - e/acc features AEMI, which stands for Automatic-Exclamation-Mark-Insertion. If you forget to end a statement with an exclamation mark, DreamBerd - e/acc will helpfully insert one for you! +DreamBerd features AEMI, which stands for Automatic-Exclamation-Mark-Insertion. If you forget to end a statement with an exclamation mark, DreamBerd will helpfully insert one for you! ```java print("Hello world") // This is fine ``` -Similarly... DreamBerd - e/acc also features ABI, which stands for Automatic-Bracket-Insertion. If you forget to close your brackets, DreamBerd - e/acc will pop some in for you! +Similarly... DreamBerd also features ABI, which stands for Automatic-Bracket-Insertion. If you forget to close your brackets, DreamBerd will pop some in for you! ```java print("Hello world" // This is also fine ``` -Similarly.... DreamBerd - e/acc also features AQMI, which stands for Automatic-Quotation-Marks-Insertion. If you forget to close your string, DreamBerd - e/acc will do it for you! +Similarly.... DreamBerd also features AQMI, which stands for Automatic-Quotation-Marks-Insertion. If you forget to close your string, DreamBerd will do it for you! ```java print("Hello world // This is fine as well @@ -737,8 +737,8 @@ addEventListener("click", (e) => { // This is fine ``` -Similarly..... DreamBerd - e/acc also features AI, which stands for Automatic-Insertion.
-If you forget to finish your code, DreamBerd - e/acc will auto-complete the whole thing! +Similarly..... DreamBerd also features AI, which stands for Automatic-Insertion.
+If you forget to finish your code, DreamBerd will auto-complete the whole thing! ```java print( // This is probably fine @@ -746,32 +746,32 @@ print( // This is probably fine **Please note:** AI does not use AI. Instead, any incomplete code will be auto-emailed to Lu Wilson, who will get back to you with a completed line as soon as possible. -**Now recruiting:** The backlog of unfinished programs has now grown unsustainably long. If you would like to volunteer to help with AI, please write an incomplete DreamBerd - e/acc program, and leave your contact details somewhere in the source code. +**Now recruiting:** The backlog of unfinished programs has now grown unsustainably long. If you would like to volunteer to help with AI, please write an incomplete DreamBerd program, and leave your contact details somewhere in the source code. ## Copilot -It's worth noting that Github Copilot doesn't understand DreamBerd - e/acc, which means that Microsoft won't be able to steal your code. +It's worth noting that Github Copilot doesn't understand DreamBerd, which means that Microsoft won't be able to steal your code. This is great for when you want to keep your open-sourced project closed-source. ## Ownership -Using the word 'DreamBerd - e/acc' in your project name implies that the DreamBerd - e/acc Foundation does not own your project. +Using the word 'DreamBerd' in your project name implies that the DreamBerd Foundation does not own your project. -However, **not** using the word 'DreamBerd - e/acc' in your project implies that the DreamBerd - e/acc Foundation **does** own your project. If you would like to keep ownership of your work, please always use the word 'DreamBerd - e/acc' in it. +However, **not** using the word 'DreamBerd' in your project implies that the DreamBerd Foundation **does** own your project. If you would like to keep ownership of your work, please always use the word 'DreamBerd' in it. Here are some examples:
-✅ DreamBerd - e/accScript (not owned by the DreamBerd - e/acc Foundation - you are free to use this name)
-❌ ECMAScript (owned by the DreamBerd - e/acc Foundation - please consider renaming)
-❌ Rust Foundation (owned by the DreamBerd - e/acc Foundation - please consider renaming) +✅ DreamBerdScript (not owned by the DreamBerd Foundation - you are free to use this name)
+❌ ECMAScript (owned by the DreamBerd Foundation - please consider renaming)
+❌ Rust Foundation (owned by the DreamBerd Foundation - please consider renaming) ## Contributing > If you are an influencer, streamer, or content-creator... you must not skip this section during your read-through. -Contributions are welcomed to DreamBerd - e/acc! +Contributions are welcomed to DreamBerd! -The most helpful way you can help is by donating to the [Stonewall charity](https://www.stonewall.org.uk/). This will help to prevent the DreamBerd - e/acc creator from losing their human rights, allowing maintenance of the project to continue. +The most helpful way you can help is by donating to the [Stonewall charity](https://www.stonewall.org.uk/). This will help to prevent the DreamBerd creator from losing their human rights, allowing maintenance of the project to continue. **Note:** The contributing guide also helps to shake off unwanted fans of the project. @@ -788,7 +788,7 @@ If the compiler refuses at first, politely reassure it. For example:
## Highlighting -Syntax highlighting is now available for DreamBerd - e/acc in VSCode. To enable it, install a [highlighting extension](https://marketplace.visualstudio.com/items?itemName=fabiospampinato.vscode-highlight) and then use the [DreamBerd - e/acc configuration file](https://github.com/TodePond/DreamBerd/blob/main/.vscode/settings.json). +Syntax highlighting is now available for DreamBerd in VSCode. To enable it, install a [highlighting extension](https://marketplace.visualstudio.com/items?itemName=fabiospampinato.vscode-highlight) and then use the [DreamBerd configuration file](https://github.com/TodePond/DreamBerd/blob/main/.vscode/settings.json). This is what it looks like: @@ -827,8 +827,8 @@ Lisp haters will also love it. ## Examples -For examples of DreamBerd - e/acc in action, check out the [examples page](https://github.com/TodePond/DreamBerd/blob/main/test/Examples.md)! +For examples of DreamBerd in action, check out the [examples page](https://github.com/TodePond/DreamBerd/blob/main/test/Examples.md)! ![image](files/star-history.png) -DreamBerd - e/acc was made with 💔 by Lu Wilson, creator of the [Game of Living](https://youtu.be/WMJ1H3Ai-qs). +DreamBerd was made with 💔 by Lu Wilson, creator of the [Game of Living](https://youtu.be/WMJ1H3Ai-qs). From 77f21a96d91a60df5a1e751759dd7f25dbddee51 Mon Sep 17 00:00:00 2001 From: Lu Wilson Date: Tue, 16 Jan 2024 15:52:13 +0000 Subject: [PATCH 069/226] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d9134251..1917ff51 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ todepond woz here --> -> **New:** [DreamBerd has been renamed to DreamBerd](https://github.com/TodePond/DreamBerd/releases/tag/ve.acc) +> **New:** [This is an arrow](https://github.com/TodePond/DreamBerd/releases/tag/varrow) [](https://github.com/TodePond/DreamBerd/blob/main/examples/Examples.md "Click here for the examples page.") From 88a2eec965da60d35164959a24f532081bf38866 Mon Sep 17 00:00:00 2001 From: Lu Wilson Date: Tue, 16 Jan 2024 15:52:49 +0000 Subject: [PATCH 070/226] Update readme.md --- docs/contributors/readme.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/contributors/readme.md b/docs/contributors/readme.md index 92e51716..b968b2b5 100644 --- a/docs/contributors/readme.md +++ b/docs/contributors/readme.md @@ -1,6 +1,6 @@ -# 🏆 DreamBerd--e-acc Contributors Hall Of Fame 🏆 +# 🏆 DreamBerd Contributors Hall Of Fame 🏆 -We would like to thank everyone who has contributed to Dreamberd--e-acc. +We would like to thank everyone who has contributed to Dreamberd. This list is only for people who have had a pull request accepted. If that could be you, please submit a PR adding your name. I'll happily accept it. From bd5f2cba74d69f89bc626e6640e606c0c79a00f2 Mon Sep 17 00:00:00 2001 From: "Lu[ke] Wilson" Date: Sun, 4 Feb 2024 16:23:31 +0000 Subject: [PATCH 071/226] not vr --- docs/not-vr/index.html | 144 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 144 insertions(+) create mode 100644 docs/not-vr/index.html diff --git a/docs/not-vr/index.html b/docs/not-vr/index.html new file mode 100644 index 00000000..dcdc32a6 --- /dev/null +++ b/docs/not-vr/index.html @@ -0,0 +1,144 @@ + + + + + + + + + + +
Loading...
+ + From 49444f45caaab902b235182cb28aefa571329608 Mon Sep 17 00:00:00 2001 From: "Lu[ke] Wilson" Date: Mon, 5 Feb 2024 21:16:44 +0000 Subject: [PATCH 072/226] facingmode --- docs/not-vr/index.html | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/not-vr/index.html b/docs/not-vr/index.html index dcdc32a6..b1b965fd 100644 --- a/docs/not-vr/index.html +++ b/docs/not-vr/index.html @@ -101,6 +101,7 @@ const stream = await navigator.mediaDevices.getUserMedia({ video: true, audio: false, + facingMode: "environment", }); const screens = document.querySelector("#screens"); From 72215473b3dc68eaef72d1e78ffe2945b40aef11 Mon Sep 17 00:00:00 2001 From: Pedro Esli Date: Wed, 7 Feb 2024 16:54:40 -0300 Subject: [PATCH 073/226] add my name to contributors list MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit I luv u ❤️ --- docs/contributors/readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/contributors/readme.md b/docs/contributors/readme.md index b968b2b5..9b549d6c 100644 --- a/docs/contributors/readme.md +++ b/docs/contributors/readme.md @@ -50,3 +50,4 @@ This list is only for people who have had a pull request accepted. If that could - Cyber-cp - hazyfossa - doritosxxx +- pedroesli From 5ac5bb25666dab4ff59d7bdcc95cb718d2549706 Mon Sep 17 00:00:00 2001 From: mel <62901799+McMelonTV@users.noreply.github.com> Date: Wed, 7 Feb 2024 22:59:27 +0100 Subject: [PATCH 074/226] a contributon I am officially declaring myself a contributor for contributing with a contribution to the contributors file where contributors are listed for their contributions. meow --- docs/contributors/readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/contributors/readme.md b/docs/contributors/readme.md index 9b549d6c..94e95dd5 100644 --- a/docs/contributors/readme.md +++ b/docs/contributors/readme.md @@ -51,3 +51,4 @@ This list is only for people who have had a pull request accepted. If that could - hazyfossa - doritosxxx - pedroesli +- mel AKA McMelonTV From dc3a0492df541170c2a3c660d3cd28afacf076a6 Mon Sep 17 00:00:00 2001 From: "Lu[ke] Wilson" Date: Sat, 10 Feb 2024 11:13:53 +0000 Subject: [PATCH 075/226] format --- docs/not-vr/index.html | 116 +++++++++++++++++++++-------------------- 1 file changed, 59 insertions(+), 57 deletions(-) diff --git a/docs/not-vr/index.html b/docs/not-vr/index.html index b1b965fd..a45cb18c 100644 --- a/docs/not-vr/index.html +++ b/docs/not-vr/index.html @@ -3,53 +3,53 @@ content="width=device-width, initial-scale=1, user-scalable=no, minimum-scale=1, maximum-scale=1" /> From 4ade8b3f94cff535c88104879c1bfa1c0758b025 Mon Sep 17 00:00:00 2001 From: "Lu[ke] Wilson" Date: Sat, 10 Feb 2024 11:39:26 +0000 Subject: [PATCH 076/226] oi --- docs/not-vr/index.html | 73 ++++++++++++++++++++++++++---------------- 1 file changed, 45 insertions(+), 28 deletions(-) diff --git a/docs/not-vr/index.html b/docs/not-vr/index.html index a45cb18c..8a952631 100644 --- a/docs/not-vr/index.html +++ b/docs/not-vr/index.html @@ -96,50 +96,67 @@ From a9943fab5a71ae33e264604357de8db968fefd7b Mon Sep 17 00:00:00 2001 From: "Lu[ke] Wilson" Date: Sat, 10 Feb 2024 12:29:04 +0000 Subject: [PATCH 078/226] Revert "one" This reverts commit d1cf7cde03fa2b5dce97d4a3cdf9d5d56000a176. --- docs/not-vr/index.html | 36 +++++++++--------------------------- 1 file changed, 9 insertions(+), 27 deletions(-) diff --git a/docs/not-vr/index.html b/docs/not-vr/index.html index 9cc552e0..8a952631 100644 --- a/docs/not-vr/index.html +++ b/docs/not-vr/index.html @@ -27,11 +27,10 @@ } video { - /* position: absolute; */ - /* top: 0; */ - /* left: 0; */ + position: absolute; + top: 0; + left: 0; width: 100%; - /* width: 50%; */ height: 100%; object-fit: cover; pointer-events: none; @@ -86,28 +85,19 @@ } - + - +
Loading...
From b680954e58218c64a517df2bae6578aa78fd06a5 Mon Sep 17 00:00:00 2001 From: "Lu[ke] Wilson" Date: Sat, 10 Feb 2024 12:29:21 +0000 Subject: [PATCH 079/226] oi --- docs/not-vr/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/not-vr/index.html b/docs/not-vr/index.html index 8a952631..da6d629c 100644 --- a/docs/not-vr/index.html +++ b/docs/not-vr/index.html @@ -97,7 +97,7 @@