During the fall 2020, I had the oppurtunity to learn Distributed Operating System. I'll be using this repo to keep my notes towards learning F#
F# is a strongly typed, functional-first programming language that lets you solve complex problems by writing simple code. Based on ML and built on the .NET Framework, F# offers good interoperability, portability, and run-time speed, as well as the “Five Cs”—conciseness, convenience, correctness, concurrency, and completeness
Tutorials are great, but building projects is the best way to learn. Do project based learning and learn code the right way! Here are the list of some project that I've created using F#
1. Numbers n such that there are n numbers in arithmetic progression whose squares sum to a perfect square
For what values of n does there exist n consecutive perfect squares that add up to a perfect square?
The input provided (as command line to your program, e.g.myapp) will be two numbers:N
and k
. The overall goal of your program is to find all k
consecutive numbers starting at 1 and up to N
, such that the sum of squaresis itself a perfect square (square of an integer).
Implementation: Coming soon
A gossip protocol is a procedure or process of computer peer-to-peer communication that is based on the way epidemics spread. Some distributed systems use peer-to-peer gossip to ensure that data is disseminated to all members of a group.
Implementation: https://github.com/meanmachin3/gossip-protocol
Usage is provided under the MIT License. See LICENSE for the full details.