Skip to content

Instantly share code, notes, and snippets.

View Fregionz's full-sized avatar
🕵️‍♂️
On vacation

BRS Fregionz

🕵️‍♂️
On vacation
  • Canada
View GitHub Profile
@PurpleVibe32
PurpleVibe32 / vmwk17key-5000keys-unchecked.txt
Last active December 11, 2024 14:16
5000k+ vmware workstation pro 17 (untested)
Unavailable - VMWare took down my VMWare Workstation Pro 17 keys gist, so, to prevent legal issues i'll be taking this down too.
You can find evidence at https://gist.github.com/PurpleVibe32/30a802c3c8ec902e1487024cdea26251/forks
@akifarhan
akifarhan / localAuthSettingsForAndroid_kotlin.md
Last active August 27, 2024 12:57
Flutter Local_Auth Setting for Android in Kotlin

Note that local_auth plugin requires the use of a FragmentActivity as opposed to Activity. This can be easily done by switching to use FlutterFragmentActivity as opposed to FlutterActivity in your manifest (or your own Activity class if you are extending the base class).

1. Add USE_FINGERPRINT permission

  • Open android>app>src>main>AndroidManifest.xml
  • Add the permission
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
          package="com.[your.package]">
  <uses-permission android:name="android.permission.USE_FINGERPRINT"/>
// EMVCoParser Dart translation from https://github.com/wardaLyns/EMVCoParser
class EMVCoParser {
static final int length = 2;
String emvcoQrValue;
int tag, subTag;
bool hasSubTag;
EMVCoParser(String emvcoQrValue, int tag) {