A Pen by Captain Anonymous on CodePen.
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
| $image-quantity = 4 | |
| $time-per-image = 6 | |
| $time-crossfade = 1 | |
| $total-duration = ($time-crossfade + $time-per-image) * $image-quantity | |
| $final-frame = 100% | |
| @keyframes crossfade | |
| 0% | |
| opacity 1 | |
| {$time-per-image/$total-duration * $final-frame} |
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
| Verifying that "ggviana.id" is my Blockstack ID. https://onename.com/ggviana |
Construir uma aplicação que compara dois usuários do github
A aplicação deve ter duas caixas de texto que, após inserir o nome de um usuário de github busca as informações básicas do usuário (nome real, foto, etc.). Depois que os dois usuários estiverem selecionados, pode-se clicar e um botão que fará a comparação das informações e destacará o campeão. Em caso de empate, a aplicação deve avisar que ocorreu um empate.
A pontuação deve seguir as seguintes regras:
- Star recebida em repositório: 5 pontos/star
- Quantidade de followers: 2 pontos/follower
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
| #!/env/sh | |
| curl -o ~/vamp.jpg 'https://user-images.githubusercontent.com/1886249/45969935-8e566500-c00b-11e8-8821-45a4796048fc.jpeg' | |
| sqlite3 ~/Library/Application\ Support/Dock/desktoppicture.db "update data set value = '~/vamp.jpg'" | |
| killall Dock |