(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
Locate the section for your github remote in the .git/config file. It looks like this:
[remote "origin"]
fetch = +refs/heads/*:refs/remotes/origin/*
url = git@github.com:joyent/node.git
Now add the line fetch = +refs/pull/*/head:refs/remotes/origin/pr/* to this section. Obviously, change the github url to match your project's URL. It ends up looking like this:
| # Function for setting up precompiled headers. Usage: | |
| # | |
| # add_library/executable(target | |
| # pchheader.c pchheader.cpp pchheader.h) | |
| # | |
| # add_precompiled_header(target pchheader.h | |
| # [FORCEINCLUDE] | |
| # [SOURCE_C pchheader.c] | |
| # [SOURCE_CXX pchheader.cpp]) | |
| # |
| """ | |
| Example code for sending emails using boto's SES module. Its main purpose is to | |
| show how easy it is to build multipart text/html emails. | |
| Unfortunately, at this time Amazon's SES doesn't seem to allow you to add | |
| attachments to messages, but if it does in the future it would probably look | |
| like the code that I've commented out below the exception. | |
| The SES module of the Boto package isn't quite finalized yet, but I currently | |
| have this code running using Harry Marr's implementation which is available at: |
Papers I like Pt. 1 Papers I like Pt. 2
Let's start meta:
| The MIT License (MIT) | |
| Copyright (c) <year> <copyright holders> | |
| Permission is hereby granted, free of charge, to any person obtaining a copy | |
| of this software and associated documentation files (the "Software"), to deal | |
| in the Software without restriction, including without limitation the rights | |
| to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
| copies of the Software, and to permit persons to whom the Software is | |
| furnished to do so, subject to the following conditions: |