---?image=/assets/image/black.jpg&opacity=90
---?image=/assets/image/black.jpg&opacity=75
---?image=/assets/image/black.jpg&opacity=75
Current UI
Demo: https://securedoc.io
---?image=/assets/image/black.jpg&opacity=75
Proposed Changes![alt](assets/image/encryption-app-mod.jpg)
Website: https://encryption.app
'''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
---?image=/assets/image/black.jpg&opacity=75
Current User Interface![alt](/assets/image/demo/voteapp-main.png)
Website: http://vote.rockthepoll.com
---?image=/assets/image/black.jpg&opacity=75
Results website: http://198.23.196.54:2750/VoteChain/assetref/7-264-40763#holders
---?image=/assets/image/black.jpg&opacity=90
---?image=/assets/image/black.jpg&opacity=75
Current User Interface![alt](/assets/image/ubit-main.png)
Website: https://ubit.chickenkiller.com
---?image=/assets/image/black.jpg&opacity=75
---?image=/assets/image/black.jpg&opacity=90
---?image=/assets/image/black.jpg&opacity=75
Current UI
Website: http://unibit.rundis.com
---?image=/assets/image/black.jpg&opacity=75
---?image=/assets/image/black.jpg&opacity=90
---?image=/assets/image/black.jpg&opacity=75
Current UI
Website: http://scout.click
---?image=/assets/image/black.jpg&opacity=75
- UI changes
---?image=/assets/image/black.jpg&opacity=90
---?image=/assets/image/black.jpg&opacity=75
- Status: In Progress
---?image=/assets/image/black.jpg&opacity=75
---?image=/assets/image/black.jpg&opacity=75
Video Demo
---?image=/assets/image/black.jpg&opacity=75
---?image=/assets/image/black.jpg&opacity=75
---?image=/assets/image/black.jpg&opacity=90
Community Discussion Takes Place Here for all things App #8 related.
---?image=/assets/image/black.jpg&opacity=75
---?image=/assets/image/black.jpg&opacity=75
- Future website: https://unibit.app
---?image=/assets/image/black.jpg&opacity=75
---?image=/assets/image/black.jpg&opacity=75
- Current main screen
- Current website: http://
---?image=/assets/image/black.jpg&opacity=75
- Proposed changes
- Future website: http://
---?image=/assets/image/black.jpg&opacity=75
- 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
- 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!]