Skip to content

Instantly share code, notes, and snippets.

View Korak-997's full-sized avatar
:octocat:

Korak Kurani Korak-997

:octocat:
View GitHub Profile
@Korak-997
Korak-997 / edxOnlineCourses.csv
Last active April 21, 2022 11:51
Best Free Online Courses For Developers
number name link
001 Introduction to Linux https://www.edx.org/course/introduction-to-linux?index=product&queryID=cacf1447bb98e512e5415dae58dde56f&position=17
002 Full Stack Application Development Project https://www.edx.org/course/full-stack-application-development-project?index=product&queryID=20e0a3c03363bd35384569f1131a45bd&position=22
003 Information Technology Foundations https://www.edx.org/course/information-technology-foundations?index=product&queryID=20e0a3c03363bd35384569f1131a45bd&position=24
004 Linux Commands & Shell Scripting https://www.edx.org/course/linux-commands-shell-scripting?index=product&queryID=fe872f3379f841d94a58212ab2ee7ccb&position=1
005 Introduction to Node.js https://www.edx.org/course/introduction-to-nodejs-2?index=product&queryID=411d02bafe5d06c2364993a6e4226453&position=23
006 Open Source Software Development: Linux for Developers https://www.edx.org/course/open-source-software-development-linux-for-developers?index=product&queryID=cd4d9a23106e4b8c6a6bd84e45b3720f&position=4
@Korak-997
Korak-997 / rails-live-reload.md
Last active April 21, 2022 11:50
Adding Live Reload for Rails Applications

Live Reload For Rails Projects

  • We need Guard-livereload gem

    For this we need to add guard-livereload gem to our Gemfile. We need to add the gem to Development Group , because we need it only in Development
    group :development do
      gem 'guard-livereload', '~> 2.5', require: false
    end