Skip to content

ironhack-berlin-2018-october-ft/resources

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

59 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Ironhack Logo

Bootcamp Resources

Goal

The goal of this page is to share good resources with the class.

Ironhack links

Course links

Projects

Survey

External resources

To learn

Software

Content

  • noShit: List of Free Design resources for your projects
  • Unsplash: Website with free good pictures (with an API)
  • Flaticon: Website to find nice icons
  • OpenGameArt.org: Website to get game picture resources
  • Coolors: A super fast color schemes generator

Inspiration

Berlin Extra Curriculum

General

Week 1

Day 2

Day 3

Day 4

Day 5

Week 2

Day 4

Week 4

Day 3

Week 5

Day 2

Week 6

FAQ

General

How to kill a server (for example on PORT 5500)?

First you need to run the following command, that will give you the list of process using the port.

$ lsof -wni tcp:5500
# Answer 
# COMMAND     PID          USER   FD   TYPE             DEVICE SIZE/OFF NODE NAME
# Code\x20H 28289 maxencebouret   45u  IPv4 0xa9b05c1a28ae649b      0t0  TCP *:fcp-addr-srvr1 (LISTEN)

Then you you need to find the PID (here it's 28289) and launch the following command:

$ kill -9 28289

Backend

Error: Cannot find module 'express'

Your packahe is not installed. You need to do the following command at the root of your project (where you have the package.json):

$ npm install express

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published