Skip to content

Instantly share code, notes, and snippets.

@Imperat
Created April 27, 2017 11:39
Show Gist options
  • Select an option

  • Save Imperat/5a06ee4e8e53706e5859ed23796cb389 to your computer and use it in GitHub Desktop.

Select an option

Save Imperat/5a06ee4e8e53706e5859ed23796cb389 to your computer and use it in GitHub Desktop.
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