Extracted for the benefit of non-Tightenites.
Class "things" should be ordered as follows:
- Traits
- Statics properties
- Constants
- Instance properties
Extracted for the benefit of non-Tightenites.
Class "things" should be ordered as follows:
Note: This expects that you've enabled Xdebug in a specific file: /usr/local/php/X.x/conf.d/ext-xdebug.ini.
Add this function to your .zshrc or similar file.
On the command line, type xdebug and hit enter. This will toggle whether or not Xdebug is running.
Note: Most of these are applicable to the ages older than I have listed, but I've put them where they were when my kids first started really enjoying them.
Really, anything in the "toddlers" section will be fine for these kids. But there aren't a ton of baby-focused books I know.
| <script src="{{ asset('js/app.js') }}"></script> | |
| <script> | |
| let logComponentsData = function () { | |
| window.livewire.components.components().forEach(component => { | |
| console.log(component.name); | |
| console.log(component.data); | |
| }); | |
| }; | |
| document.addEventListener("livewire:load", function(event) { |
| .entry-meta { | |
| color: #716868; | |
| } | |
| .entry-meta a { | |
| color: #716868; | |
| } | |
| /* Page title */ |
| [ | |
| "af", | |
| "af_NA", | |
| "af_ZA", | |
| "agq", | |
| "agq_CM", | |
| "ak", | |
| "ak_GH", | |
| "am", | |
| "am_ET", |
Every year Digital Ocean runs Hacktoberfest, which is a fun program that rewards developers for making pull requests to open source software. This year you could get stickers and a free t-shirt for participating!
Looking for some code you can write on Laravel-related applications for Hacktoberfest? Here are a few issues we have open. :)
| #!/bin/bash | |
| function slugify { | |
| echo "$1" | iconv -t ascii//TRANSLIT | sed -E s/[^a-zA-Z0-9]+/-/g | sed -E s/^-+\|-+$//g | tr A-Z a-z | |
| } | |
| # ------------------------------- | |
| echo | |
| echo Creating a new blog post. |