Emyr Thomas
Emyr Thomas
@csswizardry I think this is a nice pattern for all kinds of object modifiers, not just the grid modifiers. Maybe you could make more use of this within inuit.css? A...
Can you be more specific? Are you cloning Posts to Posts from the GitHub repo? If so, you'll need to do a recursive clone like this: `git checkout https://github.com/scribu/wp-posts-to-posts.git --recursive`
If you're downloading the .zip from GitHub, then yes, it seems that GitHub doesn't automatically include submodules in the .zip files it generates automatically. If you [download](http://downloads.wordpress.org/plugin/posts-to-posts.1.6.2.zip) from the [WordPress...
Yes, I include everything under version control as well. I deploy using [Capistrano](https://github.com/capistrano/capistrano/wiki/) and never touch the production server manually. Whenever I can, I try to include "libraries" (WordPress itself,...
Have a look at http://codex.wordpress.org/Giving_WordPress_Its_Own_Directory Basically, these are the steps I follow: 1. Copy `public/wordpress/index.php` to `public/index.php` 2. In `public/index.php` - change `require('./wp-blog-header.php');` - to `require('./wordpress/wp-blog-header.php');` 3. In `public/wp-config.php` set...
Indeed, the flexibility of WordPress installations is both a blessing and curse! The global config file sounds like a good solution though, I'd go with that personally. As you mention,...
The `view` variable is just a another [view](https://numpy.org/doc/stable/user/basics.copies.html#view) of the `ls` NumPy array - changes made to `view` are reflected in `ls` since they share the same data. It's just...
> Are you sure with your input dimensions? 4096x2049 pixels? Shouldn't it be 2048 (power of two)? Yes, apologies, that was a typo! I meant 4096x2048. The images I've been...
Sorry for the delay in responding, but I'm having a hard time figuring out exactly where the root of this problem lies. This may well be unrelated to the original...
Back to the main issue though... if you don't mind me suggesting, I think a better test image would be the horizontally flipped version of your test image, where the...