Recent content by hendovic

  1. hendovic

    Post image in comments Instagram

    Ascii art
  2. hendovic

    Mobile App Hosting Recommendation?

    You might try Firebase (owned by Google), they offer a lot of services, and on top of that you can implement push notifications easily.
  3. hendovic

    Please help! Can we connect to vps from windows home?

    Looks like RDP is disabled on Windows 10 Home, however there is a workaround to enable it : github.com/stascorp/rdpwrap Haven't tested but it should work
  4. hendovic

    Python XMLRPC failed with Proxy

    "getaddrinfo" returns the IP address associated to a domain name, your error indicates that your app couldn't get any info from the DNS server. Probably an issue with you proxies, did you try them?
  5. hendovic

    fb video downloader?

    Video DownloadHelper (Browser extension) should also work with Facebook
  6. hendovic

    Javascript challenge

    The input that contains the mail address has an id "mail", so you can simply retrieve it value like this : document.getElementById('mail').value > "[email protected]"
  7. hendovic

    Apache requests currently being processed

    You might check if there are some transactions that are still active after your script finished, with the following command : MariaDB [(none)]> show engine innodb status; ------------ TRANSACTIONS ------------ Trx id counter 59336 Purge done for trx's n:o < 58734 undo n:o < 0 state: running...
  8. hendovic

    How do I extract the exact number of an Instagram Profile Post Amount? - (Python - Requests/BeautifulSoup)

    Something like this might work : import json import httplib conn = httplib.HTTPSConnection("www.instagram.com") conn.request("GET", "/worldstar/?__a=1") data = conn.getresponse() json_data = json.loads(data.read()) print json_data["graphql"]["user"]["edge_owner_to_timeline_media"]["count"]
  9. hendovic

    Good Windows 10 cloud hoster?

    You might as well check Google Cloud, they offer $300 when you signup, you can use it to run Windows server instances and do whatever you want with them.
  10. hendovic

    0 to 3000 followers in 12 days - How i made it

    Nice share man, thank's, I'll take a look at it
  11. hendovic

    Where will this go...? We'll see in 2 years! My Journey...

    Good luck with your journey mate, hope you'll succeed !
  12. hendovic

    Copyright my own script

    +1 for @cnick79's method, make a REST API or something like that, and your script must interact with it in order to work.
  13. hendovic

    Tired of waiting for your domain name to resolve? Here is what you can do. (WINDOWS)

    If you're using a Linux machine, the "hosts" file is located at : / etc/hosts PS: There's no space between the "/" and "etc", I wasn't allowed to post until I added the space, don't know why
  14. hendovic

    Hello guys I am new here

    Welcome to BHW mate :)
  15. hendovic

    unable to find wp theme

    Looks like this theme is named Technology Child : A Google search didn't return anything, however here is the CSS file if you're interested : https://web.archive.org/web/20190818192217/https://mobileappdevelopmentcompanyindia.co/wp-content/themes/technology-child/assets/css/style.css?ver=27
Back
Top