Billy Mathews
Billy Mathews
This is basically porting [this PR](https://github.com/robbyrussell/oh-my-zsh/pull/3434) over to this repo. Fixes #30.
I have changed the `is_mobile()` function so that it returns a boolean. ``` function is_mobile() { $userAgent = strtolower($_SERVER['HTTP_USER_AGENT']); return !!strpos($userAgent, 'mobile'); } ``` This renders this if/else block unnecessary:...
I'm not sure exactly what the intent was, but line 271 in adaptive-images.php will never evaluate to true, and thus line 272 will never be reached. ``` // the required...
I cannot get buffet to find any files regardless of default or custom config. I tried running your example and it works, however it is targeting version 0.4.6 of buffet....
Trying to run the shell in stealth mode yields this error message over and over: ``` xsel: Can't open display: (null) : Inappropriate ioctl for device ``` I am running...
I would like to be able to generate a `casual.unix_time` that is between a certain range of dates. Many thanks for a great module.
The documentation for `defaultProps` states: > Although it has a similar effect, using the `defaultProps()` HoC is _not_ the same as setting the static `defaultProps` property directly on the component....
Here is the code I am using: ``` PHP $root = __DIR__; try { $less_files = array( $root . '/css/profile-styles.less' => '/' ); $options = array( 'cache_dir' => $root ....
using syntime I found that the following rule to be causing vim to completely freeze up on extremely long string values (the following example with 3s was with a much...
It's a common patter to apply `marginVertical` or `marginTop`/`marginBottom` to elements and override it for the first/last element, to remove unwanted space at the top/bottom of the container. Is there...