Skip to content

Instantly share code, notes, and snippets.

@prashantpawar
prashantpawar / SketchSystems.spec
Last active December 1, 2022 19:25
Memento-cash Entry points - no custom slp
Memento-cash Entry points - no custom slp
land on home -> Home Page
streamer sends thru stream link -> Stream Page
Home Page
click continue -> Tagline Page
Tagline Page
create account -> Create User Account Page
skip -> Stream List Page
@prashantpawar
prashantpawar / SketchSystems.spec
Last active November 21, 2022 13:22
Memento-cash Entry points - custom slp
Memento-cash Entry points - custom slp
land on home -> Home Page
streamer sends thru stream link -> Stream Page
Home Page
click continue -> Tagline Page
Tagline Page
create account -> Create User Account Page
skip -> Stream List Page
@prashantpawar
prashantpawar / SketchSystems.spec
Last active January 7, 2022 21:51
Gunner UI Home*
Gunner UI Home*
loggedout -> Guest View
loggedin -> LoggedIn View
Guest View
Login*
goto-signup -> Signup
login -> LoggedIn View
Signup
goto-login -> Login
@prashantpawar
prashantpawar / SketchSystems.spec
Last active November 28, 2021 15:21
Choose Role&
Choose Role&
Admin View
Admin Choice*
create post -> Create Post View
view post -> Admin Post View
Create Post View
rules entered -> Admin Post View
Admin Post View
@prashantpawar
prashantpawar / SketchSystems.spec
Last active August 23, 2021 16:32
Wishscript Landing Page
Wishscript Landing Page
create -> Create Temple
import -> Import Temple
Create Temple
enter Phone Number -> Generating Temple
back -> Wishscript Landing Page
Import Temple
THUS SPOKE ZARATHUSTRA
A BOOK FOR ALL AND NONE
@prashantpawar
prashantpawar / SketchSystems.spec
Last active October 21, 2019 00:19
CryptoDeities Landing Page - DONE
CryptoDeities Landing Page - DONE
create Temple -> Create Temple - DONE
import Temple -> Import Temple
Empty Temple View - DONE
add Deity -> Add Deity - DONE
Create Temple - DONE
Generate Key - DONE*
generate key -> Display Mnemonic - DONE
@prashantpawar
prashantpawar / SketchSystems.spec
Last active June 28, 2019 20:53
Bch App Logic
Bch App Logic
OPENAPP -> DoesWalletExist?
LoggedOutFlow
DoesWalletExist?
YES -> LoadAccountInfo
NO -> AppWelcomeScreen
AppWelcomeScreen
CREATEWALLET -> CreateWalletFlow
Land
Is Metamask Installed?
yes -> Metamask Installed
no -> Please Download Metamask
Please Download Metamask
install metamask -> Metamask Installed
Metamask Installed
Is Metamask Connected?
let rec merge (l : int list) (m : int list) =
match l, m with
| [], _ -> m
| _, [] -> l
| a :: ls, b :: ms ->
if a < b then
a :: (merge ls m)
else
b :: (merge l ms)
[@@adm l, m];;