diff --git a/README.md b/README.md
index 869159b..7c9f4ef 100644
--- a/README.md
+++ b/README.md
@@ -8,11 +8,19 @@ Try it out [here](https://garrepi.dev/swal)
really just to explore SwiftWasm in a meaningful way. hopefully, someone finds directly interacting with the algorithms in [this swift library](https://github.com/apple/swift-algorithms) useful
+### contributing
+
+feel free to contribute! I have a habit of starting projects and never finishing...
+
+the hosted version of this has to be updated manually by me (running it through my [static site](https://github.com/johngarrett/johngarrett.github.io))
+
+also, `FileManager` and `String.write(to:,_:,_:)` seem to be broken in the wasm fork of swift. because of that, html is directly injected into the DOM. `StaticRenderer` is _suopssed_ to render all the HyperSwift into a html and css file but, without the ability to write, that's not being done.
+
### status
- [X] Combinations
- [X] Permutations
-- [ ] Rotations
+- [X] Rotations
- [ ] Partitions
- [ ] Chain
- [ ] Product
diff --git a/swal2.html b/swal2.html
deleted file mode 100644
index 0e2fbf8..0000000
--- a/swal2.html
+++ /dev/null
@@ -1,468 +0,0 @@
-
-
-
-
-
-
-
- combinations(ofCount: )
-
-
A type that computes
- combinations of a collection's elements.
This method returns a
- sequence of all the different combinations of a collection's elements, with each combination in the order of
- the original collection.
-
-
-
-
-
- tablePartition(by:)
partitioningIndex(where:)
-
-
The standard library’s
- existing partition(by:)
method, which re-orders the elements in a collection into two
- partitions based on a given predicate, doesn’t guarantee stability for either partition. That is, the order
- of the elements in each partition doesn’t necessarily match their relative order in the original collection.
- These new methods expand on the existing partition(by:)
by providing stability for one or both
- partitions.
The
- partitioningIndex(where:)
method returns the index of the start of the second partition when
- called on an already partitioned collection.
-
-
-
This sandbox has not been implimented yet
-
-
Check the progress here: github
-
-
-
-
-