Skip to content

Instantly share code, notes, and snippets.

View RedyAu's full-sized avatar

Fodor Benedek RedyAu

  • Óbuda University - Elearning Office
  • Hungary
  • 17:14 (UTC +02:00)
  • X @RedyAu_
View GitHub Profile
@vinicioslc
vinicioslc / flutter-android-cd.yml
Last active April 19, 2024 15:52
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 April 23, 2024 13:36 — forked from Ingramz/AuthyToOtherAuthenticator.md
Export TOTP tokens from Authy
@games647
games647 / minecraft-offline-uuid.php
Last active April 1, 2024 00:24
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));