Created
April 27, 2017 11:39
-
-
Save Imperat/5a06ee4e8e53706e5859ed23796cb389 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var not = window.Notification || window.mozNotification || window.webkitNotification; | |
| Notification.requestPermission(p => {}); | |
| list = [ | |
| "Слава выбросил своих кеды!", | |
| "Пыльник в наших сердцах!", | |
| "Между первой и второй - вишнёвая", | |
| "Будем играть что ль первого января?", | |
| "Спартак - чемпик", | |
| "Я за сток сити, блять!", | |
| "Максим Кривопатря - новый администратор АДФС" | |
| ] | |
| window.setInterval(() => { | |
| var kef = Math.floor(Math.random() * list.length); | |
| var instance = new Notification("Атмосферик!", {body: list[kef]}); | |
| }, 50000); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment