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
<div class="neon__button"> | |
<a href="#"> | |
<span></span> | |
<span></span> | |
<span></span> | |
<span></span> | |
Neon button | |
</a> | |
<a href="#"> | |
<span></span> |
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
кот | |
собака | |
осел | |
козел | |
лошадь | |
свинья | |
кролик | |
трубкозуб | |
альбатрос | |
аллигатор |
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
заброшенный | |
способный | |
абсолютный | |
академический | |
приемлемый | |
признанный | |
точный | |
кислый | |
акробатический | |
авантюрный |
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
document.addEventListener('keydown', multiKeyHandler) | |
const keyMap = {} | |
function multiKeyHandler (e) { | |
if (e.ctrlKey) { | |
keyMap['ctrlKey'] = clearTimeout() | |
keyMap['ctrlKey'] = setTimeout(() => delete keyMap['ctrlKey'], 1500) | |
} | |
if (e.altKey) { | |
keyMap['altKey'] = clearTimeout() |
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
{ | |
'AED': 'د.إ', | |
'AFN': '؋', | |
'ALL': 'L', | |
'AMD': '֏', | |
'ANG': 'ƒ', | |
'AOA': 'Kz', | |
'ARS': '$', | |
'AUD': '$', | |
'AWG': 'ƒ', |
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
/** | |
* Created by dsi on 11.05.2015. | |
*/ | |
(function() { | |
var player = dashjs.MediaPlayer().create(); | |
playerAd = dashjs.MediaPlayer().create(); | |
contentUrl = 'http://vm2.dashif.org/livesim/scte35_1/testpic_2s/Manifest.mpd ', | |
adUrl = 'http://dash.edgesuite.net/fokus/adinsertion-samples/scte/dash.mpd', | |
currentlyAd = false; |
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
let invokeConsoleMethod = function (customConsole, messages) { | |
Function.prototype.apply.call(customConsole, console, messages); | |
}; | |
// invokeConsoleMethod(console.warn, ['heya', 123, [3,4,5]]) |
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
Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36 | |
Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 | |
Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_4) AppleWebKit/603.1.30 (KHTML, like Gecko) Version/10.1 Safari/603.1.30 | |
Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36 | |
Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.96 Safari/537.36 | |
Mozilla/5.0 (Windows NT 10.0; WOW64; rv:53.0) Gecko/20100101 Firefox/53.0 | |
Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36 | |
Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36 | |
Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36 | |
Mozilla/5.0 (Windows NT 6.1 |
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 canvas = document.createElement('canvas'); | |
var gl; | |
var debugInfo; | |
var vendor; | |
var renderer; | |
try { | |
gl = canvas.getContext('webgl') || canvas.getContext('experimental-webgl'); | |
} catch (e) { | |
} |
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
element.addEventListener('keyup', (e) => { | |
if (e.keyCode === 9) doSmthng(); | |
}); |
NewerOlder