Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!


Shells Virtual Desktop
BMail.ag - Secure Email Service
Server.net
CPLicense.net
VPS Server
Buy VPN
Vultr
VMs for AI
HostDare
HostDare
ReliableSite White-Label Dedicated Hosting for Resellers
InterServer VPS
BMail.ag - Secure Email Service
Best VPN
High-Performance Bare Metal Server Solutions
Karvl.com
Server Mania Cloud Hosting
DataWagon Hosting
AlphaVPS Hosting
Evoxt.com
Clouvider
VPS Hosting with NVMe
Residential IPs in the US & 4G Mobile Proxies in EU & US with Unlimited Bandwidth
ReliableSite White-Label Dedicated Hosting for Resellers
Rabisu - Hosting Solutions
Shells Virtual Desktop
New on LowEndTalk? Please Register and read our Community Rules.

All new Registrations are manually reviewed and approved, so a short delay after registration may occur before your account becomes active.

OFFICIAL B-L-A-C-K-F-R-I-D-A-Y THREAD -- COMMUNITY ENDORSED! Take a peek! (RackNerd's Black Friday)

19729739759779781117

Comments

  • @sonu said:

    @jmaxwell said:

    @sonu said:

    @jmaxwell said:

    @sonu said:
    Where is Cow, haven't seen him for two days.

    “W” key of cow’s keyboard went kaput

    Only a mouse is needed to click the post comment button.

    hat about the ords that have the letter ?

    right-click, copy and paste.

    For jokes maybe

  • VoidVoid Member
    edited December 2022

    Oh 975. Just 25 more

  • Slow day it is

  • Hello, I would like to double the bandwidth.

    Order Number: AZCK8WAR

    Invoice ID: 5041567

    Thanks!

  • @jmaxwell said:
    Slow day it is

    Turn on the scripts?

  • @sonu said:

    @jmaxwell said:
    Slow day it is

    Turn on the scripts?

    beep boop scripts loading

  • Well, I asked ChatGPT how to create such a script.

    Q: How to create a Python script to post automatically in vanilla forum

    Ans: To create a Python script that can automatically post in a Vanilla forum, you will need to do the following:

    Make sure you have Python installed on your computer. If you don't already have it, you can download and install it from the official Python website (https://www.python.org/).
    Install the Requests library for Python. This library allows you to send HTTP requests from your Python scripts, which will be necessary for communicating with the Vanilla forum API. You can install the Requests library using pip, the Python package manager, by running the following command:
    Copy code
    pip install requests
    Create a new Python script and import the Requests library. At the top of your script, add the following line to import the library:
    Copy code
    import requests
    Obtain an API key for the Vanilla forum you want to post to. Most Vanilla forums will have an option to generate an API key in the admin dashboard. Once you have obtained an API key, store it in a variable in your script so you can use it later.
    Use the Requests library to send an HTTP POST request to the Vanilla forum's API endpoint for creating new posts. The specific URL and parameters for this endpoint will vary depending on the forum software and version you are using, so you will need to consult the forum's API documentation for details. In general, however, you will need to specify the following parameters in your request:
    The API key you obtained in step 4
    The ID of the category where you want to create the new post
    The title and body of the post you want to create
    Handle the response from the server and check for any errors. If the request was successful, the server should return a JSON object containing the details of the newly created post. If there was an error, the server will return an error message that you can use to diagnose the problem.
    Here is an example of a Python script that could be used to automatically post in a Vanilla forum:

    Copy code
    import requests

    # Set the URL and authentication parameters for the Vanilla forum API
    api_url = 'https://vanilla.example.com/api/v2/posts'
    api_key = 'YOUR_API_KEY_HERE'

    # Set the parameters for the new post
    category_id = 123
    post_title = 'Hello, World!'
    post_body = 'This is my first post using the Vanilla forum API.'

    # Send the HTTP POST request to create the new post
    response = requests.post(api_url, json={
    'apiKey': api_key,
    'categoryID': category_id,
    'name': post_title,
    'body': post_body
    })

    # Check the response from the server
    if response.ok:
    # The post was created successfully
    post_data = response.json()
    print(f'Successfully created new post: {post_data["url"]}')
    else:
    # There was an error creating the post
    error_message = response.json()['message']
    print(f'Error creating post: {error_message}')
    This script will send an HTTP POST request to the Vanilla forum's API, using the specified API key, category ID, post title, and post body as parameters. If the request is successful, the script will print the URL of the newly created post. If there is an error, the script will print the error

  • @jmaxwell said:
    Well, I asked ChatGPT how to create such a script.

    Q: How to create a Python script to post automatically in vanilla forum

    Ans: To create a Python script that can automatically post in a Vanilla forum, you will need to do the following:

    Make sure you have Python installed on your computer. If you don't already have it, you can download and install it from the official Python website (https://www.python.org/).
    Install the Requests library for Python. This library allows you to send HTTP requests from your Python scripts, which will be necessary for communicating with the Vanilla forum API. You can install the Requests library using pip, the Python package manager, by running the following command:
    Copy code
    pip install requests
    Create a new Python script and import the Requests library. At the top of your script, add the following line to import the library:
    Copy code
    import requests
    Obtain an API key for the Vanilla forum you want to post to. Most Vanilla forums will have an option to generate an API key in the admin dashboard. Once you have obtained an API key, store it in a variable in your script so you can use it later.
    Use the Requests library to send an HTTP POST request to the Vanilla forum's API endpoint for creating new posts. The specific URL and parameters for this endpoint will vary depending on the forum software and version you are using, so you will need to consult the forum's API documentation for details. In general, however, you will need to specify the following parameters in your request:
    The API key you obtained in step 4
    The ID of the category where you want to create the new post
    The title and body of the post you want to create
    Handle the response from the server and check for any errors. If the request was successful, the server should return a JSON object containing the details of the newly created post. If there was an error, the server will return an error message that you can use to diagnose the problem.
    Here is an example of a Python script that could be used to automatically post in a Vanilla forum:

    Copy code
    import requests

    # Set the URL and authentication parameters for the Vanilla forum API
    api_url = 'https://vanilla.example.com/api/v2/posts'
    api_key = 'YOUR_API_KEY_HERE'

    # Set the parameters for the new post
    category_id = 123
    post_title = 'Hello, World!'
    post_body = 'This is my first post using the Vanilla forum API.'

    # Send the HTTP POST request to create the new post
    response = requests.post(api_url, json={
    'apiKey': api_key,
    'categoryID': category_id,
    'name': post_title,
    'body': post_body
    })

    # Check the response from the server
    if response.ok:
    # The post was created successfully
    post_data = response.json()
    print(f'Successfully created new post: {post_data["url"]}')
    else:
    # There was an error creating the post
    error_message = response.json()['message']
    print(f'Error creating post: {error_message}')
    This script will send an HTTP POST request to the Vanilla forum's API, using the specified API key, category ID, post title, and post body as parameters. If the request is successful, the script will print the URL of the newly created post. If there is an error, the script will print the error

    Can some pro-coders confirm if this could work :D

  • @jmaxwell said: Can some pro-coders confirm if this could work :D

    at first glance this will work

  • @DeadlyChemist said:

    @jmaxwell said: Can some pro-coders confirm if this could work :D

    at first glance this will work

    Cool. So the A.I is good

  • @jmaxwell said:

    @jmaxwell said:

    Can some pro-coders confirm if this could work :D

    It will work for the official API, but LET doesn’t expose that/it’s not public unfortunately

  • @MooCowGalaxy said:

    @jmaxwell said:

    @jmaxwell said:

    Can some pro-coders confirm if this could work :D

    It will work for the official API, but LET doesn’t expose that/it’s not public unfortunately

    Yes there should be some other way instead of api

  • How on earth it knows LET is a technical forum.

    Thanked by 1dustinc
  • @MooCowGalaxy said:

    @jmaxwell said:

    @jmaxwell said:

    Can some pro-coders confirm if this could work :D

    It will work for the official API, but LET doesn’t expose that/it’s not public unfortunately

    But anyways... I am starting to be afraid of AI. Real software developers will be unneeded. From the quality right now, I guess, you could already ask to develop a calculator... Several years, or even months later, you will be able to request to develop RN stats page with all the fancy stuff, and you will get it... Then you will ask how to deploy, and after some time you will not need HOW in the previous request...

    Thanked by 2Void dustinc
  • @jmaxwell said:
    How on earth it knows LET is a technical forum.

    Correct me if I am wrong, but I think Wikipedia was one of the sources for this AI to learn from... And with my phone I already found 2 pages where LET is referenced in. Hetzner and Digital Ocean. Maybe there are more...

  • Lets do it!!!

  • @MrEd said:

    @MooCowGalaxy said:

    @jmaxwell said:

    @jmaxwell said:

    Can some pro-coders confirm if this could work :D

    It will work for the official API, but LET doesn’t expose that/it’s not public unfortunately

    But anyways... I am starting to be afraid of AI. Real software developers will be unneeded. From the quality right now, I guess, you could already ask to develop a calculator... Several years, or even months later, you will be able to request to develop RN stats page with all the fancy stuff, and you will get it... Then you will ask how to deploy, and after some time you will not need HOW in the previous request...

    That is an exciting yet disturbing observation. Also isn’t it something similar to how horses became obsolete when electric cars were invented?

  • @MMzF said:
    Lets do it!!!

    We’re doing it

  • @jmaxwell said:

    @MrEd said:

    @MooCowGalaxy said:

    @jmaxwell said:

    @jmaxwell said:

    Can some pro-coders confirm if this could work :D

    It will work for the official API, but LET doesn’t expose that/it’s not public unfortunately

    But anyways... I am starting to be afraid of AI. Real software developers will be unneeded. From the quality right now, I guess, you could already ask to develop a calculator... Several years, or even months later, you will be able to request to develop RN stats page with all the fancy stuff, and you will get it... Then you will ask how to deploy, and after some time you will not need HOW in the previous request...

    That is an exciting yet disturbing observation. Also isn’t it something similar to how horses became obsolete when electric cars were invented?

    I guess, you don't mean ELECTRIC, but cars in gemeral?.. Well, yes, but the change was not so instant. We will soon have to learn not to develop something ourselves, but HOW TO ASK AI and get the corrwct response... :( I feel, this time its just changing too fast and humanity will be too slow to adapt...

  • @MrEd said:

    @jmaxwell said:
    How on earth it knows LET is a technical forum.

    Correct me if I am wrong, but I think Wikipedia was one of the sources for this AI to learn from... And with my phone I already found 2 pages where LET is referenced in. Hetzner and Digital Ocean. Maybe there are more...

    Yes it is possible.

    It also knows about OGF

    What is LowEndSpirit?

    LowEndSpirit is a type of virtual private server (VPS) hosting offered by a company called Feral Hosting. It is a low-cost hosting option that allows users to run multiple virtual machines on a single physical server. LowEndSpirit is popular among users who need the flexibility and power of a VPS but want to keep costs low. The name "LowEndSpirit" refers to the fact that the hosting is optimized for low-end technology and is designed to be cost-effective.

  • @jmaxwell said:

    @MrEd said:

    @jmaxwell said:
    How on earth it knows LET is a technical forum.

    Correct me if I am wrong, but I think Wikipedia was one of the sources for this AI to learn from... And with my phone I already found 2 pages where LET is referenced in. Hetzner and Digital Ocean. Maybe there are more...

    Yes it is possible.

    It also knows about OGF

    What is LowEndSpirit?

    LowEndSpirit is a type of virtual private server (VPS) hosting offered by a company called Feral Hosting. It is a low-cost hosting option that allows users to run multiple virtual machines on a single physical server. LowEndSpirit is popular among users who need the flexibility and power of a VPS but want to keep costs low. The name "LowEndSpirit" refers to the fact that the hosting is optimized for low-end technology and is designed to be cost-effective.

    Would you answer better to the same question?

  • @MrEd said:

    @jmaxwell said:

    @MrEd said:

    @jmaxwell said:
    How on earth it knows LET is a technical forum.

    Correct me if I am wrong, but I think Wikipedia was one of the sources for this AI to learn from... And with my phone I already found 2 pages where LET is referenced in. Hetzner and Digital Ocean. Maybe there are more...

    Yes it is possible.

    It also knows about OGF

    What is LowEndSpirit?

    LowEndSpirit is a type of virtual private server (VPS) hosting offered by a company called Feral Hosting. It is a low-cost hosting option that allows users to run multiple virtual machines on a single physical server. LowEndSpirit is popular among users who need the flexibility and power of a VPS but want to keep costs low. The name "LowEndSpirit" refers to the fact that the hosting is optimized for low-end technology and is designed to be cost-effective.

    Would you answer better to the same question?

    It could be better

  • @jmaxwell said:

    @MrEd said:

    @jmaxwell said:

    @MrEd said:

    @jmaxwell said:
    How on earth it knows LET is a technical forum.

    Correct me if I am wrong, but I think Wikipedia was one of the sources for this AI to learn from... And with my phone I already found 2 pages where LET is referenced in. Hetzner and Digital Ocean. Maybe there are more...

    Yes it is possible.

    It also knows about OGF

    What is LowEndSpirit?

    LowEndSpirit is a type of virtual private server (VPS) hosting offered by a company called Feral Hosting. It is a low-cost hosting option that allows users to run multiple virtual machines on a single physical server. LowEndSpirit is popular among users who need the flexibility and power of a VPS but want to keep costs low. The name "LowEndSpirit" refers to the fact that the hosting is optimized for low-end technology and is designed to be cost-effective.

    Would you answer better to the same question?

    It could be better

    But during the conversation, without much googling etc... I mean yeah, if it was your exam question, you would have prepared all the facts... but in this case, this explanation comes like out of conversation, and it looks perfect.

  • @jmaxwell said:

    @jmaxwell said:
    Well, I asked ChatGPT how to create such a script.

    Q: How to create a Python script to post automatically in vanilla forum

    Ans: To create a Python script that can automatically post in a Vanilla forum, you will need to do the following:

    Make sure you have Python installed on your computer. If you don't already have it, you can download and install it from the official Python website (https://www.python.org/).
    Install the Requests library for Python. This library allows you to send HTTP requests from your Python scripts, which will be necessary for communicating with the Vanilla forum API. You can install the Requests library using pip, the Python package manager, by running the following command:
    Copy code
    pip install requests
    Create a new Python script and import the Requests library. At the top of your script, add the following line to import the library:
    Copy code
    import requests
    Obtain an API key for the Vanilla forum you want to post to. Most Vanilla forums will have an option to generate an API key in the admin dashboard. Once you have obtained an API key, store it in a variable in your script so you can use it later.
    Use the Requests library to send an HTTP POST request to the Vanilla forum's API endpoint for creating new posts. The specific URL and parameters for this endpoint will vary depending on the forum software and version you are using, so you will need to consult the forum's API documentation for details. In general, however, you will need to specify the following parameters in your request:
    The API key you obtained in step 4
    The ID of the category where you want to create the new post
    The title and body of the post you want to create
    Handle the response from the server and check for any errors. If the request was successful, the server should return a JSON object containing the details of the newly created post. If there was an error, the server will return an error message that you can use to diagnose the problem.
    Here is an example of a Python script that could be used to automatically post in a Vanilla forum:

    Copy code
    import requests

    # Set the URL and authentication parameters for the Vanilla forum API
    api_url = 'https://vanilla.example.com/api/v2/posts'
    api_key = 'YOUR_API_KEY_HERE'

    # Set the parameters for the new post
    category_id = 123
    post_title = 'Hello, World!'
    post_body = 'This is my first post using the Vanilla forum API.'

    # Send the HTTP POST request to create the new post
    response = requests.post(api_url, json={
    'apiKey': api_key,
    'categoryID': category_id,
    'name': post_title,
    'body': post_body
    })

    # Check the response from the server
    if response.ok:
    # The post was created successfully
    post_data = response.json()
    print(f'Successfully created new post: {post_data["url"]}')
    else:
    # There was an error creating the post
    error_message = response.json()['message']
    print(f'Error creating post: {error_message}')
    This script will send an HTTP POST request to the Vanilla forum's API, using the specified API key, category ID, post title, and post body as parameters. If the request is successful, the script will print the URL of the newly created post. If there is an error, the script will print the error

    Can some pro-coders confirm if this could work :D

    No, it can't.
    LET is a pro on anti-bot. I got no luck finding cookies. If anybody knows how I can obtain the cookie from LET using python requests?

  • @MooCowGalaxy said:

    @jmaxwell said:

    @jmaxwell said:

    Can some pro-coders confirm if this could work :D

    It will work for the official API, but LET doesn’t expose that/it’s not public unfortunately

    But you have your script, GREAT PROGRAMMER!

  • @sonu said:

    No, it can't.
    LET is a pro on anti-bot. I got no luck finding cookies. If anybody knows how I can obtain the cookie from LET using python requests?

    I just copy pasted it from my browser into my env for my code. You could get it in the Set-Cookie header after sending a POST request to LET's login endpoint if you don't want to just paste the cookie and instead generate a new one.

  • @jmaxwell said:

    @DeadlyChemist said:

    @sonu said:
    Where is Cow, haven't seen him for two days.

    check on a farm iao iao oooo

    Cow is having fun

    :lol:

  • Hello, I would like to double the bandwidth.

    Order Number: 9464809930

    Invoice ID: #5031865

    Thanks!

  • Is it still time to post and win something?

    Thanked by 1dustinc
This discussion has been closed.