├── .gitignore ├── img ├── logo.png ├── fork-me.png ├── js4girls.png ├── logoMP.png ├── favicon-16x16.png ├── favicon-32x32.png └── placeholder-female.jpg ├── fonts ├── fontawesome-webfont.woff2 └── cJZKeOuBrn4kERxqtaUH3ZBw1xU1rKptJj_0jans920.woff2 ├── .editorconfig ├── package.json ├── README.md ├── CONTRIBUTING.md ├── app.js ├── index.html ├── css ├── style.css └── font-awesome.min.css └── mulheres.json /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | -------------------------------------------------------------------------------- /img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insideoutprojectbr/mulheres-palestrantes/HEAD/img/logo.png -------------------------------------------------------------------------------- /img/fork-me.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insideoutprojectbr/mulheres-palestrantes/HEAD/img/fork-me.png -------------------------------------------------------------------------------- /img/js4girls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insideoutprojectbr/mulheres-palestrantes/HEAD/img/js4girls.png -------------------------------------------------------------------------------- /img/logoMP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insideoutprojectbr/mulheres-palestrantes/HEAD/img/logoMP.png -------------------------------------------------------------------------------- /img/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insideoutprojectbr/mulheres-palestrantes/HEAD/img/favicon-16x16.png -------------------------------------------------------------------------------- /img/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insideoutprojectbr/mulheres-palestrantes/HEAD/img/favicon-32x32.png -------------------------------------------------------------------------------- /img/placeholder-female.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insideoutprojectbr/mulheres-palestrantes/HEAD/img/placeholder-female.jpg -------------------------------------------------------------------------------- /fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insideoutprojectbr/mulheres-palestrantes/HEAD/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /fonts/cJZKeOuBrn4kERxqtaUH3ZBw1xU1rKptJj_0jans920.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insideoutprojectbr/mulheres-palestrantes/HEAD/fonts/cJZKeOuBrn4kERxqtaUH3ZBw1xU1rKptJj_0jans920.woff2 -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | # This file is for unifying the coding style for different editors and IDEs 2 | # http://EditorConfig.org 3 | 4 | root = true 5 | 6 | [*] 7 | charset = utf-8 8 | end_of_line = lf 9 | 10 | indent_style = space 11 | indent_size = 4 12 | 13 | trim_trailing_whitespace = true 14 | insert_final_newline = true 15 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "mulheres-palestrantes", 3 | "version": "1.0.0", 4 | "description": "Listagem de mulheres disponíveis para palestrar em eventos de tecnologia, design, empreendedorismo, entre outros. Se você deseja contribuir melhorando o layout ou incluindo você ou outra mulher na lista, basta enviar um pull request :D", 5 | "main": "app.js", 6 | "scripts": { 7 | "prestart": "npm install", 8 | "start": "http-server .", 9 | "test": "echo \"Error: no test specified\" && exit 1" 10 | }, 11 | "repository": { 12 | "type": "git", 13 | "url": "git+https://github.com/insideoutprojectbr/mulheres-palestrantes.git" 14 | }, 15 | "keywords": [ 16 | "mulheres", 17 | "palestrantes", 18 | "insideout", 19 | "eventos" 20 | ], 21 | "author": "", 22 | "license": "MIT", 23 | "bugs": { 24 | "url": "https://github.com/insideoutprojectbr/mulheres-palestrantes/issues" 25 | }, 26 | "homepage": "https://github.com/insideoutprojectbr/mulheres-palestrantes#readme", 27 | "devDependencies": { 28 | "http-server": "^0.11.1" 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Mulheres Palestrantes :woman: :speaker: 2 | 3 |

4 | 5 |

6 | 7 | Repositório responsável por listar mulheres disponíveis para realizar palestras em eventos sobre: 8 | 9 | * Tecnologia; 10 | * Web Design; 11 | * Programação; 12 | * Empreendorismo; 13 | * Entre outros temas relacionados a Tecnologia; 14 | 15 | Querem saber quem são elas?! Bastam acessar o site: **http://insideoutproject.xyz/mulheres-palestrantes/** 16 | 17 | ## Versão Longa: :raising_hand: 18 | 19 | Devido ao pequeno número de mulheres palestrando em eventos (em especial de tecnologia) aqui no Brasil, uma planilha foi criada a fim de dar mais visibilidade a essas mulheres e incentivar outras a começar a realizar palestras. 20 | 21 | Este projeto nasceu de uma tentativa de organizar os dados dessa planilha de forma mais visual, tornando-os de mais fácil acesso, reduzindo duplicidade e facilitando buscas. 22 | 23 | Ele foi utilizado no primeiro **JS4Girls Rio 2015** para ensino de Git, HTML, CSS e Javascript. 24 | 25 | Originalmente em **http://github.com/darlenedms/mulheres-palestrantes** 26 | 27 | 28 | ## Como Posso Contribuir com o Projeto?! :star2: 29 | 30 | Se você deseja contribuir melhorando o layout ou incluindo você ou outra mulher na lista, basta enviar um Pull Request. :) 31 | 32 | Para incluir mulheres na lista, basta adicionar uma entrada no arquivo **mulheres.json**. Os únicos campos obrigatórios são: 33 | 34 | * Nome 35 | * Email 36 | 37 | Existe uma explicação mais detalhada no arquivo **[CONTRIBUTING.md](./CONTRIBUTING.md)** 38 | 39 | Caso você encontre alguma dificuldade ou não tenha muito conhecimento em git, fique livre para abrir um issue pedindo a inclusão ou tirar dúvidas conosco sobre como fazer. :heart_eyes: 40 | 41 | 42 | ## Mas... não sei fazer Pull Request... O que faço?! :loudspeaker: 43 | 44 | Não tem problema! Bastam abrir uma Issue **[AQUI](https://github.com/darlenedms/mulheres-palestrantes/issues)** com as seguintes informações sua: 45 | 46 | * Nome 47 | * Interesses 48 | * Localização 49 | * Foto de Perfil 50 | * Linkedin 51 | * GitHub 52 | * Facebook 53 | * Twitter 54 | * Site 55 | 56 | Caso, não tenha algum item da lista, basta colocar: **Não Possuo**. Lembrando que, os únicos campos obrigatórios são: **Nome** e **E-mail**! 57 | 58 | E vòilá! Tão pronto, estaremos te incluindo no site! :heartpulse: 59 | 60 | ## Ferramentas e Recursos Utilizados: :fire: 61 | 62 | * [Gravatar](https://en.gravatar.com/site/implement/images/) 63 | 64 | * [Templates](http://beebole.com/pure/) 65 | 66 | * [jQuery para consumir o json](http://api.jquery.com/jQuery.getJSON/) 67 | 68 | * [Dados convertidos da planilha para json utilizando Mr Data Converter](https://shancarter.github.io/mr-data-converter/) 69 | 70 | * [URLs do Gravatar geradas seguindo os padrões definidos na documentação](https://br.gravatar.com/site/implement/images/) 71 | 72 | * [Bootstrap como framework de css](http://getbootstrap.com/) 73 | 74 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # Como contribuir 2 | 3 | 1. Fork este projeto - Clique em `Fork` 4 | 5 | 2. Crie uma nova branch para realizar suas alterações no repositório - Com o Git instalado, execute o comando abaixo no terminal. - [caso não tenha o Git, baixe aqui](https://git-scm.com/downloads) - 6 | ```sh 7 | git checkout -b nome-da-branch 8 | ``` 9 | 10 | 3. Inicie o projeto - Com Node instalado, rode o comando abaixo no terminal. - [caso não tenha o Node, baixe aqui](https://nodejs.org/en/) - 11 | ```sh 12 | $ npm start 13 | ``` 14 | 15 | 4. Adicione uma nova linha no arquivo `mulheres.json` com seus dados, conforme exemplo abaixo: 16 | 17 | ```json 18 | /* Exemplo de uma palestrante chamada Foo Bar */ 19 | 20 | /* Abaixo desse exemplo deixamos dicas para preenchimento dos campos: 21 | photo, redes sociais (linkedin, github, twitter, fb) e interests */ 22 | 23 | { 24 | "name": "Foo Bar", 25 | "interests": 26 | [ 27 | "UX Design", 28 | "Web Design", 29 | "Front-end", 30 | "Rails" 31 | ], 32 | "location": "São Paulo/SP", 33 | "photo": null, 34 | "email": "foobar@domain.com", 35 | "linkedin": "foobarname", 36 | "github": "foobarname", 37 | "twitter": "foobarname", 38 | "fb": "foo.bar" 39 | } 40 | ``` 41 | 42 | ## Dicas para preenchimento do arquivo `mulheres.json`: 43 | 44 | - **Como adicionar uma foto?** 45 | Para adicionar uma photo ao seu card, crie uma conta e faça upload do seu avatar no Gravatar - [acesse o site através desse link](https://en.gravatar.com/) - ou use a sua conta já existente. 46 | 47 | - **Como preencher os campos de redes sociais?** 48 | Em *linkedin*, *github*, *twitter* e *fb*, usar apenas o username da url da rede social. 49 | > Exemplo: 50 | https://www.facebook.com/foo.bar >> "foo.bar" 51 | https://br.linkedin.com/in/foob >> "foob" 52 | 53 | - **Como preencher o campo "interests"?** 54 | Evite adicionar muitas tags nesse campo. Dependendo da quantidade de caracteres cabem até 7 tags no card da página, mas o ideal seria usar *4* no *máximo*. 55 | ````JSON 56 | /* Exemplo */ 57 | { 58 | "interests": 59 | [ 60 | "UX Design", 61 | "Web Design", 62 | "Front-end", 63 | "Rails" 64 | ], 65 | } 66 | ```` 67 | 68 | - **Como preencher os campos que não tenho dados para adicionar?** 69 | Caso exista algum campo onde você não tenha um valor real para ser preenchido, ao mesmo pode ser adicionado o valor `null`. Veja o exemplo abaixo de uma palestrante que não possui conta no facebook e twitter: 70 | ```json 71 | { 72 | "twitter": null, 73 | "fb": null 74 | } 75 | ``` 76 | 77 | 5. Commit suas alterações - Execute no terminal: 78 | ```sh 79 | git commit -am 'Add Foo Bar' 80 | ``` 81 | 82 | 6. Suba suas alterações para o repositório remoto: 83 | ```sh 84 | git push origin nome-da-branch 85 | ``` 86 | 87 | 7. Envie um pull request para o repositório original. Após seu pull request ser aceito, seus dados estarão disponíveis no site 💜 88 | 89 | -------------------------------------------------------------------------------- /app.js: -------------------------------------------------------------------------------- 1 | //PURE.js template init 2 | var directive = { 3 | '.counter' : function() { 4 | return this.mulheres.length; 5 | }, 6 | 'article':{ 7 | 'mulher<-mulheres':{ 8 | '@data-twitter': 'mulher.twitter', 9 | 'h3': 'mulher.name', 10 | 11 | '.tags li':{ 12 | 'tag<-mulher.interests':{ 13 | '.': 'tag' 14 | } 15 | }, 16 | 17 | '.location': 'mulher.location', 18 | 'img.photo@alt': 'mulher.name', 19 | 'img.photo@src': function(){ 20 | return this.photo || generateGravatarUrl(this.email); 21 | }, 22 | '.fb a@href': 'https://facebook.com/#{mulher.fb}', 23 | '.fb@class': function(){ 24 | return this.fb ? "" : "hidden"; 25 | }, 26 | '.twitter a@href': 'https://twitter.com/#{mulher.twitter}', 27 | '.twitter @class': function(){ 28 | return this.twitter ? "" : "hidden"; 29 | }, 30 | '.github a@href': 'https://github.com/#{mulher.github}', 31 | '.github @class': function(){ 32 | return this.github ? "" : "hidden"; 33 | }, 34 | '.linkedin a@href': 'https://www.linkedin.com/in/#{mulher.linkedin}', 35 | '.linkedin @class': function(){ 36 | return this.linkedin ? "" : "hidden"; 37 | }, 38 | '.behance a@href': 'https://www.behance.net/#{mulher.behance}', 39 | '.behance @class': function(){ 40 | return this.behance ? "" : "hidden"; 41 | }, 42 | '.site a@href': '#{mulher.site}', 43 | '.site @class': function(){ 44 | return this.site ? "" : "hidden"; 45 | } 46 | } 47 | } 48 | }; 49 | 50 | $(function(){ 51 | $.get("mulheres.json", {crossDomain: true}, function(data) { 52 | $p('main').render(data, directive); 53 | enableSearch(); 54 | }); 55 | }); 56 | 57 | function enableSearch() { 58 | var $search = $('.search'), 59 | $cards = $('.card'), 60 | filter; 61 | 62 | $search.keyup(function(e) { 63 | filter = this.value; 64 | filterCards($cards, filter); 65 | }); 66 | $search.focus(); 67 | }; 68 | 69 | var filterCards = debounce(function($cards, filter) { 70 | var $filteredOutCards = $cards.find( 71 | 'h3:not(:Contains(' + filter + ')),' + 72 | 'p:not(:Contains(' + filter + ')),' + 73 | 'li:not(:Contains(' + filter + '))' 74 | ).parents('.card'); 75 | 76 | var $filteredCards = $cards.find( 77 | 'h3:Contains(' + filter + '),' + 78 | 'p:Contains(' + filter + '),' + 79 | 'li:Contains(' + filter + ')' 80 | ).parents('.card'); 81 | 82 | $filteredOutCards.hide(); 83 | $filteredCards.show(); 84 | 85 | updateTweetButton($filteredCards); 86 | }, 200); 87 | 88 | // Cria um Contains para que ele seja case-insensitive e ignore acentuação 89 | jQuery.expr[':'].Contains = function(element, i, arrFilter) { 90 | var textContent = removeAccents(element.textContent || ""), 91 | innerText = removeAccents(element.innerText || ""), 92 | filter = removeAccents(arrFilter[3] || ""); 93 | 94 | return (textContent || innerText).indexOf(filter) >= 0; 95 | }; 96 | 97 | function updateTweetButton($cards) { 98 | // Find twitter usernames 99 | var usernames = $cards.filter('[data-twitter]') 100 | .map(function() { 101 | return '@' + $(this).data('twitter'); 102 | }) 103 | .toArray(); 104 | 105 | // Remove previous button 106 | var $ct = $('#speakers-mention-tweet').hide(); 107 | var $button = $ct.find('.twitter-button'); 108 | 109 | // Create new button if found twitter usernames 110 | if (usernames.length >= 1) { 111 | $ct.show(); 112 | $button.empty(); 113 | 114 | twttr.widgets.createShareButton('/', $button.get(0), { 115 | text: usernames.join(' ') + ' Gostaria de convidá-las a palestrar no evento ...', 116 | lang: 'pt_BR', 117 | dnt: 'true' 118 | }); 119 | } 120 | } 121 | 122 | function debounce(func, wait, immediate) { 123 | var timeout; 124 | return function() { 125 | var context = this, args = arguments; 126 | var later = function() { 127 | timeout = null; 128 | if (!immediate) func.apply(context, args); 129 | }; 130 | var callNow = immediate && !timeout; 131 | clearTimeout(timeout); 132 | timeout = setTimeout(later, wait); 133 | if (callNow) func.apply(context, args); 134 | }; 135 | }; 136 | 137 | function removeAccents(text) { 138 | return text 139 | .replace(/&/g, '&') 140 | .replace(/á/g, 'a') 141 | .replace(/é/g, 'e') 142 | .replace(/í/g, 'i') 143 | .replace(/ó/g, 'o') 144 | .replace(/ú/g, 'u') 145 | .replace(/ç/g, 'c') 146 | .replace(/ã/g, 'a') 147 | .replace(/õ/g, 'o') 148 | .replace(/ç/g, 'c') 149 | .replace(/[áàãÁ]/g, 'a') 150 | .replace(/[éèêÉ]/g, 'e') 151 | .replace(/[íîÍ]/g, 'i') 152 | .replace(/[óòôõÓ]/g, 'o') 153 | .replace(/[úùûÚ]/g, 'u') 154 | .toLowerCase(); 155 | }; 156 | 157 | function generateGravatarUrl(email){ 158 | var hash = md5(email); 159 | var placeholderImagePath = "http://insideoutproject.xyz/mulheres-palestrantes/img/placeholder-female.jpg"; 160 | var imageURL = "https://secure.gravatar.com/avatar/" + hash + "?r=PG&d=" + placeholderImagePath; 161 | return email ? imageURL : placeholderImagePath; 162 | }; 163 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Mulheres Palestrantes 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | Ir para conteúdo principal (Alt + 1) 35 | 36 | 37 | Fork me on GitHub 38 | 39 | 40 |
41 |

Mulheres Palestrantes

42 |

Quero meu nome aqui! :)
Como posso fazer isso?

43 |
44 | 45 |
46 |
47 |

Procurando mulheres para palestrar em seu evento?

48 |

O Mulheres Palestrantes é uma lista de mulheres que falam sobre assuntos relacionados a programação, design, empreendedorismo e tecnologia num geral.

49 |
50 | 51 |

Hoje temos um total de mulheres cadastradas.

52 | 53 | 57 | 58 | 59 | 60 |
61 | 62 |

63 |

Área de interesse para palestras

64 | 67 |
68 |

69 | 77 |
78 |
79 |
80 | 81 | 84 | 85 | 86 | 87 | 88 | 89 | 107 | 115 | 116 | -------------------------------------------------------------------------------- /css/style.css: -------------------------------------------------------------------------------- 1 | * { 2 | box-sizing: border-box; 3 | margin: 0 auto; 4 | padding: 0 auto; 5 | font-family: 'Open Sans', sans-serif; 6 | } 7 | 8 | /* Classe oara acessibilidade */ 9 | .sr-only { 10 | position: absolute; 11 | width: 1px; 12 | height: 1px; 13 | padding: 0; 14 | margin: -1px; 15 | overflow: hidden; 16 | clip: rect(0,0,0,0); 17 | border: 0; 18 | } 19 | 20 | 21 | body { 22 | background: #f8f8f8; 23 | } 24 | 25 | header, footer { 26 | animation: 3s power-bg infinite alternate; 27 | background-color: #cc0066; 28 | color: #fff; 29 | } 30 | 31 | header { 32 | width: 100%; 33 | padding: 2rem 3rem; 34 | border-bottom: 4px solid #861028; 35 | } 36 | 37 | header h1 { 38 | text-shadow: 2px 2px #861028; 39 | } 40 | 41 | .logo-css u { 42 | color: #fff; 43 | text-decoration: none; 44 | text-shadow: 2px 2px 10px 2px #edb515; 45 | } 46 | 47 | .logo-css i { 48 | color: #edb515; 49 | } 50 | 51 | .logo-css, 52 | .logo-css u, 53 | .logo-css i { 54 | font-family: 'Codystar', cursive; 55 | } 56 | 57 | .contribute { 58 | font-size: 0.9em; 59 | color: #fff; 60 | font-weight: 700; 61 | text-decoration: none; 62 | transition: .3s all; 63 | } 64 | .contribute i { 65 | font-weight: normal; 66 | } 67 | 68 | .contribute:hover { 69 | color: #000; 70 | } 71 | 72 | .fork-me { 73 | position: absolute; 74 | top: 0; 75 | right: 0; 76 | border: 0; 77 | } 78 | 79 | .main { 80 | margin: 1rem; 81 | text-align: center; 82 | } 83 | 84 | .headline { 85 | margin: 3rem 2rem; 86 | } 87 | 88 | .headline p { 89 | font-size: 2rem; 90 | color: #333; 91 | } 92 | 93 | .headline h2 { 94 | color: #444; 95 | } 96 | 97 | .search-form { 98 | margin: 2rem 2rem; 99 | } 100 | 101 | .search { 102 | width: 100%; 103 | padding: 0.8rem 1rem; 104 | font-size: 0.9rem; 105 | color: #555; 106 | border: 1px solid #ddd; 107 | border-radius: 0.3rem; 108 | box-shadow: inset 0 1px 1px rgba(0,0,0,.075); 109 | } 110 | 111 | .card { 112 | background: #fff; 113 | border: solid 1px #eee; 114 | border-radius: .3rem; 115 | box-shadow: 0 0 10px rgba(0, 0, 0, .1); 116 | display: inline-block; 117 | margin: 1.5rem 1rem; 118 | padding: 1.5rem 1rem; 119 | width: 270px; 120 | height: 370px; 121 | vertical-align: top; 122 | position: relative; 123 | transition: .3s all; 124 | } 125 | 126 | .card:hover { 127 | border-radius: 100px 100px .3rem .3rem; 128 | animation: none !important; 129 | background: #ffdfef; 130 | color: #cc0066; 131 | } 132 | 133 | .card:hover img { 134 | transform: scale(1.3) translateY(-15px); 135 | box-shadow: 0 0 20px 3px #edb515; 136 | } 137 | 138 | .card:nth-of-type(odd) { 139 | animation: 2s power-scale-odd infinite alternate; 140 | } 141 | 142 | .card:nth-of-type(even) { 143 | animation: 2s power-scale-even infinite alternate; 144 | } 145 | 146 | .card:hover ul.tags li { 147 | background: #cc0066; 148 | color: #fff; 149 | } 150 | 151 | .card h1 { 152 | color: #cc0066; 153 | overflow: hidden; 154 | margin: 0.5rem 0; 155 | } 156 | 157 | .card .location { 158 | color: #666; 159 | } 160 | 161 | .card .photo { 162 | height: 80px; 163 | width: 80px; 164 | border-radius: 50%; 165 | transition: .5s all; 166 | display: block; 167 | } 168 | 169 | footer { 170 | text-align: right; 171 | width: 100%; 172 | bottom: 0px; 173 | padding: 0.8rem 1.3rem; 174 | } 175 | 176 | footer img { 177 | width: 20px; 178 | } 179 | 180 | .after-tags { 181 | position: absolute; 182 | bottom: 20px; 183 | width: 235px; 184 | background: #fff; 185 | padding: 10px 0; 186 | } 187 | 188 | .after-tags::after { 189 | background: #edb515; 190 | content: ''; 191 | width: 100%; 192 | height: 5px; 193 | display: block; 194 | position: absolute; 195 | top: 0; 196 | } 197 | 198 | .social-media img { 199 | width: 29px; 200 | display: inline; 201 | } 202 | 203 | ul.social-media { 204 | padding: 0.5rem 0 0; 205 | list-style-type: none; 206 | } 207 | 208 | ul.social-media li { 209 | display: inline; 210 | height: 29px; 211 | margin: 0 2px; 212 | } 213 | 214 | ul.social-media li a { 215 | color: #333; 216 | } 217 | 218 | ul.social-media i { 219 | transition: .3s all; 220 | } 221 | 222 | ul.social-media i:hover { 223 | color: #cc0066; 224 | transform: scale(1.2); 225 | } 226 | 227 | ul.social-media i.fa-twitter-square:hover { 228 | color: #006dbf; 229 | text-shadow: 0 1px #fff, 0 2px 10px #006dbf; 230 | } 231 | 232 | ul.social-media i.fa-linkedin-square:hover { 233 | color: #0077b5; 234 | text-shadow: 0 1px #fff, 0 2px 10px #0077b5; 235 | } 236 | 237 | ul.social-media i.fa-github-square:hover { 238 | color: #732a82; 239 | text-shadow: 0 1px #fff, 0 2px 10px #732a82; 240 | } 241 | 242 | ul.social-media i.fa-facebook-square:hover { 243 | color: #3b5998; 244 | text-shadow: 0 1px #fff, 0 2px 10px #3b5998; 245 | } 246 | 247 | ul.social-media i.fa-behance-square:hover { 248 | color: #0057ff; 249 | text-shadow: 0 1px #fff, 0 2px 10px #0057ff; 250 | } 251 | 252 | ul.social-media li.hidden { 253 | visibility: hidden; 254 | display: none; 255 | } 256 | 257 | ul.tags { 258 | max-height: 120px; 259 | list-style-type: none; 260 | padding: 0 0 10px; 261 | margin: 0.5rem; 262 | overflow-y: auto; 263 | /*Estilo de scrollbar para Firefox*/ 264 | scrollbar-width: thin; 265 | scrollbar-color: #cc0066 #fff; 266 | } 267 | 268 | ul.tags::-webkit-scrollbar { 269 | width: 5px; 270 | } 271 | ul.tags::-webkit-scrollbar-track { 272 | background: #EBDCE1; 273 | border-left: 0 solid #fff; 274 | border-right: 5px solid #fff; 275 | } 276 | ul.tags::-webkit-scrollbar-thumb { 277 | background: #cc0066; 278 | border-left: 0 solid #fff; 279 | border-right: 5px solid transparent; 280 | } 281 | 282 | ul.tags li { 283 | display: inline-block; 284 | background-color: #eee; 285 | border-radius: 4px; 286 | color: #444; 287 | padding: 0.2rem 0.5rem; 288 | margin: 0.2rem; 289 | font-size: 0.8rem; 290 | transition: .3s all; 291 | } 292 | 293 | .cidade { 294 | font-size: 0.8rem; 295 | } 296 | 297 | @media only screen and (max-device-width: 480px) { 298 | header { 299 | padding: 2rem; 300 | } 301 | 302 | .contribute { 303 | font-size: 1.1rem; 304 | } 305 | 306 | .main { 307 | margin: 0 auto; 308 | } 309 | 310 | .headline { 311 | margin: 2rem; 312 | text-align: left; 313 | } 314 | 315 | .headline p { 316 | font-size: 1.8rem; 317 | } 318 | 319 | .headline h2 { 320 | margin-top: 1.3rem; 321 | } 322 | } 323 | 324 | @media only screen and (max-device-width: 360px) { 325 | header h1 { 326 | margin-bottom: 0.5rem; 327 | } 328 | } 329 | 330 | @keyframes power-bg { 331 | 0% { 332 | filter: brightness(1); 333 | } 334 | 100% { 335 | filter: brightness(3); 336 | } 337 | } 338 | 339 | @keyframes power-scale-odd { 340 | 0% { 341 | transform: scale(1) 342 | } 343 | 100% { 344 | transform: scale(1.05) 345 | } 346 | } 347 | 348 | @keyframes power-scale-even { 349 | 0% { 350 | transform: scale(1.05) 351 | } 352 | 100% { 353 | transform: scale(1) 354 | } 355 | } -------------------------------------------------------------------------------- /css/font-awesome.min.css: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome 4.5.0 by @davegandy - http://fontawesome.io - @fontawesome 3 | * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) 4 | */@font-face{font-family:'FontAwesome';src:url('../fonts/fontawesome-webfont.eot?v=4.5.0');src:url('../fonts/fontawesome-webfont.eot?#iefix&v=4.5.0') format('embedded-opentype'),url('../fonts/fontawesome-webfont.woff2?v=4.5.0') format('woff2'),url('../fonts/fontawesome-webfont.woff?v=4.5.0') format('woff'),url('../fonts/fontawesome-webfont.ttf?v=4.5.0') format('truetype'),url('../fonts/fontawesome-webfont.svg?v=4.5.0#fontawesomeregular') format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1);-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2);-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3);-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-y-combinator-square:before,.fa-yc-square:before,.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-yc:before,.fa-y-combinator:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery-full:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-stop-o:before,.fa-hand-paper-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-tv:before,.fa-television:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}.fa-reddit-alien:before{content:"\f281"}.fa-edge:before{content:"\f282"}.fa-credit-card-alt:before{content:"\f283"}.fa-codiepie:before{content:"\f284"}.fa-modx:before{content:"\f285"}.fa-fort-awesome:before{content:"\f286"}.fa-usb:before{content:"\f287"}.fa-product-hunt:before{content:"\f288"}.fa-mixcloud:before{content:"\f289"}.fa-scribd:before{content:"\f28a"}.fa-pause-circle:before{content:"\f28b"}.fa-pause-circle-o:before{content:"\f28c"}.fa-stop-circle:before{content:"\f28d"}.fa-stop-circle-o:before{content:"\f28e"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-hashtag:before{content:"\f292"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-percent:before{content:"\f295"} -------------------------------------------------------------------------------- /mulheres.json: -------------------------------------------------------------------------------- 1 | { 2 | "mulheres": [ 3 | {"name":"Adriana Antunes", "interests":["Comunicação", "produção audiovisual", "estudos de gênero"], "location": "Caxias do Sul/RS", "photo":"https://68.media.tumblr.com/59a0dd5a82076d28be2792668c2820b7/tumblr_n8g0ld4jND1tfojqwo1_1280.jpg","email":null, "linkedin": "adriana-antunes-9a3405102","github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 4 | {"name":"Adriana da Rosa Amaral","interests":["Comunicação e cibercultura", "teorias da ficção-científica e imaginário tecnológico", "subculturas", "etnografia virtual", "metodologias de pesquisa online" , "padrões de consumo na web", "cenas", "fandoms", "gêneros", "plataformas de música online", "cultura pop"],"location": "Porto Alegre/RS","photo":"https://pbs.twimg.com/profile_images/1049498985034129409/w7KD7Hop_400x400.jpg","email":"adriana.amaral08@gmail.com", "linkedin":"adriana-amaral-1a3b388" ,"github":null,"twitter":"adriaramaral","fb":null, "behance": null, "site": null}, 5 | {"name":"Alda Rocha","interests":["UX Design", "Front-end", "Rails", "Web Design", "Design thinking", "Leadership", "Creative process", "Empreendedorismo"],"location":"São Paulo/SP","photo":null,"email":"mj.coffeeholick@gmail.com","linkedin":"mjcoffeeholick","github":"mjcoffeeholick","twitter":"mjcoffeeholick","fb":"mjcoffeholick", "behance": null, "site": null}, 6 | {"name":"Alessandra Guglieri", "interests":["Gestão de Projetos", "Cocriação"], "location": "Porto Alegre/RS", "photo":"https://scontent-gig2-1.cdninstagram.com/vp/7058d53f0160d740a5e976bda8216b59/5C6F2FAC/t51.2885-19/s320x320/30602786_434601060316119_1625828443625095168_n.jpg","email":null, "linkedin": "alessandraguglieri","github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 7 | {"name":"Alice Coutinho","interests":["Publicidade"],"location":"São Paulo/SP","photo":null,"email":null,"linkedin":null,"github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 8 | {"name":"Aline de Campos", "interests":["Desenvolvimento web", "UX", "Métodos Ágeis", "Data Science", "Comunicação e Informação", "Educação", "Ensino e Pesquisa"], "location": "Porto Alegre/RS", "photo":"http://www.alinedecampos.org/AlinedeCampos.jpg","email":"alinedecampos@gmail.com", "linkedin": "alinedecampos","github":null,"twitter":"alinedecampos","fb":"alinedecampos", "behance": null, "site": "http://alinedecampos.org"}, 9 | {"name":"Aline M. C. Freitas", "interests":["Social Media", "Marketing digital", "Jornalismo", "Planejamento", "Comportamento do consumidor", "Conteúdo"], "location": "Belém/PA", "photo":"https://media.licdn.com/mpr/mpr/shrinknp_200_200/AAEAAQAAAAAAAAYFAAAAJDVkMzNjY2U2LTNjMGQtNDE5NC1hNDgxLTBmM2RhY2MyYjBiNQ.jpg","email":null, "linkedin": "alinemcfreitas","github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 10 | {"name":"Aline Pêgas", "interests":["DevOps", "AWS", "Linux", "Observability"], "location":"Curitiba/PR", "photo":"https://alinepegas.com.br/profile.jpg", "email":"contato@alinepegas.com.br", "linkedin":"alinepegas", "github":"alinepegas", "twitter":"alinepegas", "fb":null}, 11 | {"name":"Alline Jajah", "interests":["Comunicação", "Networking", "Marketing", "Inovação", "Empreendedorismo", "Mídias Sociais"], "location": "Goiânia/GO", "photo":"https://s-media-cache-ak0.pinimg.com/avatars/allinejajah-1418015868_280.jpg","email":null, "linkedin": "allinejajah","github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 12 | {"name":"Alline Oliveira","interests":["Google", "Cloud", "Java", "App Engine", "Lean", "Startups", "Machismo", "Diversidade"],"location":["São Paulo/SP, Rio de Janeiro/RJ, Brasília/DF e Goiânia/GO"],"photo":"https://pbs.twimg.com/profile_images/1443334797/251734_10150275340450236_537675235_9378264_3406431_n_400x400.jpg","email":"alline.oliveira@gmail.com","linkedin":"allineo","github":"allineo","twitter":"allineo","fb":"alline.oliveira", "behance": null, "site": "http://machismoemti.wordpress.com"}, 13 | {"name":"Alynne Cid", "interests":["Social Media", "SAC 2.0", "Relacionamento"], "location": "Belém/PA", "photo":"https://media.licdn.com/mpr/mpr/shrinknp_200_200/AAEAAQAAAAAAAAcsAAAAJDc5ODNjOTU3LWE5MjItNGZjNi04ZjJkLTYwODJlYjU3OWYyNw.jpg","email":null, "linkedin": "alynnecid","github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 14 | {"name":"Amanda Santana","interests":["Desenvolvimento Front e Back-end", "CakePHP3", "Programação", "Rails4", "Laravel5"],"location":"Aracaju/SE","photo":null,"email":"amandasantanati@gmail.com","linkedin":null,"github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 15 | {"name":"Amanda Silva Vieira", "interests":["UX Design", "Front-end", "JavaScript", "Rails", "Agile", "Software Development"], "location":"Porto Alegre/RS", "photo":"https://s.gravatar.com/avatar/ff491a846bf9e5f3f5d081787ff54ae2?s=200", "email":"amandasv.pm@gmail.com", "linkedin":"amandasilvavieira", "github":"amandasv", "fb":"amandasilvavieira" }, 16 | {"name":"Amanda Vilela","interests":["Front-end", "UI Design", "Web Design"],"location":"Sorocaba/SP","photo":null,"email":"amandavilelaalmeida@gmail.com","linkedin":"amanda-vilela","github":"amandavilela","twitter":null,"fb":null, "behance": null, "site": "http://amandavilela.com/"}, 17 | {"name":"Amanda Zacarias Marinho","interests":["Economia Colaborativa", "UX", "HCI", "Desenho de Serviços", "Mulheres na Tecnologia"],"location":"Belo Horizonte/MG","photo":"https://media.licdn.com/mpr/mpr/shrinknp_400_400/AAEAAQAAAAAAAAigAAAAJDc4Y2E4ZjUyLTVhYzAtNDgxNi05YTk0LWZhY2M5OWQ1Y2MzNA.jpg","email":"amanda.zacarias@gmail.com","linkedin":"amandazma","github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 18 | {"name":"Amélia Pessoa","interests":["Android", "Kotlin", "Data Science", "Big Data", "NoSQL", "Python", "Mulheres na Tecnologia"],"location":"Recife/PE","photo":"https://avatars1.githubusercontent.com/u/9038852?v=3&s=150","email":"m.amelia.pessoa@gmail.com","linkedin":"amelia-pessoa","github":"AmeliaPessoa","twitter":null,"fb":null, "behance": null, "site": null}, 19 | {"name":"Ana Antar","interests":["Live Games", "Teatro", "Gestão de Projetos", "Game Design"],"location":"Salvador/BA","photo":"https://pbs.twimg.com/profile_images/1042096319211470849/nM8ypn83_400x400.jpg","email": null,"linkedin":"anaantar","github":null,"twitter":"anaantar","fb": "anaantar.aa", "behance": null, "site": "https://www.eragamestudio.com"}, 20 | {"name":"Ana Barcellos","interests":["Analista de TI", "Educadora", "Blogueira", "Evangelizadora Joomla"],"location":"Brasília/DF","photo":"https://avatars1.githubusercontent.com/u/8314551?v=3&s=460","email":null,"linkedin":null,"github":"anabarcellos","twitter":"AnimandoC","fb":"aninha.barcellos", "behance": null, "site": null}, 21 | {"name":"Ana Carolina Alves Rodrigues","interests":["Desenvolvimento Back-end", "Mulheres na Computação", "Agile", "Startups"],"location":"Florianópolis/SC","photo":null,"email":"alvesrod15@gmail.com","linkedin":"anacarodrigues","github":"anacaet","twitter":"anacaet","fb":null, "behance": null, "site": null}, 22 | {"name":"Ana Clarissa", "interests":["Gestão de Conteúdo", "Métricas", "Marketing Digital"], "location": "Manaus/AM", "photo":"https://media.licdn.com/mpr/mpr/shrinknp_200_200/AAEAAQAAAAAAAAMDAAAAJDRiZDJjMDczLWE5MWMtNGU0Yi04ZTc4LTk5NjU2M2VmNTlmNQ.jpg","email":null, "linkedin": "aclarissarp","github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 23 | {"name":"Ana Del Mar", "interests":["Planejamento", "Pesquisa"], "location": "São Paulo/SP", "photo":"https://cdn-images-1.medium.com/max/1200/0*pIHHOU-J17PpZDyH.jpg","email":null, "linkedin": "anadelmar","github":null,"twitter":null,"fb":null, "behance": null, "site": "https://medium.com/@anadelmar"}, 24 | {"name":"Ana Fontes","interests":["Empreendedorismo", "Marketing Digital", "Negócios"],"location":"São Paulo/SP","photo":"https://media-exp2.licdn.com/mpr/mpr/shrinknp_200_200/AAIAAgDGAAAAAQAAAAAAAAmTAAAAJDY4MGJhMGI5LTBhNmEtNDU4Yi04ZWVlLWE1ZjFhNzdlODNmZg.jpg","email":null,"linkedin":"anafontesbr","github":null,"twitter":null,"fb":null, "behance": null, "site": "http://www.rme.net.br/"}, 25 | {"name":"Ana Julia Ghirello", "interests":["Empreendedorismo", "Desenvolvimento de Produto", "Design", "Mentoria"], "location": "Rio de Janeiro/RJ", "photo":"https://media.licdn.com/mpr/mpr/shrinknp_200_200/AAEAAQAAAAAAAAhkAAAAJDc3MjI1MDk3LWFiMDctNDNlYi1iYmJhLTEwYjA3NTBkNGVmOA.jpg","email":null, "linkedin": "anajuliaghirello","github":null,"twitter":null,"fb":null, "behance": null, "site": "https://medium.com/@anajuliag"}, 26 | {"name":"Ana Luíza Avellar","interests":["Monetização", "Growth", "Análise de Negócios", "Planejamento Estratégico", "Gestão de Projetos"],"location":"Recife/PE","photo":"https://media.licdn.com/mpr/mpr/shrinknp_200_200/AAEAAQAAAAAAAAgUAAAAJGI2MjVlZjQwLTQzMzAtNDE3Zi1hZGQ1LWRmZGI5NmEzNzE1NA.jpg","email":null,"linkedin":"avelar","github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 27 | {"name":"Ana Luiza Portello Bastos","interests":["JavaScript", "Programação Funcional", "GraphQL", "ReactJS"],"location":"São Paulo/SP","photo":"https://avatars2.githubusercontent.com/u/10088900?v=3&s=460","email":"hello@anabastos.me","linkedin":"anabastos8","github":"anabastos","twitter":"naluhh","fb":null, "behance": null, "site": "https://anabastos.me/"}, 28 | {"name":"Ana Paula Coelho Barbosa", "interests":["marketing e comunicação digital", "economia criativa", "economia colaborativa", "hackschooling", "movimento maker", "design thinking aplicado a planejamento de comunicação"], "location": "Ilhabela/SP", "photo":"https://media.licdn.com/mpr/mpr/shrinknp_400_400/AAEAAQAAAAAAAAi8AAAAJGM4ZDM3NDk0LTcxNmEtNDBjYy1hODFlLWQ0Yzg0ZmViMjUxMA.jpg","email":null, "linkedin": "anapaulacoelho","github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 29 | {"name":"Ana Paula da Silva Mendes", "interests":["Python", "Arduino", "Mulheres na Tecnologia e Ciência", "Lógica de Programação"], "location": "Teresina/PI", "photo":"https://scontent.fsdu5-1.fna.fbcdn.net/v/t1.0-1/p320x320/27858278_2471054366452191_7904831545054840493_n.jpg?oh=f5d6cfd09accab50a26105dfb4029218&oe=5B16760B","email":"anapaula.ds.mendes@gmail.com", "linkedin": "ana-paula-da-silva-mendes-22b55088","github":"anapauladsmendes","twitter":"_anapaulamendes","fb":"anapauladsmendes", "behance": null, "site": null}, 30 | {"name":"Ana Paula de Luca", "interests":["unix", "infraestrutura"], "location": "São Paulo/SP", "photo":null,"email":null, "linkedin":null,"github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 31 | {"name":"Ana Paula Gaspar","interests":["Edutech", "Design"],"location":"São Paulo/SP","photo":null,"email":null,"linkedin":null,"github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 32 | {"name":"Ana Paula Gomes","interests":["Android", "Python", "Mineração/Análise de dados", "Grafos", "Comunidades", "Mulheres na Computação"],"location":"Belo Horizonte/MG","photo":null,"email":"apgomes88@gmail.com","linkedin":"anapaulagomess","github":null,"twitter":"AnaPaulaGomess","fb":null, "behance": null, "site": null}, 33 | {"name":"Ana Paula Marques","interests":["Direito digital", "negócios digitais"],"location":"Sobral/CE","photo":null,"email":null,"linkedin":null,"github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 34 | {"name":"Ana Paula Vargas Maia", "interests":["Varejo Digital", "Atendimento ao Cliente", "SAC 2.0", "Projetos Digitais", "Inovação Social", "Feminismo", "Gestão de Equipes", "Branding Digital"], "location": "Salvador/BA", "photo":"https://media.licdn.com/mpr/mpr/shrinknp_200_200/AAIAAgDGAAAAAQAAAAAAAAxkAAAAJGJmYTRmMzUzLWYzYjYtNDQ2ZS04MWM3LTAxMjIxZTVhMGJlOA.jpg","email":null, "linkedin": "anapaulavargasmaia","github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 35 | {"name":"Ana Raquel Calháu Pereira","interests":["Empreendedorismo", "Marketing Digital", "Criação de conteúdo", "Pitch Training", "Financiamento Coletivo"],"location":"Itajubá/MG","photo":"https://avatars2.githubusercontent.com/u/5718645?v=3&u=12ea19fe06101f74e07fbb6c67fdfd0c89ee6b55&s=140","email":"anaraquelcalhau@gmail.com","linkedin":"anaraquelcp","github":null,"twitter":"kell_cp","fb":"anaraquel.calhau", "behance": null, "site": null}, 36 | {"name":"Ana Ribeiro","interests":["Computação em Nuvem", "Sistemas Distribuídos", "Back-End"],"location":"Campina Grande/PB","photo":null,"email":"aninhacostaribeiro@gmail.com","linkedin":null,"github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 37 | {"name":"Ana Rute Mendes","interests":["Startups", "Front-end", "Outreachy program", "Software livre"],"location":"São Paulo e Campinas/SP","photo":null,"email":"anarute@mupi.me","linkedin":"anarute","github":"anarute","twitter":"ana_rute","fb":null, "behance": null, "site": "http://anarute.com"}, 38 | {"name":"Ana Schwendler","interests":["Python", "Machine Learning", "Data Science", "Open Source", "Ruby", "Rails", "Front-end", "Software Development"],"location":"Porto Alegre/RS","photo":"https://pbs.twimg.com/profile_images/776225219795116032/I8PSmdIN.jpg","email":"schwendler@gmail.com","linkedin":null,"github":"anaschwendler","twitter":"anaschwendler","fb":"schwendler", "behance": null, "site": "http://anaschwendler.com"}, 39 | {"name":"Ananda Carvalho","interests":["Empreendedorismo", "RH", "Treinamento e consultoria empresarial", "Desenvolvimento de equipes", "Modelagem de negócio", "Organização de fluxos e processos", "Pesquisas empresariais e organizacionais"],"location":"Manaus/AM","photo":null,"email":"trainingsolucoes@gmail.com","linkedin":null,"github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 40 | {"name":"Andrea Barberà", "interests":["Mobile Advertising", "Diversidade", "Inclusão", "LGBT Rights"], "location": "São Paulo/SP", "photo":"https://pbs.twimg.com/profile_images/899684222146822144/jjqPXEDO_400x400.jpg","email":null, "linkedin": "andrea-barberà-09315933","github":null,"twitter":"andreabarberaa","fb":null, "behance": null, "site": null}, 41 | {"name":"Andrea Siqueira", "interests":["Propaganda"], "location": "São Paulo/SP", "photo":"https://media.licdn.com/mpr/mpr/shrinknp_200_200/AAEAAQAAAAAAAAgXAAAAJGU1YmVlMjZmLWI4N2UtNGVlNi1iYzlhLWUyMjQ0YTA0YzI3ZQ.jpg","email":null, "linkedin": "andreasiqueira","github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 42 | {"name":"Andrea Schostack", "interests":["Desenho de Moda", "Comidas Orgânicas"], "location": "São Paulo/SP", "photo":"https://pbs.twimg.com/profile_images/729942607430815744/qvDU2DKf.jpg","email":null, "linkedin": null,"github":null,"twitter":"andreaschostak","fb":null, "behance": null, "site": "http://www.andreaschostak.com"}, 43 | {"name":"Andréa Zambrana","interests":["Front-end", "Comunidade", "Acessibilidade"],"location":"São Paulo/SP","photo":"https://avatars0.githubusercontent.com/u/400922?v=3&s=466","email":"zambrana.akf@gmail.com","linkedin":"akfzambrana","github":"akfzambrana","twitter":"akfzambrana","fb":"akfzambrana", "behance": null, "site": null}, 44 | {"name":"Andressa Chiara","interests":["Product Management", "Agile", "Scrum", "Lean"],"location":"Rio de Janeiro/RJ","photo":null,"email":"andressa@gmail.com","linkedin":"andressachiara","github":null,"twitter":"andressachiara","fb":"andressa.chiara.5", "behance": null, "site": null}, 45 | {"name":"Andressa Sivolella","interests":["Machine Learning", "Python", "Javascript", "Análise de Dados", "Visualização de Dados", "R", "Agile Analytics"],"location":"Rio de Janeiro/RJ e
São Paulo/SP","photo":"https://avatars0.githubusercontent.com/u/272868?v=3&s=200","email":"andressasivolella@gmail.com","linkedin":"andressa-sivolella-35b4bb49","github":"andressa","twitter":"asivolella","fb":"andressa.sivolella", "site": "https://medium.com/@andressasivolella"}, 46 | {"name":"Andreza Leite","interests":["Empreendedorismo", "BigData", "Comunidades", "Mulheres na Computação"],"location":"Recife/PE","photo":null,"email":"andreza.lba@gmail.com","linkedin":"andrezaleite","github":"andrezaleite","twitter":"andreza_paju","fb":"andreza.leite1", "behance": null, "site": null}, 47 | {"name":"Anielle Guedes","interests":["Impressora 3D", "negócios sociais"],"location":"São Paulo/SP","photo":null,"email":null,"linkedin":null,"github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 48 | {"name":"Anna Cruz","interests":["Ruby", "Rails"],"location":"Rio de Janeiro/RJ e São Paulo/SP","photo":null,"email":"anna.cruz@gmail.com","linkedin":null,"github":"annacruz","twitter":null,"fb":"annayuicruz", "behance": null, "site": null}, 49 | {"name":"Annelise Gripp","interests":["Coaching", "Agilidade", "Agile Coach", "Liderança", "Facilitação"],"location":"Rio de Janeiro/RJ","photo":null,"email":"annegripp.ag@gmail.com","linkedin":null,"github":null,"twitter":"AnneliseGripp","fb":"annelise.gripp", "behance": null, "site": null}, 50 | {"name":"Anyssa Ferreira", "interests":["WordPress", "Web Design", "Interatividade"], "location": "São Paulo/SP", "photo":"http://www.anyssa.com.br/wp-content/uploads/2016/02/anyssaferreira-296x300.jpg","email":"anyssa@hastedesign.com.br", "linkedin": "anyssaferreira","github":"anyssa","twitter":"anyssaferreira","fb":"anyssaferreira", "behance": null, "site":"http://hastedesign.com.br"}, 51 | {"name":"Ariadne Pinheiro","interests":["Evangelizadora Joomla", "Web engineer", "Consultora em FOSS"],"location":"Rio de Janeiro/RJ","photo":null,"email":"ariadne.pinheiro@gmail.com","linkedin":"ariadnepinheiro","github":"ariadnepinheiro","twitter":"ariadnepinheiro","fb":"ariadne.pinheiro.duvessa", "behance": null, "site": null}, 52 | {"name":"Ariane Parra","interests":["Desenvolvimento e participação das mulheres no mercado de games (impacto nacional e mundial)"],"location":"São Paulo/SP","photo":null,"email":"ariane@womenupgames.com","linkedin":null,"github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 53 | {"name":"Ariane Feijó", "interests":["Inbound PR","Personas","Relações Públicas Digitais","Inbound Marketing"], "location": "Porto Alegre/RS", "photo":"https://media.licdn.com/mpr/mpr/shrinknp_200_200/AAEAAQAAAAAAAAm0AAAAJDVlYjAxMDI5LWNjMTgtNGQxMy1hNjZkLWEyMTY0YWIyNDVkZA.jpg","email":null, "linkedin": "arianefeijo","github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 54 | {"name":"Ariane Izac","interests":["Testes de Software", "Automação", "Qualidade de software"],"location":"Campinas/SP","photo":null,"email":"afizac@gmail.com","linkedin":"ariane-izac-b9a6531b","github":null,"twitter" :"arianizac","fb":null, "behance": null, "site": null}, 55 | {"name":"Ariela Ranielly de Paula Silveira", "interests":["Varejo de moda","Visual Merchandasing","Criatividade e inovação","Educação"], "location": "São Paulo/SP", "photo":"https://media.licdn.com/mpr/mpr/shrinknp_200_200/p/7/000/227/0d9/33342fd.jpg","email":null, "linkedin": "arielaranielly","github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 56 | {"name":"Augusta Guta Orofino","interests":["Canvas"],"location":"São Paulo/SP","photo":null,"email":null,"linkedin":null,"github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 57 | {"name":"Bárbara Barbosa","interests":["Inteligência Artificial", "Mineração de dados", "Rails", "R", "Machine Learning"],"location":"São Paulo/SP","photo":"https://avatars0.githubusercontent.com/u/763533?v=3&s=100","email":"barbarab.claudino@gmail.com","linkedin":"bahbbc","github":"bahbbc","twitter":"bahbbc","fb":"barbara.barbosa.142", "behance": null, "site": null}, 58 | {"name":"Bárbara Cabral","interests":["Testes de Software", "Lean", "Agile", "Rails", "Ruby", "Cucumber"],"location":"Florianópolis/SC","email":"barbaracabral@gmail.com","linkedin":"barbaracabral","github":"barbaracabral","twitter":"barbarapcabral","fb":"barbarapalmacabral", "behance": null, "site": "http://barbaracabral.wordpress.com"}, 59 | {"name":"Bárbara Dariano Silva Suzuki","interests":["UX", "Engenharia de Software", "Eletrônica", "Gestão de Projetos"],"location":"São Paulo/SP","photo":null,"email":"barbaradariano@gmail.com","linkedin":null,"github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 60 | {"name":"Barbara Jacinto", "interests":["Games","Tecnologia","Web","Conteúdo","Rádio e TV","Edição de Vídeos"], "location": "São Paulo/SP", "photo":"https://yt3.ggpht.com/-3cw6L_Ape_s/AAAAAAAAAAI/AAAAAAAAAAA/LIuzPU-z9C0/s900-c-k-no-mo-rj-c0xffffff/photo.jpg","email":null, "linkedin": "barbara-jacinto-gonçalves-da-silva-09a34938","github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 61 | {"name": "Betina Costa","interests": ["Python","Data Science","Machine Learning","Sistemas de Recomendação","Web","Justiça Social","Negritude"],"location": "Porto Alegre/RS","photo": "http://bit.ly/2yZ0DkT","email": "bmcosta13@gmail.com","linkedin": "betina-costa-052612a3","github": "betinacosta","twitter": "ngasonicunicorn","fb": null,"site": "https://medium.com/@bmcosta13/"}, 62 | {"name":"Bianca Brancaleone","interests":["UX Design", "Mulheres na Tecnologia"],"location":"Sorocaba/SP","photo":"https://pbs.twimg.com/profile_images/846441376367759360/HZdoLbi9.jpg","email":"contato.bianca@gmail.com","linkedin":"bianca-brancaleone-4328558","twitter":"biab","fb":"bianca.brancaleone", "site": "https://medium.com/@biab"}, 63 | {"name":"Bianca Rosa","interests":["Golang", "Python", "Data Science", "Leadership"],"location":"Rio de Janeiro/RJ","photo":"https://en.gravatar.com/userimage/29402383/63ddf8a769ed56c72f36a35c85b5d337.jpeg","email":"me@biancarosa.com.br","linkedin":"brosa","github":"biancarosa","twitter":"__biancarosa","fb":"biancarosa92", "behance": null, "site": null}, 64 | {"name":"Bianca Marques","interests":["Angular", "JS", "Fullstack Development", "Segurança em Aplicações Web"],"location":"Salvador/BA","photo":"https://avatars2.githubusercontent.com/u/17528956?s=400&v=4","email":"bianca.marques@outlook.com","linkedin":"bianca-marques-985aa8b8","github":"biancamrqs","twitter":"biancamrqs","fb": "bianca.marques.589100", "behance": null, "site": null}, 65 | {"name":"Cah Felix","interests":["Front-end", "React", "Redux", "Wordpress", "Javascript"],"location":"São Paulo/SP","photo":"https://en.gravatar.com/userimage/11710230/5debfa9b1fb78885f4e8df4915cb425f.jpeg","email":"camillavirtual@gmail.com","linkedin":"cahfelix","github":"cahfelix","twitter":null,"fb":"cahfelixweb", "behance": null, "site": "http://cahfelix.com.br"}, 66 | {"name":"Camila Achutti","interests":["Empreendedorismo"],"location":"São Paulo/SP","photo":"https://avatars1.githubusercontent.com/u/2078347?s=460&v=4","email":null,"linkedin":"camilaachutti","github":"camilaachutti","twitter":"camilaachutti","fb":"camilaachutti", "behance": null, "site": "https://mulheresnacomputacao.com"}, 67 | {"name":"Camila Campos","interests":["Rails", "Ruby", "Back-end"],"location":"São Paulo/SP","photo":"https://avatars0.githubusercontent.com/u/2309096?v=3&s=400","email":"camilacamposramos.si@gmail.com","linkedin":"camilacamposramos","github":"camilacampos","twitter":"camposmilaa","fb":"milaa.campos", "behance": null, "site": null}, 68 | {"name":"Camila Ferreira","interests":["Product Management", "Leadership", "Growth Hacking", "Entrepreneurship", "Venture Capital", "Agile"],"location":"Florianópolis/SC","photo":null,"email":"camila.ferreira@resultadosdigitais.com.br","linkedin":"camilapferreira","github":"camilaferreirapo", "behance": null, "site": null}, 69 | {"name":"Camila Godoy","interests":["Negócios digitais", "Gastronomia"],"location":"São Paulo/SP","photo":null,"email":null,"linkedin":null,"github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 70 | {"name":"Camila Haddad","interests":["economia compartilhada"],"location":"São Paulo/SP","photo":null,"email":null,"linkedin":null,"github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 71 | {"name":"Camila Petry Feiler","interests":["Conteúdo", "SEO"],"location":"Curitiba/PR","photo":null,"email":null,"linkedin":null,"github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 72 | {"name":"Carine Roos", "interests":["Liderança Feminina","Gênero & Inovação","Empreendedorismo Feminino","Gênero & Tecnologia"], "location": "São Paulo/SP", "photo":"https://media.licdn.com/mpr/mpr/shrinknp_200_200/AAEAAQAAAAAAAAgtAAAAJGUyZWNhODE0LTIzMTQtNDhmOC05ZWQ5LWE0ZjZhOWViNzEwMg.jpg","email":"carine@upwit.org","linkedin": "carineroos","github":"carineroos","twitter":"carineroos","fb":"UPWIT", "behance": null, "site": "http://upwit.org/"}, 73 | {"name":"Carla de Bona", "interests":["Branding", "UX", "Startup", "Design Thinking", "Web Design"], "location": "São Paulo/SP", "photo":"https://media.licdn.com/mpr/mpr/shrinknp_200_200/AAEAAQAAAAAAAA26AAAAJGRmMjg4ZDA5LWEzYmYtNGZkOS1iZDM0LWI1ODVmNDMwYTgwZA.jpg","email":null, "linkedin": "carladebona","github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 74 | {"name":"Carla Moranga", "interests":["Gestão de Projetos", "Gestão de Pessoas", "Operações", "Processos", "Motivação", "Comunicação Interna", "Inteligência Digital", "Atendimento"], "location": "São Paulo/SP", "photo":"https://media.licdn.com/mpr/mpr/shrinknp_200_200/AAEAAQAAAAAAAArhAAAAJDI2MmY3NDU0LTQxZTItNDAyZC05MzQwLTFjMWE5NmRiMzU1Ng.jpg","email":null, "linkedin": "carlaromoranga","github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 75 | {"name":"Camila Waz", "interests":["Desenvolvimento Web", "Mídias Sociais", "Web Design", "Social Media Design"], "location": "João Pessoa/PB", "photo":"https://media.licdn.com/mpr/mpr/shrinknp_200_200/AAEAAQAAAAAAAArfAAAAJGQyNzA4NDQ1LTI2YjEtNGQ0NS1hOGU3LWY5MzU3Zjk0OWViOA.jpg","email":null, "linkedin": "camila-waz-927864b2","github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 76 | {"name":"Camilla Falconi Crispim", "interests":["Desenvolvimento de software", "Agilidade", "Entrega e integração contínua", "Empoderamento feminino"], "location": "Recife/PE", "photo":"https://en.gravatar.com/userimage/123882035/5ed936f516df3562fe20b3a1338e7fb5.jpeg","email":null, "linkedin": "camillafalconi", "github":null, "twitter": "cmllacrspm", "fb":null, "behance":null, "site": "https://www.thoughtworks.com/profiles/camilla-crispim"}, 77 | {"name":"Carol Aguiar","interests":["Empreendedorismo"],"location":"Curitiba/PR","photo":null,"email":null,"linkedin":null,"github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 78 | {"name":"Carol Patrocínio", "interests":["Sexualidade", "Feminismo", "Direitos Humanos", "Questões de Gênero", "Maternidade", "Social Media", "Jornalismo"], "location": "São Paulo/SP", "photo":"https://media.licdn.com/mpr/mpr/shrinknp_200_200/AAEAAQAAAAAAAAedAAAAJDhjYzVjYTIxLTU1ZTMtNDQzNy05YmVhLTUwYTcwZDdmNjNhMw.jpg","email":null, "linkedin": "carolpatrocinio","github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 79 | {"name":"Carolina Ruhman Sandler","interests":["Finanças", "Empreendedorismo", "Produção de Conteúdo"],"location":"São Paulo/SP","photo":"https://i2.wp.com/www.claudiamatarazzo.com.br/wp-content/uploads/2014/09/mini-carolina.png?zoom=2&resize=150%2C150","email":null,"linkedin":"carol-ruhman-sandler-382a607","github":null,"twitter":null,"fb":null, "behance": null, "site": "https://financasfemininas.uol.com.br"}, 80 | {"name":"Caroline Burle","interests":["Web", "Data on the Web", "Open Data", "Open Government", "International Relations", "Feminismo"],"location":"São Paulo/SP","photo":"https://avatars0.githubusercontent.com/u/6430260?v=4&s=400","email":"carolburlesg@gmail.com","linkedin":"caroline-burle-14713312","github":"cburle","twitter":"cburle","fb":null, "behance": null, "site": null}, 81 | {"name":"Celine Ramos","interests":["Marketing Digital", "Mídias Sociais", "PHP", "Front-end"],"location":"Salvador/BA","photo":"https://pbs.twimg.com/profile_images/821363943990030336/i114D6dv_400x400.jpg","email": null,"linkedin":"celiine","github": null,"twitter":"Celiine_","fb": "celiine.ramos", "behance": null, "site": "http://soubetina.com.br"}, 82 | {"name":"Chaiane Simmler","interests":["Back-End", "Front End", "Analista SEO", "Especialista em Joomla e Consultoria WEB"],"location":"Itajaí/SC","photo":null,"email":"chaiane@hotmail.com","linkedin":null,"github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 83 | {"name":"Cíntia Mara","interests":["Análise de negócios", "Modelagem de dados", "Desenho de processos", "Liderança de equipes"],"location":"Belo Horizonte/MG","photo":null,"email":"contato@cintiamcr.com.br","linkedin":null,"github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 84 | {"name":"Clara Verena Battesini","interests":["Front-end", "Back-end", "Design", "Mobile", "Controle de Versão"],"location":"Salvador/BA","photo":null,"email":"clarabattesini@gmail.com","linkedin":null,"github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 85 | {"name":"Clarissa Barreto", "interests":["Jornalismo", "Empreendedorismo", "Conteúdo Digital", "Conteúdo para marcas"], "location": "Porto Alegre/RS", "photo":"https://media.licdn.com/mpr/mpr/shrinknp_200_200/p/7/000/1e2/39a/24b4c5a.jpg","email":null, "linkedin": "clarissabarreto","github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 86 | {"name":"Clarissa Sóter","interests":["Design", "Sustentabilidade", "Economia criativa"],"location":"Recife/PE","photo":null,"email":"clarissa.soter@gmail.com","linkedin":null,"github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 87 | {"name":"Claudia Carolina Boletti","interests":["Coaching", "Liderança", "Lean", "Agile Coach", "Agilidade", "Facilitação"],"location":"São Bernardo/SP","photo":"https://secure.gravatar.com/userimage/94903503/96289319fa2117a461d6cfbfbf3910cf?size=250","email":"claudia.boletti@.com","linkedin":"claudiacarolinaboletti","github":"claudiacarol","twitter":null,"fb":null, "behance": null, "site": null}, 88 | {"name":"Claudia Peruzzato", "interests":["Atendimento", "Motivação", "Secretariado", "Etiqueta Empresarial"], "location": "Porto Alegre/RS", "photo":"https://media.licdn.com/mpr/mpr/shrinknp_200_200/AAEAAQAAAAAAAASIAAAAJDM2NDA0NjU0LTljMWEtNGQ1OS1hMGMyLWRkYjYyYzJhMTNkMg.jpg","email":null, "linkedin": "claudia-peruzzato-5a56481b","github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 89 | {"name":"Conceição Morais","interests":["Empreendedorismo"],"location":"Recife/PE","photo":null,"email":"SEBRAE/PE","linkedin":null,"github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 90 | {"name":"Cynthia Torchi", "interests":["Coaching", "Feminino"], "location": "Taubaté/SP", "photo":"https://media.licdn.com/mpr/mpr/shrinknp_400_400/AAEAAQAAAAAAAAWbAAAAJDkxM2EyMmU2LTNmYzctNDQ4MC05MWI5LWIzZmE3ZDBhZTk0Yg.jpg","email":null, "linkedin": "cynthia-torchi-1b363424","github":null,"twitter":null,"fb":null, "behance": null, "site": null}, {"name":"Cynthia Tscha","interests":["Empreendedorismo", "Estratégia", "Marketing"],"location":"Recife/PE","photo":null,"email":null,"linkedin":null,"github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 91 | {"name":"Cynthia Zanoni","interests":["UX", "Mobile", "Front-end", "Software Livre", "Inovação", "Pesquisa Acadêmica", "Metodologias", "Alfabetização para Web", "Inclusão Social", "Empreendedorismo", "Startups e Comunidades de Desenvolvimento", "Cloud", "Developer Tools"],"location":"Porto Alegre/RS","photo":null,"email":"cynthiazanoni@gmail.com","linkedin":"cynthiazanoni","github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 92 | {"name":"Cristal Bittencourt", "interests":["Comunicação Estratégica", "Mídias Sociais", "Gestão de Projetos", "Branding"],"location":"Salvador/BA","photo":"http://0.gravatar.com/avatar/0d6bb01b9265417c64fd97c6fb19bc7c?s=150&d=mm&r=g","email":"cristalfb@gmail.com","linkedin":"cristalbittencourt","github": null,"twitter":"cristalfb","fb": "cristalbittencourt", "behance": null, "site": null}, 93 | {"name":"Daiane Alves", "interests":["Software Livre", "PHP", "Cooperativismo", "Inclusão social", "Empreendedorismo", "Comunidades de desenvolvimento"],"location":"Rio de Janeiro/RJ","photo":"https://pt.gravatar.com/userimage/133648725/b531c23a0e564a82239290449c68ebc4.jpg?size=2000","email":"daiane@php.rio","linkedin":"DaianeAlvesRJ","github": "DaianeAlvesRJ","twitter":"DaianeAlvesRJ","fb": "DaianeAlvesRJ", "behance": null, "site": "lt.coop.br"}, 94 | {"name":"Daiany Maia de Andrade", "interests":["Estratégias de Facebook para campanhas internacionais"], "location": "Ribeirão Preto/SP", "photo":"https://media.licdn.com/mpr/mpr/shrinknp_200_200/AAIAAgDGAAAAAQAAAAAAAAwtAAAAJDY1OWQ1ZGIwLTEwNGMtNDllMS04ODhlLTA4YjQzMGQyYjY3NQ.jpg","email":null, "linkedin": "daianymaia","github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 95 | {"name":"Dalianny Vieira", "interests":["VueJS", "PWA", "Interfaces Interativas", "Animação para Web", "Educação"], "location": "Salvador/BA", "photo":"https://avatars3.githubusercontent.com/u/13053265?s=460&v=4","email":null, "linkedin": null, "github":"daliannyvieira", "twitter": "daliannyvieira", "fb":null, "behance": null, "site": "https://daliannyvieira.github.io"}, 96 | {"name":"Daniela Araújo","interests":["Mobile", "Android", "Front-end", "JavaScript", "Arte e tecnologia", "IoT"],"location":"Porto Alegre/RS","photo":"https://s.gravatar.com/avatar/d0527f5a78b2e1575ccd9da7522a41c1?s=200","email":"dana.araujo@gmail.com","linkedin":"danaaraujo","github":"nyan07","twitter":"nyan07","fb":"dana.araujo","behance": null,"site":null}, 97 | {"name":"Daniela Bertocchi", "interests":["Jornalismo Digital", "Estratégia de Conteúdos", "Redes Sociais", "Digital Strategist"], "location": "São Paulo/SP", "photo":"https://media.licdn.com/mpr/mpr/shrinknp_200_200/AAEAAQAAAAAAAAxYAAAAJGYwNjlmMDcyLTdkMGYtNDM1OC1hYWEyLTA1YzdmMmUzZjIxOQ.jpg","email":null, "linkedin": "danielabertocchi","github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 98 | {"name":"Daniela Castilho Schwab","interests":["Sistemas Mobile Android", "Segurança em Dispositivos Android"],"location":"Campinas/SP","photo":null,"email":"danyschwab@gmail.com","linkedin":"daniela-schwab-30a9a022","github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 99 | {"name":"Daniela Feitosa", "interests":["Engenharia de Software", "Ruby", "Backend"], "location": "Salvador/BA", "photo":"https://media.licdn.com/mpr/mpr/shrinknp_200_200/p/3/000/039/099/0bd72ea.jpg","email":null, "linkedin": "danielafeitosa","github":null,"twitter":"danifeitosa","fb":null, "behance": null, "site": null}, 100 | {"name":"Daniela Palumbo", "interests":["Python", "Mulheres na Computação", "Chatbots"], "location": "Campinas/SP", "photo":"https://secure.gravatar.com/avatar/23b588ae707121505f5bcdedb8095227", "email": "daniela.palumbo@outlook.com", "linkedin": "palumbodani", "github": "danipj", "twitter":null, "fb":"palumbodani", "behance":"danipj_", "site":null}, 101 | {"name":"Daniela Petruzalek", "interests":["Big Data", "Data Science", "Machine Learning"], "location": "Porto Alegre/RS", "photo": null, "email": "daniela.petruzalek@gmail.com", "linkedin": "petruzalek", "github": "danicat", "twitter": "danicat83", "fb": "daniela.petruzalek", "behance": null, "site": null}, 102 | {"name":"Daniela Senador", "interests":["Marketing", "Comunicação", "Negócios"], "location": "São Paulo/SP", "photo":"https://media.licdn.com/mpr/mpr/shrinknp_200_200/AAEAAQAAAAAAAAZAAAAAJGJjOWQ1OGJjLWM1MjYtNDg2My05MjlmLWQ0ZmJlODliNzg2ZA.jpg","email":null, "linkedin": "danisenador","github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 103 | {"name":"Daniela Victorazzi", "interests":["Liderança", "Empreendedorismo", "Mídias sociais"], "location": "São Paulo/SP", "photo":"https://media.licdn.com/mpr/mpr/shrinknp_200_200/AAEAAQAAAAAAAA2WAAAAJGViNDJjZjgyLWIwN2MtNGE1OC1iYzQxLTI5OTcwM2U3ZGEzNA.jpg","email":null, "linkedin": "danivictorazzi","github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 104 | {"name":"Daniele Andrade","interests":["Programação", "Front-End", "Qualidade de Software"],"location":"Fortaleza/CE","photo":null,"email":"danyelebatista@gmail.com","linkedin":null,"github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 105 | {"name":"Daniele Zandoná","interests":["UI/UX", "Branding", "Design para startups", "Design de experiência (multissensorial)"],"location":"Campinas/SP","photo":null,"email":null,"linkedin":null,"github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 106 | {"name":"Danielle Moreira Alexandre","interests":["Qualidade de Software", "DevOps", "Agile", "Ruby", "Continuos Delivery"],"location":"Florianópolis/SC","email":"danielle_moreiraa@hotmail.com","linkedin":"danielle-moreira-093562a2","github":null,"twitter":null,"fb":"danielle.moreira.94695", "behance": null, "site": null}, 107 | {"name":"Danielle Teixeira", "interests":["Mobile", "Internet das Coisas", "Requisitos de Software", "Empreendedorismo", "Sistemas Embarcados"], "location": "Lauro de Freitas/BA", "photo":"https://avatars1.githubusercontent.com/u/5931990?v=3&s=150","email":null, "linkedin": "danielle-teixeira-93493376","github":"dannyserena","twitter":null,"fb":null, "behance": null, "site": "http://slides.com/danielleteixeira/"}, 108 | {"name":"Danielle Vieira", "interests":["Empreendedorismo","Comportamento do Consumidor","Mídias Sociais","Tecnologia","Marketing Digital","BI"], "location": "Sorocaba/SP", "photo":"https://media.licdn.com/mpr/mpr/shrinknp_200_200/AAMAAgDGAAwAAQAAAAAAAAsAAAAAJDM2ZjVjZGU0LTRkNjUtNDk2YS1hZWY3LTdiZjQ4ZGYyM2M3Yg.jpg","email":null, "linkedin": "daniellevieiramkt","github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 109 | {"name":"Dayany Espíndola","interests":["Javascript", "d3.js"],"location":"Rio de Janeiro/RJ e São Paulo/SP","photo":null,"email":"dayanyrec@gmail.com","linkedin":"dayanyrec","github":"dayanyrec","twitter":"dayanyrec","fb":"dayanyrec", "behance": null, "site": null}, 110 | {"name":"Deb Xavier","interests":["Empreendedorismo Feminino", "Inovação e Diversidade", "Economia da Mulher", "Liderança", "Gênero nas Empresas"],"location":"Porto Alegre/RS","photo":"https://media.licdn.com/mpr/mpr/shrinknp_200_200/AAEAAQAAAAAAAAvoAAAAJGY2ZjM4NGQ1LWRjNTQtNDZiYy1hNWYyLTdhYTBjMDZmMzMwMg.jpg","email":null,"linkedin":"debxavier","github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 111 | {"name":"Déia Zoboli","interests":["Gestão de Projetos", "SCRUM", "Lean Development"],"location":"Joinville/SC","photo":null,"email":null,"linkedin":null,"github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 112 | {"name":"Deise Lima", "interests":["Projetos de TI para Marketing"], "location": "Rio de Janeiro/RJ", "photo":null,"email":null, "linkedin": "deise-lima-4a026a","github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 113 | {"name":"Denise Pagnussat", "interests":["Social Media", "Marketing", "Estratégias Comunicacionais", "Relações Públicas", "Marketing Digital"], "location": "Porto Alegre/RS", "photo":"https://media.licdn.com/mpr/mpr/shrinknp_200_200/p/7/000/224/0c7/3b13bc0.jpg","email":null, "linkedin": "denise-pagnussatt-8983691","github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 114 | {"name":"Denise Teófilo", "interests":["Empreendedorismo", "Inovação", "Empoderamento", "Negritude"], "location": "Sorocaba/SP", "photo":"https://media.licdn.com/mpr/mpr/shrinknp_200_200/AAEAAQAAAAAAAAhBAAAAJDJjNzE0YjE0LThjMjktNDZmNC1hMmViLTA2NWNmNzdhNGUwMg.jpg","email":null, "linkedin": "denise-de-oliveirateófilo-85b162b1","github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 115 | {"name":"Diana Arnos","interests":["Desenvolvimento Web", "PHP", "Metodologias Ágeis", "Empreendedorismo", "Team Work"],"location":"Osasco/SP","photo":null,"email":"diana.arnos@gmail.com","linkedin":"dianaarnos","github":"dianaarnos","twitter":"dianaarnos","fb":"dianaarnos", "behance": null, "site": null}, 116 | {"name":"Diane Lima", "interests":["Inteligência Cultural", "Éitca de Estética", "Diversidade Brasileira", "Processos Criativos", "Inovação x Criatividade", "Empoderamento Feminino", "Representatividade", "Cultura Negra"], "location": "São Paulo/SP", "photo":"https://media.licdn.com/mpr/mpr/shrinknp_200_200/AAEAAQAAAAAAAAI8AAAAJDc2NTczNDQ4LWY3ZDctNGJhZC04NTkwLWQ4NTAyNWU3MDBiMw.jpg","email":null, "linkedin": "dianelima","github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 117 | {"name":"Elisa Carlos Pereira ","interests":["Financeiro e inovação"],"location":"Jundiaí/SP","photo":null,"email":null,"linkedin":null,"github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 118 | {"name":"Elis Forgerini", "interests":["Martketing Digital", "Saúde", "Redes Sociais"], "location": "São Paulo/SP", "photo":"https://media.licdn.com/mpr/mpr/shrinknp_200_200/AAEAAQAAAAAAAA03AAAAJDViNGYwODRlLWM3MWEtNDRiNi05Y2MxLTdmNDZmYjQ4Mzg3MQ.jpg","email":null, "linkedin": "elisforgerini","github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 119 | {"name":"Elizabeth Regina Tscha","interests":["Educação", "Tecnologia", "Empreendedorismo", "Gestão do conhecimento"],"location":"Recife/PE","photo":null,"email":null,"linkedin":null,"github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 120 | {"name":"Eluana Sievert Cardoso","interests":["Empoderamento Feminino","Tecnologia", "Movimento Maker", "Indústria 4.0", "Eletrônica"],"location":"Curitiba/PR","photo":"https://media.licdn.com/mpr/mpr/shrinknp_400_400/AAIA_wDGAAAAAQAAAAAAAAvQAAAAJDQ3M2Q1NDI5LTM2N2UtNDJiMi04NzQ4LWUwZTU3OTM0NWQ1MA.jpg","email":"eluanasievert@gmail.com","linkedin":"eluana-sievert-cardoso-94154a84","github":"elucardoso","twitter":null,"fb":"eluscardoso", "behance": null, "site": null}, 121 | {"name":"Emanuelle Menali", "interests":["Desenvolvimento Android","Material Design","Engenharia de Software","Comunidades"],"location":"Santa Luzia/MG","photo":"https://secure.gravatar.com/avatar/0c019979ee02a71763ea2e44dd91e0bb","email":"emanuelle.menalii@gmail.com","linkedin":"menaliemanuelle","github":"ManuJs","twitter":"M_Manu_Manu","fb":"emanuelle.menali"}, 122 | {"name":"Emmanuelle Richard","interests":["Desenvolvimento Web e mobile"],"location":"Natal/RN","photo":null,"email":"emmanuellerichard@onbit.com.br\n","linkedin":null,"github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 123 | {"name":"Erica Ariano", "interests":["Neuromarketing", "Neurobusiness", "Neurociência do Consumo", "Linguagem Corporal", "Detecção de Mentiras"], "location": "Santo André/SP", "photo":"https://media.licdn.com/mpr/mpr/shrinknp_200_200/AAMAAgDGAAwAAQAAAAAAAA8gAAAAJDIwNGYxNzVkLTMyOTctNGY5ZS1hNjgyLTM4YzI3MDVhYjllZA.jpg","email":null, "linkedin": "cacauariano","github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 124 | {"name":"Érica Calil Nogueira","interests":["Games Inteligentes", "Inovação na Educação"],"location":"Rio de Janeiro/RJ","photo":"https://media.licdn.com/mpr/mpr/shrinknp_200_200/AAEAAQAAAAAAAAVEAAAAJDNhZWIxNTYyLTgzMjYtNDc2ZS04MmE0LTA3NjVhYTE4MDc3NA.jpg","email":"erica.nogueira@nce.ufrj.br","linkedin":"nericalil","github":null,"twitter":null,"fb":"nericalil", "behance": null, "site": null}, 125 | {"name":"Erica Marques","interests":["Marketing", "Inovação", "Palestras", "Empreendedorismo", "Mentoria e Oficinas com Metodologia CEFE Internacional"],"location":"Curitiba/PR","photo":null,"email":"erica@logosbr.com","linkedin":null,"github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 126 | {"name":"Érica Viana","interests":["Back-end", "suporte"],"location":"Belo Horizonte/MG","photo":null,"email":"erica.viana01@gmail.com","linkedin":null,"github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 127 | {"name":"Erika Laíse", "interests":["Empreendedorismo", "Produtividade", "Gestão do Tempo", "Organização Empresarial", "Qualidade"], "location": "Belo Horizonte/MG", "photo":"https://media.licdn.com/mpr/mpr/shrinknp_200_200/p/7/000/29f/1c1/0aaf2fe.jpg","email":null, "linkedin": "érika-laíse-2a934336","github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 128 | {"name":"Estela Rocha", "interests":["Cyberfeminismo", "Redes Sociais", "Empoderamento da Mulher"], "location": "Porto Alegre/RS", "photo":"https://media.licdn.com/mpr/mpr/shrinknp_200_200/AAEAAQAAAAAAAApsAAAAJDEyY2RjNjMxLTFjMmMtNDMwYS1iMTU2LWEzNzQ3MzFmMGRlYw.jpg","email":null, "linkedin": "estelarocha","github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 129 | {"name":"Etienne Du Jardin", "interests":["Live Marketing", "Campanhas Integradas", "Planejamento de Produção", "Branding", "Conteúdo"], "location": "São Paulo/SP", "photo":"https://media.licdn.com/mpr/mpr/shrinknp_200_200/AAEAAQAAAAAAAAt8AAAAJGQ5MWY2OTkxLTczMDUtNDUyMi04OGM3LTBlZGY1ZTFmOGU3Yw.jpg","email":null, "linkedin": "etiennedujardin","github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 130 | {"name":"Fabiana Rocha Batista","interests":["Empreendedorismo"],"location":"São Paulo/SP","photo":null,"email":null,"linkedin":null,"github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 131 | {"name":"Fabiany Lima","interests":["Empreendedorismo"],"location":"São Paulo/SP","photo":null,"email":null,"linkedin":null,"github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 132 | {"name":"Fernanda Bernardo","interests":["Front-End", "UX", "Desenvolvimento Web e Mobile", "Empreendedorismo", "Saúde"],"location":"São Paulo/SP","photo":null,"email":"fernandabernardo94@gmail.com","linkedin":"fernandabernardo","github":"FernandaBernardo","twitter":null,"fb":"feh.bernardo", "behance": null, "site": null}, 133 | {"name":"Fernanda Bruno", "interests":["big data", "data science", "R", "Mulheres na TI"], "location": "Rio de Janeiro/RJ", "photo":"https://pbs.twimg.com/profile_images/616745533324046336/V1kbGZV1_400x400.png","email":"fernanda.brunobr@gmail.com", "linkedin": "fernanda-bruno","github":"fernandabruno","twitter":"fernanda_bruno_","fb":null, "behance": null, "site": null}, 134 | {"name":"Fernanda Campagnucci","interests":["Open Data", "Open Government", "E-government", "Hackativismo"],"location":"São Paulo/SP","photo":null,"email":"campagnucci@gmail.com","linkedin":"fernandacampagnucci","github":"campagnucci","twitter":"fecampa","fb":"fcampagnucci", "behance": null, "site": null}, 135 | {"name":"Fernanda Lobato","interests":["Acessibilidade Web", "Design", "Quadrinhos", "Governo Eletrônico"],"location":"Porto Alegre/RS","photo":null,"email":"garotadpi@gmail.com","linkedin":"fernandalobato","github":"garotadpi","twitter":"garotadpi","fb":null, "behance": null, "site": null}, 136 | {"name":"Fernanda Mano","interests":["Operações e Negócios digitais"],"location":"Rio de Janeiro/RJ","photo":null,"email":null,"linkedin":null,"github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 137 | {"name":"Fernanda Nascimento", "interests":["Marketing Digital", "LinkedIn"], "location": "São Paulo/SP", "photo":"https://media.licdn.com/mpr/mpr/shrinknp_200_200/AAEAAQAAAAAAAAuTAAAAJDAxMWM0MjExLWZkNmEtNDZkOC05YzAwLWM0ZmY5ODhhMmQ1NQ.jpg","email":null, "linkedin": "fernandanascimentow","github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 138 | {"name":"Fernanda Nogueira","interests":["Mídias sociais"],"location":"São Paulo/SP","photo":null,"email":null,"linkedin":null,"github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 139 | {"name":"Fernanda Trindade Monteiro", "interests":["Branding", "Comunicação Empresarial", "Mídia"], "location": "São Paulo/SP", "photo":null,"email":null, "linkedin": "fernandatrindade","github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 140 | {"name":"Flávia Dias Fortes", "interests":["Desenvolvimento Web", "Desenvolvimento de Software", "Feminismo", "Ruby", "Rails"], "location": "São Paulo/SP", "photo":"https://media-exp2.licdn.com/mpr/mpr/shrinknp_200_200/AAEAAQAAAAAAAAnfAAAAJGZlNjI4MTM2LWM1YjQtNGExNy04NGFjLTBlNzM5ZWU1ZDc1Mg.jpg","email":null, "linkedin": "flafortes","github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 141 | {"name":"Francieli Viane", "interests":["Programação funcional", "Mulheres no mercado de TI", "Qualidade de código"], "location": "Belo Horizonte/MG", "photo":null, "email":"francielifrv@gmail.com", "github":"ffrancieli", "linkedin":"francieliviane", "twitter":null, "fb":null, "behance":null, "site":null }, 142 | {"name":"Francine Micheli", "interests":["Conteúdo", "Marketing Digital", "Mídias Sociais", "Escrita Criativa"], "location": "Ribeirão Preto/SP", "photo":"https://media.licdn.com/mpr/mpr/shrinknp_200_200/AAEAAQAAAAAAAAoYAAAAJDdiMTQxNzA0LWFmOTgtNDEwOC05OTVhLThkMzNhMmNkZTVhMQ.jpg","email":null, "linkedin": "francinemicheli","github":null,"twitter":null,"fb":null, "behance": null, "site": "http://www.escconteudo.com"}, 143 | {"name":"Gabriela Galves Nunes","interests":["Programação OO", "Educação Informática: com foco na geração Y e suas diferenças entre a X e a Z"],"location":"Curitiba/PR","photo":null,"email":"gabrielagalves@yahoo.com.br","linkedin":null,"github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 144 | {"name":"Geisa Santos","interests":["Python","Diversidade e Impacto social","Comunicação","Educação"],"location": "Salvador/BA","photo": "https://avatars1.githubusercontent.com/u/5049246?s=400&v=4","email": "geu.santos@gmail.com","linkedin": "geisasantos","github": "geisasantos","twitter": null,"fb":"geisasantos"}, 145 | {"name":"Germanda Uchoa","interests":["Economia criativa"],"location":"Recife/PE","photo":null,"email":null,"linkedin":null,"github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 146 | {"name":"Giana de Almeida Pereira", "interests": ["Mecatrônica", "Sistemas Embarcados", "Robótica", "Programação"], "location":"Florianópolis/SC", "photo":null, "email":"giana.ap@gmail.com", "linkedin":"giana-de-almeida-pereira","github":"GianaAlmeida","twitter":null,"fb":"GianadeAlmeida", "behance": null, "site": null}, 147 | {"name":"Gica Trierweiler Yabu", "interests":["Inovação","Propósito","Estratégia","Criação","Design Thinking","Comunicação","Tendências"], "location": "São Paulo/SP", "photo":"https://mir-s3-cdn-cf.behance.net/user/230/568119.53d90b133af39.jpg","email":null, "linkedin": "gicatrierweiler","github":null,"twitter":null,"fb":null, "behance": "gicatrier", "site": "http://verdevelma.com.br"}, 148 | {"name":"Gina Gotthilf","interests":["Internacionalização", "Empreendedorismo"],"location":"São Paulo/SP","photo":null,"email":null,"linkedin":null,"github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 149 | {"name":"Giovana Penatti", "interests":["Tecnologia", "Videogames", "Relações Públicas"], "location": "São Paulo/SP", "photo":"https://media.licdn.com/mpr/mpr/shrinknp_200_200/AAMAAgDGAAwAAQAAAAAAAA0uAAAAJGNiMTU2YWVmLWVhZDEtNGJiMC04MDM2LTdkOWI4OGU5ZWEwNA.jpg","email":null, "linkedin": "giovanapenatti","github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 150 | {"name":"Gisele Késsia Gusmão Bizerril Gelschleiter", "interests":["Auto-desenvolvimento", "Risco de Crédito","Risco Operacional","Empreendedorismo Digital","Inovação no Mundo de Crédito","Prevenção a Fraudes","Motivação Feminina"], "location": "Aracaju/SE", "photo":null,"email":null, "linkedin": "gisele-késsia-gelschleiter-4b049024","github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 151 | {"name":"Gisleine Silveira", "interests":["Marketing Digital", "Digital e Infância", "Estratégia de Negócios"], "location": "Montreal/Canadá", "photo":"https://scontent.fsdu5-1.fna.fbcdn.net/v/t1.0-1/41052_1241696062527_7336928_n.jpg?oh=ba77be0db40d192a975f1092b212e64f&oe=5A93B327","email":null, "linkedin": "gisleine-silveira-72b43815","github":null,"twitter":null,"fb":"gisleine.silveira.3", "behance": null, "site": null}, 152 | {"name": "Glaucia Lemos", "interests":["Tecnologia, Desenvolvimento Web, Javascript, Node.js, Angular, VueJs, Back-End, AI, ChatBots, TDD, Mídias Sociais, Comunidade Técnica, Inovação"], "location":"Rio de Janeiro/RJ e Adelaide, Austrália", "photo":"https://i.imgsafe.org/75/75ad457b58.png", "email": "glaucia_lemos86@hotmail.com", "linkedin": "glaucialemos", "github": "glaucia86", "twitter": "@glaucia_lemos86", "fb": "glaucia.lemos.1029", "behance": null, "site": "https://code4coders.wordpress.com/" }, 153 | {"name":"Grazielle Mendes Rangel", "interests":["Design Thinking", "Inovação","Conectividade","Processos Criativos"], "location": "Belo Horizonte/MG", "photo":"https://media.licdn.com/mpr/mpr/shrinknp_200_200/AAEAAQAAAAAAAAXIAAAAJDVkZDE0YTVkLTkxNmYtNDRjZC04OTljLTNhOWQ5OThjYjNmMA.jpg","email":null, "linkedin": "grazimendesrangel","github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 154 | {"name":"Halina Medina", "interests":["SEO", "Conteúdo","Facebook","Empreendedorismo Digital"], "location": "São Paulo/SP", "photo":"https://media.licdn.com/mpr/mpr/shrinknp_200_200/AAMAAQDGAAwAAQAAAAAAAAvyAAAAJGU2Zjg1NzU1LTY4MjMtNDI4NS04MTlhLTJhOTJmNzc0MmJmZg.jpg","email":null, "linkedin": "halinamedina","github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 155 | {"name":"Hanna Pereira","interests":["Empreendedorismo", "Inovação", "Negócio Social", "Startups", "Empreender na área de tecnologia", "Empreender na área de Educação", "Estratégia de negócios para Microempreendedores", "Gestão de Projetos em TI", "Canvas e Modelo de Negócio"],"location":"São Vicente/SP","photo":null,"email":"hannapereira90@gmail.com","linkedin":null,"github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 156 | {"name":"Haydée Svab","interests":["Gênero e tecnologia", "Hackativismo", "Mobilidade urbana", "Transporte e gênero", "Assédio no ambiente de trabalho"],"location":"São Paulo/SP","photo":null,"email":"hsvab@hsvab.eng.br","linkedin":"hsvab","github":"hsvab","twitter":"hsvab","fb":"haydee.svab","behance": null, "site": null}, 157 | {"name":"Helena Margarido","interests":["Direito digital", "Bitcoin"],"location":"São Paulo/SP","photo":null,"email":null,"linkedin":null,"github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 158 | {"name":"Hendy Almeida","interests":["Front-End Development"],"location":"São Paulo/SP","photo":null,"email":null,"linkedin":null,"github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 159 | {"name":"Hevlin Costa", "interests":["Educação Financeira", "Investimentos", "Consumo Consciente"], "location": "Jundiaí/SP", "photo":"https://secure.gravatar.com/avatar/a3a83c902112cedccc0e071147027a72?size=200","email":null, "linkedin": "hevlincosta","github":null,"twitter":null,"fb":null, "behance": null, "site": "http://poupareviver.com"}, 160 | {"name":"Iaci Gomes", "interests":["Assessoria de Imprensa", "Jornalismo Digital"], "location": "Belém/PA", "photo":"https://media.licdn.com/mpr/mpr/shrinknp_200_200/AAMAAQDGAAwAAQAAAAAAAA6mAAAAJDY5ZmJlZWVhLTRmMWUtNGFjNS1iMTljLWMxYTE4OGYzM2ZmNQ.jpg","email":null, "linkedin": "iaci-gomes-7a017a36","github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 161 | {"name":"Isabella Silveira", "interests":["Desenvolvimento de Software", "Machine Learning", "TDD", "Testes Automatizados", "Docker", "Agile"], "location": "Rio de Janeiro/RJ", "photo": "https://avatars3.githubusercontent.com/u/4542747?s=200&v=4","email": "isabella.silveira.souza@gmail.com", "linkedin": "isabellasilveira","github": "bella-silveira","twitter": "silveira_bells","fb": "bella.silveira", "behance": null, "site": null}, 162 | {"name":"Ingrid Mantonavi", "interests":["Social CRM", "Conteúdo", "Monitoramento", "Gestão de Crises", "Pesquisa"], "location": "São Paulo/SP", "photo":"https://media.licdn.com/mpr/mpr/shrinknp_200_200/p/7/005/021/133/018be55.jpg","email":null, "linkedin": "ingridmantovani","github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 163 | {"name":"Ivanise Gomes", "interests":["TI", "Liderança Feminina", "Governança", "LSS"], "location": "Campinas/SP", "photo":"https://media.licdn.com/mpr/mpr/shrinknp_200_200/AAEAAQAAAAAAAAg_AAAAJGYyMmM0NzM1LTEyZGYtNDFkMC04MmMwLTI5NTE5ZmM5OWQxMw.jpg","email":null, "linkedin": "ivanise","github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 164 | {"name":"Izadora Ribeiro Perkoski", "interests":["Jogos educacionais", "Gamificação", "Game design", "Educação e tecnologia"], "location": "São Paulo/SP", "photo": "https://s.gravatar.com/avatar/b58009e9c7a0dee56bfb552e58f69ca8?s=80","email": "izaperkoski@gmail.com", "linkedin": "izadoraperkoski","github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 165 | {"name":"Izza Simões", "interests":["Startups", "Empreendedorismo", "Moda", "Nordeste", "Design"], "location": "João Pessoa/PB", "photo":"https://media.licdn.com/mpr/mpr/shrinknp_200_200/AAMAAgDGAAwAAQAAAAAAAA5AAAAAJDRkZWIyZTA3LTg3ZTctNGNiZi04ODhlLTY2NGZiYTdjYjNhMQ.jpg","email":null, "linkedin": "izza-simoes-93273791","github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 166 | {"name":"Jacqueline Yumi Asano","interests":["Product Management", "Negócios Sociais", "Empoderamento Feminino"],"location":"Florianópolis/SC","photo":"https://avatars0.githubusercontent.com/u/24320336?v=3&s=460","email":"jacqueline.asano@resultadosdigitais.com.br","linkedin":"jacquelineyumiasano","github":"jacquelineasano","twitter":"jacquelineasano","fb":"JacquelineYumiAsano", "behance": null, "site": "http://jacquelineasano.com.br/"}, 167 | {"name":"Janine Saponara", "interests":["Comunicação", "Sustentabilidade", "Assessoria de Imprensa", "Assessoria Digital", "Comunicação Corporativa"], "location": "São Paulo/SP", "photo":"https://media.licdn.com/mpr/mpr/shrinknp_200_200/AAEAAQAAAAAAAAvoAAAAJDgxMDczMjgwLWUwOTYtNDI1MS1hYzRlLThlYjU1ZTM5NTMzMg.jpg","email":null, "linkedin": "janine-saponara-1b918413","github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 168 | {"name":"Janynne Gomes", "interests":["Desenvolvimento Web", "Mobile", "Tecnologia", "Desenvolvimento de Software"], "location": "Governador Valadares/MG", "photo":"https://media.licdn.com/mpr/mpr/shrinknp_200_200/AAMABADGAAwAAQAAAAAAAAoJAAAAJDEzNTE5YjY4LTBhMzEtNDcyNC04YWIwLTgxNTU2NDdkYWQ0Yg.jpg","email":null, "linkedin": "janynnegomes","github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 169 | {"name":"Jeliel Mendes","interests":["TI","Desenvolvimento de Software","Empoderamento Feminino","Diversidade","Transexualidade","Mudar o mundo através da tecnologia"],"location":"Porto Alegre/RS","photo":"https://avatars2.githubusercontent.com/u/4261484?s=200&v=4","email":"jelielmendes@gmail.com","linkedin":"jelielmendes","github":"jelielmendes","twitter":"jelielmendes","fb":"jelielmendes","behance": null,"site":"http://transnerd.com.br"}, 170 | {"name":"Jennifer Payne","interests":["UX", "Design", "Games"],"location":"Blumenau/SC","photo":null,"email":null,"linkedin":null,"github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 171 | {"name":"Jessica Temporal","interests":["Data Science", "Open Source", "Python", "Dados Abertos"],"location":"Osasco/SP","photo":"https://secure.gravatar.com/avatar/35beca46843e4adcbd43df1bc93ce38b","email":"jessicatemporal@gmail.com","linkedin":null,"github":"jtemporal","twitter":"jesstemporal","fb":null, "behance": null, "site": "http://jtemporal.com"}, 172 | {"name":"Jessilanny Nóbrega","interests":["Empreendedorismo"],"location":"Campina Grande/PB","photo":null,"email":null,"linkedin":null,"github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 173 | {"name":"Josilene Santana","interests":["Negócios digitais"],"location":"Recife/PE","photo":null,"email":null,"linkedin":null,"github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 174 | {"name":"Joviane Jardim", "interests":["iOS", "Desenvolvimento web"], "location": "São Paulo/SP", "photo":"https://media.licdn.com/mpr/mpr/shrinknp_200_200/p/8/000/23a/09d/2b1269b.jpg","email":null, "linkedin": "jovianejardim","github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 175 | {"name":"Juciellen Cabrera","interests":["Desenvolvimento Web com PHP", "Zend Framework 2", "Doctrine"],"location":"Guarulhos/SP","photo":null,"email":"jucarol17@gmail.com","linkedin":null,"github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 176 | {"name":"Juily Manghirmalani", "interests":["Cinema LGBT", "Cinema Indiano", "Criação", "Mídia"], "location": "São Paulo/SP", "photo":"https://media.licdn.com/mpr/mpr/shrinknp_200_200/AAIAAgDGAAAAAQAAAAAAAA1PAAAAJGI3YTM0ZGI2LTI4ODItNGY1OS04Y2VkLWZkYWJiOTBiZmVmOA.jpg","email":null, "linkedin": "juily-manghirmalani-07510138","github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 177 | {"name":"Júlia Albuquerque","interests":["Desenvolvimento WEB", "Mulheres na Tecnologia", "Empreendedorismo", "Educação"],"location":"Maceió/AL","photo":null,"email":"juliaguiar95@gmail.com","linkedin":null,"github":"juliaguiar","twitter":null,"fb":"julia.albuquerque.56", "behance": null, "site": null}, 178 | {"name":"Julia Stateri", "interests":["Gamificação", "Mídias Digitais", "Videogames", "Arte"], "location": "Campinas/SP", "photo":"https://media.licdn.com/mpr/mpr/shrinknp_200_200/AAEAAQAAAAAAAAjwAAAAJDkzYmFkMTU3LTYwNjUtNDFlOC04NWVhLTRiMDZjZTU0ZTlkZg.jpg","email":null, "linkedin": "juliastateri","github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 179 | {"name":"Juliana de Bittencourt Escobar", "interests":["Saúde Pública", "Drogas", "Educação em Saúde", "Atenção Básica"], "location": "Porto Alegre/RS", "photo":"https://media.licdn.com/mpr/mpr/shrinknp_200_200/AAEAAQAAAAAAAAjqAAAAJGNkYjM1YTgzLTYxMzItNDkyMC1iNGUxLWJjMjBiYzg0YmNlMA.jpg","email":null, "linkedin": "juliana-de-bittencourt-escobar-12966825","github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 180 | {"name":"Juliana Carvalho", "interests":["Startups", "Empreendedorismo", "Moda", "Nordeste"], "location": "João Pessoa/PB", "photo":"https://media.licdn.com/mpr/mpr/shrinknp_200_200/AAMABADGAAwAAQAAAAAAAA6zAAAAJGRjMGVhYmE3LTQ5ZTgtNGU3Yy04NTJkLTQ5NTU2NjJlNDllOA.jpg","email":null, "linkedin": "juliana-carvalho-b3283694","github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 181 | {"name":"Juliana Chahoud","interests":["Mobile"],"location":"São Paulo/SP","photo":null,"email":null,"linkedin":null,"github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 182 | {"name":"Juliana Félix Nunes","interests":["TI verde", "Software livre", "Gerenciamento de TI", "Banco de Dados"],"location":"Goiânia/GO","photo":"https://avatars1.githubusercontent.com/u/3291727?v=3&s=200","email":"juliana_fenunes@gmail.com","linkedin":"julianafelixnunes","github":"julianafelix","twitter":"juh_felix","fb":"juliana.felix.nunes", "behance": null, "site": null}, 183 | {"name":"Juliana Fernandes", "interests":["Desenvolvimento de Software", "Agilidade", "Arquitetura de Software", "DevOps", "Software livre"], "location": "Porto Alegre/RS", "photo":"http://gravatar.com/avatar/037d35f865f95571c3194b4c84a4915b?s=250","email":"littlejuh@live.it", "linkedin": "littlejuh","github":"littlejuh_","twitter":"littlejuh","fb":"juh.r.fernandes", "behance": null, "site": null}, 184 | {"name":"Juliana Fernandes", "interests":["UX", "Acessibilidade"], "location": "São Paulo/SP", "photo":null,"email":null, "linkedin": "julianafrost","github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 185 | {"name":"Juliana Guerra", "interests":["Redes Sociais", "Comunicação Digital", "Marketing"], "location": "São Paulo/SP", "photo":"https://media.licdn.com/mpr/mpr/shrinknp_200_200/AAEAAQAAAAAAAAviAAAAJGFhMzc0MDFiLWZjNTAtNDE1YS1hZGE2LWYxMjU3MTRkZWJmMg.jpg","email":null, "linkedin": "julianaguerra","github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 186 | {"name":"Juliana Hercowitz", "interests":["Design", "Branding", "Comunicação Visual"], "location": "São Paulo/SP", "photo":"https://media.licdn.com/mpr/mpr/shrinknp_200_200/AAEAAQAAAAAAAAd8AAAAJDc0MTdjYWJjLWQxYTMtNGQ1NS1hNDQxLWIwZjAxNmZmZjhmMA.jpg","email":null, "linkedin": "juliana-hercowitz-705b5532","github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 187 | {"name":"Juliana Negreiros", "interests":["Front-End", "Javascript", "Design Thinking", "CSS"], "location": "Sorocaba/SP", "photo":"https://pt.gravatar.com/userimage/139565200/4abf3378bb085fd07ea946152d0f5603.jpg","email":"ju_bsnegreiros@hotmail.com", "linkedin": "juliananegreiros","github":"juunegreiros","twitter":"juunegreiros","fb":"juliana.negreiros.31", "behance": null, "site": null}, 188 | {"name":"Juliana Wallauer", "interests":["Planejamento", "Feminismo", "Conteúdo", "Podcast"], "location": "São Paulo/SP", "photo":"https://media.licdn.com/mpr/mpr/shrinknp_200_200/AAIA_wDGAAAAAQAAAAAAAAxxAAAAJDc0NTMyMGNmLWI3MGUtNGRlOC05ZGEwLWI1MGYzMjkzODkwOQ.jpg","email":null, "linkedin": "juwallauer","github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 189 | {"name":"Juliene Alves","interests":["Empreendedorismo", "Mulheres na TI", "Programação", "Segurança da Informação", "Inovação"], "location":"Recife/PE","photo":"https://media.licdn.com/mpr/mpr/shrinknp_400_400/AAEAAQAAAAAAAAl0AAAAJDM1OWFmZTI2LTM0OTQtNDMwMy1hN2Q2LTUyODgzNjg5YTNhZg.jpg","email":"juliene.alves@live.com", "linkedin":"juliene-alves-3b81b0132","github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 190 | {"name": "Jullia Saad", "interests": ["Front-end", "JavaScript", "UX Design", "UI Design"], "location": "Sorocaba/SP", "photo": "https://instagram.fsod2-1.fna.fbcdn.net/vp/0839bb5cb475d1782679865d378d8d07/5BBF6317/t51.2885-19/s150x150/32178516_385361641964215_7826659675901788160_n.jpg", "email": "julliasaad01@gmail.com", "linkedin": "jullia-saad", "github": "julliasaad", "twitter": "julliasaad", "fb": "julliasaad", "behance": null, "site": null }, 191 | {"name":"Julyane Miranda","interests":["Design", "Web Design", "Desenvolvimento Web", "Marketing", "Empreendedorismo"],"location":"Rio de Janeiro/RJ","photo":"https://pbs.twimg.com/profile_images/803727959530078209/APVpL4L6_400x400.jpg","email":"julyane@solutibrasil.com.br","linkedin":"julyane-miranda-909a0478","github":"julyane","twitter":"julyanemf","fb":"JulyaneMiranda", "behance": null, "site": null}, 192 | {"name":"Karen Figueiredo","interests":["Gênero e Tecnologia", "Gamificação e Jogos", "Engenharia de Software", "Metodologia Científica (para quem não gosta de metodologia científica)"],"location":"Cuiabá/MT","photo":null,"email":"karen@ic.ufmt.br","linkedin":null,"github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 193 | {"name":"Karina Girardi Roggia","interests":["Teoria da Computação", "Lógica", "Matemática", "Divulgação Científica", "Mulheres na Computação"],"location":"Joinville/SC","photo":"https://www.gravatar.com/avatar/5774b104265c725d9ea7e65b5411a2c2","email":"karina.roggia@udesc.br","linkedin":"karinaroggia","github":"kaqui","twitter":"kaqui","fb":"kroggia", "behance": null, "site": null}, 194 | {"name":"Karina Martins","interests":["Publicidade online"],"location":"São Paulo/SP","photo":null,"email":null,"linkedin":null,"github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 195 | {"name":"Karla Maria Garcia","interests":["Software Development", "Agile", "Rails", "Back-end"],"location":"Florianópolis/SC","email":"karlamaria@gmail.com","linkedin":"karlamariagarcia","github":"karlamaria","twitter":null,"fb":"karlamaria.garcia.3", "behance": null, "site": null}, 196 | {"name":"Karla Patriota Bronsztein","interests":["Transmidia"],"location":"Recife/PE","photo":null,"email":null,"linkedin":null,"github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 197 | {"name":"Kathlen Amado", "interests":["Redes Sociais", "Fotografia de Parto", "Captação de Doadores de Sangue"], "location": "Brasília/DF", "photo":"https://media.licdn.com/mpr/mpr/shrinknp_200_200/p/5/005/07a/1e7/3bae151.jpg","email":null, "linkedin": "kathlenamado","github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 198 | {"name":"Kelly Kiyumi","interests":["UX Design", "Mobile", "Pesquisa Acadêmica","E-government"],"location":"São Paulo/SP","photo":null,"email":"kellykiyumi@gmail.com","linkedin":"kellykiyumi","github":null,"twitter":"kiyumii","fb":null, "behance": null, "site": null}, 199 | {"name":"Krystal Campioni","interests":["Front-end","Javascript","HTML5 Canvas","Animação para Web e Interfaces Interativas"],"location":"São Paulo/SP","photo":null,"email":"hello@krystalcampioni.com","linkedin":"krystalcampioni","github":"krystalcampioni","twitter":"krystalcampioni","fb":null, "behance": null, "site":"http://www.krystalcampioni.com"}, 200 | {"name":"Laís Carvalho", "interests":["Marca", "Inovação", "Diferenciação"], "location": "São Paulo/SP", "photo":"https://media.licdn.com/mpr/mpr/shrinknp_200_200/p/4/005/0b5/2d0/2b1fd1c.jpg","email":null, "linkedin": "laiscarvalho","github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 201 | {"name":"Lais de Lima", "interests":["História em Quadrinhos", "Feminino", "Ilustrações", "Roteiro"], "location": "Belém/PA", "photo":"https://media.licdn.com/mpr/mpr/shrinknp_200_200/AAEAAQAAAAAAAAROAAAAJDdiM2Q2ZGMyLWY5NGUtNDUxOC1iZmRmLWE0MGEyNDdhOTE4Mg.jpg","email":null, "linkedin": "laisdelima","github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 202 | {"name":"Larissa Sá ","interests":["Desenvolvimento Web"],"location":"Brasilia/DF","photo":null,"email":"oli.larissa@gmail.com ","linkedin":null,"github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 203 | {"name":"Laura Gurgel","interests":["Empreendedorismo"],"location":"São Paulo/SP","photo":null,"email":null,"linkedin":null,"github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 204 | {"name":"Laura Nobrega", "interests":["Varejo de Moda", "Negócios da Moda", "Produção de Moda", "Visual Merchandising", "Experiências do Consumo"], "location": "São Paulo/SP", "photo":"https://media.licdn.com/mpr/mpr/shrinknp_200_200/AAEAAQAAAAAAAAeOAAAAJDY0Yzc1ZDk4LTExYTItNGJkZS1hNWViLTAxZWQyYTllNjQwMw.jpg","email":null, "linkedin": "laura-nobrega-198b6864","github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 205 | {"name":"Letícia Passarelli Canova","interests":["Empreendedorismo"],"location":"São Paulo/SP","photo":null,"email":null,"linkedin":null,"github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 206 | {"name":"Leticia Figueira","interests":["Software livre", "Desenvolvimento de Software", "Educação", "Sustentabilidade"],"location":"Porto Alegre/RS","photo":null,"email":"hi5@lele.rocks","linkedin":"leticiafigueira","github":"leticia","twitter":"_leticia","fb":null, "behance": null, "site": null}, 207 | {"name":"Letícia Millião", "interests":["Marketing Digital", "Social Media", "Planejamento", "Brand Persona", "Métricas", "Gestão de Crise"], "location": "São Paulo/SP", "photo":"https://media.licdn.com/mpr/mpr/shrinknp_200_200/AAEAAQAAAAAAAAmJAAAAJDJkMDQ1YzQ0LThhZGEtNGZiNS1hMjdkLTIwNmJjMDFhZTc2MA.jpg","email":null, "linkedin": "lemiliao","github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 208 | {"name":"Letícia Motta", "interests":["Design", "Ilustração", "Comunicação Visual", "Produção Gráfica"], "location": "Rio de Janeiro/RJ", "photo":"https://media.licdn.com/mpr/mpr/shrinknp_200_200/AAEAAQAAAAAAAAlHAAAAJDAyMDMwNjkwLWMxNTYtNDIyYy1iYzYxLWRjOGM0MmQzMjI3NA.jpg","email":null, "linkedin": "leticiamotta","github":null,"twitter":null,"fb":null, "behance": null, "site": "http://www.cutedrop.com.br"}, 209 | {"name":"Leticia Portella", "interests":["Python", "Comunidade", "Data Analysis", "Django"], "location": "Ribeirão Preto/SP", "photo":null,"email":"leportella@gmail.com", "linkedin": "leportella","github":"leportella","twitter":"leleportella","fb":null, "behance": null, "site": "http://leportella.com"}, 210 | {"name":"Leticia Pozza", "interests":["Ciência de Dados", "Big Data"], "location": "Porto Alegre/RS", "photo":"https://media.licdn.com/mpr/mpr/shrinknp_200_200/p/7/005/0b0/0ae/0ce2411.jpg","email":null, "linkedin": "letícia-ange-pozza-a4632b21","github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 211 | {"name":"Letticia Nicoli","interests":["Programação", "Web", "Mobile", "Testes Automatizados", "Back-end", ".NET", "Xamarin", "Ionic"],"location":"São Paulo/SP","photo":"https://avatars1.githubusercontent.com/u/13442773?v=3&s=466","email":"letticia.nicoli@gmail.com","linkedin":"letticia-nicoli","github":null,"twitter":"LetticiaNicoli","fb":"letticia.nicoli", "behance": null, "site": null}, 212 | {"name":"Lhaís Rodrigues","interests":["Empreendedorismo", "Programação", "C#", "Microsoft", "App Inventor", "Windows Phone", "Engenharia", "Arduino", "Intel Galileo", "Motivação", "Inspiração", "Inovação", "Metodologias de Gerenciamento de Tempo e Ações "],"location":"Recife/PE","photo":null,"email":"lhaisrs@gmail.com","linkedin":null,"github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 213 | {"name":"Lidiane De Souza Monteiro","interests":["Python", "Ensino", "Software Livre", "Jornalismo Cidadão", "Mulheres na TI"],"location":"Recife/PE","photo":null,"email":"contato.lidymonteiro@gmail.com","linkedin":null,"github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 214 | {"name":"Lígia Bernar", "interests":["Conteúdo", "Marketing", "Jornalismo", "Mídias Sociais"], "location": "Belém/PA", "photo":"https://media.licdn.com/mpr/mpr/shrinknp_200_200/AAEAAQAAAAAAAAwCAAAAJDljZGVjYTY5LWY3NWYtNDM5Yi1hYmExLTAyNDUwNmJlY2JjZg.jpg","email":null, "linkedin": "lígia-bernar-17014324","github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 215 | {"name":"Lígia Zeppelini","interests":["Ecommerce", "Inovação", "Hobby", "Empreendedorismo"],"location":"São Paulo/SP","photo":null,"email":"ligiazeppelini@gmail.com","linkedin":null,"github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 216 | {"name":"Liliam Leal","interests":["Facebook Marketing"],"location":"São Paulo/SP","photo":null,"email":"liliam@lealti.com","linkedin":null,"github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 217 | {"name":"Lilian Gonçalves", "interests":["Neuromarketing", "Links Patrocinados", "Online Advertising", "Social Media"], "location": "São Paulo/SP", "photo":"https://media.licdn.com/mpr/mpr/shrinknp_200_200/p/2/005/00a/3f3/16c4a29.jpg","email":null, "linkedin": "liliansgoncalves","github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 218 | {"name":"Lina Garrido", "interests":["Monitoramento", "Auditoria de Imagens", "Tendências"], "location": "São Paulo/SP", "photo":"https://media.licdn.com/mpr/mpr/shrinknp_200_200/p/1/000/08d/252/08a9d15.jpg","email":null, "linkedin": "linagarrido","github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 219 | {"name":"Lisi Moraes", "interests":["Conteúdo para Startups", "Marketing Digital", "Jornalismo", "Comunicação", "Mídias Sociais"], "location": "Florianópolis/SC", "photo":"https://media.licdn.com/mpr/mpr/shrinknp_200_200/p/8/000/1f1/017/23afdd1.jpg","email":null, "linkedin": "lisimoraes","github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 220 | {"name":"Loiane Groner","interests":["Desenvolvimento Front e Back-end", "JavaScript", "Mobile Híbrido", "Java", "Sencha", "Escritora"],"location":"São Paulo/SP","photo":"https://avatars0.githubusercontent.com/u/59545?v=3&s=100","email":null,"linkedin":"loiane","github":"loiane","twitter":"loiane","fb":"loianegroner", "behance": null, "site": null}, 221 | {"name":"Luana Weitzel","interests":["Mídias sociais"],"location":"Rio de Janeiro/RJ","photo":null,"email":null,"linkedin":null,"github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 222 | {"name":"Luciana Guerra", "interests":["Arquitetura", "Responsabilidade Social"], "location": "São Paulo/SP", "photo":"https://media.licdn.com/mpr/mpr/shrinknp_200_200/AAEAAQAAAAAAAAs9AAAAJDEzMjhhMmY3LTBhZTMtNDYyMS1hNTI1LWNkNjZiMmViOWVhZA.jpg","email":null, "linkedin": "luciana-guerra-8a779954","github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 223 | {"name":"Luciana Minev","interests":["Empreendedorismo", "RH"],"location":"Manaus/AM","photo":null,"email":null,"linkedin":null,"github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 224 | {"name":"Luciana Stabile", "interests":["Conteúdo", "Redes Sociais", "Blogs", "Internet", "Mercado no interior de SP"], "location": "Ribeirão Preto/SP", "photo":null,"email":null, "linkedin": "luciana-stabile","github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 225 | {"name":"Lucila Otoni","interests":["PLSQL", "Mulheres na TI","Criação de Servidores"],"location":"Belo Horizonte/MG","photo":"null","email":"lucilaotoni@hotmail.com","linkedin":"https://www.linkedin.com/in/lucila-machado-otoni-2308b1a3/","github":"LucilaOtoni","twitter":"null","fb":"lucila.otoni", "behance": null, "site": null}, 226 | {"name":"Luiza Guerra","interests":["Testes", "Automação", "Qualidade de Software", "Comunidades", "Acessibilidade Web", "usabilidade"],"location":"Belo Horizonte/MG","photo":"https://s.gravatar.com/avatar/65c5b3ac0eeae6d90fea315e72068f16?s=80","email":"luiza.guerra@gmail.com","linkedin":"luizaguerra","github":"luizaguerra","twitter":"luizaguerra","fb":"luiza.guerra", "behance": null, "site": null}, 227 | {"name":"Macarena Garcia", "interests":["Comunicação", "Relações Públicas", "Social", "Digital", "Conteúdo", "Eventos", "Ideias"], "location": "São Paulo/SP", "photo":"https://media.licdn.com/mpr/mpr/shrinknp_200_200/AAEAAQAAAAAAAAliAAAAJDZmZWIxM2RhLTJiM2MtNDIyZS04OTViLTc0NzI4YjA2OGY1Nw.jpg","email":null, "linkedin": "macarenagarcia","github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 228 | {"name":"Maitê Balhester","interests":["DevOps", "Java", "Automação de infraestrutura", "Mulheres na TI"],"location":"Santo André/SP","photo":null,"email":"mbalhest@thoughtworks.com","linkedin":"maiteb","github":"maiteb","twitter":"mbalhester","fb":null, "behance": null, "site": null}, 229 | {"name":"Marcela Costa","interests":["Transmidia"],"location":"Recife/PE","photo":null,"email":null,"linkedin":null,"github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 230 | {"name":"Marcela Milano", "interests":["Recursos Humanos", "Refugiados", "Empreendedorismo Social"], "location": "Curitiba/PR", "photo":"https://media.licdn.com/mpr/mpr/shrinknp_200_200/AAEAAQAAAAAAAAxHAAAAJGIwYjc2Mzc5LWM3MDAtNGM1NC04MTQyLTk4MDc2ZGNiMDE2ZQ.jpg","email":null, "linkedin": "marcelamilano","github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 231 | {"name":"Marcela Oliveira", "interests":["Conteúdo", "RP", "H2H", "Empreendedorismo", "Negócios Sociais"], "location": "São Paulo/SP", "photo":"https://media.licdn.com/mpr/mpr/shrinknp_200_200/AAEAAQAAAAAAAAMzAAAAJGYwZjJjYmM1LTEzODktNDFmZS05YzFkLWE3ODUwN2FlNDcwYQ.jpg","email":null, "linkedin": "marceladeoliveira","github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 232 | {"name":"Marcela Santos", "interests":["Ensino de Programação para crianças e jovens", "Empoderamento Feminino", "Diversidade", "Cultura Maker", "Empoderamento através da tecnologia", "Arduino", "Robótica Educacional", "Internet das Coisas", "Educação e Tecnologia"],"location": "Porto Alegre/RS","photo": "", "email": "profmarcelasantos@gmail.com","linkedin": "profmarcelasantos","github": "tchellita","twitter": "tchellita","fb": "tchellita","behance": null,"site": "http://ajornadadetchellita.com"}, 233 | {"name":"Márcia Santos Almeida","interests":["Mulheres na Tecnologia"],"location":"Goiânia/GO","photo":null,"email":"marcia.neoqav@gmail.com","linkedin":null,"github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 234 | {"name":"Maria Clara Santana","interests":["FrontEnd Development", "UI/UX", "Inteligência Artificial"],"location":"Maceió/AL","photo":null,"email":"claarasantana@gmail.com","linkedin":null,"github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 235 | {"name":"Marina Andrade Manso","interests":["Automação de Testes","QA","Python","Gestão Agil","Games Mobile","Games UX","Leadership"],"location": "São Paulo/SP","photo": null,"email": "marinamanso@gmail.com","linkedin": "marinamanso","github": "marinachibi","twitter":null,"fb":null,"behance": null, "site": null}, 236 | {"name":"Marina Miranda","interests":["Crowdsourcing", "Crowdfunding"],"location":"São Paulo/SP","photo":null,"email":null,"linkedin":null,"github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 237 | {"name":"Mariana Araujo Mioto","interests":["Python", "Image Processing", "Medical Image Processing", "Machine Learning", "Data Science", "Open Source", "Education", "Empowerment"],"location":"Porto Alegre/RS","photo":"https://secure.gravatar.com/avatar/acf4d17d0e0a7f8f0ba61f4d7895c489","email":"mariana.mioto@gmail.com","linkedin":null,"github":"marianamioto","twitter":"mari_mioto","fb": "marimioto", "behance": null, "site": null}, 238 | {"name":"Mariana Camargo","interests":["Empreendedorismo", "E-commerce"],"location":"São Paulo/SP","photo":null,"email":null,"linkedin":null,"github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 239 | {"name":"Mariana Gomes ","interests":["Desenvolvimento Web", "Aprendendo Mobile"],"location":"São Paulo/SP","photo":null,"email":"marianagomesjob@gmail ","linkedin":null,"github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 240 | {"name":"Mariana Janeiro", "interests":["Preconceito Racial", "Feminismo", "Fotografia"], "location": "Jundiaí/SP", "photo":"https://media.licdn.com/mpr/mpr/shrinknp_200_200/AAEAAQAAAAAAAAkQAAAAJGZlMjFlZDM5LWJmY2ItNDYwMi04MzRmLTlkZWMwOTlmNjNkNw.jpg","email":null, "linkedin": "marianajaneiro","github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 241 | {"name":"Mariana Maneira","interests":["Design", "UX", "Wordpress", "Costura"],"location":"São Paulo/SP","photo":null,"email":"mmaneira@gmail.com","linkedin":null,"github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 242 | {"name":"Mariana Matos", "interests":["Cibercultura", "Mídias Sociais", "Comportamento do Consumidor Online", "Relacionamentos Virtuais", "Pesquisa Qualitativa"], "location": "Rio de Janeiro/RJ", "photo":"https://media.licdn.com/mpr/mpr/shrinknp_200_200/p/2/005/093/01f/1b21abc.jpg","email":null, "linkedin": "marianamatos","github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 243 | {"name":"Marianne Costa","interests":["Empreendedorismo Social", "Turismo", "Sustentabilidade"],"location":"São Paulo/SP","photo":null,"email":"marianne@raizesds.com.br","linkedin":null,"github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 244 | {"name":"Mariela Castro","interests":["Impacto da tecnologia e das novas mídias na comunicação e na vida profissional"],"location":"Curitiba/PR","photo":null,"email":"mariela.castrosantos@gmail.com","linkedin":null,"github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 245 | {"name":"Marina Arilha Silva","interests":["Negócios sociais", "Inovação social"],"location":"Jundiaí/SP","photo":null,"email":"eusoumarina@inpulsa.me","linkedin":null,"github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 246 | {"name":"Maristela Moura", "interests":["Empreendedorismo Social"], "location": "Indaiatuba/SP", "photo":"https://media.licdn.com/mpr/mpr/shrinknp_200_200/p/4/005/09b/02c/1f18906.jpg","email":null, "linkedin": "maristelamoura","github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 247 | {"name":"Marta Preuss", "interests":["Front-end", "Webdesign", "UX"], "photo": null, "email": "marta.preuss@gmail.com", "location": "Florianópolis/SC", "twitter": "suco_de_uva", "fb": "mapreuss", "behance": "mapreuss", "site": "http://marta.preuss.nom.br"}, 248 | {"name":"Marla Dore", "interests":["Tecnologias Assistivas", "Jogos", "Educação", "Inovação"], "photo": "https://media.licdn.com/mpr/mpr/shrinknp_200_200/AAEAAQAAAAAAAAMtAAAAJDMyZDY1Y2UyLTAxZWUtNDk2Ny1iODI1LWJjMmY4ODQ0NzFhZQ.jpg", "email": "marladore@gmail.com", "linkedin":"marladore","location": "Salvador/BA", "twitter": "marladore", "fb": "marladore", "behance": null, "site": null}, 249 | {"name":"Martina Scherrer","interests":["Publicidade e Propaganda", "Empreendedorismo", "Marketing Digital", "Mídias Sociais", "Planejamento Estratégico e de Comunicação"],"location":"Porto Alegre/RS","photo":"https://s.gravatar.com/avatar/e3a29c667bd11908fe3006b90bc61619?s=80","email":"tinscherrer@gmail.com","linkedin":"martinascherrer","github":"tinascherrer","twitter":"tinascherrer","fb":"ScherrerTina", "behance": null, "site": null}, 250 | {"name":"Mayara Carolina de Paula","interests":["Permacultura", "Sustentabilidade"],"location":"Fortaleza/CE","photo":null,"email":"mayaradepaula.arq@gmail.com","linkedin":null,"github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 251 | {"name":"Mayara Miranda", "interests":["Cervejas Artesanais", "Fabricação de Cerveja", "Mercado Cervejeiro"], "location": "São Paulo/SP", "photo":"https://scontent.fsdu5-1.fna.fbcdn.net/v/t1.0-9/10636124_932122716807075_2937596775672211091_n.jpg?oh=9d98746ad44cc87175e2d07e2e504c34&oe=5A59AC0B","email":null, "linkedin": null,"github":null,"twitter":null,"fb":"mayara.miranda.10420", "behance": null, "site": null}, 252 | {"name":"Mayra Fonseca", "interests":["Pesquisa em Profundidade sobre o Brasil", "Planejamento Estratégico", "Etnografia"], "location": "São Paulo/SP", "photo":"https://media.licdn.com/mpr/mpr/shrinknp_200_200/AAEAAQAAAAAAAA3HAAAAJDI0NGJiMTRkLTJjMmUtNDJkNy04YTdkLWRkNGUwNzZmMTc2ZA.jpg","email":null, "linkedin": "mayra-fonseca-75a66b1b","github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 253 | {"name":"Mayra R Souza","interests":["Facilitação", "Empreendedorismo", "Engenharia de Produção", "Lean", "Inception Enxuta", "Analista de Negócios", "Metodologia Ágil"],"location":"Porto Alegre/RS","photo":"https://avatars2.githubusercontent.com/u/13318439?v=3&s=400","email":"msouza@thoughtworks.com","linkedin":"mayrarodriguesdesouza","github":"MayraPaola","twitter":"paola_mayra","fb":"mayra.de.s", "behance": null, "site": null}, 254 | {"name":"Maysa de Oliveira", "interests":["Empreendedorismo", "Criatividade", "Produção Digital", "Publicidade"], "location": "São Paulo/SP", "photo":"https://media.licdn.com/mpr/mpr/shrinknp_200_200/AAEAAQAAAAAAAAwGAAAAJGQxMGE3ZWNkLTgxNzUtNDA3My04ZDBkLWVjN2E2ZDE4OGUyNg.jpg","email":null, "linkedin": "maysaoliveira","github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 255 | {"name":"Meli Malatesta", "interests":["Mobilidade Ativa", "Planejamento de Mobilidade", "Mobilidade Urbana"], "location": "São Paulo/SP", "photo":"https://media.licdn.com/mpr/mpr/shrinknp_200_200/AAEAAQAAAAAAAAlvAAAAJDUyODNlMzE2LWRiNmMtNDUxYy1hNDA3LTZhMWNmMWUxN2U0MA.jpg","email":null, "linkedin": "meli-malatesta-28440033","github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 256 | {"name":"Melissa Devens","interests":["Social Media", "Alfabetização para Web", "Games", "Marketing digital", "Conteúdo Digital", "Métricas para redes sociais", "como salvar gatinhos =P"],"location":"Campinas /SP","photo":null,"email":"melissacdevens@gmail.com","linkedin":null,"github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 257 | {"name":"Michele Costa","interests":["Programação (Java)", "UML"],"location":"Rolim de Moura/RO","photo":null,"email":null,"linkedin":null,"github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 258 | {"name":"Michelle Guimarães","interests":["Empreendedorismo"],"location":"Manaus/AM","photo":null,"email":null,"linkedin":null,"github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 259 | {"name":"Mila Paes Leme Marques", "interests":["Marketing", "Comunicação Digital"], "location": "São Paulo/SP", "photo":null,"email":null, "linkedin": "milaplm","github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 260 | {"name":"Mimi Newton", "interests":["Marketing Digital", "SEO", "SEM", "Branding"], "location": "São Paulo/SP", "photo":"https://media.licdn.com/mpr/mpr/shrinknp_200_200/AAEAAQAAAAAAAAxVAAAAJDQyOTdjYzZiLTBlNmQtNDgwYS1iMmNmLTk3ZTc2YjM4MGY5MA.jpg","email":null, "linkedin": "miminewton","github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 261 | {"name":"Mirian Meliani Nunes", "interests":["Redes Sociais", "Economia Local", "Juventude", "NetAtivismo"], "location": "São Paulo/SP", "photo":null,"email":null, "linkedin": "mirian-meliani-nunes-23318424","github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 262 | {"name":"Mônica Bulgari","interests":["Feminismo", "LifeHacking", "Comunicação e Questões de Gênero"],"location":"Campinas/SP","photo":null,"email":"monicabulgari@gmail.com","linkedin":null,"github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 263 | {"name":"Mychelle Jacob","interests":["Moda", "Economia Criativa", "Cidades inteligentes e humanizadas"],"location":"Olinda/PE ","photo":null,"email":"mychjacob@gmail.com ","linkedin":null,"github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 264 | {"name":"Myrian Connor", "interests":["Mobilização Digital", "Cobertura Digital de Eventos", "Articulação Política", "Software Livre", "Relações Públicas"], "location": "Castanhal/PA", "photo":"https://media.licdn.com/mpr/mpr/shrinknp_200_200/AAEAAQAAAAAAAAjGAAAAJDg2ZGU5MWIzLThkYWItNDkxMS1iYTk0LTdmZTA1OGFhMDIxMg.jpg","email":null, "linkedin": "myrianconor","github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 265 | {"name":"Nadezhda Bezerra Batista","interests":["Economia Criativa"],"location":"Recife/PE","photo":null,"email":null,"linkedin":null,"github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 266 | {"name":"Nádia Rebouças", "interests":["Publicidade", "Relações Públicas", "Consumo Consciente", "Comunicação Face a Face", "Responsabilidade Social"], "location": "Rio de Janeiro/RJ", "photo":"https://media-exp2.licdn.com/mpr/mpr/shrinknp_200_200/AAIAAgDGAAAAAQAAAAAAAAmeAAAAJDBmZTY5NGExLTQxOTMtNDc2Yi1hOTkxLTY4OWI1MjUzYTkxZg.jpg","email":null, "linkedin": "nádia-rebouças-b882445","github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 267 | {"name":"Natália Menhem", "interests":["Marketing", "Engajamento Cívico", "Mulheres na Tecnologia", "Ciências Sociais"], "location": "Belo Horizonte/MG", "photo":"https://media.licdn.com/mpr/mpr/shrinknp_200_200/AAEAAQAAAAAAAAuTAAAAJDU1YmY3YTU1LTdmMmEtNDhmOS05OTFhLTk3M2E0NjczYjVmYQ.jpg","email":null, "linkedin": "nataliamenhem","github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 268 | {"name":"Natascha Hun","interests":["SEO", "usabilidade", "Marketing digital"],"location":"Sorocaba/SP","photo":null,"email":"natascha.sh@gmail.com","linkedin":null,"github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 269 | {"name":"Natasha Romariz", "interests":["Publicidade", "Propaganda", "Cannes", "Prêmios", "Direção de Arte", "Mercado de Trabalho"], "location": "Rio de Janeiro/RJ", "photo":"https://media.licdn.com/mpr/mpr/shrinknp_200_200/AAEAAQAAAAAAAAh8AAAAJGYxZDdmZTZhLTFhZGQtNDZhNy04MDY2LTgwZTRmNjcyZjQ1ZA.jpg","email":null, "linkedin":"natasha-romariz-maasri-3854084","github":null,"twitter":null,"fb":"natasha.r.maasri", "behance": null, "site": "http://cargocollective.com/natasharmaasri"}, 270 | {"name":"Nathalia Novaes Leonessa","interests":["Empreendedorismo", "Qualidade de Software", "Engenharia de Software", "Processos", "Requisitos", "Testes"],"location":"Sorocaba/SP","photo":null,"email":"naty.novaes@gmail.com","linkedin":null,"github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 271 | {"name":"Nathalia Sautchuk Patrício","interests":["Levantamento de Requisitos", "Engenharia de Software", "Desenvolvimento de Software", "Tecnologia educacional", "Software Livre", "Governança da Internet", "Mulheres na tecnologia e/ou na engenharia", "Educação"],"location":"São Paulo/SP","photo":null,"email":"nathalia.sautchuk@gmail.com","linkedin":"nathaliapatricio","github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 272 | {"name":"Nessa Rodrigues", "interests":["Design de Negócios", "Design de Serviços", "Design Thinking", "Comunicação Institucional", "Planejamento", "Comportamento do Consumidor"], "location": "Porto Alegre/RS", "photo":"https://media.licdn.com/mpr/mpr/shrinknp_200_200/AAEAAQAAAAAAAAqnAAAAJDllZGQzNWVhLWUyMTQtNDJlNS05NGMxLTNlMjlkNWM1OWQ2Yw.jpg","email":null, "linkedin": "nessarrpp","github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 273 | {"name":"Olivia Janequine","interests":["Agilidade", "Gestão de Projetos", "Transformação Digital", "Governo Digital"],"location":"Porto Alegre/RS","photo":null,"email":"oliviaj@thoughtworks.com","linkedin":null,"github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 274 | {"name":"Paola Tucunduva","interests":["Empreendedorismo"],"location":"São Paulo/SP","photo":null,"email":null,"linkedin":null,"github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 275 | {"name":"Patricia Almeida Ferreira","interests":["Téc de suporte"],"location":"São Paulo/SP","photo":null,"email":null,"linkedin":null,"github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 276 | {"name":"Patricia Arruda", "interests":["Imagem Pessoal", "Imagem Profissional"], "location": null, "photo":null,"email":"patriciamm.arruda@gmail.com", "linkedin": null,"github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 277 | {"name":"Patricia de Paula","interests":["Análise de mídias sociais", "Web Designer", "Programação"],"location":"União da Vitória/PR","photo":null,"email":"devotcha.patricia@gmail.com","linkedin":null,"github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 278 | {"name":"Patricia Kouzmine", "interests":["Pesquisa de Mercado", "Inteligência de Mercado", "Comportamento do consumidor"], "location": "São Paulo/SP", "photo":"https://media-exp2.licdn.com/mpr/mpr/shrinknp_200_200/AAIA_wDGAAAAAQAAAAAAAAy7AAAAJGUwNTQxMGJkLTJmMmYtNDliMy05NGFmLTM5MjA3NTFmY2I3OQ.jpg","email":null, "linkedin": "patricia-kouzmine-34533515","github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 279 | {"name":"Patricia Ramos de Quadros", "interests":["Google AdWords", "Google Meu Negócio", "Google Analytics"], "location": "Brasília/DF", "photo":null,"email":null, "linkedin": "patriciaramosdequadros","github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 280 | {"name":"Patrícia Ribeiro", "interests":["Colaboração", "Economia Colaborativa"], "location": "São Paulo/SP", "photo":null,"email":null, "linkedin":null,"github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 281 | {"name":"Patrícia Sant'Anna", "interests":["Moda", "Empreendedorismo", "Tendências"], "location": "Campinas/SP", "photo":"https://media.licdn.com/mpr/mpr/shrinknp_400_400/AAEAAQAAAAAAAAdHAAAAJDE5NDQxMTQ0LWU0M2YtNDQzOC1iZTQ4LWY1N2UwZTE0ODhkYw.jpg","email":null, "linkedin": "patricia-sant-anna-284b6222","github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 282 | {"name":"Paula Diniz", "interests":["Front-End", "Testes", "Ruby"], "location": "São Paulo/SP", "photo":null,"email":null, "linkedin": null,"github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 283 | {"name":"Paula Faria","interests":["Front-end", "UX"],"location":"Belo Horizonte/MG","photo":null,"email":"paulah37@gmail.com","linkedin":"paulasfaria","github":"paulahfaria","twitter":null,"fb":"paulahfaria", "behance": null, "site": null}, 284 | {"name":"Paula Grangeiro","interests":["Desenvolvimento de software", "Python", "AngularJS", "JavaScript", "C#"],"location":"Rio de Janeiro/RJ","photo":"https://avatars0.githubusercontent.com/u/2524981?v=3&s=160","email":"contato@paulagrangeiro.com.br","linkedin":"paulagrangeiro","github":"pgrangeiro","twitter":"paulagrangeiro","fb":"paula.grangeiro", "behance": null, "site": "http://paulagrangeiro.com.br/"}, 285 | {"name":"Paula Quintão","interests":["Empreendedorismo"],"location":"Manaus/AM","photo":null,"email":null,"linkedin":null,"github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 286 | {"name":"Paulinha Paz", "interests":["Marketing Digital", "Planejamento", "Comunicação 360"], "location": "Salvador/BA", "photo":"https://media.licdn.com/mpr/mpr/shrinknp_200_200/p/1/005/09a/2c1/08df93d.jpg","email":null, "linkedin": "paulinhapaz","github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 287 | {"name":"Preta Emmeline","interests":["Empreendedorismo"],"location":"Natal/RN","photo":null,"email":null,"linkedin":null,"github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 288 | {"name":"Priscila Antunes","interests":["Empreendedorismo", "Python", "Inteligência Artificial", "Educação"],"location":"Mato Grosso/Pará/Paraná","photo": "https://avatars0.githubusercontent.com/u/13042716?s=400&u=7a8fd7714220d13952083055266c2ef5f21ca089&v=4","email":"pripstai@gmail.com","linkedin":"priscila-antunes-944b5b39","github":"priscilaantunes","twitter":null,"fb":"pri.antunes2", "behance": null, "site": "https://priscilaantunes.github.io/"}, 289 | {"name":"Priscila Chagas","interests":["Agile", "Análise de Negócios", "Empoderamento Feminino"],"location":"São Paulo/SP","photo":"https://s.gravatar.com/avatar/0ecd5129c8defe57116e45a8078c2a68?s=80","email":null,"linkedin":"priscilaribeiro","github":null,"twitter":"donaprig","fb":"priscilaribeiro", "behance": null, "site": "https://priscilachagas.com/"}, 290 | {"name":"Rafaela Marques", "interests":["Análise de Mídia", "Conteúdo", "Blogs", "Jornalismo"], "location": "Rio de Janeiro/RJ", "photo":"https://media.licdn.com/mpr/mpr/shrinknp_200_200/AAEAAQAAAAAAAAimAAAAJDNmY2FjMWI5LWViODktNDhhZi04N2Y3LTA2MjQxNDUzMDM5YQ.jpg","email":null, "linkedin": "rafaelamarques","github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 291 | {"name":"Rafaella Cavalca","interests":["Finanças", "Negócios Digitais"],"location":"Rio de Janeiro/RJ","photo":null,"email":null,"linkedin":null,"github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 292 | {"name":"Raissa dos Santos Ferreira","interests":["Desenvolvimento de Software", "Ruby", "Rails", "Javascript", "AngularJS"],"location":"Rio de Janeiro/RJ","photo":"","email":"rai200890@gmail.com","linkedin":null,"github":"rai200890","twitter": "rai200890","fb":"rai200890", "behance": null, "site": null}, 293 | {"name":"Raissa Klain Belchior","interests":["Empreendedorismo", "Startups", "Motivação", "Conteúdo", "BizDev"],"location":"São Paulo/SP","photo":"https://media.licdn.com/mpr/mpr/shrinknp_200_200/AAEAAQAAAAAAAAh_AAAAJDg3YTdhY2RhLWFlMTItNGJhYS04MmZjLWIzNzA0ZDZkODRmYw.jpg","email":null,"linkedin":"raissaklain","github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 294 | {"name":"Raquel Camargo", "interests":["Comunicação Digital", "Mídias Sociais", "Open Data", "Empreendedorismo", "Facilitação de Eventos Colaborativos", "Metodologias de Conversação", "Blogs", "Monetização"], "location": "Belo Horizonte/MG", "photo":"https://media.licdn.com/mpr/mpr/shrinknp_200_200/AAEAAQAAAAAAAAlqAAAAJGZmYzk4Y2JmLTU4OWEtNDhmMS04MmU3LTdjNjFmMzM5MjZjYg.jpg","email":null, "linkedin": "raquelcamargo","github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 295 | {"name":"Raquel de Oliveira Santos Lira","interests":["Empreendedorismo", "Políticas Públicas", "Inovação na Educação"],"location":"Recife/PE","photo":null,"email":"raquel.lira@igarassu.ifpe.edu.br","linkedin":null,"github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 296 | {"name":"Raquel Prado","interests":["UX Design", "UI Design", "Usabilidade", "Prototipação", "App Design"],"location":"Curitiba/PR","photo":null,"email":"raquelpradob@gmail.com","linkedin":"raquelpradob","github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 297 | {"name":"Raquel Preto","interests":["Leis para startups"],"location":"São Paulo/SP","photo":null,"email":null,"linkedin":null,"github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 298 | {"name":"Raquel Santachiara","interests":["Design Thinking", "Empreendedorismo Social"],"location":"Vila Velha/ES","photo":null,"email":null,"linkedin":null,"github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 299 | {"name":"Rayanny Nunes","interests":["Empreendedorismo"],"location":"Natal/RN","photo":null,"email":null,"linkedin":null,"github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 300 | {"name":"Reimy Solange Chagas", "interests":["Psicologia Intercultural", "Imigração", "Interculturalidade", "Multiculturalismo", "Famílias Culturalmente Diversas"], "location": "São Paulo/SP", "photo":null,"email":null, "linkedin": "reimy-solange-chagas-821779108","github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 301 | {"name":"Renata Machado Tárrio", "interests":["Marketing Digital", "Marketing de Conteúdo", "Comunicação", "Semiótica"], "location": "São Paulo/SP", "photo":"https://media.licdn.com/mpr/mpr/shrinknp_200_200/AAEAAQAAAAAAAAMUAAAAJDUxZWE0OGQ2LTk0N2MtNDIwOS04MzBlLWNjM2RkNzIzOGJlMA.jpg","email":null, "linkedin": "renatatarrio","github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 302 | {"name":"Renata Masseroni","interests":["Empreendedorismo"],"location":"Porto Alegre/RS","photo":null,"email":null,"linkedin":null,"github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 303 | {"name":"Rebeca Bordini","interests":["Desenvolvimento de software", "Python", "Javascript", "React"],"location":"Rio de Janeiro/RJ","photo":"https://s.gravatar.com/avatar/cb653395be591fe2387eddfb9319e4a3","email":"bordini.rebeca@gmail.com","linkedin":"rebecabordini","github":"rebecabordini","twitter":"rebecabordini","fb":"rebecabordini", "behance": null, "site": null}, 304 | {"name":"Rebeca Serpa","interests":["Jornalismo", "Blogs", "Igrejas", "MPB"],"location":"Osasco/SP","photo":null,"email":"rebeca.serpa@hotmail.com","linkedin":"rebeca-serpa-35560a45","github":null,"twitter":"rebecaserpa","fb":"rebeca.serpa", "behance": null, "site": null}, 305 | {"name":"Rita Lino","interests":["Empreendedorismo", "Inovação", "Programação"],"location":"Santos/SP","photo":null,"email":null,"linkedin":null,"github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 306 | {"name":"Robertta Mota","interests":["Valuation", "Investimento", "Internacionalização"],"location":"Fortaleza/CE","photo":null,"email":null,"linkedin":null,"github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 307 | {"name":"Ronaiza Cardoso","interests":["Web", "Programadora PHP", "Git", "Laravel"],"location":"Brasilia/DF","photo":"https://s.gravatar.com/avatar/f45e8318bf829e33e34c1b8b10e2cb1d?s=80","email":"ronaizacarda@gmail.com","linkedin":"ronaiza-cardoso-2a20b47b","github":"yesroh","twitter":"ronaizacard","fb":null, "behance": null, "site": null}, 308 | {"name":"Rosália Cipriano Oliveira", "interests":["Curadoria de Conteúdo", "Social Content", "Jornalismo Digital"], "location": "São Paulo/SP", "photo":"https://media.licdn.com/mpr/mpr/shrinknp_200_200/AAMAAgDGAAwAAQAAAAAAAA8YAAAAJDg3YmI2ODkwLThlNjAtNGEyYy04MDUxLWJiODM1NTRkZTY3YQ.jpg","email":null, "linkedin": "rosaliaoliveira","github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 309 | {"name":"Rosi Rodrigues","interests":["Empreendedorismo"],"location":"São Paulo/SP","photo":null,"email":null,"linkedin":null,"github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 310 | {"name":"Rosicléia Frasson","interests":["Desenvolvimento Front e Back-end", "Java", "Agile", "Desenvolvimento Web"],"location":"Joinville/SC","photo":"https://s.gravatar.com/avatar/6be2f94c93c57c403c131e6c80b6c356?s=80","email":"rosicleiafrasson@gmail.com","linkedin":"rosicleiafrasson","github":"rosicleiafrasson","twitter":"rosifrasson","fb":"rosicleia.frasson", "behance": null, "site": null}, 311 | {"name":"Rute Faria", "interests":["Mídias Sociais", "Monitoramento", "Mensuração de Dados", "Curadoria", "Produção de Conteúdo"], "location": "Belo Horizonte/MG", "photo":"https://media.licdn.com/mpr/mpr/shrinknp_200_200/AAEAAQAAAAAAAAlyAAAAJDkzYzQ4MmMzLWNiYWItNDUzNC05YjA5LTU3ZGQ3OTRkMzYxMA.jpg","email":null, "linkedin": "rutefaria","github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 312 | {"name":"Samanta Cicilia","interests":["Testes", "Agilidade", "Automação", "Lean", "Continuos Delivery", "DevOps", "Qualidade de Software", "Comunidades"],"location":"Rio de Janeiro/RJ","photo":null,"email":"samycici@gmail.com","linkedin":null,"github":"samycici","twitter":"samantacicilia","fb":"samanta.cicilia", "behance": null, "site": null}, 313 | {"name":"Samantha Rosa","interests":["UX", "Liderança", "Design", "Educação"],"location":"Porto Alegre/RS","photo":"https://avatars1.githubusercontent.com/u/2932644?s=150&v=4","email":"sah.rosa@gmail.com / srosa@thoughtworks.com","linkedin":"sahrosa","github":"sahrosa","twitter":"sahrosa","fb":null, "behance": null, "site": "http://sahrosa.com"}, 314 | {"name":"Samira Almeida", "interests":["Empreendedorismo", "Inovação", "Tecnologia em Educação", "Comunicação", "Literatura", "Leitura"], "location": "São Paulo/SP", "photo":"https://storymax.me/images/samira_lowres.jpg","email":null, "linkedin": "samiralmeida","github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 315 | {"name":"Sandy Maciel", "interests":["Qualidade de Software","Teste de Software","Lua Lang","Mulheres na Tecnologia","Empreendedorismo","Gerência de Processo","Gamificação"],"location": "Fortaleza/CE", "photo": "https://avatars1.githubusercontent.com/u/6650913?v=3&s=466","email": "elleysandymaciel@gmail.com", "linkedin": "sandymaciel","github": "SandyMaciel","twitter": "@_sandymaciel","fb": "ssandymaciel", "behance": null, "site": null}, 316 | {"name":"Silvana Bahia","interests":["Inovação", "Diversidade", "Makerspace"],"location":"Rio de Janeiro/RJ","photo":"http://www.mulheres.ba.gov.br/modules/galeria/uploads/951/destaque_1502386742SilvanaBahia.jpg","email": null,"linkedin":"silvana-bahia-836a2a2a","github": null,"twitter": null,"fb": "sil.bahia.3", "behance": null, "site": "http://pretalab.com"}, 317 | {"name":"Silvia Helena Rocha Campos", "interests":["Violência Doméstica", "Empoderamento Feminino", "Direitos da Criança e do Adolescente", "Relações Homoafetivas", "Guarda Compartilhada", "Casamentos Homoafetivos", "Adoção por casais do mesmo sexo", "Medidas Protetivas", "Cidadania", "Direitos e Deveres Básicos", "Educação"], "location": "São Paulo/SP", "photo":null,"email":"rockfield@ig.com.br", "linkedin": null,"github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 318 | {"name":"Silvia Valadares","interests":["Empreendedorismo"],"location":"São Paulo/SP","photo":null,"email":null,"linkedin":null,"github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 319 | {"name":"Simone Amorim","interests":["Desenvolvimento Web", "CSS", "Java Script"],"location":"Recife/PE","photo":"https://pt.gravatar.com/userimage/104536178/0d3d7d27f9da8e0f1d2b69c626c9b4cc.jpg","email":"simoneas03@gmail.com","linkedin":"simone-amorim-311a3a87","github":"simoneas02","twitter":"samorim02","fb":"simone.amorim.33", "behance": null, "site": "https://simoneas02.github.io/"}, 320 | {"name":"Simone Pittner","interests":["Desenvolvimento de Software", "Agilidade", "Gestão de Projetos", "Gestão de Processos","Empreendedorismo"],"location":"Florianópolis/SC e São Paulo/SP","photo":null,"email":"simone.pittner@gmail.com","linkedin":"simone-pittner-53971034","github":"simonepittner","twitter":"SimonePittner","fb":"simone.pittner", "behance": null, "site": null}, 321 | {"name":"Soraia Lima", "interests":["Monitoramento de Mídias Sociais", "Branded Content", "Jornalismo Digital", "Social Journalism"], "location": "São Paulo/SP", "photo":"https://pbs.twimg.com/profile_images/573831054903013377/6z7rU3yQ_400x400.jpeg","email":null, "linkedin": "solima","github":null,"twitter":"soraialima","fb":null, "behance": null, "site": "http://soraialima.com"}, 322 | {"name":"Stella Dauer", "interests":["Resenhas", "Gadgets", "Canais no YouTube"], "location": "São Bernardo do Campo/SP", "photo":"https://media.licdn.com/mpr/mpr/shrinknp_200_200/p/4/000/133/025/07bab57.jpg","email":null, "linkedin": "stelladauer","github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 323 | {"name":"Suzana Bueno", "interests":["SAC", "Relacionamento", "Desenvolvimento TI", "Games"], "location": "Campinas/SP", "photo":"https://media.licdn.com/mpr/mpr/shrinknp_200_200/AAEAAQAAAAAAAA29AAAAJDBiMjY0ZjkxLTBhMDUtNDg3NC04ZmNlLTU4MmQyNjRjZGJlYQ.jpg","email":null, "linkedin": "suzanabueno","github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 324 | {"name":"Suzana Cohen", "interests":["Comunicação Digital", "Trend Hunting", "Novas Mídias"], "location": "Belo Horizonte/MG", "photo":null,"email":null, "linkedin": "suzanacohen","github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 325 | {"name":"Tais Oliveira", "interests":["Marketing Digital", "Relações Públicas", "Planejamento", "Blogs", "Comunicação Empresarial"], "location": "Guarulhos/SP", "photo":null,"email":null, "linkedin": "taisrp","github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 326 | {"name":"Talita Lombardi","interests":["Vendas para negócios digitais"],"location":"São Paulo/SP","photo":null,"email":null,"linkedin":null,"github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 327 | {"name":"Talita Pagani","interests":["UX", "front-end", "acessibilidade Web", "usabilidade", "carreira", "vida acadêmica", "mercado de trabalho", "engenharia de software"],"location":"São Paulo/SP","photo":null,"email":"talita.cpb@gmail.com","linkedin":"talitapagani","github":"talitapagani","twitter":"talitapagani","fb":"talitapagani", "behance": "talitapagani", "site": "http://talitapagani.com"}, 328 | {"name":"Talita Rossari ","interests":["Development", "Backend", "Python", "Git", "Django"],"location":"Florianópolis/SC","photo":"https://pt.gravatar.com/userimage/112996148/dd46d758ae021e8f78c9cd8cefef0c27.jpg?size=500","email":"rossaritalita@gmail.com","linkedin":"talita-rossari-2903bab6","github":"talitarossari","twitter":null,"fb":"TalitaRossari", "behance": null, "site": null}, 329 | {"name":"Tancicleide Gomes","interests":["Lógica de Programação", "App Inventor", "Scratch", "PHP", "Python", "Javascript", "jQuery", "Desenvolvimento Web", "Design de Jogos Educativos", "Inovação em Educação", "Gamificação", "Mobile Learning", "Design Participativo"],"location":"Recife/PE","photo":null,"email":"tancigomes@bsi.ufrpe.net","linkedin":null,"github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 330 | {"name":"Tatiana Assali","interests":["Investimento Responsável", "Finanças Sustentáveis"],"location":"São Paulo/SP","photo":null,"email":"tatiana.assali@gmail.com","linkedin":null,"github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 331 | {"name":"Tatiana Lourenço","interests":["Branding", "Gestão de Negócios", "Design", "Storytelling"],"location":"Fortaleza/CE","photo":null,"email":"tati@ponkstoy.com","linkedin":null,"github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 332 | {"name":"Tatiana Pezoa","interests":["E-commerce"],"location":"Campinas/SP","photo":null,"email":null,"linkedin":null,"github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 333 | {"name":"Tatiana Tosi","interests":["Netnografia"],"location":"São Paulo/SP","photo":null,"email":null,"linkedin":null,"github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 334 | {"name":"Tatiana Vargas Maia", "interests":["Feminismo", "Teoria Feminista", "Questões de Gênero", "Política Contemporânea", "Relações Internacionais", "Nacionalismo", "Identidades"], "location": "Porto Alegre/RS", "photo":null,"email":null, "linkedin": "tatianavm","github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 335 | {"name":"Tatiane Conceição Vergueiro", "interests":["Jornalismo Digital", "Política", "Advocacy", "Social"], "location": "São Paulo/SP", "photo":null,"email":null, "linkedin": "tatianeconceicaovergueiro","github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 336 | {"name":"Tatti Maeda", "interests":["Marketing de Atendimento", "Conteúdo", "Pessoal"], "location": "São Paulo/SP", "photo":"https://media.licdn.com/mpr/mpr/shrinknp_200_200/AAEAAQAAAAAAAAxBAAAAJDU3ODJiZjg5LTk1N2EtNGRmOS04YzNiLTg0ZGVjNWU1Njg3ZA.jpg","email":null, "linkedin": "tattimaeda","github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 337 | {"name":"Tayra Vasconcelos", "interests":["Assessocia comercial para blogs"], "location": "São Paulo/SP", "photo":null,"email":null, "linkedin": "tayra","github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 338 | {"name":"Thaiane Braga", "interests":["Ágil", "Ruby", "Segurança", "Web", "Feminismo", "Igualdade Racial", "Software Livre", "Liderança"], "location": "Porto Alegre/RS", "photo":"https://s.gravatar.com/avatar/6fa9c89794615c0b986e64dc43ebd68c?s=200","email":"thaianefbraga@gmail.com", "linkedin": "thaianebraga", "github":"Thaiane", "twitter":null,"fb":"thaiane.thaibraga", "behance": null, "site": null}, 339 | {"name":"Thais Gentile", "interests":["Social Mídia", "Conteúdo"], "location": "Belém/PA", "photo":null,"email":null, "linkedin": "thais-gentile-0291ab97","github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 340 | {"name":"Thais Godinho", "interests":["Produtividade Pessoal", "Organização", "Coaching"], "location": "São Paulo/SP", "photo":null,"email":null, "linkedin": "thaisgodinho","github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 341 | {"name":"Thais Moura de Freitas", "interests":["Computação"], "location": "Recife/PE", "photo":null,"email":null, "linkedin": "thaís-freitas-056b1540","github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 342 | {"name":"Thais Souza", "interests":["Mídias Sociais", "Planejamento", "Monitoramento"], "location": "Salvador/BA", "photo":null,"email":null, "linkedin": "thasouza","github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 343 | {"name":"Thaisa Mirely","interests":["Mobile", "Pesquisa Acadêmica", "Software livre"],"location":"Recife/PE","photo":null,"email":"mirelythaisa@gmail.com","linkedin":null,"github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 344 | {"name":"Thaise Saeter","interests":["Comunicação", "Economia Criativa "],"location":"Porto Alegre/RS","photo":null,"email":"thaise@jornalistica.com.br","linkedin":null,"github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 345 | {"name":"Thalita Nick Pinheiro","interests":["Development", "Backend", "JavaScript", "Qualidade", "Agilidade"],"location":"Belo Horizonte/MG","photo":"https://en.gravatar.com/userimage/23703294/e4103d70005e648a639d33a287a8dc0d.jpg","email":"thalitanpg@gmail.com ","linkedin": "thalitapinheiro","github": "ThalitaPinheiro","twitter": "ThalitaPinheiro", "fb": "Thalita.Nick", "behance": null, "site": null}, 346 | {"name":"Thaty Moura", "interests":["Inteligência", "Planejamento", "Gestão de Crise", "Gestão de Equipe"], "location": "São Paulo/SP", "photo":null,"email":null, "linkedin": "thatymoura","github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 347 | {"name":"Uafa Smaili","interests":["SEO", "UX Design", "Mídias Sociais"],"location":"São Paulo/SP","photo":null,"email":null,"linkedin":null,"github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 348 | {"name":"Valéria Barros","interests":["Programação", "PHP", "Alfabetização Para Web", "Mercado de Trabalho", "Software Livre", "Mulheres na Tecnologia", "Mozilla"],"location":"Goiânia/GO","photo":null,"email":"valeria@valeriabarros.eu","linkedin":"valeriabarros","github":null,"twitter":"@barros_val","fb":null, "behance": null, "site": null}, 349 | {"name":"Vanessa Gonçalves Ferreira", "interests":["Marketing Digital", "Mídias Sociais", "Portais", "Retorno no Investimento em Marketing", "Inbound Marketing", "Email Marketing", "Plano de Comunicação Integrada"], "location": "Belo Horizonte/MG", "photo":"https://media.licdn.com/mpr/mpr/shrinknp_200_200/p/3/000/1cc/10b/1ddbed5.jpg","email":null, "linkedin": "vanessagferreira","github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 350 | {"name":"Vanessa Kukul", "interests":["Inteligência Coletiva", "Empreendedorismo", "Negócios Sociais", "Gestão de Pessoas", "Liderança", "Inovação"], "location": "Caxias do Sul/RS", "photo":"https://media.licdn.com/mpr/mpr/shrinknp_200_200/p/1/000/1d1/008/1b874de.jpg","email":null, "linkedin": "vanessakl","github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 351 | {"name":"Vanessa Me Tonini","interests":["Métodos Ágeis","Angular2","Marialab","Acessibilidade Web","FrontEnd","Git","Magento"],"location":"São Paulo/SP","photo":null,"email":"vanessametonini@gmail.com","linkedin":"vanessametonini","github":"vanessametonini","twitter":"vanessametonini","fb":"vanessametonini", "behance": null, "site": null}, 352 | {"name":"Vanessa Queiroz", "interests":["Empreendedorismo", "Design", "Branding", "Ilustração"], "location": "São Paulo/SP", "photo":"https://media.licdn.com/mpr/mpr/shrinknp_200_200/AAEAAQAAAAAAAAuwAAAAJGFkZjQ4ODBhLWMwY2UtNDg1MC04MTI5LTk2NzI1ODkwYzkyYQ.jpg","email":null, "linkedin": "vanessa-queiroz-22281b38","github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 353 | {"name":"Vanessa Rocha","interests":["Monetização", "Internacionalização"],"location":"São Paulo/SP","photo":null,"email":null,"linkedin":null,"github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 354 | {"name":"Vera Cristina de Moraes", "interests":["Inovação", "Conteúdo", "Marketing para Startup", "Empreendedorismo", "Tecnologia", "Jornalismo Online"], "location": "Londrina/PR", "photo":"https://media.licdn.com/mpr/mpr/shrinknp_200_200/AAEAAQAAAAAAAAGDAAAAJDhmOGRhMjExLWNkZGMtNDBhMy1hNmI4LWZjZjUwNTRlMWE4NQ.jpg","email":null, "linkedin": "veramoraes","github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 355 | {"name":"Vivian Vianna", "interests":["Marketing de Conteúdo", "Empreendedorismo", "Marketing Digital", "WordPress"], "location": "São Paulo/SP", "photo":"https://media.licdn.com/mpr/mpr/shrinknp_200_200/AAEAAQAAAAAAAATqAAAAJGQ2ZDgyN2FkLThkYmItNDBiOC05YzI3LWU4Mzk0ZmQyNzZjZA.jpg","email":null, "linkedin": "vivianvianna","github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 356 | {"name":"Viviane Vilella","interests":["E-commerce"],"location":"São Paulo/SP","photo":null,"email":null,"linkedin":null,"github":null,"twitter":null,"fb":null, "behance": null, "site": null}, 357 | {"name":"Yanne Moreira","interests":["Wordpress", "FrontEnd", "Design", "Interface Design", "UX Design"],"location":"Curitiba/PR","photo":null,"email":"yanne.b.moreira@gmail.com","linkedin":"yannemoreira","github":"riopse","twitter":null,"fb":null, "behance": null, "site": null}, 358 | {"name":"Yasodara Córdova","interests":["Web", "Semantic Web", "Data", "Open Data", "Datavis", "UX Design"],"location":"São Paulo/SP","photo":null,"email":"yasodara.cordova@gmail.com","linkedin":"yasodara","github":"yaso","twitter":"yaso","fb":null, "behance": null, "site": null} 359 | ] 360 | } 361 | --------------------------------------------------------------------------------