Skip to content

Instantly share code, notes, and snippets.

View Melanee-Melanee's full-sized avatar
📜
Working on ancient languages

Melanee Melanee-Melanee

📜
Working on ancient languages
View GitHub Profile
<?xml version="1.0"?>
<!-- Add more negative to training. -->
<opencv_storage>
<cars3 type_id="opencv-haar-classifier">
<size>
20 20</size>
<stages>
<_>
<!-- stage 0 -->
<trees>
@sundowndev
sundowndev / GoogleDorking.md
Last active July 20, 2024 04:54
Google dork cheatsheet

Google dork cheatsheet

Search filters

Filter Description Example
allintext Searches for occurrences of all the keywords given. allintext:"keyword"
intext Searches for the occurrences of keywords all at once or one at a time. intext:"keyword"
inurl Searches for a URL matching one of the keywords. inurl:"keyword"
allinurl Searches for a URL matching all the keywords in the query. allinurl:"keyword"
intitle Searches for occurrences of keywords in title all or one. intitle:"keyword"
@Hossara
Hossara / IntFloatToBinaryPython.py
Last active January 3, 2023 19:51
Convert int & float to binary in python without using bin function
def trans(x):
if x == 0: return [0]
bit = []
while x:
bit.append(x % 2)
x >>= 1
arr = bit[::-1]
arr = list(map(str, arr))
@Daniel-V-Richardson
Daniel-V-Richardson / assistant.py
Created January 24, 2023 14:44
Simple AI Voice Assistant using OpenAI API
import speech_recognition as sr
import pyttsx3
import openai
openai.api_key = "Your API Key"
engine = pyttsx3.init()
voices = engine.getProperty('voices')
engine.setProperty('voices', voices[1].id)