Main public logs
From AWVVO
Jump to navigationJump to search
Combined display of all available logs of AWVVO. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 17:04, 20 January 2025 Admin talk contribs created page Vuetify (Created page with "== Create new vuetify app == <syntaxhighlight lang="bash" copy> npm create vuetify@latest </syntaxhighlight>")
- 19:44, 19 January 2025 Admin talk contribs created page Windows Forms App (Created page with "== Center form == <syntaxhighlight lang="C#" copy> StartPosition = CenterScreen </syntaxhighlight>") Tag: Visual edit: Switched
- 17:55, 19 January 2025 Admin talk contribs created page 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:09, 19 January 2025 Admin talk contribs created page Category:Laravel (Created page with "Laravel")
- 17:47, 18 January 2025 Admin talk contribs created page Laravel service (Created page with "== Create service class == <syntaxhighlight lang="bash" copy> php artisan make:class Services/MyService </syntaxhighlight>")
- 17:27, 18 January 2025 Admin talk contribs created page 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>")
- 17:12, 18 January 2025 Admin talk contribs created page 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>")
- 16:56, 18 January 2025 Admin talk contribs created page 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>")
- 12:41, 18 January 2025 Admin talk contribs created page Laravel controller (Created page with "== action template == <syntaxhighlight lang="php" copy> public function index() { $data = []; return response()->json($data); } </syntaxhighlight>")
- 06:32, 18 January 2025 Admin talk contribs created page Wikimedia (Created page with "== syntaxhighlight == <syntaxhighlight lang="python" copy> def quick_sort(arr): less = [] </syntaxhighlight>")
- 06:31, 18 January 2025 Admin talk contribs created page Mysql (Created page with "== Create user ==")
- 18:28, 17 January 2025 Admin talk contribs created page Nestjs (Created page with "<syntaxhighlight lang="bash" line="1" copy> copy code </syntaxhighlight>") Tag: Visual edit: Switched
- 20:18, 15 January 2025 Admin talk contribs created page Svelte (Created page with "== Installation == <syntaxhighlight lang="bash" line> npx sv create myapp cd myapp npm install npm run dev </syntaxhighlight>")
- 20:01, 15 January 2025 Admin talk contribs created page 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:36, 15 January 2025 Admin talk contribs created page 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
- 18:45, 15 January 2025 MediaWiki default talk contribs created page Main Page