- Can you walk me through your previous experience with Laravel and/or PHP? How have you applied those skills in past projects or roles? Did they teach you in school before actually using it as a developer?
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
| <hr style="display: block;height: 1px;border: 0;border-top: 2px solid #d4b767;margin: 0;padding:0;width:100%;" /> |
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
| name: Build and Deploy | |
| on: | |
| push: | |
| branches: | |
| - staging | |
| pull_request: | |
| branches: | |
| - master |
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
| # To check the port 25 , you can use: | |
| # netstat (TCP and UDP): | |
| netstat -plntu | grep ':25' | |
| # ss (TCP and UDP): | |
| ss -lntu | grep ':25' | |
| # nmap (TCP): | |
| nmap -sT -O localhost | grep 25 | |
| # lsof (TCP and UDP): | |
| lsof -i:25 | |
| # telnet |
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
| ffprobe -loglevel error -show_streams ~/Desktop/img-3322-online-video-cuttercom-2.mp4 | |
| [STREAM] | |
| index=0 | |
| codec_name=aac | |
| codec_long_name=AAC (Advanced Audio Coding) | |
| profile=LC | |
| codec_type=audio | |
| codec_tag_string=mp4a | |
| codec_tag=0x6134706d | |
| sample_fmt=fltp |
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
| git log --since="February 1" --until="March 1" > ~/Documents/site.nl/february_commits.txt | |
| git log --since="March 1" --until="April 1" > march_commits.txt | |
| git log --since="April 1" --until="May 1" > april_commits.txt | |
| git log --since="April 1" --until="April 10" > april_commits_apr1_to_apr9.txt |
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
| CREATE USER 'user'@'10.0.0.3' IDENTIFIED BY 'password'; | |
| GRANT ALL PRIVILEGES ON database.* TO 'user'@'10.0.0.3' IDENTIFIED BY 'password'; | |
| FLUSH PRIVILEGES; |
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
| if( is_a( $post, 'WP_Post' ) ) { | |
| write_log( 'WP_Post' ); | |
| } else { | |
| write_log( 'WP_Post is not a WP_Post' ); | |
| } | |
| $category_filters = xx_get_category_filter( $post, $the_term->slug ); |
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
| mkdir backups | |
| ll | |
| cd backups | |
| wget https://domain.nl/domain.nl_root--2024.02.09.sql.gz | |
| ll | |
| mysql dbasename < domain.nl_root--2024.02.09.sql -u dbase_admin -p | |
| mc | |
| wget https://public_html.tar.gz/public_html.tar.gz | |
| wget https://domain.nl/public_html.tar.gz | |
| ll |
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
| ssh-keygen -t rsa -C "jasper@doamin.com" -f ~/.ssh/name | |
| ssh-keygen -t rsa -b 4096 -f ~/.ssh/name |