Posts

How to use superscript and subscript text in flutter

Image
 # superscript subscript '0' : ( '\u2070' , '\u2080' ), '1' : ( '\u00B9' , '\u2081' ), '2' : ( '\u00B2' , '\u2082' ), '3' : ( '\u00B3' , '\u2083' ), '4' : ( '\u2074' , '\u2084' ), '5' : ( '\u2075' , '\u2085' ), '6' : ( '\u2076' , '\u2086' ), '7' : ( '\u2077' , '\u2087' ), '8' : ( '\u2078' , '\u2088' ), '9' : ( '\u2079' , '\u2089' ), 'a' : ( '\u1d43' , '\u2090' ), 'b' : ( '\u1d47' , '?' ), '

HOW TO OPEN SHARE FOLDER OF WINDOWS PC ON UBUNTU PC

Step 1 - open Ubuntu PC Terminal by pressing button              Ctrl + Alt + T   Step 2 -- Update your Ubuntu OS by using command             sudo apt-get update Step 3 -- Install samba on PC by using command          sudo apt-get install samba -y Step 4 -- Check samba running status by using command         systemctl status nmbd Step 5 -- Make two folder one for public share folder and one for private share folder as below         mkdir foldername   Step 6 -- Create samba user with system user name        sudo smbpasswd -a system_user_name Step 7 -- Edit samba configuration file by using command       sudo nano /etc/samba/smb.conf       go to end of file      for example if created folder name is primms_folder then write below line of code      [primms_folder]      path = /home/primms/primms_folder      read only = no       valid users = primms      press ctrl+x then it will ask save Y/N .      If you want to save press Y , if not press N . And press enter to exit the edi

LARAVEL 10 with Bootstrap 5

Image
LARAVEL 10 - Build the application manually from scratch check for all requirement such as nodejs , composer, wampserver/Lamp , etc. Step1: Create a new Laravel project composer create-project laravel/laravel your-project-name For example composer create-project laravel/laravel myproject Step2: Change  directory to  your project name cd your-project-name For example cd myproject Step3: install the Laravel UI package : composer require laravel/ui --dev Step4: Generate the Bootstrap scaffolding : php artisan ui bootstrap --auth Step5: Configure the .env file Check all settings, especially the database connection and the mail settings . Step6: Install the bootstrap icons library. npm install bootstrap-icons --save-dev Step7: Add below code inside the file resources\sass\app.scss : @import 'bootstrap-icons/font/bootstrap-icons.css'; Step8: Add below code inside the file App\Providers\AppServiceProvider.php : ----- use Illuminate\Support\Facades\ Schema ; ----- public function b