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
| /// OpenHackRS - Open Hack Rio Grande do Sul | |
| /// https://www.meetup.com/OpenHackRS/ | |
| TL;DR; Queremos fazer eventos para codar. Reunir pessoas interessadas em | |
| desenvolvimento de software, interessadas em aprender novas tecnologias. | |
| Quer participar de eventos? Se inscreva no https://www.meetup.com/OpenHackRS/. | |
| Quer ajudar a organizar eventos? Procura pelo dwildt no Telegram. | |
| /// Qual a ideia? |
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
| <html> | |
| <!-- http://bit.ly/vanillaneural --> | |
| <head> | |
| <link href="style.css" rel="stylesheet" /> | |
| </head> | |
| <body> | |
| <div class="legend legendX">Scariness</div> | |
| <div class="legend legendY">Actual power</div> | |
| <canvas id="mycanvas" width="1000" height="1000"></canvas> | |
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
| /* Tentar reduzir os evaluate, | |
| e tentar usar um só, | |
| que ae ele vai no browser de uma só vez. | |
| E trocar os for por recursão, | |
| que ae não vai precisar forçar terminar o processo.*/ | |
| const puppeteer = require('puppeteer'); | |
| const fs = require('fs'); | |
| const siteUrl = 'https://www.empiricus.com.br/conteudo/newsletters'; |
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
| import React from 'react'; | |
| import './Box.css'; | |
| const Box = () => ( | |
| <div className="Box"> | |
| <p className="Box_text">Folhas de Estilo</p> | |
| </div> | |
| ); | |
| export default Box; |
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
| import React from 'react'; | |
| import styles from './Box.css'; | |
| const Box = () => ( | |
| <div className={styles.container}> | |
| <p className={styles.text}>CSS Modulos</p> | |
| </div> | |
| ); | |
| export default Box; |
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
| import React from 'react'; | |
| import styled from 'styled-components'; | |
| const DivStyle = styled.div` | |
| max-width: 1000px; | |
| margin: 0 auto; | |
| @media (max-width: 1020px) { | |
| padding: 0 10px; | |
| } | |
| `; |
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 divStyle = { | |
| margin: '30px 0', | |
| padding: '15px', | |
| border: '1px solid #ccc' | |
| }; | |
| const pStyle = { | |
| fontSize: '16px', | |
| textAlign: 'center' | |
| }; |
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
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <meta name="viewport" content="width=device-width"> | |
| <title>JS Bin</title> | |
| </head> | |
| <body ng-app="appProdutos"> | |
| <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.4.0/angular.min.js"></script> |