scripting
Here are 1,348 public repositories matching this topic...
-
Updated
Apr 19, 2021 - C++
-
Updated
Apr 18, 2021 - C++
-
Updated
Jan 8, 2021
-
Updated
Sep 15, 2019 - Swift
-
Updated
Mar 23, 2021 - Objective-C
Get user input
It's common when writing scripts that install or configure things to need input from the user (at a minimum, something like 'Press Enter to continue'; at a maximum, to be able to prompt the user for input, with an optional default value, and return that value).
Let's use this issue to design how that would look, and I invite suggestions!
Try Yaegi
-
Updated
Mar 30, 2021 - Kotlin
-
Updated
Oct 24, 2020 - PowerShell
Reexporting a type or value from one module to another should check the visibility of the original item.
This can happen in a few cases:
//- foo.mun
// Illegal, Bar has a smaller scope that this use statement
pub(super) struct Bar;
// Illegal, Bar has a smaller scope than this function
pub fn baz() -> Bar {
}//- mod.mun
pub use foo::Bar; // Should be illegaDescribe the bug
testLineAgainstWater checks only for water at z-coordinate 0 outside of the -3000 : 3000 coords range. This behaviour was introduced along with multiple other fixes with this PR: multitheftauto/mtasa-blue#568
Some time afterwards, possiblity to change ocean water level outside of bounds was added for setWaterLevel function, thus rendering curr
-
Updated
Jan 15, 2021 - Python
-
Updated
Apr 18, 2021 - Lua
Affects:
- Installing plugins from Plugin Repository
- Installing plugins using URL Scheme
Current Behavior:
HTTP errors are not handled, user may end-up with a broken "plugin" file, see #59 as example.
Desired Behavior:
Proper Error handling, including:
- checking HTTP error codes
- showing user a dialog if something went wrong
- maybe adding additional checks like tryi
-
Updated
Apr 14, 2021
-
Updated
Mar 2, 2021 - C#
Apart from jbang help and the examples of jbang use given in the readme, it would be great to have:
- A documentation - Picocli generated ?
- A cheat sheet usable with https://github.com/cheat/cheat
The second one is very efficient, as you document only the most frequent usages of a command, so you find very quickly the command you need.
Description
Recently the markdown file for the Python directory was reformatted, since then the list hasn't been updated.
Follow the same structure as of the README, update the list alphabetically.
Cleanup the Cmake
The CMakeLists files of this project is kinda messy, mostly due to my limited understanding of the topic.
So they definitely need to be cleaned up at some point
Auto-formatter
It'd be very nice to have an auto-formatter for Rune which can take a source-snippet and format it properly.
-
Updated
Apr 18, 2021 - Python
-
Updated
Nov 5, 2020 - Java
-
Updated
Feb 25, 2021 - C++
Improve this page
Add a description, image, and links to the scripting topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the scripting topic, visit your repo's landing page and select "manage topics."
When passing Wasm function to the host as a callback, it's passed as an index in the table.
Wasm3 needs to provide an API to call such functions.