I hereby claim:
- I am enwin on github.
- I am enwin (https://keybase.io/enwin) on keybase.
- I have a public key whose fingerprint is 20BF 28A4 0747 EF59 3C2D 9ECE FFA3 980F 38BD 7A9D
To claim this, I am signing this object:
| $('a').bind('touchstart touchend touchcancel click',function(e){ | |
| // prevent click on touch actions | |
| e.preventDefault(); | |
| // stop script if touchstart, only execute the script on touchend (nicer) | |
| e.type === touchstart && return | |
| alert('here'); | |
| }); |
| first backup you profile!!! | |
| use [https://github.com/Mozilla-TWQA/B2G-flash-tool/blob/master/backup_restore_profile.sh] to do so. | |
| then, create a backup of the default emoji font | |
| ```shell | |
| adb pull /system/fonts/NotoColorEmoji.ttf | |
| ``` | |
| then rename your emoji font to NotoColorEmoji.ttf for convenience and run: |
I hereby claim:
To claim this, I am signing this object:
First install vscode and configure it as you please. During setup ensure the checkbox for the PATH is checked
https://davidtranscend.com/blog/windows-terminal-workflow-guide/ (enabling developer mode is not required anymore)
https://nodejs.org/en/download/package-manager/#debian-and-ubuntu-based-linux-distributions
| // sticky element | |
| var stickyHeader = document.querySelector( '.intro-banner' ); | |
| function handleFocus( e ){ | |
| // don't try to change the scroll if the focused element is in the sticky element | |
| if( stickyHeader.contains( e.target )){ | |
| return; | |
| } | |
| // quick & dirty client height on each focus |
| export default (vueArray, data) => { | |
| data.forEach((entry, index) => { | |
| if (!vueArray[index]) { | |
| vueArray.push(entry); | |
| return; | |
| } | |
| const previousEntry = vueArray[index]; | |
| vueArray.splice(index, 1, { |
| export default [ | |
| ['small', `(min-width: ${576 / 16}rem)`], | |
| ['medium', `(min-width: ${768 / 16}rem)`], | |
| ['large', `(min-width: ${992 / 16}rem)`], | |
| ['xlarge', `(min-width: ${1200 / 16}rem)`], | |
| ['2xlarge', `(min-width: ${1400 / 16}rem)`], | |
| ] |
| @mixin interact() { | |
| -webkit-tap-highlight-color: rgba(black, 0); | |
| &:focus { | |
| outline: none; | |
| } | |
| [data-input='mouse'] &:hover, | |
| [data-input='keyboard'] &:focus, | |
| [data-input='touch'] &:active { |