-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjokes.js
More file actions
44 lines (43 loc) · 3.34 KB
/
jokes.js
File metadata and controls
44 lines (43 loc) · 3.34 KB
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
// jokes.js
export const jokes = [
// Spanish jokes
// "¿Por qué los programadores confunden Halloween y Navidad? Porque OCT 31 = DEC 25.",
// "¿Cuántos programadores hacen falta para cambiar una bombilla? Ninguno, eso es un problema de hardware.",
// "¿Por qué el código fue al médico? Porque tenía un bug.",
// "¿Qué le dice un bit al otro? Nos vemos en el bus.",
// "¿Por qué Java fue al gimnasio? Para convertirse en JavaScript.",
// "¿Por qué el programador siempre confunde la izquierda con la derecha? Porque no puede encontrar el puntero.",
// "¿Por qué el ordenador fue al doctor? Porque tenía un virus.",
// "¿Cuál es el animal favorito de un programador? El bug.",
// "¿Por qué los programadores odian la naturaleza? Porque tiene demasiados bugs.",
// "¿Qué hace un programador cuando tiene frío? Cierra las ventanas.",
// "¿Sabes por qué Little Bug nunca pierde sus tareas? Porque siempre las tiene bien planificadas.",
// "¿Qué le dice un Little Bug a otro? ¡Vamos a planificar la invasión del código!",
// "¿Por qué Little Bug es el mejor planificador? Porque siempre encuentra los bugs antes de que aparezcan.",
// "¿Cómo organiza Little Bug su día? Divide el tiempo en bytes manejables.",
// "¿Qué hace Little Bug cuando tiene muchas tareas? Las arrastra a la columna 'para mañana'.",
// "¿Por qué Little Bug siempre llega a tiempo? Porque tiene un planificador que no permite retrasos en el sistema.",
// "¿Cuál es el lema de Little Bug? 'Si puedes soñarlo, puedes programarlo... y planificarlo'.",
// "¿Qué le dice Little Bug a una tarea sin terminar? 'Te veo mañana en la misma columna'.",
// "¿Por qué Little Bug es tan productivo? Porque cada error lo ve como una característica no planificada.",
// "¿Cómo resuelve Little Bug un problema complejo? Lo divide en pequeñas tareas y las arrastra una a una.",
// English jokes
"Why do programmers confuse Halloween and Christmas? Because OCT 31 = DEC 25.",
"How many programmers does it take to change a light bulb? None, that's a hardware problem.",
"Why did the code go to the doctor? Because it had a bug.",
"What does one bit say to another bit? I'll see you on the bus.",
"Why did the computer go to the doctor? Because it had a virus.",
"What's a programmer's favorite animal? The bug.",
"Why do programmers hate nature? It has too many bugs.",
"What does a programmer do when they're cold? They close the windows.",
"Why does Little Bug never lose track of tasks? Because it's always well-planned.",
"What does one Little Bug say to another? Let's plan our code invasion!",
"Why is Little Bug the best planner? Because it always finds bugs before they appear.",
"How does Little Bug organize its day? By dividing time into manageable bytes.",
"What does Little Bug do when it has too many tasks? Drags them to the 'tomorrow' column.",
"Why is Little Bug always on time? Because it has a planner that doesn't allow system delays.",
"What's Little Bug's motto? 'If you can dream it, you can code it... and plan it'.",
"What does Little Bug say to an unfinished task? 'See you tomorrow in the same column'.",
"Why is Little Bug so productive? Because it sees every error as an unplanned feature.",
"How does Little Bug solve a complex problem? By breaking it into small tasks and dragging them one by one."
];