Skip to content

Instantly share code, notes, and snippets.

View hmawla's full-sized avatar
😄
Optimistic

Hussein Al Mawla hmawla

😄
Optimistic
View GitHub Profile
@hmawla
hmawla / starUml3.md
Last active February 5, 2021 10:52 — forked from jjvillavicencio/starUml3.md
StarUml 3.

Recently StarUML was updated from 2.0 to 3.0. The original crack method, how to modify the license verification function can not be used. The installation location has changed and the LicenseManagerDomain.js file was found. What should I do? The old driver told everyone to solve the problem.

StarUML is written in nodejs. Specifically, it is written in the front frame of Electron. All the starUML source code in the new version comes packaged by the roasting tool.

Enter the directory (Windows)

C:\Program Files\StarUML\resources

Install asar

@hmawla
hmawla / FilesController.php
Last active October 17, 2023 13:21
Laravel Files Controller
<?php
namespace App;
use Illuminate\Http\UploadedFile;
use Illuminate\Support\Facades\Storage;
use Ramsey\Uuid\Uuid;
class FilesController
{