Skip to content

Instantly share code, notes, and snippets.

View keytrap-x86's full-sized avatar
πŸ‘‹

keytrap keytrap-x86

πŸ‘‹
  • France
  • 12:34 (UTC +02:00)
View GitHub Profile
@keytrap-x86
keytrap-x86 / index.html
Created July 14, 2026 17:09
SUPER HOPPER - #CodePenChallenge
<div id="game-container"></div>
<div id="ui-layer">
<div id="score-display" class="hidden">SCORE: <span id="score">0</span></div>
<div id="instructions">
STEPS:<br>
<span class="key">←</span> <span class="key">β†’</span> MOVE<br>
<span class="key">↑</span> JUMP
</div>
@keytrap-x86
keytrap-x86 / Readme.md
Last active December 15, 2025 15:19
Prevent standard users from being prompt with UAC for basic tasks like task manager, event viewer, etc..

Context

You or your users are not able to start trivial processes like Taskmgr.exe or regedit.exe without being harrassed by the UAC. You have looked everywhere on Internet and cannot find a solution.

Hopefully this gist will help you out.

Solutions

There's a few solutions for this problem (I've struggled with many solutions and found the ultimate one).

package com.ute.eu.scannertest;
import android.media.AudioManager;
import android.media.MediaScannerConnection;
import android.media.SoundPool;
import android.os.Bundle;
import android.os.Environment;
import android.os.Vibrator;
import android.app.Activity;
import android.content.BroadcastReceiver;