npm init svelte@next my-app
cd my-app
npm install
Add Material UI
| #!/bin/sh | |
| # 1. Enable Community Repositories automatically | |
| # This searches for lines containing '/community' and removes the '#' prefix | |
| sed -i 's/#http/http/g' /etc/apk/repositories | |
| # 2. Add required packages | |
| # mesa-egl and mesa-gbm are included automatically by mesa-dri-gallium and mesa-va-gallium | |
| apk update | |
| apk add open-vm-tools sway swaybg mesa-dri-gallium mesa-va-gallium \ |
| package storage; | |
| import javacard.framework.*; | |
| import javacardx.apdu.ExtendedLength; | |
| public class Vault extends Applet implements ExtendedLength { | |
| final static byte GET_DATA = (byte) 0xCB; | |
| final static byte PUT_DATA = (byte) 0xDB; | |
| private byte[] objBuffer; |