How to use .gitignore to include files in nested subdirectories
Background Typically .gitignore is used to ignore files – but what do you do when you want to include files? The trick when including files
Background Typically .gitignore is used to ignore files – but what do you do when you want to include files? The trick when including files
Use this regular expression to highlight a term in the middle of a sentence: (?:\S+\s+){0,4}(money is good)\s*(?:\S+\b\s*){0,4} Here is a great site to test the
Background If you divert from programming for a while (say 6 months to a year) and come back to your NPM and Node tools, you
Installing NativeScript can be a challenge. The NativeScript instructions do not make is totally clear that you must be root when you install it. But
Issue: You’re trying to find some text in a local repo on Github. You’re confused because the big search bar at the top left seems
First do: git config credential.helper store Then do: git pull Warning: The storage format is a .git-credentials file, stored in plain-text! You might want to do
Given you have the following workflow: A local PC or Mac with PhpStorm A remote server where all your staging/production files are stored Your aim
Your code in PhpStorm is looking good. No bugs, no coding errors, beautiful dark theme, but you are annoyed. You see warnings with regards to
Whilst doing a git pull command that always worked, you see a new error: username@host application]$ git pull Updating 4a81dc8..fe35c1a error: Your local changes to
To align number in Laravel Nova, there is a two step process: On your resource add this: ->withMeta([‘textAlign’ => ‘right’]), 2. cp nova/resources/views/layout.blade.php resources/views/vendor/nova/layout.blade.php Add