Program that makes the daily searches for PC and Mobile for now

Program that makes the daily searches for PC and Mobile using Python and Selenium. The points you can win depends on the level of the account. First of all, you need to login to your account on Edge. The program uses the browser data to prevent the saving of credentials and avoid logging every time the program executes. Second, install the required dependencies: pip install -r requirements.txt & pip install -r requirements.txt Run the program and it automatically starts Edge […]

Read more

GrIPS: Gradient-free, Edit-based Instruction Search for Prompting Large Language Models

Dependencies This code is written using PyTorch and HuggingFace’s Transformer repo. Running GrIPS with GPT-2 models requires access to GPUs. The search is quite light-weight (no model training involved) and therefore one GPU should suffice. On the other hand, running GrIPS with InstructGPT or GPT-3 models requires an OpenAI API key. Please add your key to the openai_key.txt file. Installation The simplest way to run our code is to start with a fresh environment. conda create -n GrIPS python=3.9 source […]

Read more

Searches locations based off of a list addresses to find Latitude and Longitude Points

Needed for this project to work you need: Google Places API key – this will actually allow you to grab the lat-longs Initial data needs to be typed in a specific way Google Places API key is a unique number that Google allows you to look through their stuff to grab anything that you want for your project – in this case lat-longs and addresses. Inorder for this to work we need the data to be in a certain way. […]

Read more

Search, select and execute Fastlane lanes directly from Alfred

Search, select and execute Fastlane lanes directly from Alfred alfred-fastlane.mp4 Features ✅ Scrapes lanes from Fastfile ✅ Optional caching for remote lanes ✅ Auto-detects open Xcode project ✅ Fuzzy matching ✅ Supports parameters ✅ In-Alfred settings flow Getting started Toggle Alfred → type fl → select path containing Fastlane folder ↩︎ With lane selected, hold ⌘ to toggle between bundle exec fastlane [lane] and fastlane [lane] Hold ⌥ or ⇧ to pass parameters to selected lane Lanes contained within the […]

Read more

A simple image of ikea search using jina.ai

This is a demo project to fetch ikea product images(IKEA Copyrights them so can only be used for private purposes). MUST read their terms and conditions before using their iamges for anything other than private purposes. You must have a virtual environment virtualenv venv source venv/bin/activate pip install -r requirements.txt Download Product Data and prepare First script to run that creates the database in sqllite python src/db/sql_model.py Then prepare_data Note i am pulling the data from IKEA Belgium’s French website […]

Read more

A Python package for searching and getting results with many different search engines

A fast, efficiency python package for searching and getting search results with many different search engines. To install the package, run the following command: python3 -m pip install search Or install from Github: python3 -m pip install git+https://github.com/Neurs1/search.git This package support many different search engines. Provide the best speed with BS4 using lxml. Fix bugs, adapt new features and page design from search engines. Output in dict type, easier to interact with. Search using multiple search engines! import search search.google(“Python”) […]

Read more

The Neurips 2021 paper Searching Parameterized AP Loss for Object Detection

By Chenxin Tao,Zizhang Li,Xizhou Zhu,Gao Huang,Yong Liu,Jifeng Dai This is the official implementation of the Neurips 2021 paper Searching Parameterized AP Loss for Object Detection. Introduction TL; DR. Parameterized AP Loss aims to better align the network training and evaluation in object detection. It builds a unified formula for classification and localization tasks via parameterized functions, where the optimal parameters are searched automatically. Introduction. In evaluation of object detectors, Average Precision (AP) captures the performance of localization and classification sub-tasks […]

Read more

Cve-search : a tool to perform local searches for known vulnerabilities

cve-search is a tool to import CVE (Common Vulnerabilities and Exposures) and CPE (Common Platform Enumeration) into a MongoDB to facilitate search and processing of CVEs. The main objective of the software is to avoid doing direct and public lookups into the public CVE databases. Local lookups are usually faster and you can limit your sensitive queries via the Internet. cve-search includes a back-end to store vulnerabilities and related information, an intuitive web interface for search and managing vulnerabilities, a […]

Read more

Darkdump: Search The Deep Web Straight From Your Terminal

About Darkdump Darkdump is a simple script written in Python3.9 in which it allows users to enter a search term (query) in the command line and darkdump will pull all the deep web sites relating to that query. Darkdump wraps up the darksearch.io API. Installation git clone https://github.com/josh0xA/darkdump cd darkdump python3 -m pip install -r requirements.txt python3 darkdump.py –help Usage Example 1: python3 darkdump.py –query programmingExample 2: python3 darkdump.py –query=”chat rooms”Example 3: python3 darkdump.py –query hackers –page 2 Note: The […]

Read more
1 2 3