Recent content by PIEGE

  1. PIEGE

    I need help coding ( Betting Script )

    did you ever figure this out?
  2. PIEGE

    accessing 'old' version of Ticketmaster

    just curious what is the limitation of working with the new api is?
  3. PIEGE

    Akamai bot manager

    high level overview is available on Akamai's page. offers a fair outlook of what to expect, if you have any familiarity with maintaining web applications ( or simply, why you would want to protect a site using bot protection ) https://www.akamai.com/us/en/products/security/bot-manager.jsp...
  4. PIEGE

    Redirect to random url

    math.floor will help you here.. also google is your friend this time. https://www.google.com/amp/s/www.geeksforgeeks.org/how-to-select-a-random-element-from-array-in-javascript/amp/
  5. PIEGE

    How to submit the captcha in twitter captcha? used to work now they changed it

    you would have your browser or some man in the middle proxy to observe the request/response chain. this is where you will find the correct request to duplicate
  6. PIEGE

    (HELP) PHP to get random line from text file for video embed

    the code cant find this file because your relative file path is not correct. is titles.txt in the same root directory as the file with the above code?
  7. PIEGE

    How to submit the captcha in twitter captcha? used to work now they changed it

    why are you using doc strings? what is the value of recaptcha_answer i have reason to suspect, given your code so far, your last attempt at string format to provide a value dynamically, fails.
  8. PIEGE

    [Question] How to let a Python bot works on Telegram

    your python script must have an environment to run in. have you installed python to your local machine ? if not, this would be the first step. the script should interact with telegram to function as the bot.. if you are using a server or some other remote pc.. it has to have python...
  9. PIEGE

    Journey To Building A Better Cam Site

    do you have a gitlab to host this project? i would like to contribute.
  10. PIEGE

    Pros and Cons of Python Web Scraping

    " I am going to get cursed now programmers hate copy paste wannabes " some people claim to 'know' a language after 3 months of copy paste, youtube and BHW questions :)
  11. PIEGE

    Pros and Cons of Python Web Scraping

    I am only starting out, but more and more python is the tool i reach for. the language is easy for my brain to think about, plus features for everything. bonus it is native to linux so any code i write automatically close to the servers i work on. can even run javascript engine 'inside'...
  12. PIEGE

    Pros and Cons of Python Web Scraping

    Python. all pros, no cons :)
  13. PIEGE

    How to get certain info from webpages using request Python

    just realized this post was super old... #PYTHON3 from bs4 import BeautifulSoup html_string = ''' <tr class="lo even"> <td> <div class="l"><a class="name2" title="Go to 12BET website!" onclick="return !window.open(this.href)"...
  14. PIEGE

    add a class name to images

    for HTML tags 'class' just works like a description. so non technical explanation to solve your problem is: " all your images that are also links; add a description for the ad it links to " so there are two parts -- in your word press theme the <img> tag, you would add "class='promo_link'" in...
  15. PIEGE

    Website Question - Parse Multiple XML To One Structure

    your question is too vague, i'm not sure the idea of what you want is clear. - are you downloading a collection of xml files that you want to represent some separate total catalog? - are you needing to transform your current xmls and map them to other data structures or objects? -...
Back
Top