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 pygame | |
| from pygame.locals import * | |
| pygame.init() | |
| screen = pygame.display.set_mode((1920, 1080), 0, 32) | |
| # Sprite | |
| player_spr = pygame.image.load('darkgrey_04.png') | |
| player_spr = pygame.transform.scale(player_spr, (32, 32)) | 
  
    
      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 pygame | |
| from pygame.locals import * | |
| pygame.init() | |
| screen = pygame.display.set_mode((1920, 1080), 0, 32) | |
| player_spr = pygame.image.load('darkgrey_04.png') | |
| player_spr = pygame.transform.scale(player_spr, (100, 100)) | |
| pygame.display.set_caption("Day50") | 
  
    
      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 | |
| import time | |
| chrome_driver_path = "C:/Users/kusodir/Documents/Development/chromedriver/chromedriver.exe" | |
| driver = webdriver.Chrome(executable_path=chrome_driver_path) | |
| url = "https://www.linkedin.com/jobs/search/?currentJobId=3186839113&f_AL=true&keywords=python%20developer&refresh=true" | |
| driver.get(url) | |
| signin_element = driver.find_element_by_link_text("登入") | 
  
    
      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 | |
| import time | |
| chrome_driver_path = "path/to/chromedriver.exe" | |
| driver = webdriver.Chrome(executable_path=chrome_driver_path) | |
| driver.get("http://orteil.dashnet.org/experiments/cookie/") | |
| def get_price(item: 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
    
  
  
    
  | import requests | |
| from bs4 import BeautifulSoup | |
| from lxml import etree | |
| import smtplib | |
| target_price = 1000 | |
| product_url = "https://www.amazon.com/Sony-IER-Z1R-Signature-Headphones-IERZ1R/dp/B07HXPZ44S/ref=sr_1_1?keywords=sony+ier-z1r" | |
| "&qid=1683368781&sprefix=sony+ie%2Caps%2C246&sr=8-1" | |
| USER_MAIL = "mail" | |
| PASSWD = "passwd" | 
  
    
      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 requests | |
| from bs4 import BeautifulSoup | |
| import spotipy | |
| from spotipy.oauth2 import SpotifyOAuth | |
| URL = "https://www.billboard.com/charts/hot-100/" | |
| spotify_client_id = "client_id" | |
| spotify_client_secret = "client_secret" | |
| spotify_redirect_uri = "redirect_uri" | 
  
    
      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 bs4 import BeautifulSoup | |
| import requests | |
| response = requests.get("url") | |
| page = response.text | |
| soup = BeautifulSoup(page, "html.parser") | |
| items = soup.find_all(name="h3") | |
| items.reverse() | |
| with open("100_movies.txt", "w", encoding="utf-8") as file: | 
  
    
      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
    
  
  
    
  | <!doctype html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" | |
| content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"> | |
| <title>Document</title> | |
| <link rel="preconnect" href="https://fonts.googleapis.com"> | |
| <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> | |
| <link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;700&family=Libre+Baskerville&display=swap" | 
  
    
      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
    
  
  
    
  | <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>Spanish Vocabulary</title> | |
| <link rel="stylesheet" href="./style.css" /> | |
| </head> | |
| <body> | 
  
    
      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
    
  
  
    
  | <!doctype html> | |
| <html lang="zh-Hant-TW"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" | |
| content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"> | |
| <meta http-equiv="X-UA-Compatible" content="ie=edge"> | |
| <title>Birthday Invite Website</title> | |
| </head> | |
| <body> |