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).
- 16:16, 29 March 2025 Admin talk contribs created page Laravel middleware (Created page with "== Create middleware == <syntaxhighlight lang="php" copy line highlight="0"> php artisan make:middleware EnsureTokenIsValid </syntaxhighlight> == Middleware == <syntaxhighlight lang="php" copy line highlight="0"> <?php namespace App\Http\Middleware; use Closure; use Illuminate\Http\Request; use Illuminate\Support\Facades\Log; use Symfony\Component\HttpFoundation\Response; class EnsureTokenIsValid { /** * Handle an incoming request. * * @param \Clo...")
- 12:28, 29 March 2025 Admin talk contribs created page Laravel nginx (Created page with "== Create config file == <syntaxhighlight lang="php" copy line highlight="0"> </syntaxhighlight>")
- 11:26, 29 March 2025 Admin talk contribs created page Laravel web.php (Created page with "== web.php == <syntaxhighlight lang="php" copy line highlight="0"> <?php use Illuminate\Support\Facades\Route; use App\Http\Controllers\IndexController; Route::resource('/', IndexController::class); </syntaxhighlight>")
- 10:22, 29 March 2025 Admin talk contribs created page Laravel template (Created page with "== Generate app key == <syntaxhighlight lang="bash" copy line highlight="0"> php artisan key:generate </syntaxhighlight> == Set database settings == <syntaxhighlight lang="php" copy line highlight="0"> DB_CONNECTION=mysql DB_HOST=127.0.0.1 DB_PORT=3306 DB_DATABASE=mydb DB_USERNAME=root DB_PASSWORD= </syntaxhighlight> == Set rotating log files == <syntaxhighlight lang="ini" copy line highlight="0"> # .env LOG_CHANNEL=daily LOG_DAILY_DAYS=1 </syntaxhighlight>")
- 15:54, 24 March 2025 Admin talk contribs created page File:Install tools.sh
- 15:54, 24 March 2025 Admin talk contribs uploaded File:Install tools.sh
- 15:53, 24 March 2025 Admin talk contribs deleted page File:Ubuntu install tools.sh (content was: "", and the only contributor was "Admin" (talk))
- 15:43, 24 March 2025 Admin talk contribs created page File:Ubuntu install tools.sh
- 15:43, 24 March 2025 Admin talk contribs uploaded File:Ubuntu install tools.sh
- 15:38, 24 March 2025 Admin talk contribs created page Linux development (Created page with "Development installation script")
- 14:59, 24 March 2025 Admin talk contribs created page Multipass (Created page with "Multipass is a lightweight VM manager developed by Canonical that lets you easily run Ubuntu instances on macOS, Windows, and Linux, ideal for development and testing. Example to launch Ubuntu 24.04 LTS with 1 CPU and 2GB memory: == Launch an instance == <syntaxhighlight lang="php" copy line highlight="0"> multipass launch 24.04 --name ubuntu24 --cpus 1 --mem 2G </syntaxhighlight>")
- 08:35, 22 March 2025 Admin talk contribs created page AWVVO:About (Created page with "thumb")
- 08:35, 22 March 2025 Admin talk contribs created page File:Email.png
- 08:35, 22 March 2025 Admin talk contribs uploaded File:Email.png
- 08:14, 22 March 2025 Admin talk contribs created page MediaWiki:Footer (Created page with "xx")
- 08:09, 22 March 2025 Admin talk contribs created page Serverless.com (Created page with "== Install == <syntaxhighlight lang="php" copy line highlight="0"> npm i serverless -g </syntaxhighlight>")
- 06:34, 16 March 2025 Admin talk contribs created page ChatGPT (Created page with "== ChatGPT API key == https://platform.openai.com/docs/overview == Javascript quickstart == <syntaxhighlight lang="javascript" copy line highlight="0"> import OpenAI from "openai"; const client = new OpenAI(); const completion = await client.chat.completions.create({ model: "gpt-4o", messages: [{ role: "user", content: "Write a one-sentence bedtime story about a unicorn.", }], }); console.log(completion.choices[0].message.content); </synta...")
- 10:55, 11 February 2025 Admin talk contribs created page Git force pull (Created page with "== Git force pull == <syntaxhighlight lang="bash" line highlight="" copy> git fetch --all git reset --hard origin/BRANCH git pull origin BRANCH </syntaxhighlight>")
- 09:37, 11 February 2025 Admin talk contribs created page Laravel version (Created page with "== Show version == <syntaxhighlight lang="bash" line highlight="" copy> php artisan --version </syntaxhighlight>")
- 06:51, 5 February 2025 Admin talk contribs created page Storybook publish package (Created page with "== Prepare package.json == <syntaxhighlight lang="json" highlight="1,3-11, 13,14, 16,17" line copy> { "name": "@avorsterman/vue-components", "version": "0.0.3", "description": "Reusable Vue 3 components with Vuetify", "private": false, "type": "module", "main": "dist/vue-components.umd.js", "module": "dist/vue-components.es.js", "exports": { "import": "./dist/vue-components.es.js", "require": "./dist/vue-components.umd.js" }, "files": [ "d...")
- 16:45, 1 February 2025 Admin talk contribs created page Storybook (Created page with "== Add to an existing projec without Storybook == <syntaxhighlight lang="bash" copy> npx storybook@latest init </syntaxhighlight>")
- 08:21, 1 February 2025 Admin talk contribs created page Website scanner (Created page with "https://hostedscan.com/dashboard")
- 07:22, 1 February 2025 Admin talk contribs created page NPM (Created page with "== Check for outdated packages == <syntaxhighlight lang="bash" copy> npm outdated Package Current Wanted Latest Location Depended by sass-loader 13.0.0 13.3.3 16.0.4 node_modules/sass-loader fmeo tailwindcss 3.4.17 3.4.17 4.0.2 node_modules/tailwindcss fmeo vuetify 3.7.7 3.7.9 3.7.9 node_modules/vuetify fmeo </syntaxhighlight> == List outdated packages == <syntaxhighlight lang="bash" copy> ncu </syntaxhighlight>...")
- 05:17, 1 February 2025 Admin talk contribs created page Find file (Created page with "== Powershell == <syntaxhighlight lang="bash" copy> try { Get-ChildItem -Path "C:\" -Filter "myfile.txt" -Recurse -ErrorAction Stop } catch { } </syntaxhighlight>")
- 05:23, 30 January 2025 Admin talk contribs created page Laravel cookie (Created page with "== Set Cookie == <syntaxhighlight lang="php" copy> Cookie::queue( 'name', // 1. Cookie name auth()->user()["name"], // 2. Cookie value 999999, // 3. Duration in minutes '/', // 4. Path where cookie is available null, // 5. Domain false, // 6. Secure flag (HTTPS only) false, // 7. HTTP only flag false...")
- 12:35, 29 January 2025 Admin talk contribs created page GIT (Created page with "== Show current branch == <syntaxhighlight lang="bash" line highlight="" copy> @echo off for /f "delims=" %%a in ('git rev-parse --abbrev-ref HEAD') do ( set "current_branch=%%a" ) echo Current branch is: %current_branch% </syntaxhighlight> == Create new branch == <syntaxhighlight lang="bash" line highlight="" copy> git checkout -b newbranch </syntaxhighlight>")
- 10:55, 29 January 2025 Admin talk contribs created page Mysql backup & restore (Created page with "== Backup == <syntaxhighlight lang="bash" line highlight="" copy> mysqldump -u root -p --add-drop-database --delete-all-tables sfc > /tmp/sfc.sql </syntaxhighlight> == Restore == <syntaxhighlight lang="bash" line highlight="" copy> mysql -u root -p newdb < backup.sql </syntaxhighlight>")
- 10:15, 29 January 2025 Admin talk contribs created page Laravel testing (Created page with "== Run test == <syntaxhighlight lang="" line highlight="" copy> php artisan test </<syntaxhighlight>")
- 05:21, 29 January 2025 Admin talk contribs created page Pinia (Created page with "= Add Pinia to Vue = == Installation == <syntaxhighlight lang="php" copy> npm install pinia </syntaxhighlight> == Initialize == <syntaxhighlight lang="php" copy> import { createApp } from 'vue' import { createPinia } from 'pinia' import App from './App.vue' import vuetify from './plugins/vuetify' // Adjust if necessary const app = createApp(App) app.use(createPinia()) app.use(vuetify) app.mount('#app') </syntaxhighlight> == Create store src/stores/counter.js == <s...")
- 17:48, 28 January 2025 Admin talk contribs created page Concurrently (Created page with "== Install concurrently == <syntaxhighlight lang="bash" copy> npm install concurrently --save-dev </syntaxhighlight> == package.json == <syntaxhighlight lang="json" copy> "scripts": { "launch": "concurrently \"php artisan serve\" \"npm run dev\"" } </syntaxhighlight> == run == <syntaxhighlight lang="bash" copy> npm run launch </syntaxhighlight>")
- 08:28, 25 January 2025 Admin talk contribs created page Vuetify - defaults (Created page with "== Vuetify defaults == <syntaxhighlight lang="javascript" copy> import '@mdi/font/css/materialdesignicons.css' import 'vuetify/styles' import { createVuetify } from 'vuetify' export default createVuetify({ theme: { defaultTheme: 'light', }, defaults: { VBtn: { style: { 'text-transform': 'none' } } } }) </syntaxhighlight>")
- 07:02, 25 January 2025 Admin talk contribs created page Vue - custom component (Created page with "== Vue custom component template == <syntaxhighlight lang="html" copy> <template> <div> <h2>{{ title }}</h2> <form @submit.prevent="handleSubmit"> <slot></slot> <button type="submit">Submit</button> </form> </div> </template> <script setup> const props = defineProps({ title: { type: String, default: 'Form' } }) const emit = defineEmits(['submit']) const handleSubmit = (event) => { emit('submit', event) } </script> </syntaxhigh...")
- 10:59, 24 January 2025 Admin talk contribs created page Linux create user (Created page with "== Create user == <syntaxhighlight lang="bash" code> sudo adduser john </syntaxhighlight>")
- 10:49, 24 January 2025 Admin talk contribs created page Linux show users (Created page with "== List users == <syntaxhighlight lang="bash" code> cat /etc/passwd </syntaxhighlight>")
- 08:13, 23 January 2025 Admin talk contribs created page Linux find (Created page with "== Find file == <syntaxhighlight lang="bash"copy> sudo find ./home -name "test*.sh" </syntaxhighlight>")
- 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