Skip to content

Instantly share code, notes, and snippets.

View petitchamp's full-sized avatar

SONG Ke petitchamp

  • DASSAULT SYSTEMES
  • Paris,France
View GitHub Profile
@petitchamp
petitchamp / BestSecretHighlighter.user.js
Last active October 22, 2023 12:33
tampermonkey script to filter product with best discount
// ==UserScript==
// @name Best secret highlighter
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author petitchamp
// @match https://www.bestsecret.fr/*category.htm*
// @match https://www.bestsecret.fr/search.htm*
// @icon https://www.google.com/s2/favicons?sz=64&domain=bestsecret.fr
// @grant none
@petitchamp
petitchamp / python-gcp-stt.md
Created February 2, 2023 11:03 — forked from ecovictoriano/python-gcp-stt.md
Transcribe audio file to text (speech-to-text) using Google Cloud Platform's Speech API

Transcribe audio file to text (speech-to-text) using Google Cloud Platform's Speech API

Convert audio to text using GCP Speech API

Requirements

pip install --upgrade google-cloud-speech

Export the GCP credential env and execute the request

#!/bin/bash
import time
from requests import post
from queue import Queue
from logger import logger
from datetime import datetime
NoCaptchaTaskProxyless = "NoCaptchaTaskProxyless"
SERVER = 'https://api.yescaptcha.com'
#include <iostream>
#include <algorithm>
#include <string>
#include <vector>
using namespace std;
void FindWord(string &TargetWord, string &Phrase)
{
cout << "Find: " << TargetWord << " in: \""<< Phrase<<"\"" << endl;
@petitchamp
petitchamp / test.py
Created October 2, 2017 21:29 — forked from christianroman/test.py
Bypass Captcha using 10 lines of code with Python, OpenCV & Tesseract OCR engine
import cv2.cv as cv
import tesseract
gray = cv.LoadImage('captcha.jpeg', cv.CV_LOAD_IMAGE_GRAYSCALE)
cv.Threshold(gray, gray, 231, 255, cv.CV_THRESH_BINARY)
api = tesseract.TessBaseAPI()
api.Init(".","eng",tesseract.OEM_DEFAULT)
api.SetVariable("tessedit_char_whitelist", "0123456789abcdefghijklmnopqrstuvwxyz")
api.SetPageSegMode(tesseract.PSM_SINGLE_WORD)
tesseract.SetCvImage(gray,api)
print api.GetUTF8Text()