User:QuinticFormula

From Wikipedia, the free encyclopedia
C++This user can program in C++.
LuaThis user can program in Lua.
This user is interested in
Mathematics.
This user is a socialist.
This user is a member of the LGBT community.
This user supports a free and independent Ukraine.
This user believes in freedom of all types of information for all.

Welcome to my user page!

Right now the main work that I am doing is editing the Minesweeper page to add more to gameplay. I also have experience with the Lua programming language which might be useful if I want to work with modules.

Contributions[edit]

The main contributions that I have made so far are edits to the Minesweeper page, edits to other pages are mainly minor edits. Here is a list of these contributions to the Minesweeper page:

  1. Added bit about chording.
  2. Talked more about the gameplay going into greater detail than just the controls.
  3. Mentioned Beginner, Intermediate and Expert games.
  4. Gave example of how a Beginner board is solved. This was a HUGE edit, taking lots of time to create the images for the boards and to write about the logic used to solve it.

TODO[edit]

Here is my TODO list on edits that I want to make. Right now it is just for Minesweeper.

Minesweeper[edit]

  • Logic and patterns.
    • Simple patters to do with opening and flagging like:
      • If number of cell = number of adjacent flagged cells, open all remaining cells.
      • If number of cell = number of unopened cells, flag all adjacent cells.
    • More advanced patterns but probably only list a few examples. It probably wouldn't be appropriate to list too many.
    • Minecount logic, showing example of corner when mc = 1, 3 is solvable but mc = 2 isn't.
  • Possibly some statistics like 3BV and efficiency, write that in a context that makes sense.

Lua[edit]

Here is a page that runs a FizzBuzz program and here is the module that it uses.