##Command Line Basics
What are the terminal commands to:
- Create a new folder called "Blah"
mkdir Blah
- Move into the newly created "Blah" folder
##Command Line Basics
What are the terminal commands to:
mkdir Blah
| // Use Gists to store code you would like to remember later on | |
| console.log(window); // log the "window" object to the console |
| ExceptionNotifier::Notifier.class_eval do | |
| #https://github.com/smartinez87/exception_notification/blob/master/lib/exception_notifier/notifier.rb | |
| def self.exception_notification(*args) | |
| message = super | |
| _limit = 5.minutes.ago | |
| @@last_notification||=_limit | |
| if @@last_notification > _limit | |
| Rails.logger.info "ExceptionNotifier rate limit triggered, #{ExceptionNotifier::Notifier.deliveries.size} notifications limited." | |
| message.delivery_method :test |
| # Description: | |
| # Get help from @yourorg/it for your information technology problems. Oh by the way.... Your Welcome. | |
| # | |
| # Commands: | |
| # hubot it me <problem> - get help from @yourorg/it about your information technology <problem> | |
| module.exports = (robot) -> | |
| robot.respond /it(?: me)?(?: (.*))?/i, (msg) -> | |
| problem = msg.match[1] |
| /** | |
| * @path src/redux/middleware | |
| * | |
| * Extract from clientMiddleware example in order to showcase | |
| * the difference and help in understanding the same. | |
| * | |
| * @diff - Differences with "react-redux-universal-hot-example" | |
| */ | |
| export default function firebaseMiddleware(fireRef) { | |
| return ({dispatch, getState}) => { |