This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { App, defineAsyncComponent } from 'vue' | |
// Function to convert a string to kebab case | |
const toKebabCase = (str) => | |
str | |
.replace(/([a-z])([A-Z])/g, '$1-$2') | |
.replace(/\s+/g, '-') | |
.toLowerCase() | |
// Dynamically register components by scanning the components directory |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { createRouter, createWebHistory } from 'vue-router' | |
import routes from '../routes' | |
const router = createRouter({ | |
history: createWebHistory('/app'), | |
routes, | |
}) | |
const middlewarePipeline = (context, middleware, index) => { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
use App\Client\ClientApplicationInterface; | |
// use App\Exceptions\Fail; | |
use App\Models\Contracts\Notifiable; | |
use App\Models\PersonalAccessToken; | |
use App\Notifications\Notification; | |
use Carbon\Carbon; | |
use Illuminate\Contracts\Support\Arrayable; | |
use Illuminate\Contracts\View\Factory; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
LazyCollection::macro("fromCsv", function (string $path, int $chunk = 0, string $separator = ";"): LazyCollection { | |
/** @var LazyCollection $collection */ | |
$collection = static::make(function () use (&$separator, &$path, &$chunk) { | |
$handle = fopen($path, 'r'); | |
while ($line = fgetcsv(stream: $handle, separator: $separator)) { | |
yield array_map(fn ($item) => trim($item), $line); | |
} | |
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8" /> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
<title>Culture Pro</title> | |
</head> | |
<body> | |
<form id="form"> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* ------------------------------------------ | |
* MYSQL TABLE ARCHIVER | |
* ------------------------------------------ | |
* This script use old versions of PHP. | |
* So you need to change mysqli connections | |
* by the new syntaxes (PDO, mysql) | |
* ------------------------------------------ | |
* php table_backup.php |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Vue from "vue"; | |
import VueRouter from "vue-router"; | |
import Index from "../pages/Index.vue"; // Index Component HERE | |
import { admin, authenticated, manager, standard } from "../middleware"; // Middleware PATH | |
Vue.use(VueRouter); | |
const admins = []; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function get_web_page(string $url, string $username, string $password) | |
{ | |
$options = array( | |
CURLOPT_RETURNTRANSFER => true, // return web page | |
// CURLOPT_HEADER => false, // don't return headers | |
CURLOPT_FOLLOWLOCATION => true, // follow redirects | |
// CURLOPT_ENCODING => "", // handle all encodings | |
// CURLOPT_USERAGENT => "spider", // who am i |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function calculator(string $text) { | |
$word = str_word_count(strip_tags($text)); | |
$minute = floor($word / 200); | |
$second = floor($word % 200 / (200 / 60)); | |
$result = $minute . ' minute' . ($minute == 1 ? '' : 's') . ', ' . $second . ' second' . ($second == 1 ? '' : 's'); | |
return $result; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
mdp | |
formula lfree = (p2>=0&p2<=4)|p2=6|p2=10; | |
formula rfree = (p3>=0&p3<=3)|p3=5|p3=7|p3=11; | |
module phil1 | |
p1: [0..11]; | |
[] p1=0 -> (p1'=1); // trying |
NewerOlder