|
31 | 31 |
|
32 | 32 | 'game_settings' => [ |
33 | 33 | 'daily_double_min_value' => 300, |
34 | | - 'lightning_round_time_limit' => 30, |
35 | | - 'points_multiplier' => 1, |
36 | | - ], |
37 | | - |
38 | | - 'sound_effects' => [ |
39 | | - 'daily_double' => 'sounds/daily-double.mp3', |
40 | 34 | ], |
41 | 35 |
|
42 | 36 | 'categories' => [ |
43 | | - 'Taylor\'s Version' => [ |
44 | | - 'clues' => [ |
45 | | - 100 => [ |
46 | | - 'question' => 'Swift\'s emotional 2012 album title describes what developers see when tests fail', |
47 | | - 'answer' => 'What is "Red"?', |
48 | | - ], |
49 | | - 300 => [ |
50 | | - 'question' => 'Taylor Otwell\'s take on server management and deployment, this SaaS platform lets you provision and manage servers without the command line hassle', |
51 | | - 'answer' => 'What is Laravel Forge?', |
52 | | - ], |
53 | | - 500 => [ |
54 | | - 'question' => 'Taylor\'s 2014 hit about relationships gone wrong also describes what PHP displays when you echo an uninitialized variable', |
55 | | - 'answer' => 'What is "Blank Space"?', |
56 | | - ], |
57 | | - 1000 => [ |
58 | | - 'question' => 'Before creating Laravel, Taylor Otwell programmed in this 1960s business language', |
59 | | - 'answer' => 'What is COBOL?', |
60 | | - ], |
61 | | - ], |
62 | | - ], |
63 | 37 | '404: Category Not Found' => [ |
64 | 38 | 'clues' => [ |
65 | 39 | 100 => [ |
66 | | - 'question' => 'This HTTP status code is returned when the client should authenticate itself', |
67 | | - 'answer' => 'What is 401 (Unauthorized)?', |
| 40 | + 'question' => 'This Laravel tool provides an interactive shell for testing code', |
| 41 | + 'answer' => 'What is Tinker?', |
68 | 42 | ], |
69 | 43 | 300 => [ |
70 | | - 'question' => 'This package provides a beautiful debugging interface to inspect errors', |
71 | | - 'answer' => 'What is Debugbar for Laravel?', |
| 44 | + 'question' => 'This Laravel blade directive is used to display unescaped HTML content', |
| 45 | + 'answer' => 'What is "{!! !!}"?', |
72 | 46 | ], |
73 | 47 | 500 => [ |
74 | | - 'question' => 'This error occurs when PHP runs out of allocated memory', |
75 | | - 'answer' => 'What is "Fatal error: Allowed Memory Size of X Bytes Exhausted"?', |
| 48 | + 'question' => 'This HTTP header is commonly missing when CORS errors occur', |
| 49 | + 'answer' => 'What is "Access-Control-Allow-Origin"?', |
76 | 50 | ], |
77 | 51 | 1000 => [ |
78 | 52 | 'question' => 'This HTTP status code means "I\'m a teapot" and was an April Fool\'s joke', |
|
95 | 69 | 'answer' => 'What is Washington, DC?', |
96 | 70 | ], |
97 | 71 | 1000 => [ |
98 | | - 'question' => 'This entrepreneur had the vision for the first Laracon.', // Hint: He is also knwn as the "Godfather of Laravel" |
| 72 | + 'question' => 'This entrepreneur had the vision for the first Laracon.', // Hint: He is also known as the "Godfather of Laravel" |
99 | 73 | 'answer' => 'Who is Ian Landsman?', |
100 | 74 | ], |
101 | 75 | ], |
|
140 | 114 | ], |
141 | 115 | ], |
142 | 116 | ], |
| 117 | + 'Taylor\'s Version' => [ |
| 118 | + 'clues' => [ |
| 119 | + 100 => [ |
| 120 | + 'question' => 'Swift\'s emotional 2012 album title describes what developers see when tests fail', |
| 121 | + 'answer' => 'What is "Red"?', |
| 122 | + ], |
| 123 | + 300 => [ |
| 124 | + 'question' => 'Taylor Otwell\'s take on server management and deployment, this SaaS platform lets you provision and manage servers without the command line hassle', |
| 125 | + 'answer' => 'What is Laravel Forge?', |
| 126 | + ], |
| 127 | + 500 => [ |
| 128 | + 'question' => 'Taylor\'s 2014 hit about relationships gone wrong also describes what PHP displays when you echo an uninitialized variable', |
| 129 | + 'answer' => 'What is "Blank Space"?', |
| 130 | + ], |
| 131 | + 1000 => [ |
| 132 | + 'question' => 'Before creating Laravel, Taylor Otwell programmed in this 1960s business language', |
| 133 | + 'answer' => 'What is COBOL?', |
| 134 | + ], |
| 135 | + ], |
| 136 | + ], |
143 | 137 | 'Eloquently Speaking' => [ |
144 | 138 | 'clues' => [ |
145 | 139 | 100 => [ |
|
170 | 164 | ['question' => 'What is the default Laravel testing framework?', 'answer' => 'Pest or PHPUnit'], |
171 | 165 | ['question' => 'What is Laravel\'s real-time event broadcasting tool?', 'answer' => 'Echo'], |
172 | 166 | ['question' => 'What is Laravel\'s blade directive for CSRF protection?', 'answer' => '@csrf'], |
173 | | - ['question' => 'Who is the found of Laravel News?', 'answer' => 'Eric Barnes'], |
| 167 | + ['question' => 'Who is the founder of Laravel News?', 'answer' => 'Eric Barnes'], |
174 | 168 |
|
175 | 169 | // Laravel Commands |
176 | 170 | ['question' => 'What is the command to list all routes?', 'answer' => 'php artisan route:list'], |
|
187 | 181 | ['question' => 'What is the HTTP status code for forbidden?', 'answer' => '403'], |
188 | 182 |
|
189 | 183 | // Frontend/CSS |
190 | | - ['question' => 'What is the CSS framework used in this project?', 'answer' => 'Tailwind'], |
| 184 | + ['question' => 'What is the CSS framework used in this project?', 'answer' => 'Tailwind CSS'], |
191 | 185 | ['question' => 'What is the JavaScript framework used for reactivity in Livewire?', 'answer' => 'Alpine.js'], |
192 | 186 | ['question' => 'What is the Tailwind CSS utility for spacing between flex items?', 'answer' => 'gap'], |
193 | 187 | ['question' => 'What is Tailwind\'s dark mode prefix?', 'answer' => 'dark:'], |
|
207 | 201 | ['question' => 'What database typically uses port 6379?', 'answer' => 'Redis'], |
208 | 202 |
|
209 | 203 | // Additional Laravel-specific questions |
210 | | - ['question' => 'What method skips X rows in an Eloquent query?', 'answer' => 'offset()'], |
| 204 | + ['question' => 'What method skips X rows in an Eloquent query?', 'answer' => 'offset() or skip()'], |
211 | 205 | ['question' => 'What artisan command rolls back the last migration batch?', 'answer' => 'migrate:rollback'], |
212 | 206 | ['question' => 'What facade provides access to the cache?', 'answer' => 'Cache'], |
213 | 207 | ['question' => 'What middleware verifies CSRF tokens on POST requests?', 'answer' => 'VerifyCsrfToken'], |
|
0 commit comments