All public logs

Jump to navigation Jump to search

Combined display of all available logs of MiniScript Wiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
(newest | oldest) View ( | ) (20 | 50 | 100 | 250 | 500)
  • 20:41, 18 March 2020 JoeStrout talk contribs created page Code Snippets (Created page with "In Mini Micro, ''code snippets'' are a feature of the code editor. These are bits of code which can be inserted from the Code button in the toolbar, optionally wrapping a...")
  • 16:27, 18 March 2020 ZachStrout talk contribs created page Yield (Created page with "<c>yield</c> pauses the execution of the script until the next "tick" of the host app. === Arguments === {| class="wikitable" |- ! Parameter Name !! Default Value !! Meaning...")
  • 16:25, 18 March 2020 ZachStrout talk contribs created page Wait (Created page with "<c>wait</c> pauses execution of this script for some amount of time. See also: time, yield === Arguments === {| class="wikitable" |- ! Parameter Name !! Default Value !! Me...")
  • 16:22, 18 March 2020 ZachStrout talk contribs created page Version (Created page with "<c>version</c> gets a map with information about the version of MiniScript and the host environment that you're currently running. === Usage Notes === <c>version</c> will in...")
  • 16:20, 18 March 2020 ZachStrout talk contribs created page Values (Created page with "<c>values</c> returns the values of a dictionary, or the characters of a string.(Returns any other value as-is.) See also: Indexes === Arguments === {| class="wikitable" |-...")
  • 16:16, 18 March 2020 71.226.33.30 talk created page Val (Created page with "<c>val</c> returns the numeric value of a given string. (If given a number, returns it as-is; if given a list or map, returns null.) See also: str === Arguments === {| cla...")
  • 15:47, 18 March 2020 71.226.33.30 talk created page Upper (Created page with "<c>upper</c> return an upper-case (all capitals) version of a string. See also: lower === Arguments === {| class="wikitable" |- ! Parameter Name !! Default Value !! Mea...")
  • 15:44, 18 March 2020 71.226.33.30 talk created page Time (Created page with "<c>time</c> returns the number of seconds since the script started running. Category:Intrinsic Functions")
  • 15:43, 18 March 2020 71.226.33.30 talk created page Tan (Created page with "<c>tan</c> returns the tangent of the given angle (in radians). === Arguments === {| class="wikitable" |- ! Parameter Name !! Default Value !! Meaning |- | ''radians'' || nu...")
  • 16:26, 17 March 2020 71.226.33.30 talk created page Sum (Created page with "<c>sum</c> returns the total of all elements in a list, or all values in a map. === Arguments === {| class="wikitable" |- ! Parameter Name !! Default Value !! Meaning |- | '...")
  • 16:24, 17 March 2020 71.226.33.30 talk created page Shuffle (Created page with "<c>shuffle</c> randomize the order of elements in a list, or the mappings from keys to values in a map. This is done in place. === Arguments === {| class="wikitable" |- ! P...")
  • 16:23, 17 March 2020 71.226.33.30 talk created page String type (Created page with "<c>string type</c> returns a map that represents the string datatype in MiniScript's core type system. See also: number, list, map, funcRef === Arguments ===...")
  • 16:21, 17 March 2020 71.226.33.30 talk created page Str (Created page with "<c>str</c> coverts any value to a string === Arguments === {| class="wikitable" |- ! Parameter Name !! Default Value !! Meaning |- | ''x'' || any || value to convert |} ==...")
  • 16:20, 17 March 2020 71.226.33.30 talk created page Sqrt (Created page with "<c>sqrt</c> returns the square root of a number. === Arguments === {| class="wikitable" |- ! Parameter Name !! Default Value !! Meaning |- | ''x'' || number || number to get...")
  • 16:18, 17 March 2020 71.226.33.30 talk created page Split (Created page with "<c>split</c> splits a string into a list, by some delimiter. See also: join === Arguments === {| class="wikitable" |- ! Parameter Name !! Default Value !! Meaning |- |...")
  • 16:15, 17 March 2020 71.226.33.30 talk created page Sort (Created page with "<c>sort</c> Sorts a list in place. With null or no argument, this sorts the list elements by their own values. See also: shuffle === Arguments === {| class="wikitabl...")
  • 16:12, 17 March 2020 71.226.33.30 talk created page Slice (Created page with "<c>slice</c> returns a subset of a string or list. This is equivalent to using the square-brackets slice operator seq[from:to], but with ordinary function syntax. === Argume...")
  • 16:08, 17 March 2020 71.226.33.30 talk created page Sin (Created page with "<c>sin</c> returns the sine of the given angle (in radians). === Arguments === {| class="wikitable" |- ! Parameter Name !! Default Value !! Meaning |- | ''radians'' || numbe...")
  • 16:06, 17 March 2020 71.226.33.30 talk created page Sign (Created page with "<c>sign</c> returns -1 for negative numbers, 1 for positive numbers, and 0 for zero. === Arguments === {| class="wikitable" |- ! Parameter Name !! Default Value !! Meaning...")
  • 16:04, 17 March 2020 71.226.33.30 talk created page Rnd (Created page with "<c>rnd</c> Generates a pseudorandom number between 0 and 1 (including 0 but not including 1). === Arguments === {| class="wikitable" |- ! Parameter Name !! Default Value !!...")
  • 16:02, 17 March 2020 71.226.33.30 talk created page Round (Created page with "<c>round</c> rounds a number to the specified number of decimal places. === Arguments === {| class="wikitable" |- ! Parameter Name !! Default Value !! Meaning |- | ''x'' ||...")
  • 16:00, 17 March 2020 71.226.33.30 talk created page Replace (Created page with "<c>replace</c> Replace all matching elements of a list or map, or substrings of a string, with a new value. === Arguments === {| class="wikitable" |- ! Parameter Name !! De...")
  • 15:54, 17 March 2020 71.226.33.30 talk created page Remove (Created page with "<c>remove</c> removes part of a list, map, or string. See also: indexOf === Arguments === {| class="wikitable" |- ! Parameter Name !! Default Value !! Meaning |- | ''se...")
  • 15:50, 17 March 2020 71.226.33.30 talk created page Range (Created page with "<c>range</c> Return a list containing a series of numbers within a range. from (number, default 0): first number to include in the list to (number, default 0): point at which...")
  • 15:47, 17 March 2020 71.226.33.30 talk created page Push (Created page with "<c>push</c> appends an item to the end of a list, or inserts it into a map as a key with a value of 1. See also: pop; pull; insert === Arguments === {| class="wi...")
  • 15:45, 17 March 2020 71.226.33.30 talk created page Pull (Created page with "<c>pull</c> removes and returns the first item in a list, or an arbitrary key of a map. If the list or map is empty (or if called on any other data type), returns null. See...")
  • 15:43, 17 March 2020 71.226.33.30 talk created page Pop (Created page with "<c>pop</c> removes and returns the last item in a list, or an arbitrary key of a map. If the list or map is empty (or if called on any other data type), returns null. See al...")
  • 15:35, 17 March 2020 71.226.33.30 talk created page Pi (Created page with "<c>pi</c> returns the universal constant π, that is, the ratio of a circle's circumference to its diameter. == Example == <ms>pi // returns 3.141593</ms> Category:Intri...")
  • 15:33, 17 March 2020 71.226.33.30 talk created page Number type (Created page with "<c>funcname</c> Returns a map that represents the number datatype in miniScript's core type system. See also: string; list; map; funcRef === Usage Notes ==...")
  • 15:28, 17 March 2020 71.226.33.30 talk created page Map type (Created page with "<c>map type</c> returns a map that represents the map datatype in MiniScript's core type system. See also: number; string; list; funcRef === Usage Notes ===...")
  • 15:25, 17 March 2020 JoeStrout talk contribs moved page Log(x, base) to Log without leaving a redirect
  • 15:23, 17 March 2020 JoeStrout talk contribs moved page Indexof to IndexOf without leaving a redirect
  • 15:22, 17 March 2020 JoeStrout talk contribs moved page HashIndex to HasIndex
  • 15:21, 17 March 2020 JoeStrout talk contribs moved page Self.join to Join without leaving a redirect
  • 19:20, 16 March 2020 JoeStrout talk contribs deleted page Hashindex (incorrect capitalization)
  • 17:59, 16 March 2020 71.226.33.30 talk created page Lower (Created page with "<c>lower</c> returns a lower-case version of a string. See also: upper === Arguments === {| class="wikitable" |- ! Parameter Name !! Default Value !! Meaning |- | ''sel...")
  • 17:56, 16 March 2020 71.226.33.30 talk created page Log(x, base) (Created page with "<c>log(x, base)</c> returns the logarithm (with the given) of the given number, that is, the number y such that base^y = x. === Arguments === {| class="wikitable" |- ! Para...")
  • 17:52, 16 March 2020 71.226.33.30 talk created page List type (Created page with "<c>list type</c> returns a map that represents the list datatype in MiniScript's core type system. See also: number, string, map, funcRef === Arguments ===...")
  • 17:48, 16 March 2020 71.226.33.30 talk created page Self.len (Created page with "<c>self.len</c> returns the number of characters in a string, elements in a list, or key/value pairs in a map. May be called with function syntax or dot syntax. === Argument...")
  • 17:46, 16 March 2020 71.226.33.30 talk created page Self.join (Created page with "<c>self.join</c> joins the elements of a list together to form a string. See also: split === Arguments === {| class="wikitable" |- ! Parameter Name !! Default Value !!...")
  • 17:42, 16 March 2020 71.226.33.30 talk created page Insert (Created page with "<c>insert</c> inserts a new element into a string or list. See also: remove === Arguments === {| class="wikitable" |- ! Parameter Name !! Default Value !! Meaning |- |...")
  • 17:38, 16 March 2020 71.226.33.30 talk created page Indexof (Created page with "<c>indexOf</c> returns index or key of the given value, or if not found. === Arguments === {| class="wikitable" |- ! Parameter Name !! Default Value !! Meaning |- | ''self''...")
  • 17:34, 16 March 2020 71.226.33.30 talk created page HashIndex (Created page with "<c>hashIndex</c> return whether the given index is valid for this object, that is, whether it could be used with square brackets to get some value from self. See also: In...")
  • 17:31, 16 March 2020 71.226.33.30 talk created page Indexes (Created page with "<c>indexes</c> Returns the keys of a dictionary, or the non-negative indexes for a string or list. See also hasIndex === Arguments === {| class="wikitable" |- ! Paramet...")
  • 17:28, 16 March 2020 71.226.33.30 talk created page Hashindex (Created page with "<c>hashIndex</c> return whether the given index is valid for this object, that is, whether it could be used with square brackets to get some value from self. See also: In...")
  • 17:22, 16 March 2020 71.226.33.30 talk created page Hash (Created page with "<c>hash</c> Returns an integer that is "relatively unique" to the given value.In the case of strings, the hash is case-sensitive. In the case of a list or map, the hash combi...")
  • 17:18, 16 March 2020 71.226.33.30 talk created page FuncRef (Created page with "<c>funcRef</c> Returns a map that represents a function reference in MiniScript's core type system. This can be used with `isa` to check whether a variable refers to a functi...")
  • 16:53, 16 March 2020 71.226.33.30 talk created page Floor (Created page with "<c>floor</c> Returns the "floor", i.e. closest whole number less than or equal to the given number. === Arguments === {| class="wikitable" |- ! Parameter Name !! Default Val...")
  • 16:48, 16 March 2020 71.226.33.30 talk created page Cos (Created page with "<c>cos</c> Returns the cosine of the given angle (in radians). === Arguments === {| class="wikitable" |- ! Parameter Name !! Default Value !! Meaning |- | ''radians'' || nu...")
  • 23:36, 15 March 2020 ZachStrout talk contribs created page Code (Created page with "<c>code</c> Return the Unicode code point of the first character of the given string. This is the inverse of `char`. May be called with function syntax or dot syntax. === A...")
  • 23:19, 15 March 2020 ZachStrout talk contribs created page Ceil (Created page with "<c>ceil</c> Returns the "ceiling", i.e. closest whole number greater than or equal to the given number. See also: floor === Arguments === {| class="wikitable" |- ! Para...")
  • 23:16, 15 March 2020 ZachStrout talk contribs created page Char (Created page with "<c>char</c> Gets a character from its Unicode code point. See also: code === Arguments === {| class="wikitable" |- ! Parameter Name !! Default Value !! Meaning |- | ''codeP...")
  • 23:09, 15 March 2020 ZachStrout talk contribs created page BitXor (Created page with "<c>bitXor</c> treats its arguments as integers, and computes the bitwise `xor`: each bit in the result is set only if the corresponding bit is set in exactly one (not zero or...")
  • 23:02, 15 March 2020 ZachStrout talk contribs created page BitOr (Created page with "<c>bitOr</c> treats its arguments as integers, and computes the bitwise `or`: each bit in the result is set if the corresponding bit is set in either (or both) of the argument...")
  • 22:51, 15 March 2020 ZachStrout talk contribs created page BitAnd (Created page with "<c>bitAnd</c> treats its arguments as integers, and computes the bitwise `and`: each bit in the result is set only if the corresponding bit is set in both arguments. === Arg...")
  • 22:42, 15 March 2020 ZachStrout talk contribs created page Atan (Created page with "<c>atan</c> is a function that returns the arctangent of a value or ratio, that is, the angle (in radians) whose tangent is y/x. This will return an angle in the correct quad...")
  • 22:38, 15 March 2020 ZachStrout talk contribs created page Asin (Created page with "<c>asin</c> is a function that returns the inverse sine, that is, the angle (in radians) whose sine is the given value. === Arguments === {| class="wikitable" |- ! Paramete...")
  • 22:18, 15 March 2020 User account ZachStrout talk contribs was created
  • 00:11, 14 March 2020 JoeStrout talk contribs created page Startup.ms (Created page with "The special file '''startup.ms''', if located at the root level of the user.minidisk file found by Mini Micro when it starts up, will be automatically loaded and run....")
  • 23:55, 13 March 2020 JoeStrout talk contribs created page How to package a Mini Micro game (Created page with "To "package" a Mini Micro game means to bundle up all the files into a format that end-users can download (or access on the web) and play without needing anything else. T...")
  • 02:45, 13 March 2020 JoeStrout talk contribs created page File:MiniMicro256.png (Mini Micro logo (256x192 version).)
  • 02:45, 13 March 2020 JoeStrout talk contribs uploaded File:MiniMicro256.png (Mini Micro logo (256x192 version).)
  • 22:39, 11 March 2020 JoeStrout talk contribs created page How to run a program on startup (Created page with "In Mini Micro, any program found at /usr/startup.ms on the default user disk is run when the machine starts up. You can use this when packaging your game for distribution...")
  • 22:13, 11 March 2020 JoeStrout talk contribs created page How to detect NaN (Created page with "Invalid math operations may result in a numeric value of NaN ("Not a Number"). These values have special semantics: they are not considered equal to anything, even themselves...")
  • 03:56, 11 March 2020 JoeStrout talk contribs created page Category:Numeric Functions (Created page with "The functions below all operate on numbers.")
  • 03:56, 11 March 2020 JoeStrout talk contribs created page Acos (Created page with "The <msinline>acos</msinline> function returns the inverse cosine, that is, the angle (in radians) whose cosine is the given value. === Arguments === {| class="wikitable" |...")
  • 03:53, 11 March 2020 JoeStrout talk contribs created page Abs (Created page with "The <msinline>abs</msinline> function returns the absolute value of the given number. === Arguments === {| class="wikitable" |- ! Parameter Name !! Default Value !! Meaning...")
  • 15:18, 8 March 2020 JoeStrout talk contribs created page File:ScreenCoordinates.png (Illustration of screen coordinates.)
  • 15:18, 8 March 2020 JoeStrout talk contribs uploaded File:ScreenCoordinates.png (Illustration of screen coordinates.)
  • 15:17, 8 March 2020 JoeStrout talk contribs created page Screen coordinates (Created page with "In Mini Micro, screen coordinates refers to the number of pixels from the bottom-left corner of the screen. These are the coordinates returned by mouse.x and mouse....")
  • 14:40, 8 March 2020 JoeStrout talk contribs created page Mouse (Created page with "In Mini Micro, the <msinline>mouse</msinline> module is a small collection of functions related to detecting the mouse state, and controlling display of the mouse cursor....")
  • 14:28, 8 March 2020 JoeStrout talk contribs created page Mouse.button (Created page with "In Mini Micro, the mouse.button function returns whether a given mouse button is currently pressed. === Arguments === {| class="wikitable" |- ! Parameter Name !! Default...")
  • 14:15, 8 March 2020 JoeStrout talk contribs created page File:SpriteClickDemo.png (Screen shot for How to detect a click on a sprite.)
  • 14:15, 8 March 2020 JoeStrout talk contribs uploaded File:SpriteClickDemo.png (Screen shot for How to detect a click on a sprite.)
  • 14:14, 8 March 2020 JoeStrout talk contribs created page How to detect a click on a sprite (Created page with "To detect a mouse click on a sprite, give the sprite a localBounds, and then call .contains on the sprite, passing in mouse. Th...")
  • 22:19, 7 March 2020 JoeStrout talk contribs created page File:HowToFadeSprite.png (Screen shot from the example on How to make a sprite translucent.)
  • 22:19, 7 March 2020 JoeStrout talk contribs uploaded File:HowToFadeSprite.png (Screen shot from the example on How to make a sprite translucent.)
  • 22:18, 7 March 2020 JoeStrout talk contribs created page How to make a sprite translucent (Created page with "You can change the opacity of a sprite by using the alpha channel of the tint color. An alpha value of 255 (or FF in hex) is completely opaque; an alpha value of zero is comp...")
  • 16:33, 6 March 2020 JoeStrout talk contribs created page File:HowToPointScreenshot.png (Screen shot of the How to point a sprite at a file code example, in several different states.)
  • 16:33, 6 March 2020 JoeStrout talk contribs uploaded File:HowToPointScreenshot.png (Screen shot of the How to point a sprite at a file code example, in several different states.)
  • 13:56, 6 March 2020 JoeStrout talk contribs created page How to move a sprite forward (Created page with "Move a sprite in its "forward" direction (i.e. in the +X direction when the sprite is not rotated) by using the cos and sin functions, as shown below. Note that cos...")
  • 14:14, 5 March 2020 JoeStrout talk contribs created page How to move a sprite towards a target (Created page with "To move a sprite at a constant speed towards a target, find the difference in X and Y, and normalize by multiplying by the desired speed divided by the total distance. Then s...")
  • 15:17, 4 March 2020 JoeStrout talk contribs created page How to check if one value contains another (Created page with "If you need to check whether a string contains a given substring, or a list or map contains a specified value, then you can use indexOf and compare the result to null....")
  • 14:19, 4 March 2020 JoeStrout talk contribs created page How to load a sprite from the web (Created page with "To load a sprite from an image on the web, simply pass the URL to http.get, and assign the result to the sprite's .image property. == Example == <ms>clea...")
  • 13:59, 4 March 2020 JoeStrout talk contribs created page Category:How To (Created page with "These "How To" articles each explain how to accomplish one small task, usually with a complete example you can paste in and try. Many of the examples apply to a specific envi...")
  • 13:57, 4 March 2020 JoeStrout talk contribs created page How to point a sprite at a target (Created page with "To point a sprite at a target, use the atan function to calculate the angle in radians, then multiply by 180/pi to convert to degrees, and assign the result to the spr...")
  • 16:10, 27 February 2020 JoeStrout talk contribs created page Open-Source Projects (Created page with "This page is a collection of links to open-source projects in or for MiniScript. === Main Repository === https://github.com/JoeStrout/miniscript Official repository of sourc...")
  • 19:14, 21 February 2020 JoeStrout talk contribs created page Naming Conventions (Created page with "The MiniScript intrinsic functions and Mini Micro API have established the following conventions with regard to naming variables. == Capitalizatio...")
  • 01:41, 21 February 2020 JoeStrout talk contribs created page Category:Map Methods (Created page with "These are methods that work on or with maps.")
  • 01:40, 21 February 2020 JoeStrout talk contribs created page Category:String Methods (Created page with "These are methods that work on or with strings.")
  • 01:40, 21 February 2020 JoeStrout talk contribs created page Category:List Methods (Created page with "These are methods that work on or with lists.")
  • 01:39, 21 February 2020 JoeStrout talk contribs created page Len (Created page with "<c>len</c> is a intrinsic function that returns the number of elements in a list, the number of characters in a string, or the number...")
  • 21:05, 20 February 2020 JoeStrout talk contribs created page Category:Conventions (Created page with "Pages in this category describe standard practices for using MiniScript.")
  • 21:03, 20 February 2020 JoeStrout talk contribs created page File extension (Created page with "The standard file extension for MiniScript files is: '''.ms''' See also MIME types. Category:Conventions")
  • 21:02, 20 February 2020 JoeStrout talk contribs created page Mime types (Created page with "MiniScript scripts may be identified as the following MIME types: * text/x-minicript * application/x-miniscript See also file extension. Category:Conventions")
  • 14:50, 20 February 2020 JoeStrout talk contribs created page Category:Intrinsic Functions (Created page with "Intrinsic functions are functions that are predefined, either as part of the MiniScript core, or added by the host environment.")
  • 14:49, 20 February 2020 JoeStrout talk contribs created page Print (Created page with "<c>print</c> is an intrinsic function that displays a string to the user. It is a standard intrinsic, though there may be some implement...")
  • 14:39, 20 February 2020 JoeStrout talk contribs created page Parentheses (Created page with "Parentheses in MiniScript have only three uses: 1. Use them to group math operations in the order you want them, just as in algebra. <source lang="miniscript">x = (2+4)*7...")
  • 04:40, 20 February 2020 JoeStrout talk contribs created page Category:Operators (Created page with "Operators are symbols or keywords that act directly on operands supplied either after, or on either side of, the operator.")
  • 04:39, 20 February 2020 JoeStrout talk contribs deleted page Category:Data types (content was: "MiniScript has only a handful of core data types, shown below. Particular host environments may add more, but usually any additional types are implemented as maps using standard MiniScript object-oriented programming techniques.", and the only contributor was "JoeStrout" (talk))
(newest | oldest) View ( | ) (20 | 50 | 100 | 250 | 500)