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
| {"guid":"root________","title":"","index":0,"dateAdded":1665705339745000,"lastModified":1668200188151000,"id":1,"typeCode":2,"type":"text/x-moz-place-container","root":"placesRoot","children":[{"guid":"menu________","title":"menu","index":0,"dateAdded":1549367289902000,"lastModified":1549367289902000,"id":2,"typeCode":2,"type":"text/x-moz-place-container","root":"bookmarksMenuFolder","children":[{"guid":"fI_IMJVyZwF1","title":"Recent Tags","index":0,"dateAdded":1549367289844000,"lastModified":1549367289902000,"id":7,"typeCode":1,"type":"text/x-moz-place","uri":"place:type=6&sort=14&maxResults=10"},{"guid":"7jkkpML3quoQ","title":"","index":1,"dateAdded":1549367289902000,"lastModified":1549367289902000,"id":8,"typeCode":3,"type":"text/x-moz-place-separator"},{"guid":"tJa-tZ9_DmUx","title":"Mozilla Firefox","index":2,"dateAdded":1549367282806000,"lastModified":1549367282806000,"id":9,"typeCode":2,"type":"text/x-moz-place-container","children":[{"guid":"lTrHbrKqHVXW","title":"Help and Tutorials","index":0,"dateAd |
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
| #!/bin/sh | |
| set -e | |
| # Change www-data`s UID inside a Dockerfile | |
| usermod -u $LOCAL_UID www-data | |
| echo "Changing www-data UID to ${LOCAL_UID}." | |
| chown -R $LOCAL_UID:$LOCAL_GID /var/www/html | |
| echo "Changed /var/www/html UID and GID to $LOCAL_UID and $LOCAL_GID." | |
| if [ -d '/var/www/.composer' ]; then | |
| chown -R $LOCAL_UID:$LOCAL_GID /var/www/.composer |
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
| <?php | |
| /** | |
| * @property CI_DB_active_record $db | |
| * @property CI_DB_forge $dbforge | |
| * @property CI_Benchmark $benchmark | |
| * @property CI_Calendar $calendar | |
| * @property CI_Cart $cart | |
| * @property CI_Config $config | |
| * @property CI_Controller $controller | |
| * @property CI_Email $email |