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
| #!/usr/bin/env node | |
| console.log('does it work?!') |
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
| [Unit] | |
| Description=RFID check-in service | |
| After=network.target | |
| [Service] | |
| Type=notify | |
| # Another Type option: forking | |
| User=ideaspace | |
| WorkingDirectory=/home/ideaspace/Desktop/rfid/rfid_reader | |
| ExecStart=/usr/bin/node /home/ideaspace/Desktop/rfid/rfid_reader --room=3F |
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
| {"lastUpload":"2021-10-30T14:47:26.279Z","extensionVersion":"v3.4.3"} |
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
| $return_str = str_replace( array('<','>',"'",'"',')','('), array('<','>',''','"',')','('), $input_str ); | |
| $return_str = str_ireplace( '%3Cscript', '', $return_str ); | |
| return $return_str; |
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
| GNU nano 2.5.3 File: /etc/nginx/sites-available/admin.dev | |
| server { | |
| listen 80; | |
| root /var/www/html/phpmyadmin; | |
| index index.php index.html index.htm; | |
| server_name admin.dev; |
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
| server | |
| { | |
| listen 80 default_server; | |
| listen [::]:80 default_server ipv6only=on; | |
| root /var/www/html; | |
| index index.php index.html index.htm; | |
| server_name amr.dev; | |
| location / | |
| { |