New pages
From AWVVO
Jump to navigationJump to search
20 January 2025
- 17:0417:04, 20 January 2025 Vuetify (hist | edit) [108 bytes] Admin (talk | contribs) (Created page with "== Create new vuetify app == <syntaxhighlight lang="bash" copy> npm create vuetify@latest </syntaxhighlight>")
19 January 2025
- 19:4419:44, 19 January 2025 Windows Forms App (hist | edit) [98 bytes] Admin (talk | contribs) (Created page with "== Center form == <syntaxhighlight lang="C#" copy> StartPosition = CenterScreen </syntaxhighlight>") Tag: Visual edit: Switched
- 17:5517:55, 19 January 2025 Laravel form request (hist | edit) [2,237 bytes] Admin (talk | contribs) (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()...")
18 January 2025
- 17:4717:47, 18 January 2025 Laravel service (hist | edit) [122 bytes] Admin (talk | contribs) (Created page with "== Create service class == <syntaxhighlight lang="bash" copy> php artisan make:class Services/MyService </syntaxhighlight>")
- 17:2717:27, 18 January 2025 Laravel environment (hist | edit) [321 bytes] Admin (talk | contribs) (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:1217:12, 18 January 2025 Laravel logging (hist | edit) [222 bytes] Admin (talk | contribs) (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:5616:56, 18 January 2025 Laravel .env (hist | edit) [177 bytes] Admin (talk | contribs) (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:4112:41, 18 January 2025 Laravel controller (hist | edit) [946 bytes] Admin (talk | contribs) (Created page with "== action template == <syntaxhighlight lang="php" copy> public function index() { $data = []; return response()->json($data); } </syntaxhighlight>")
- 06:3206:32, 18 January 2025 Wikimedia (hist | edit) [641 bytes] Admin (talk | contribs) (Created page with "== syntaxhighlight == <syntaxhighlight lang="python" copy> def quick_sort(arr): less = [] </syntaxhighlight>")
- 06:3106:31, 18 January 2025 Mysql (hist | edit) [245 bytes] Admin (talk | contribs) (Created page with "== Create user ==")
17 January 2025
- 18:2818:28, 17 January 2025 Nestjs (hist | edit) [182 bytes] Admin (talk | contribs) (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 Svelte (hist | edit) [126 bytes] Admin (talk | contribs) (Created page with "== Installation == <syntaxhighlight lang="bash" line> npx sv create myapp cd myapp npm install npm run dev </syntaxhighlight>")
- 19:3619:36, 15 January 2025 Laravel (hist | edit) [808 bytes] Admin (talk | contribs) (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