-
Notifications
You must be signed in to change notification settings - Fork 6
/
index.html
70 lines (66 loc) · 3.01 KB
/
index.html
1
2
3
4
5
6
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
,<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<title>E assim disse LUIZ.</title>
<link href="index.css" rel="stylesheet" type="text/css">
<link href='https://fonts.googleapis.com/css?family=Great+Vibes' rel='stylesheet' type='text/css'>
</head>
<body>
<div class="wrapper-main">
<div class="lo-content">
<cite class="la-frase"> </cite>
<p class="lo-filoso">- Luiz Gois</p>
</div>
<img class="lo-chico" alt='lo-chico' src="filosofo.png" />
</div>
<script type='text/javascript'>
var frases = [
'Leva sua máquina pra aws!',
'Fui o destaque por fazer meu trabalho!',
'Não gostou? Abre PR!',
'Depois que atrasar, não adianta reclamar!',
'Abriu chamado?',
'Tal tudo.',
'Porra Bahia! De novo!',
'Cala a boca aí carai.',
'Abri 10 PR, já revisei os 10 e fechei.',
'Ow, consegue ver? Estou chegando em casa!',
'Vou te ajudar, mas não me dá um /valeu.',
'Se me der um /valeu, não te ajudo nunca mais!',
'Eu vi, entendi e está errado!',
'Faz o que eu to falando e não reclama!',
'Vou deixar minha máquina aberta, quero ver quem vai mexer!',
'Não teve deploy... Quando faço aviso no canal!',
'Vai e manda PR, carai, vai ficar jogando essa porra de Pokemón GO?',
':sergio2: Ow, cadê o :bahia: ? \r\n:luiz: No meu bolso não tá.',
'Você tem acesso na AWS? Não? Então tá, flw.',
'Procura ai no Google então: tan nananan tan nanan... tan nananan tan nanan...',
':sergio2: Ow, deixa eu te perguntar uma coisa...\r\n:luiz: Pergunta pro Google.',
'Já te ajudei, agora some da minha frente!',
'Em uma tarde você mandou dois PRs, em uma manhã eu fiz 4 deploys em produção',
'Não dá.',
':arn:: E ae Luiz, tudo certo ? \r\n:luiz:: Não sei. Você que veio pra minha mesa perguntar...',
'Se precisar, eu faço deploy até do celular',
'Já deu de `/vlw`, bora trabalhar'
]
shuffle = function(a) {
var j, x, i;
for (i = a.length; i; i--) {
j = Math.floor(Math.random() * i);
x = a[i - 1];
a[i - 1] = a[j];
a[j] = x;
}
}
change = function() {
shuffle(frases)
la_frase = document.getElementsByClassName('la-frase')[0]
la_frase.innerHTML = '“ ' + frases[0] + ' ”'
}
change()
setInterval(change, 10000);
</script>
</body>
</html>