git worktree add --detach <worktree-path> <branch-name>
git worktree add --detach <worktree-path> <remote-name>/<branch-name>
git worktree add --detach
| import 'dart:async'; | |
| import 'package:flutter/material.dart'; | |
| void main() => runApp(new MyApp()); | |
| class MyApp extends StatelessWidget { | |
| @override | |
| Widget build(BuildContext context) { | |
| return new MaterialApp( |
| # -----------------( Terminal ) ------------------- | |
| cd /path/to/project/directory | |
| sudo usermod -aG www-data $(whoami) # use 'webapp' instead of 'www-data' if you are using AWS | |
| sudo chown -R $(whoami):www-data . | |
| sudo find . -type f -exec chmod 0664 {} \; | |
| sudo find . -type d -exec chmod 0775 {} \; | |
| sudo chmod -R g+s . | |
| sudo vi /etc/apache2/sites-available/example.local.conf | |
| sudo a2ensite example.local.conf |
| const axios = require('axios'); | |
| const fs = require('fs'); | |
| const process = async () => { | |
| const response = await axios.get('https://goo.gl/maps/29XfoqKK5s7UdaSy8'); | |
| const expression = /window.APP_INITIALIZATION_STATE=\[\[\[\d+.\d+,(\d+.\d+),(\d+.\d+)/ | |
| const [,lat, long] = response.data.match(expression)[0].split('[[[')[1].split(',') | |
| console.log({ lat, long}) | |
| return { lat, long}; |
| export function decode(querystring: string): object { | |
| function parseValue(value: string): any { | |
| if (value === 'TRUE') return true; | |
| if (value === 'FALSE') return false; | |
| return isNaN(Number(value)) ? value : Number(value); | |
| } | |
| function dec(list: any[], isArray = false): object { | |
| let obj: any = isArray ? [] : {}; |
| FROM php:8.1-apache | |
| RUN apt-get update && apt-get install -y git \ | |
| libpng-dev \ | |
| zlib1g-dev \ | |
| libwebp-dev \ | |
| libjpeg62-turbo-dev \ | |
| libpng-dev libxpm-dev \ | |
| libfreetype6-dev | |
| RUN docker-php-ext-configure gd \ |
| <?php | |
| namespace App\Providers; | |
| use Illuminate\Support\Facades\Blade; | |
| use Illuminate\Support\ServiceProvider; | |
| class JsTranslationsServiceProvider extends ServiceProvider | |
| { | |
| public function register(): void |
A comprehensive guide to secure your Laravel application against common attacks and vulnerabilities.