Skip to content

Instantly share code, notes, and snippets.

View wizmea's full-sized avatar

Arcadius TCHOKPODO wizmea

View GitHub Profile
@wizmea
wizmea / kkiapay.sample.dart
Last active May 7, 2020 11:23
KkiaPay Flutter Module
import 'dart:convert';
import 'package:flutter/material.dart';
import 'package:flutter_webview_plugin/flutter_webview_plugin.dart';
import 'kkiapayConf.sample.dart';
class KKiaPay extends StatefulWidget {
int _amount;
String _phone;
@wizmea
wizmea / nodejs_java_encrypt_decrypt_128.js
Created October 6, 2021 19:31 — forked from luizwbr/nodejs_java_encrypt_decrypt_128.js
Encrypt and Decrypt using 128 for Nodejs or Javascript that actually works
// None of the tutorals could help me, so I adapted a few codes.
// What I really want is make a full duplex way between NodeJS and Java, using encrypt/decrypt with AES 128 bit
// 1 - you must have to generate the key
openssl enc -aes-128-cbc -k secret -P -md sha1
// key examples:
// DCDD74627CD60252E35DFBA91A4556AA
// 2CB24CFDB3F2520A5809EB4851168162
// 468CA14CA44C82B8264F61D42E0E9FA1
@wizmea
wizmea / topic_en.md
Last active March 11, 2025 09:37
An ASIN take-home challenge 🙂

ASIN take-home challenge

The goal is to build a small application to show off your skills at production quality level code. You can write it in any language (preference for NodeJs or Java) and it should only take one day (we can trust in you🙂).

The Scenario

A ministry makes available a list of several people who are manually recorded in a xlsx file format. This list must be saved in a relational database in less than 20 minutes so that it can be consulted by a supervisory committee.

Your job is to create a unix-friendly command line application that performs this action.