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
| /* | |
| *** Academy Engraved LET *** | |
| AcademyEngravedLetPlain | |
| --------------------- | |
| *** Al Nile *** | |
| AlNile | |
| AlNile-Bold | |
| --------------------- | |
| *** American Typewriter *** | |
| AmericanTypewriter |
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 | |
| /** | |
| * Performs a search | |
| * | |
| * This class is used to perform search functions in a MySQL database | |
| * | |
| * @version 1.0 | |
| * @author John Morris <[email protected]> | |
| */ | |
| class search { |
We can make this file beautiful and searchable if this error is corrected: It looks like row 8 should actually have 1 column, instead of 2 in line 7.
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
| code;name | |
| 01;Personal Care Activities | |
| 0101;Sleeping | |
| 0102;Grooming | |
| 0103;Health-related self care | |
| 0104;Personal Activities | |
| 0105;Personal Care Emergencies | |
| 0199;Personal care, n.e.c.* | |
| 02;Household Activities | |
| 0201;Housework |
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
| import json | |
| import requests | |
| import logging as log | |
| log.basicConfig(level=log.DEBUG) | |
| class FollowerExtractor(): | |
| """ | |
| Extracts followers for a given profile | |
| """ |
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
| # ---------------------------------------------- | |
| # Quick method: | |
| # ---------------------------------------------- | |
| Options +MultiViews | |
| # With Apache MultiViews, the server will look for files that match the requested resource (eg. a request for "site.com/page" will serve "site.com/page.php") | |
| # ---------------------------------------------- | |
| # Long method: |
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
| # The following will allow you to use URLs such as the following: | |
| # | |
| # example.com/link | |
| # example.com/link/ | |
| # | |
| # Which will actually serve files such as the following: | |
| # | |
| # example.com/link.html | |
| # example.com/link.php | |
| # |