Skip to content

Instantly share code, notes, and snippets.

View 2rohityadav's full-sized avatar
🌴
Working From Home

Rohit Kumar 2rohityadav

🌴
Working From Home
View GitHub Profile
@2rohityadav
2rohityadav / webdev_online_resources.md
Created July 16, 2018 20:20 — forked from bradtraversy/webdev_online_resources.md
Online Resources For Web Developers (No Downloading)
@2rohityadav
2rohityadav / meteor-windows-installation.md
Last active April 3, 2018 11:44
meteor windows installation

H4 On some network or machine setups Meteor's installer for Windows may fail. In such cases, follow these simple steps to install Meteor manually:

  1. Install 7-Zip or any other program that knows how to extract tar.gz files.
  2. Download the installation archive from https://packages.meteor.com/bootstrap-link?arch=os.windows.x86_32.
  3. In a command prompt, run echo %LocalAppData%.meteor -- this is the directory in which Meteor should be installed.
  4. Extract the installation archive into the directory above.
  5. Add this directory to your PATH environment variable.( C:\Users<myusername>\AppData\Local.meteor\ )
  6. You should now be able to open a new command prompt and run meteor. Some versions of Windows may require restarting your machine first.
@2rohityadav
2rohityadav / angular_bootstrap.md
Last active October 14, 2017 04:43
angular_bootstrap.md

Angular 4 with bootstrap 4 setup

Cmds

> ng new projects
> cd projects
> npm install [email protected] tether jquery --save
> npm install --save popper.js angular-popper
> ng serve