Jump to content
View in the app

A better way to browse. Learn more.

Tuts 4 You

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Featured Replies

Posted

black out the GUI

.386       
.model flat extrn MessageBoxA:proc
extrn GetDC:proc
extrn SetPixel:proc
extrn GetSystemMetrics:proc
extrn MessageBoxA:proc
extrn GetPixel:PROC
extrn BitBlt:PROC
.data
xc dd 0 ;width
yc dd 0 ;height
x dd 0 ;x-co
y dd 0 ;y-co
dc dd 0
.code
start: xor eax,eax
push eax
call GetDC
mov dword ptr dc,eax
push 16
call GetSystemMetrics
mov dword ptr xc,eax
push 17
call GetSystemMetrics
mov dword ptr yc,eax
next:
mov eax,dword ptr xc
push eax
call rand
mov dword ptr x,eax
mov eax,dword ptr yc
push eax
call rand
mov 4 ptr y,eax
push 0 ; erase area flag
push x ;
push y ;
push dc ;
push xc ; area size
push yc ; area size
inc x ;
inc y ;
push x ;
push y ;
push dc ;
call BitBltjmp next rand proc ;THIS WIL GET FLAGGED BY AVIRA AV
push edx
db 0fh, 31h
xor edx, edx
div dword ptr [esp+8]
mov al,40h
add dl,al
xchg eax, edx
pop edx
ret 4
rand endp
ends
end start

Edited by JMC31337

Create an account or sign in to comment

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.