Messing around with canvas.
Forked from Jack Rugile's Pen Abstract Canvas Visualization.
Forked from Jack Rugile's Pen Abstract Canvas Visualization.
A Pen by Captain Anonymous on CodePen.
Messing around with canvas.
Forked from Jack Rugile's Pen Abstract Canvas Visualization.
Forked from Jack Rugile's Pen Abstract Canvas Visualization.
A Pen by Captain Anonymous on CodePen.
Hopefully this will answer "How do I setup or start a Django project?" I was trying to set up my own website, and there was a lot to read, learn and digest! Therefore, I put this together which is a collection of all the guides/blog posts/articles that I found the most useful. At the end of this, you will have your barebones Django app configured and ready to start building :)
NOTE: This guide was built using Django 1.9.5, NodeJS 4+ with NPM 3+
const App = ({name}) => { | |
return ( | |
<h1>Hello {name}</h1> | |
); | |
}; | |
ReactDOM.render(<App name="World" />, document.getElementById("App")); |
This method avoids merge conflicts if you have periodically pulled master into your branch. It also gives you the opportunity to squash into more than 1 commit, or to re-arrange your code into completely different commits (e.g. if you ended up working on three different features but the commits were not consecutive).
Note: You cannot use this method if you intend to open a pull request to merge your feature branch. This method requires committing directly to master.
Switch to the master branch and make sure you are up to date:
I started a project on a Hobby Dev plan (free, limit 10,000 rows), and then later needed to upgrade it to Hobby Basic ($9/month, limit 10,000,000 rows).
After assigning the new database, I had two databases attached to the application. They looked something like this:
<?php | |
if ( !function_exists('wp_generate_auth_cookie') ) : | |
/** | |
* Generate authentication cookie contents. | |
* | |
* @since 2.5.0 | |
* | |
* @param int $user_id User ID | |
* @param int $expiration Cookie expiration in seconds |
import code; code.interact(local=dict(globals(), **locals())) |