Simple Console Based Minesweeper Game

  • Tetris

    Playable Tetris mini-game. Use arrow keys to move left and right and up to rotate, down to drop. Try it out in the browser on TryFSharp.org

    17 people like this
    Like the snippet!

    Posted: 9 years ago by Phillip Trelford

  • Times Table game

    Simple times table console based game.

    3 people like this
    Like the snippet!

    Posted: 9 years ago by Phillip Trelford

  • Pong

    Pong video game runnable inside TryFSharp.org. Player 1 keys 'Q' - up, 'A' - down. Player 2 keys 'P' - up, 'L' - down.

    7 people like this
    Like the snippet!

    Posted: 9 years ago by Phillip Trelford

  • Bayesian Monte Carlo of Let's Make a Deal

    This code illustrates Bayes' Theorem in action on the Let's Make a Deal problem (aka Monty Hall Problem), which several authors have used to illustrate Bayes' Theorem. (It's easy to search the internet for further explanation.) Run with the audit option to audit up to the first 100 games. Running without audit is faster and can simulate a couple billion games.

    5 people like this
    Like the snippet!

    Posted: 9 years ago by Jack Fox

  • Minesweeper Kata

    Solution to Minesweeper Kata challenge at Goto Copenhagen 2012 conference 'Programming with the Stars' track.

    4 people like this
    Like the snippet!

    Posted: 9 years ago by Phillip Trelford

  • Minesweeper Tweet

    Minesweeper computation Kata as a tweet (140 characters) not counting code to open namespace and to prepare field as a 2D array.

    6 people like this
    Like the snippet!

    Posted: 9 years ago by Phillip Trelford

  • PacMan

    Single level retro game playable inside TryFsharp using the cursor keys.

    9 people like this
    Like the snippet!

    Posted: 8 years ago by Phillip Trelford

  • Reversi Kata

    Quick & dirty solution to Reversi kata: http://codingdojo.org/cgi-bin/wiki.pl?KataReversi

    1 people like this
    Like the snippet!

    Posted: 8 years ago by Phillip Trelford

  • Missile Command playable in tsunami.io

    Click on the tsunami.io button below to launch the online tsunami.io IDE with this snippet. Then select all the code (CTRL+A) and hit the Run button to start the game window, then just dock the window to the right of the code.. Click in the game window to launch missiles and save your cities.

    3 people like this
    Like the snippet!

    Posted: 7 years ago by Phillip Trelford

  • Small quiz-game

    Small quiz-game with World Bank TypeProvider (from FSharp.Data Nuget-package): Which country has the capital city of (random capital)? (Three options)

    3 people like this
    Like the snippet!

    Posted: 7 years ago by Tuomas Hietanen

  • Hangman

    Word guessing game using ASCII art.

    2 people like this
    Like the snippet!

    Posted: 7 years ago by Phillip Trelford

  • Game Evolution

    Game evolution

    2 people like this
    Like the snippet!

    Posted: 6 years ago by Paul Orland

  • Flappy Bird clone using MonoGame

    Flappy bird clone script using MonoGame, click the mouse or hit space to flap, no collision detection.

    3 people like this
    Like the snippet!

    Posted: 5 years ago by Phillip Trelford

  • Flappy Bird clone using Xwt

    Flappy bird clone script using Mono's Xwt toolkit, click the mouse or hit space to flap, no collision detection. To run you will need to build xwt from source https://github.com/mono/xwt

    3 people like this
    Like the snippet!

    Posted: 5 years ago by Phillip Trelford

  • PacMan Maze

    PacMan maze view runnable inside TryFSharp.org

    2 people like this
    Like the snippet!

    Posted: 1 year ago by Phillip Trelford

  • Flappy Bird clone using WinForms

    Flappy bird clone script using WinForms, click the mouse or hit space to flap, no collision detection.

    5 people like this
    Like the snippet!

    Posted: 6 months ago by Phillip Trelford

  1. Simple Console Based Minesweeper Games
  2. Free Minesweeper Game Windows 10
Based

You are provided with a 8x8 board with total 8 mines in it which you cannot see. Your task is to reveal only empty cells. If you get hit by a mine then game is over. There’s an easy-to-execute glitch/cheat in Minesweeper that will stop the game’s time so you can take your time completing each puzzle (hence getting the high score!) To do so, start a new. The game is written in Node.js, so unless you want to help develop the game, it makes sense to just play it online. Minesweeper in Bash. If you're an advanced Bash user, and you've written several Bash scripts, then you're probably beyond just learning Bash. For a real challenge, you might try programming a game instead of playing one.

Simple Console Based Minesweeper Games

  1. Like most people, you’re probably not a huge fan of the new ad-riddled Solitaire games that Microsoft included with Windows 10. Fortunately, a team of folks agreed with us and created something called “The Windows 7 Games for Windows 10” – which is exactly what it sounds like. Replicas of the games Hearts, Minesweeper, FreeCell, Free Download: “Classic” Windows Games – Hearts.
  2. Recently I've gotten to thinking about what it would take to implement a simple console based minesweeper game, what data structures and algorithms would be needed for a bare-minimum playable game. No variations on game size, difficult, etc. No scoring or timing. No visual aids for the player beyond revealing appropriate portions of the map.

Free Minesweeper Game Windows 10

  • Minesweeper in 99 lines of code

    This program is written in only 99 lines of actual code and remains enough readability. I used few short-coding technics. 1. no XAML. 2. pre-calculate every useful data for the purpose of eliminating useless states 3. using record type with set property as an alternative of view-model 4. initialize everything in one place. 5. encapsulate all states in one place.

    16 people like this
    Like the snippet!

    Posted: 9 years ago by nagat01

  • Baccarat

    Shuffles a deck of cards, deals 2 hands applying punto banco rules before declaring a winner or a tie.

    4 people like this
    Like the snippet!

    Posted: 9 years ago by Phillip Trelford

  • TicTacToe(Joinads Example)

    TicTacToe game simulator implemented by using Joinads(http://tomasp.net/blog/joinads-async-prog.aspx). Game logic in this snippet was simplified so nicely by using Joinads. You can run this snippet on Try Joinads (http://tryjoinads.org/).

    4 people like this
    Like the snippet!

    Posted: 9 years ago by nagat01

  • Berzerk

    Zombie state machine code sample. Use arrow keys to move humanoid. Robots activate when in range of humanoids. Try it out in the browser with TryFSharp.org.

    6 people like this
    Like the snippet!

    Posted: 9 years ago by Phillip Trelford

  • Minesweeper Kata 2

    Solution to Minesweeper Kata second challenge at Goto Copenhagen 2012 conference 'Programming with the Stars' track. Runnable at http://tryfsharp.org.

    2 people like this
    Like the snippet!

    Posted: 9 years ago by Phillip Trelford

  • Game of Life

    Simple implementation of Conway's Game of Life for the TryF# web site.

    0 people like this
    Like the snippet!

    Posted: 8 years ago by Tomas Petricek

  • Game of Life

    Conway's Game of Life example at F#unctional Londoners July 2012 meetup.

    2 people like this
    Like the snippet!

    Posted: 8 years ago by Phillip Trelford

  • Reversi Kata solution

    Reversi Kata solution from February 2013 London F# Meetup Coding Kata.

    5 people like this
    Like the snippet!

    Posted: 8 years ago by Phillip Trelford

  • Missile Command script (WPF)

    WPF version of Missile Command. Run as a script in Visual Studio or create a new application project, reference the assemblies listed at the top of the script and paste the code over Program.fs and hit F5.

    8 people like this
    Like the snippet!

    Posted: 7 years ago by Phillip Trelford

  • Game of 2048

    Simple implementation of the popular game '2048'. Can you add up the tiles and reach 2048? The game can be played in fsi or you can add the GUI which is so far missing.

    7 people like this
    Like the snippet!

    Posted: 7 years ago by Tore Green

  • Game Evolution

    Game evolution

    0 people like this
    Like the snippet!

    Posted: 6 years ago by Paul Orland

  • Flappy Bird clone using WPF

    Flappy bird clone script using WPF, click the mouse or hit space to flap, no collision detection.

    6 people like this
    Like the snippet!

    Posted: 5 years ago by Phillip Trelford

  • Doms Guess Game

    My Game in F#, creates the five times table up to 100 and then selects a random number from it. You then guess the number

    1 people like this
    Like the snippet!

    Posted: 5 years ago by Dom Finn

  • kRPC example (Kerbal Space Program)

    When running the kRPC Remote Procedure Call Server in a Kerbal Space Program game the kRPC C# Client can be accessed from within F# Interactive in Visual Studio. Learn more about the game here http://www.kerbalspaceprogram.com. Official kRPC C# Client documentation can be found here http://djungelorm.github.io/krpc/docs/csharp/client.html. Note: This snippet was (re-)uploaded because the original (http://fssnip.net/8qR) went lost.

    2 people like this
    Like the snippet!

    Posted: 5 years ago by Robert Nielsen

  • A CONSOLE-BASED ROCK-PAPER-SCISSORS

    When playing rock-paper-scissors (RPS), we show 0 fingers for rock, 2 for scissors and 5 for paper. This rule is also applied for this console-based game written in F#. Enjoy !

    0 people like this
    Like the snippet!

    Posted: 9 months ago by me

  • A Monty Hall problem simulator

    I'm bad at math and writing this code down helped me to understand what's up with this counter intuitive problem.

    4 people like this
    Like the snippet!

    Posted: 3 months ago by Julien Di Lenarda