User contributions for Admin
From AWVVO
Jump to navigationJump to search
20 January 2025
- 17:0417:04, 20 January 2025 diff hist +108 N Vuetify Created page with "== Create new vuetify app == <syntaxhighlight lang="bash" copy> npm create vuetify@latest </syntaxhighlight>" current
19 January 2025
- 19:4419:44, 19 January 2025 diff hist +98 N Windows Forms App Created page with "== Center form == <syntaxhighlight lang="C#" copy> StartPosition = CenterScreen </syntaxhighlight>" current Tag: Visual edit: Switched
- 17:5617:56, 19 January 2025 diff hist +25 m Laravel form request →When not getting sql errors back current
- 17:5517:55, 19 January 2025 diff hist +2,212 N Laravel form request Created page with "== FormRequest template == <syntaxhighlight lang="php" copy> <?php namespace App\Http\Requests; use Illuminate\Foundation\Http\FormRequest; use Illuminate\Validation\ValidationException; use Illuminate\Contracts\Validation\Validator; use Illuminate\Http\Exceptions\HttpResponseException; class StoreFmeoRequest extends FormRequest { →* * Determine if the user is authorized to make this request. * * @return bool: public function authorize()..."
- 14:0914:09, 19 January 2025 diff hist +7 N Category:Laravel Created page with "Laravel" current
- 14:0914:09, 19 January 2025 diff hist −26 m Main Page No edit summary current
- 14:0714:07, 19 January 2025 diff hist −29 m Main Page No edit summary
- 14:0514:05, 19 January 2025 diff hist −114 m Main Page No edit summary
- 14:0514:05, 19 January 2025 diff hist −25 m Main Page →Most Popular Pages
- 14:0414:04, 19 January 2025 diff hist +131 m Main Page No edit summary
- 14:0014:00, 19 January 2025 diff hist +83 m Main Page No edit summary
- 13:5813:58, 19 January 2025 diff hist +23 m Laravel .env →Get .env variable current
- 13:5813:58, 19 January 2025 diff hist +22 m Laravel →Install composer current
- 13:5713:57, 19 January 2025 diff hist +22 m Laravel controller →action template current
- 13:5513:55, 19 January 2025 diff hist +9 m MediaWiki:Common.css No edit summary current
- 13:5313:53, 19 January 2025 diff hist +70 m MediaWiki:Common.css No edit summary
18 January 2025
- 17:4717:47, 18 January 2025 diff hist +122 N Laravel service Created page with "== Create service class == <syntaxhighlight lang="bash" copy> php artisan make:class Services/MyService </syntaxhighlight>" current
- 17:2717:27, 18 January 2025 diff hist +321 N Laravel environment Created page with "== Get environment == <syntaxhighlight lang="php" copy> App::environment(); </syntaxhighlight> == enable routes in development mode only == <syntaxhighlight lang="php" copy> // Conditional /test Route if (! App::environment('production')) { Route::get('/test', [TestController::class, 'index']); } </syntaxhighlight>" current
- 17:1217:12, 18 January 2025 diff hist +222 N Laravel logging Created page with "== View log == <syntaxhighlight lang="php" copy> // create batch file viewlog.bat powershell -file viewlog.ps1 // create viewlog.ps1 get-content -path storage\logs\laravel.log -wait // run viewlog.bat </syntaxhighlight>" current
- 16:5616:56, 18 January 2025 diff hist +154 N Laravel .env Created page with "== Get .env variable == <syntaxhighlight lang="php" copy> // .env APP_MY_VAR="xyz" // get value $value = env('APP_MY_VAR', 'default'); </syntaxhighlight>"
- 16:3416:34, 18 January 2025 diff hist +305 m Laravel controller No edit summary
- 16:3216:32, 18 January 2025 diff hist +464 m Laravel controller →action template
- 12:4112:41, 18 January 2025 diff hist +155 N Laravel controller Created page with "== action template == <syntaxhighlight lang="php" copy> public function index() { $data = []; return response()->json($data); } </syntaxhighlight>"
- 06:4606:46, 18 January 2025 diff hist +26 m Wikimedia No edit summary current
- 06:4006:40, 18 January 2025 diff hist +228 m Mysql →Create user current
- 06:3706:37, 18 January 2025 diff hist +503 m Wikimedia →syntaxhighlight Tag: Visual edit: Switched
- 06:3206:32, 18 January 2025 diff hist +112 N Wikimedia Created page with "== syntaxhighlight == <syntaxhighlight lang="python" copy> def quick_sort(arr): less = [] </syntaxhighlight>"
- 06:3106:31, 18 January 2025 diff hist +17 N Mysql Created page with "== Create user =="
- 06:2606:26, 18 January 2025 diff hist +16 m Nestjs →Installation current
17 January 2025
- 18:3618:36, 17 January 2025 diff hist +53 m Nestjs →Installation Tag: Visual edit: Switched
- 18:3118:31, 17 January 2025 diff hist +41 m Nestjs No edit summary Tag: Visual edit: Switched
- 18:2818:28, 17 January 2025 diff hist +72 N Nestjs Created page with "<syntaxhighlight lang="bash" line="1" copy> copy code </syntaxhighlight>" Tag: Visual edit: Switched
15 January 2025
- 20:1820:18, 15 January 2025 diff hist +126 N Svelte Created page with "== Installation == <syntaxhighlight lang="bash" line> npx sv create myapp cd myapp npm install npm run dev </syntaxhighlight>" current
- 20:0420:04, 15 January 2025 diff hist −391 m MediaWiki:Common.css Replaced content with "#footer { display: none; }" Tag: Replaced
- 20:0320:03, 15 January 2025 diff hist +198 m MediaWiki:Common.css No edit summary
- 20:0120:01, 15 January 2025 diff hist +223 N MediaWiki:Common.css Created page with "→CSS placed here will be applied to all skins: #footer-poweredbyico { →Hides the "Powered by MediaWiki" logo: display: none; } #footer-places-privacy { →Hides the "Privacy policy" link: display: none; }"
- 19:4419:44, 15 January 2025 diff hist +244 m Laravel →Install composer Tag: Visual edit: Switched
- 19:3919:39, 15 January 2025 diff hist +35 m Laravel No edit summary Tag: Visual edit
- 19:3819:38, 15 January 2025 diff hist +31 m Laravel No edit summary Tag: Visual edit
- 19:3619:36, 15 January 2025 diff hist +476 N Laravel Created page with "== Install composer == <syntaxhighlight lang="bash"> php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');" php -r "if (hash_file('sha384', 'composer-setup.php') === 'dac665fdc30fdd8ec78b38b9800061b4150413ff2e3b6f88543c636f7cd84f6db9189d43a81e5503cda447da73c7e5b6') { echo 'Installer verified'; } else { echo 'Installer corrupt'; unlink('composer-setup.php'); } echo PHP_EOL;" php composer-setup.php php -r "unlink('composer-setup.php');" </syntaxhighlight>" Tag: Visual edit
- 19:0519:05, 15 January 2025 diff hist −1 m Main Page Blanked the page Tags: Blanking Manual revert
- 19:0219:02, 15 January 2025 diff hist +1 Main Page No edit summary Tags: Reverted Visual edit
- 19:0119:01, 15 January 2025 diff hist −182 m Main Page Blanked the page Tags: Blanking Visual edit
- 19:0019:00, 15 January 2025 diff hist −573 Main Page →Getting started Tag: Visual edit: Switched