This file contains 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
//angular 2+ currency pipe programmatically | |
getFormattedPrice(price: number) { | |
return new Intl.NumberFormat('pt-BR', { style: 'currency', currency: 'BRL' }).format(price); | |
} |
This file contains 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
import { Directive, HostListener, Output, EventEmitter } from '@angular/core'; | |
@Directive({ | |
selector: '[scrollTracker]', | |
}) | |
export class ScrollTrackerDirective { | |
@Output() scrolled = new EventEmitter<any>(); | |
@HostListener('scroll', ['$event']) | |
onScroll(event) { |
This file contains 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 confirmBox = confirm('Start swiping right?'); | |
var count = 1; | |
var like = function(){ | |
if (confirmBox){ | |
document.querySelector('[aria-label="Gosto"]').click(); //translate you country inspect the button | |
console.log('Liked ' + count); count++; }; | |
setTimeout(like, 100); | |
}; | |
setTimeout(like, 100); |
This file contains 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
https://scripts-cdn.softpedia.com/screenshots/WebUI-Popover_1.png | |
https://developer.apple.com/design/human-interface-guidelines/macos/images/popover_2x.png | |
https://i.pinimg.com/originals/c8/9d/26/c89d26693202223e22a296a4cc32cb3e.png | |
https://cdn.dribbble.com/users/5477/screenshots/1867310/helpscout-conversation-popover.png |
This file contains 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
Padrão com Atomic Design | |
https://webdesign.tutsplus.com/articles/structuring-sass-saying-goodbye-to-atomic-design-ambiguity--cms-26679 | |
https://blog.prototypr.io/organized-scss-folder-structures-for-design-systems-ecb861f1522c | |
Padrão 7-1 recomendado pelo proprio site do sass | |
https://sass-guidelin.es/#the-7-1-pattern => exemplo https://gist.github.com/rveitch/84cea9650092119527bc |
This file contains 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
const student = { | |
name: 'John Doe', | |
age: 16, | |
scores: { | |
maths: 74, | |
english: 63 | |
} | |
}; | |
// We define 3 local variables: name, maths, science |
This file contains 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
Filtrar itens de um array baseado no conteudo da key | |
var PATTERN = 'bedroom', | |
filtered = myArray.filter(function (str) { return str.includes(PATTERN); }); | |
ou | |
var PATTERN = 'La'; | |
const filtered = users.results.filter((obj) => | |
obj.name.first.includes(PATTERN) || obj.name.last.includes(PATTERN) | |
); |
This file contains 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
Array.prototype.map.call(document.querySelectorAll("body > div.container-fluid.falco-custom-fluid-container > div > div > div > div:nth-child(1) > a"), function (e) { | |
return e.getAttribute('href'); | |
}); | |
Array.prototype.map.call(document.querySelectorAll(".myselectorAreaofLinks"), function (e) { | |
return e.getAttribute('href'); | |
}); |
This file contains 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
icones icones / icons | |
https://icomoon.io/ | |
https://feathericons.com/ | |
https://icons8.com.br/ |
This file contains 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
/* (320x480) iPhone (Original, 3G, 3GS) */ | |
@media only screen and (min-device-width: 320px) and (max-device-width: 480px) { | |
/* insert styles here */ | |
} | |
/* (320x480) Smartphone, Portrait */ | |
@media only screen and (device-width: 320px) and (orientation: portrait) { | |
/* insert styles here */ | |
} | |
NewerOlder