Skip to content

Instantly share code, notes, and snippets.

View nunetc's full-sized avatar
🏠
Working from home

Gtnun Etc nunetc

🏠
Working from home
View GitHub Profile
@nunetc
nunetc / main.dart
Created March 30, 2019 04:21
Flutter - Workshop 1
void main() {
var char1 = Character('Knight', 500, 1000, {'item1':'111', 'item2':'222', 'item3':'333'});
var char2 = Character('Paradin', 50, 1000, {'item0':'000'});
char1.sendItem(char2, 'item1');
char1.hit(char2);
char1.hit(char2);
}
package test;
import java.nio.charset.StandardCharsets;
import java.security.MessageDigest;
import java.security.NoSuchAlgorithmException;
public class TestGiftcardSignature {
public static void main(String[] args) {