| emoji | aliases | tags |
|---|---|---|
| ๐ | :+1:, :thumbup:, :thumbsup: |
thumbs, up, sign, body, hands, hi, luck, thank, you, diversity, diversity, perfect, perfect, good, good, beautiful, beautiful |
| ๐๐ป | :+1_tone1:, :thumbup_tone1:, :thumbsup_tone1: |
thumbs, up, sign, tone, 1 |
| ๐๐ผ | :+1_tone2:, :thumbup_tone2:, :thumbsup_tone2: |
thumbs, up, sign, tone, 2 |
| ๐๐ฝ | :+1_tone3:, :thumbup_tone3:, :thumbsup_tone3: |
thumbs, up, sign, tone, 3 |
| ๐๐พ | :+1_tone4:, :thumbup_tone4:, :thumbsup_tone4: |
thumbs, up, sign, tone, 4 |
| ๐๐ฟ | :+1_tone5:, :thumbup_tone5:, :thumbsup_tone5: |
thumbs, up, sign, tone, 5 |
| ๐ | :-1:, :thumbdown:, :thumbsdown: |
thumbs, down, sign, body, hands, diversity, diversity |
| ๐๐ป | :-1_tone1:, :thumbdown_tone1:, :thumbsdown_tone1: |
thumbs, down, sign, tone, 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
| ^(http(s)?:\/\/)?([ะฐ-ััะ-ะฏะa-zA-Z0-9]([ะฐ-ััะ-ะฏะa-zA-Z0-9\-]{0,61}[ะฐ-ััะ-ะฏะa-zA-Z0-9])?\.)+[ะฐ-ััะ-ะฏะa-zA-Z]{2,6}\/?$ |
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 shuffle = function (array) { | |
| for (let i = array.length - 1; i > 0; i -= 1) { | |
| let j = Math.floor(Math.random() * (i + 1)); | |
| let temp = array[i]; | |
| array[i] = array[j]; | |
| array[j] = temp; | |
| } | |
| return array; | |
| }; |
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
| <?php | |
| $begin = new DateTime( '2012-08-01' ); | |
| $end = new DateTime( '2012-08-31' ); | |
| $end = $end->modify( '+1 day' ); | |
| $interval = new DateInterval('P1D'); | |
| $daterange = new DatePeriod($begin, $interval ,$end); | |
| foreach($daterange as $date){ |
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
| function fakeCopy () { | |
| let selection = window.getSelection(); | |
| let fakeDiv = document.createElement('div'); | |
| fakeDiv.innerHTML = 'COPIED SELECTION REPLACED'; | |
| fakeDiv.style.position = 'absolute'; | |
| fakeDiv.style.top = '-999999px'; | |
| document.body.appendChild(fakeDiv); | |
| selection.selectAllChildren(fakeDiv); | |
| window.setTimeout(function () { | |
| document.body.removeChild(fakeDiv); |
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
| VK.Widgets.Ads('vk_ads_id', { | |
| onAdsReady: function() { | |
| console.log('ad loaded'); | |
| }}, adsParams); |
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
| function setProgress() { | |
| let bar = document.querySelector('.js-content-bar'), | |
| content = document.body, | |
| max = content.scrollHeight - window.innerHeight, | |
| progressValue = content.scrollTop / max * 100; | |
| bar.setAttribute('value', progressValue); | |
| } | |
| window.addEventListener('scroll', setProgress); |
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
| ['STUDYING', | |
| 'CALM', | |
| 'PIANO', | |
| 'HAPPY', | |
| 'CLASSICAL', | |
| 'DREAMY', | |
| 'GROOVY', | |
| 'SEXY', | |
| 'JUST WOKE UP', | |
| 'SECOND CHANCE', |
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
| .text{ | |
| background: -webkit-linear-gradient(right, #26bf98, #2695bf); | |
| -webkit-background-clip: text; | |
| -webkit-text-fill-color: transparent; | |
| background-size: 400% 400%; | |
| animation: bg-animation 3s ease infinite; | |
| } | |
| @keyframes bg-animation { |
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
| .reset { | |
| background:none; | |
| border:none; | |
| bottom:auto; | |
| clear:none; | |
| cursor:default; | |
| float:none; | |
| font-size:medium; | |
| font-style:normal; | |
| font-weight:normal; |