loudgolem

Results 228 comments of loudgolem

The package has been patched to handle pthread_cancel and other things and is available in termux-packages https://github.com/termux/termux-packages/pull/13125

I tried doing something with Yandex but it keeps on saying " Recapcha my lad " after a few refreshes of the webpage. It says " The requests from your...

## Yeah and Pinterest image search is easy ### eg: using [this image](https://res.cloudinary.com/rootworld/image/upload/v1542648184/luffycuteandstuff.jpg) ```python3 import requests img_URL = "https://res.cloudinary.com/rootworld/image/upload/v1542648184/luffycuteandstuff.jpg" API_URL = """\ https://api.pinterest.com/v3/visual_search/flashlight/url/?\ url={img_URL}\ &x=0\ &y=0\ &w=1\ &h=1\ &base_scheme=https\ """...

I've made a pull request have a look at it @vivithemage

I don't know PHP but I used curl to PHP generator For the Feature ideas examples on different languages ## PHP ```php ```

I only know basics of go but used a generator ## Go ```go package main import ( "bytes" "encoding/json" "fmt" "io/ioutil" "net/http" ) // Payload : json struct type Payload...

Nothing on ruby either but curl to ruby online ## Ruby ```ruby require 'net/http' require 'uri' require 'json' uri = URI.parse("http://localhost:5000/search") request = Net::HTTP::Post.new(uri) request.content_type = "application/json" request.body = JSON.dump({...

Perl by using LWP I don't know Perl either ## Perl and LWP ```perl use LWP::UserAgent; my $ua = LWP::UserAgent->new; my $server_endpoint = "http://localhost:5000/search"; # set custom HTTP request header...

### Php, Go, Perl, Ruby examples are working