For example, you want to set 40% alpha transparence to #000000 (black color), you need to add 66 like this #66000000.
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
| const phaseScores = [ | |
| { name: 'Vinicius Costa', score: 337 }, | |
| { name: 'Roger Melo', score: 43 }, | |
| { name: 'Alfredo Braga', score: 234 }, | |
| { name: 'Pedro H. Silva', score: 261 }, | |
| { name: 'Ana Paula Rocha', score: 491 }, | |
| { name: 'Vinicius Costa', score: 167 }, | |
| { name: 'Roger Melo', score: 137 }, | |
| { name: 'Alfredo Braga', score: 135 }, | |
| { name: 'Ana Paula Rocha', score: 359 }, |
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
| const users = [ | |
| { name: 'Ada Lovelace', premium: true }, | |
| { name: 'Grace Hopper', premium: false }, | |
| { name: 'Alan Turing', premium: true }, | |
| { name: 'Linus Torvalds', premium: false }, | |
| { name: 'Margaret Hamilton', premium: true } | |
| ] |
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
| const products = [ | |
| { name: 'Mouse Sem Fio', price: 30 }, | |
| { name: 'Pen Drive', price: 25 }, | |
| { name: 'Cartucho de Tinta', price: 50 }, | |
| { name: 'Suporte Ergonômico para Notebook', price: 23 }, | |
| { name: 'Repetidor de Sinal Wi-Fi', price: 44 } | |
| ] |
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
| [alias] | |
| ci = commit | |
| co = checkout | |
| cm = checkout master | |
| cb = checkout -b | |
| st = status -sb | |
| sf = show --name-only | |
| lg = log --pretty=format:'%Cred%h%Creset %C(bold)%cr%Creset %Cgreen<%an>%Creset %s' --max-count=30 | |
| incoming = !(git fetch --quiet && git log --pretty=format:'%C(yellow)%h %C(white)- %C(red)%an %C(white)- %C(cyan)%d%Creset %s %C(white)- %ar%Creset' ..@{u}) | |
| outgoing = !(git fetch --quiet && git log --pretty=format:'%C(yellow)%h %C(white)- %C(red)%an %C(white)- %C(cyan)%d%Creset %s %C(white)- %ar%Creset' @{u}..) |
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
| @Component | |
| public class Beans { | |
| @Bean @RequestScope(proxyMode = ScopedProxyMode.TARGET_CLASS) | |
| public WebDriver webDriver() { | |
| ChromeOptions options = new ChromeOptions() | |
| .addArguments("--no-sandbox") | |
| .setHeadless(true); | |
| ChromeDriver driver = new ChromeDriver(options); |
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
| /** | |
| * subscriptions data format: | |
| * { eventType: { id: callback } } | |
| */ | |
| const subscriptions = { } | |
| const getNextUniqueId = getIdGenerator() | |
| function subscribe(eventType, callback) { | |
| const id = getNextUniqueId() |
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
| /* | |
| Hoje iremos MUDAR a vida da pessoa que não te responde no whatsappp... | |
| Que tal enviar mensagens pra ela até obter uma resposta?! | |
| Sensacional não acha?! Mas, somos devs, correto?! Então vamos automatizar esse paranauê! | |
| Para utilizar: | |
| - Abra o web.whatsapp.com; | |
| - Selecione a conversa que você quer; | |
| - Abra o console e cole o código que está no gist; |
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 is a simple bash script to load up a hard coded spotify url and play it | |
| # make sure to make the file excutable (chmod 777 autostart_music.sh) | |
| # to add it on boot, look here: https://www.raspberrypi.org/documentation/linux/usage/rc-local.md | |
| # Made by LUNZCORP | |
| mpc clear # this clears any loaded music | |
| mpc random on |
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
| ### java -jar | |
| java -Xdebug -Xrunjdwp:transport=dt_socket,server=y,address=8001,suspend=y -jar target/cxf-boot-simple-0.0.1-SNAPSHOT.jar | |
| ### Maven | |
| Debug Spring Boot app with Maven: | |
| mvn spring-boot:run -Drun.jvmArguments="-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=8001" |
NewerOlder