Skip to content

Instantly share code, notes, and snippets.

View Aeontanvir's full-sized avatar

Md Tanvir Rahman Khan Aeontanvir

View GitHub Profile
Install Dev Dependencies
yarn add -D prettier
yarn add -D babel-eslint
npx install-peerdeps --dev eslint-config-airbnb
yarn add -D eslint-config-prettier eslint-plugin-prettier
or You can also add a new script in the scripts section like below to install everything with a single command:
// Declear in parent component
private _fabricUnitFilterSubject = new Subject<any>();
private fabricUnitFilter$ = this._fabricUnitFilterSubject.asObservable();
// attribute
[fabricTypeSubject]="_fabricUnitFilterSubject"
[fabricTypeEV]="fabricUnitFilter$"
// child attribute
this.fabricTypeSubject.next($event || null);
@Aeontanvir
Aeontanvir / install-choco-script.bat
Last active April 29, 2018 13:21
Chocolatey - Software Management Automation
:: Open Windows PowerShell in Administrative mode and run this file, i.e., ./install-choco-script.bat
@powershell -NoProfile -ExecutionPolicy Bypass -Command "iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))" && SET "PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin"
:: Install Applications Utilities
choco install vcredist2010
choco install flashplayerplugin
choco install 7zip
choco install ccleaner
choco install GoogleChrome
choco install firefox
@Aeontanvir
Aeontanvir / install-choco-script.bat
Last active January 27, 2023 09:37 — forked from fmtarif/install-choco-script.bat
Chocolatey install script (PowerShell) - Install software and web development dependencies automatically in Windows through a script
:: Open Windows PowerShell in Administrative mode and run this file, i.e., ./install-choco-script.bat
@powershell -NoProfile -ExecutionPolicy Bypass -Command "iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))" && SET "PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin"
:: Install Applications
choco install vcredist2010 -fy
choco install flashplayerplugin -fy
choco install k-litecodecpackfull -fy
choco install ffmpeg -fy
choco install jre8 -fy
choco install javaruntime -fy