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
# syntax=docker/dockerfile:1.4 | |
FROM node:21-alpine AS front | |
WORKDIR /usr/src/app | |
COPY --link package.json yarn.lock .yarnrc.yml ./ | |
COPY --link .yarn .yarn | |
RUN yarn install | |
COPY --link tailwind.config.ts postcss.config.cjs vite.config.ts tsconfig.json tsconfig.node.json ./ | |
COPY --link resources resources | |
RUN yarn build |
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
# scripts/00-laravel-deploy.sh | |
php artisan route:cache | |
php artisan view:cache | |
php artisan config:cache | |
php artisan migrate --force | |
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
module.exports= { | |
defaultBrowser: "Browserosaurus", | |
handlers: [ | |
{ | |
match: "meet.google.com/*", | |
browser: { | |
name: "Arc", | |
}, | |
}, | |
{ |
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
const MODULE = "common/types/react"; | |
module.exports = { | |
meta: { | |
type: "problem", | |
docs: { | |
url: | |
"https://changelog.com/posts/the-react-reactnode-type-is-a-black-hole", | |
description: `Enforces never using React.ReactNode as the typing is wrong.`, | |
category: "react", |
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
-- This is v0.7 of the custom script for AlfredApp for iTerm 3.1.1+ | |
-- created by WangJia [email protected] | |
-- github: https://github.com/hmfight | |
on alfred_script(q) | |
if application "iTerm2" is running or application "iTerm" is running then | |
run script " | |
on run {q} | |
tell application \":Applications:iTerm.app\" | |
activate |
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 | |
namespace App\Models; | |
use Illuminate\Database\Eloquent\Model; | |
use Illuminate\Support\Str; | |
use Ramsey\Uuid\Uuid; | |
trait HasUuid | |
{ |
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
const reactiveMap = new WeakMap() | |
const targetMap = new WeakMap() | |
let activeEffect | |
const track = (target, key) => { | |
if (!activeEffect) return | |
let depsMap = targetMap.get(target) |
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\Models\Client; | |
use App\Models\Commande; | |
use App\Models\CommandeLigne; | |
use App\Models\Utilisateurs\Admin; | |
use App\Models\Utilisateurs\ADV; | |
use App\Models\Utilisateurs\Commercial; | |
use App\Models\Utilisateurs\Contact; |
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 | |
namespace App\Console\Commands; | |
use App\Helpers\RelationsInModelFinder; | |
use App\Models\Model; | |
use Illuminate\Console\Command; | |
use Illuminate\Support\Facades\File; | |
use Illuminate\Support\Facades\Schema; | |
use Symfony\Component\Finder\SplFileInfo; |
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
// not working | |
type SetFunction<T> = (newState: T | ((oldState: T) => T)) => void | |
export const useState = <T>(initial: T): [T, SetFunction<T>] => { | |
const state = ref(initial) | |
const setState: SetFunction<T> = (newState) => { | |
// @ts-ignore | |
state.value = typeof newState === 'function' ? newState(state.value) : newState |
NewerOlder