Skip to content

Instantly share code, notes, and snippets.

View VisionOra's full-sized avatar
:octocat:
Always Up to Help you , Reach me out

Master X VisionOra

:octocat:
Always Up to Help you , Reach me out
View GitHub Profile
@haranjackson
haranjackson / chrome_headless.py
Last active November 4, 2024 19:45
Deploys the Python Selenium library and Chrome Headless to an AWS Lambda layer. You can specify the region, library version, and runtime. An example Lambda function is given.
from selenium.webdriver import Chrome
from selenium.webdriver.chrome.options import Options
options = Options()
options.binary_location = '/opt/headless-chromium'
options.add_argument('--headless')
options.add_argument('--no-sandbox')
options.add_argument('--start-maximized')
options.add_argument('--start-fullscreen')
@mcvarer
mcvarer / cuda-11.2_installation_on_Ubuntu-18.04
Last active February 14, 2025 06:01
CUDA 11.2 Installation on Ubuntu 18.04
#!/bin/bash
## This gist contains instructions about cuda v11.2 and cudnn 8.1 installation in Ubuntu 18.04 for PyTorch
#############################################################################################
##### forked by : https://gist.github.com/Mahedi-61/2a2f1579d4271717d421065168ce6a73 ########
#############################################################################################
### steps ####
# verify the system has a cuda-capable gpu

Hello, my name is Sohaib and I am passionate about Artificial Intelligence.

Sohaib Anwaar GitHub stats

Top Langs