Skip to content

Instantly share code, notes, and snippets.

View 3ffusi0on's full-sized avatar
🎯
Focusing

SIMON Pierre-Alain 3ffusi0on

🎯
Focusing
  • France
View GitHub Profile
@3ffusi0on
3ffusi0on / activation_key.ps1
Last active April 20, 2017 17:32
Find Windows activation key
(Get-WmiObject -query 'select * from SoftwareLicensingService').OA3xOriginalProductKey
@3ffusi0on
3ffusi0on / MapCast.java
Created May 12, 2017 14:16
From Map<String, List<IChamp>> to Map<String, List<Champ>> (with Champ implements IChamp)
// From Map<String, List<IChamp>> to Map<String, List<Champ>> (with Champ implements IChamp)
Map<String, List<Champ>> champs = (Map<String, List<Champ>>) (Map<String, ?>) myClass.myMethode();