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 | |
| namespace Jobs; | |
| use Illuminate\Queue\InteractsWithQueue; | |
| use Illuminate\Redis\Database as Redis; | |
| class Foo extends Job | |
| { | |
| use InteractsWithQueue; |
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 | |
| /** | |
| * 异常处理类 | |
| */ | |
| use \Illuminate\Contracts\Debug\ExceptionHandler; | |
| class MyQueueException implements ExceptionHandler | |
| { | |
| /** |
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
| hashtag_list = ['travelblog', 'travelblogger', 'traveler'] | |
| # prev_user_list = [] - if it's the first time you run it, use this line and comment the two below | |
| prev_user_list = pd.read_csv('20181203-224633_users_followed_list.csv', delimiter=',').iloc[:,1:2] # useful to build a user log | |
| prev_user_list = list(prev_user_list['0']) | |
| new_followed = [] | |
| tag = -1 | |
| followed = 0 | |
| likes = 0 |
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
| from selenium import webdriver | |
| from selenium.webdriver.common.keys import Keys | |
| from time import sleep, strftime | |
| from random import randint | |
| import pandas as pd | |
| chromedriver_path = 'C:/Users/User/Downloads/chromedriver_win32/chromedriver.exe' # Change this to your own chromedriver path! | |
| webdriver = webdriver.Chrome(executable_path=chromedriver_path) | |
| sleep(2) | |
| webdriver.get('https://www.instagram.com/accounts/login/?source=auth_switcher') |
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 // Version 3.0 | |
| use Directus\Application\Http\Request; | |
| use Directus\Application\Http\Response; | |
| class User { | |
| private $data; | |
| private $role; |
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 | |
| require_once __DIR__ . '/SignupConfig.php'; | |
| use Directus\Application\Application; | |
| use Directus\Application\Http\Request; | |
| use Directus\Application\Http\Response; | |
| use Directus\Authentication\Exception\ExpiredRequestTokenException; | |
| use Directus\Authentication\Exception\InvalidTokenException; | |
| use Directus\Util\JWTUtils; |
OlderNewer