Skip to content

Latest commit

 

History

History
319 lines (199 loc) · 6.37 KB

PITCHME.md

File metadata and controls

319 lines (199 loc) · 6.37 KB

---?image=/assets/image/black.jpg&opacity=90

Welcome to the Demo presentation!

UniBit Labs

Presentation covering UI/UX changes to UniBit applications.

---?image=/assets/image/black.jpg&opacity=75

Encryption App Video Demo

YouTube Video

---?image=/assets/image/black.jpg&opacity=75

Encryption App

Current UI

alt

Demo: https://securedoc.io

---?image=/assets/image/black.jpg&opacity=75

Encryption App Modified

Proposed Changes
![alt](assets/image/encryption-app-mod.jpg)
Website: https://encryption.app

Encryption App Tech. Code Block

'''javascript // Encrypt the file!

		reader.onload = function(e){

			// Use the CryptoJS library and the AES cypher to encrypt the 
			// contents of the file, held in e.target.result, with the password

			var encrypted = CryptoJS.AES.encrypt(e.target.result, password);

			// The download attribute will cause the contents of the href
			// attribute to be downloaded when clicked. The download attribute
			// also holds the name of the file that is offered for download.

			a.attr('href', 'data:application/octet-stream,' + encrypted);
			a.attr('download', file.name + '.encrypted');

			step(4);
		};

		// This will encode the contents of the file into a data-uri.
		// It will trigger the onload handler above, with the result

		reader.readAsDataURL(file);
	}
	else {

		// Decrypt it!

		reader.onload = function(e){

			var decrypted = CryptoJS.AES.decrypt(e.target.result, password)
									.toString(CryptoJS.enc.Latin1);

			if(!/^data:/.test(decrypted)){
				alert("Invalid pass phrase or file! Please try again.");
				return false;
			}

			a.attr('href', decrypted);
			a.attr('download', file.name.replace('.encrypted',''));

			step(4);
		};

		reader.readAsText(file);
	}
});

'''

---?image=/assets/image/black.jpg&opacity=90

Vote App

YouTube Video

alt

---?image=/assets/image/black.jpg&opacity=75

Vote App

Current User Interface
![alt](/assets/image/demo/voteapp-main.png)
Website: http://vote.rockthepoll.com

---?image=/assets/image/black.jpg&opacity=75

Vote App Modified

alt
Results website: http://198.23.196.54:2750/VoteChain/assetref/7-264-40763#holders

---?image=/assets/image/black.jpg&opacity=90

Universal Basic Income Tokens

YouTube Video

---?image=/assets/image/black.jpg&opacity=75

UBIT

Current User Interface
![alt](/assets/image/ubit-main.png)

Website: https://ubit.chickenkiller.com

---?image=/assets/image/black.jpg&opacity=75

UBIT Modified

Current UI
New UI

---?image=/assets/image/black.jpg&opacity=90

Universal Multichain Wallet

YouTube Video

---?image=/assets/image/black.jpg&opacity=75

UMW App

Current UI
alt
Website: http://unibit.rundis.com

---?image=/assets/image/black.jpg&opacity=75

UMW App Modified

alt

---?image=/assets/image/black.jpg&opacity=90

The Scout Browser

YouTube Video

---?image=/assets/image/black.jpg&opacity=75

Scout Browser App

Current UI
alt
Website: http://scout.click

---?image=/assets/image/black.jpg&opacity=75

Scout Browser App Modified

alt

  • UI changes

---?image=/assets/image/black.jpg&opacity=90

UniqueSwarm Script

YouTube Video

---?image=/assets/image/black.jpg&opacity=75

Unique Swarm

alt

  • Status: In Progress

---?image=/assets/image/black.jpg&opacity=75

Unique Swarm Modified

alt

---?image=/assets/image/black.jpg&opacity=75

PC New

Video Demo

---?image=/assets/image/black.jpg&opacity=75

PC New App

alt

---?image=/assets/image/black.jpg&opacity=75

PC New App Modified

alt

---?image=/assets/image/black.jpg&opacity=90

The UniBit Framework

Community Discussion Takes Place Here for all things App #8 related.

---?image=/assets/image/black.jpg&opacity=75

UniBit Framework

Current UI
alt
Website: http://

---?image=/assets/image/black.jpg&opacity=75

UniBit Framework Modified

alt

---?image=/assets/image/black.jpg&opacity=75

The Trucking App

---?image=/assets/image/black.jpg&opacity=75

Trucking App

alt

  • Current main screen
  • Current website: http://

---?image=/assets/image/black.jpg&opacity=75

Trucking App Modified

alt

  • Proposed changes
  • Future website: http://

---?image=/assets/image/black.jpg&opacity=75

Upcoming Changes

  • Matching Color Scheme Across All Products/Services? |
  • Open Source? Proprietary? |
  • Custom 3D/Animated Styling |
  • Custom Logo, TOC, and Footnotes |

---?image=/assets/image/black.jpg&opacity=90

How to get Involved!

alt

  • Bug Bounties
  • Graphics Art Bounties
  • Spread the word!
  • Use our apps!
  • Leave feedback to make things better!

---?image=assets/image/gitpitch-audience.jpg&opacity=100

@title[Download!]

Get started!