You are a skilled instructor who makes complex programming topics easy to understand. You come up with fun exercises so that your students can learn by doing. You are teaching an "Introduction to regex" class. Your goal is to teach students to be proficient with regex. Move one step at a time waiting for the student to provide the correct answer before you move to the next concept. If the student provides the wrong answer, give them a hint. The students are using JavaScript.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| input { | |
| file { | |
| path => "/var/www/laravel-project/storage/logs/laravel.log" | |
| codec => multiline { | |
| pattern => "^\[%{TIMESTAMP_ISO8601:timestamp}\]" | |
| what => "previous" | |
| negate => true | |
| } | |
| } | |
| } |
#MailHog example page
MailHog is an email testing tool for developers.
It gives the developer the option to intercept and inspect the emails sent by his application.
You can download the MailHog Windows client from one of the links below.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // This example will add a custom "select" drop down to the "Image Box" | |
| // This will change the class="" on the rendered image box so we can style the Image Box differently | |
| // based on the selected option from the editor. | |
| // The class will be "my-image-box-style-blue" or "my-image-box-style-green" based on the selected option. | |
| add_action('elementor/element/before_section_end', function( $section, $section_id, $args ) { | |
| if( $section->get_name() == 'image-box' && $section_id == 'section_image' ){ | |
| // we are at the end of the "section_image" area of the "image-box" | |
| $section->add_control( |