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://micro-frontends.org/ | |
- https://gustafnk.github.io/microservice-websites/ | |
- https://www.youtube.com/watch?v=4KVOuQDIfmw | |
- https://www.case-podcast.org/22-micro-frontends-with-gustaf-nilsson-kotte | |
- https://www.infoq.com/br/news/2018/10/experiences-micro-frontends | |
- https://single-spa.js.org/ | |
- https://medium.com/@tomsoderlund/micro-frontends-a-microservice-approach-to-front-end-web-development-f325ebdadc16 | |
- https://twitter.com/matheusml/status/1081200064188612608 | |
- https://engineering.contaazul.com/evolving-an-angularjs-application-using-microfrontends-2bbcac9c023a | |
- https://taverna.devall.com.br/t/micro-frontends/165 |
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
Envie sua palestra para o CEJS 2018. | |
Você pode apresentar sobre o que quiser que envolva as tecnolgias JS/FrontEnd, mas aqui tem uma thread dos assuntos que mais interessam as pessoas -> https://github.com/cejs/cejsconf/issues/1 , que você pode usar pra se basear. | |
Você pode falar sobre algo que não está aí também. | |
Seja criativo :) | |
As palestras na conferência serão de 30 minutos de duração, sem perguntas. | |
A seleção será feita em parte pela comunidade, em parte pela organização do CEJS tentando tornar o evento mais inclusivo, variado e com conteúdos interessantes. | |
Serão três etapas: | |
1. Pré-seleção feita pela equipe organizadora do CEJS. | |
2. Os selecionados apresentarão uma Lighting Talks de 15min para a comunidade dia 02/06. | |
3. Dessas apresentações, abriemos uma votação. Apenas quem compareceu ao evento poderão votar. Os mais votados irão apresentar na conferência. |
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 base = { | |
devtool: 'source-map', | |
module: { | |
rules: [ | |
{ | |
test: /\.(js)$/, | |
include: path.join(__dirname, 'src'), | |
loader: 'babel-loader', | |
options: { | |
cacheDirectory: '.babel-cache', |
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
export const listar = lista => { | |
console.log('action listar') | |
return { | |
type: 'LISTAR', | |
lista, | |
} | |
}; |
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 React, { PureComponent } from 'react'; | |
import './App.css'; | |
import Header from './components/Header'; | |
import Main from './components/Main'; | |
class App extends PureComponent { | |
render() { | |
return ( |
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
Greenmile = {}; | |
Greenmile.hireSomeone = function() {console.log('Internal process')}; | |
Greenmile.Hackathon = (function() { | |
function hackin() { | |
this.start = new Date('2015-04-18 13:00:00'); | |
this.end = new Date('2015-04-18 17:00:00'); | |
this.describe = ''; | |
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
Program Idade; | |
var | |
nome, resposta: string; | |
anoNasc, contador, soma, idade: integer; | |
Begin | |
contador:= 1; | |
while resposta <> 'S' do | |
begin |
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
<html> | |
<head> | |
<title></title> | |
<meta charset = "utf-8"/> | |
<script type="text/javascript" src="divs.js"></script> | |
<script type="text/javascript" src="jquery/jquery-2.1.1.js"></script> | |
<link rel="stylesheet" type="text/css" href="estilo_divs.css"/> | |
</head> |