Skip to content

Instantly share code, notes, and snippets.

View tooinfinity's full-sized avatar
🏠
Working from home

TouwfiQ Meghlaoui tooinfinity

🏠
Working from home
View GitHub Profile
@tooinfinity
tooinfinity / README.MD
Created February 26, 2025 23:25 — forked from artistro08/README.MD
How to setup a LEMP Development Environment with WSL2 & Valet Linux
@tooinfinity
tooinfinity / .New project laravel configuration
Last active January 6, 2025 20:30
New project laravel configuration
.New project laravel configuration
@tooinfinity
tooinfinity / README.md
Created June 3, 2024 14:30
Setting Up Laravel Sail and Docker on macOS

Setting Up Laravel Sail and Docker on macOS

Prerequisites

  1. macOS
  2. Docker Desktop

Step 1: Install Docker Desktop

  1. Download Docker Desktop:
@tooinfinity
tooinfinity / README.md
Created June 3, 2024 14:29
Setting Up Laravel Sail and Docker on Linux

Setting Up Laravel Sail and Docker on Linux

Prerequisites

  1. A Linux distribution (e.g., Ubuntu)
  2. Docker
  3. Docker Compose

Step 1: Install Docker

@tooinfinity
tooinfinity / README.md
Created June 3, 2024 13:45
setup environment Laravel sail and Docker windows 11

Setting Up Laravel Sail and Docker on Windows 11 with WSL

Prerequisites

  1. Windows 11
  2. WSL 2 (Windows Subsystem for Linux)
  3. Docker Desktop

Step 1: Install WSL 2

@tooinfinity
tooinfinity / multiple_gui_choices.bat
Created October 30, 2022 10:46 — forked from AveYo/multiple_gui_choices.bat
Simple GUI helpers for batch files
@echo off &title Multiple GUI choices via powershell snippet by AveYo &rem preview: https://i.imgur.com/JjazNR0.png
:: setup gui dialog choices
set all_choices=Option 1,Option 2,Option 3,Option4,Option5
set def_choices=Option 1,Option 2,Option5
:: Show gui dialog choices 1=title 2=all_choices 3=def_choices 4=output_variable
call :choices "Multiple GUI choices" "%all_choices%" "%def_choices%" CHOICES
:: Quit if no choice selected
if not defined CHOICES color 0c &echo ERROR! No choice selected.. &timeout /t 20 &color 07 &exit/b
:: Print choices
echo Choices: %CHOICES% & echo.
It's a set of scripts he created for that workflow.
But to answer your question:
$ git checkout -b myFeature dev
Creates MyFeature branch off dev. Do your work and then
$ git commit -am "Your message"
Now merge your changes to dev without a fast-forward

1- create a project

flutter create your_project_name

2- create a projec with package name

flutter create --org com.you_domain your_project_name

3- run flutter project without NullSafety

flutter run --no-sound-null-safety

Environment
Windows 10
Target folder: D: (use any folder that you want)
1. Install flutter
C:\android
mkdir flutter
cd flutter
git clone https://github.com/flutter/flutter.git -b stable
Open environtment setup and add to Path:
@tooinfinity
tooinfinity / README.md
Created May 26, 2022 16:15 — forked from ullaskunder3/README.md
Detail flutter installation without android studio just using cmdline-tools, git, cmd