Skip to content

Instantly share code, notes, and snippets.

View RedyAu's full-sized avatar

Fodor Benedek RedyAu

  • Óbuda University - Elearning Office
  • Hungary
  • 03:57 (UTC +01:00)
  • X @RedyAu_
View GitHub Profile
@vinicioslc
vinicioslc / flutter-android-cd.yml
Last active December 21, 2023 19:06
Build flutter releases in github actions for production only android for while.
# This is a basic workflow to help you get started with Actions
name: CD Internal-Lane
# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the master branch
on:
push:
tags:
- "internal-v*.*.*" # on every version tag will build a new android artifact example: v3.1.2+6
jobs:
@gboudreau
gboudreau / AuthyToOtherAuthenticator.md
Last active March 30, 2024 01:38 — forked from Ingramz/AuthyToOtherAuthenticator.md
Export TOTP tokens from Authy
@games647
games647 / minecraft-offline-uuid.php
Last active January 25, 2024 05:16
Generate an offline minecraft UUID v3 based on the case sensitive player name
<?
/**
* Generates a offline-mode player UUID.
*
* @param $username string
* @return string
*/
public static function constructOfflinePlayerUuid($username) {
//extracted from the java code:
//new GameProfile(UUID.nameUUIDFromBytes(("OfflinePlayer:" + name).getBytes(Charsets.UTF_8)), name));