Month: December 2020

.txt in PS

How to Open text file in Power Shell – Command

Text files in a directory can be opened using the power shell terminal. Any text editors - code can be used in the command... Read more »

Make new directory using Windows Command Line – Power Shell

Commands for creating a new directory in your system using the windows command line. Here we use the Windows Power Shell command line for... Read more »

Command Prompt & Power Shell – Windows Command Lines

Command Prompt is the old command line and Power Shell is more advanced with more functionalities. Power Shell is more powerful than the CMD... Read more »

HTML to React App — Convertion Steps

Create React App npx create-react-app app-name cd  app-name npm start Steps of conversion Copy paste css to index.cssCopy paste contents inside <body> to App.js  return dataReplace "class" with "className" ... Read more »

Flutter Hello World App Code

Creating a hello world app in flutter. import 'package:flutter/material.dart'; void main() { runApp( MaterialApp( home: Center( child: Text('Hello World'), ), ), ); } Read more »

npx installation – Terminal Command

The npx stands for Node Package Execute and it comes with the npm. It is an npm package runner that can execute any package... Read more »