User Controls

  1. 1
  2. 2
  3. 3
  4. ...
  5. 157
  6. 158
  7. 159
  8. 160
  9. 161
  10. 162
  11. ...
  12. 1997
  13. 1998
  14. 1999
  15. 2000

Posts by Ghost

  1. Ghost Black Hole
    i charge 690 WOWnero for a propmpt!!!!

    import random

    def random_ascii_char():
    return chr(random.randint(33, 126))

    def random_color():
    colors = ["red", "green", "blue", "yellow", "purple", "orange", "pink", "brown", "grey", "black"]
    return random.choice(colors)

    def random_subject():
    subjects = ["animal", "technology"]
    return random.choice(subjects)

    characters = [random_ascii_char() for i in range(10)]
    subjects = [{"subject": random_subject(), "color": random_color()} for i in range(10)]

    for i in range(10):
    print("Character: {} | Subject: {} | Color: {}".format(characters, subjects["subject"], subjects["color"]))
  2. Ghost Black Hole
    what does thart code dew profession frink!
  3. Ghost Black Hole
    what does this webpage mean "https://github.com/lochaorg/petroapp/blob/master/LICENSE"

    The web page you mentioned "https://github.com/lochaorg/petroapp/blob/master/LICENSE" is a GitHub repository page for the PetroApp project, which is a mobile application developed by the Locha organization. The page you linked to specifically shows the license agreement for the PetroApp project.

    A license agreement is a legal document that specifies the terms and conditions under which a software product (in this case, the PetroApp mobile app) can be used, distributed, and modified by others. The license agreement outlines the rights and obligations of the users, the developers, and the copyright holders of the software product.

    By accessing and using the PetroApp mobile app, users are agreeing to abide by the terms and conditions specified in the license agreement. The license agreement is an important aspect of open source software, as it ensures that the software product remains free and open for everyone to use, distribute, and modify, while also protecting the rights of the developers and the copyright holders.

    In summary, the license agreement on the web page you mentioned is a legal document that outlines the terms and conditions for using the PetroApp mobile app, and it is an important aspect of open source software that helps ensure that the software remains free and open for everyone to use, distribute, and modify.
    SC
    is this the same petroapp that is widely being used today in southern american economy?

    I'm not sure which specific PetroApp you are referring to. The "PetroApp" mentioned in the GitHub repository page you linked to is a mobile application developed by the Locha organization, which aims to provide a decentralized and censorship-resistant internet access and secure communication.

    As for the "Petro" widely used in some South American economies, it is a cryptocurrency that was launched by the government of Venezuela in 2018 as a way to circumvent US sanctions and bolster the country's economy. The Petro was pegged to the value of a barrel of oil and was supposed to be backed by Venezuela's oil reserves.

    It's possible that the PetroApp mentioned in the GitHub repository page is related to the Petro cryptocurrency, but without further information or clarification from the Locha organization, it's not possible to say for sure.

    In summary, I cannot confirm whether the "PetroApp" mentioned in the GitHub repository page is the same as the "Petro" widely used in some South American economies without further information or clarification.
    SC
    what was this code supposed to do? I cannot seem to view it entirely, only the outline. "# Built application files
    *.apk
    *.ap_

    # Files for the ART/Dalvik VM
    *.dex

    # Java class files
    *.class

    # Generated files
    bin/
    gen/
    out/

    # Gradle files
    .gradle/
    build/

    # Local configuration file (sdk path, etc)
    local.properties

    # Proguard folder generated by Eclipse
    proguard/

    # Log Files
    *.log

    # Android Studio Navigation editor temp files
    .navigation/

    # Android Studio captures folder
    captures/

    # Intellij
    *.iml
    .idea/workspace.xml
    .idea/tasks.xml
    .idea/gradle.xml
    .idea/dictionaries
    .idea/libraries

    The code you linked is a .gitignore file, which is a configuration file used by Git (a version control system) to determine which files or directories should be ignored when committing changes to a Git repository. The contents of the file specify patterns for files and directories that should be excluded from version control.

    In the case of the .gitignore file you linked, it is for an Android Studio project. The file lists specific file extensions, directories, and files that should be ignored by Git, such as generated files, build files, log files, and various files related to the Android Studio development environment. By ignoring these files, Git will not track changes to them, which can help keep the Git repository cleaner and more organized.
    SC
    can you generate a rough boiler plate example of what PetroApp android studio project might have looked like?

    Unfortunately, I am not able to provide a complete code example for a PetroApp Android Studio project as I do not have access to the source code or any detailed specifications for the project. However, I can provide a general outline of what an Android Studio project for a mobile application might look like:

    lua

    PetroApp/


    This is a rough outline of what the file structure of an Android Studio project for a mobile application might look like. The app/ directory contains the source code and resources for the application. The src/ directory contains the source code for the application, organized into packages. The res/ directory contains resources for the application, such as layouts, images, and strings. The build.gradle file contains configuration information for building the application, including dependencies and build settings. The build/ directory contains the generated files for the application, such as compiled code and resources. The other files and directories in the root of the project contain configuration and build information for the Android Studio project as a whole.

    Note that this is just a general outline, and the actual structure and contents of a PetroApp Android Studio project could be different. Additionally, this outline is just meant to provide a basic idea of what an Android Studio project might look like, and should not be taken as an exact or complete representation of what the PetroApp Android Studio project might look like.
    SC
    what part interacts with the crypto?

    In a typical cryptocurrency wallet or exchange application, the part that interacts with the cryptocurrency is the code that communicates with the blockchain. This typically involves sending transactions to the blockchain to transfer funds, as well as retrieving information about the current state of the blockchain. This code would typically be implemented using a cryptocurrency library or API, which provides an abstracted interface for interacting with the blockchain. Some common cryptocurrency libraries include web3.js for Ethereum, bitcoin-core for Bitcoin, and monero-core for Monero. The specifics of the code would depend on the particular cryptocurrency and the desired functionality of the application.
    SC
    what does this mean "# Files for the ART/Dalvik VM
    *.dex"

    The line "# Files for the ART/Dalvik VM *.dex" is a part of a .gitignore file, which specifies files or directories that Git should ignore when tracking changes in a project.

    The ".dex" file extension refers to a Dalvik Executable file, which is a compiled file format used by the Android operating system to run apps on mobile devices. ART (Android RunTime) is the runtime environment for Android apps, which replaced Dalvik in Android 5.0.

    The line in the .gitignore file is saying that all files with the ".dex" extension should be ignored by Git. This is typically because the ".dex" files are generated automatically as part of the build process and do not need to be tracked by Git. Additionally, they can be regenerated easily if needed, so there is no need to track changes to them in the version control system.
    SC
    is there anything unusual about that gitignore? Do most android project gitignores do that?

    The contents of the .gitignore file included in the previous question is common for many Android projects. The entries in this .gitignore file are standard and are commonly included in most Android projects.

    The purpose of a .gitignore file is to specify files and directories that Git should ignore when tracking changes in a project. The contents of the file can vary depending on the specific project and the tools and technologies being used. However, many of the entries in the file included in the previous question are common across many Android projects, as they relate to files and directories that are generated as part of the build process or are specific to the development environment.

    In summary, the contents of this .gitignore file are typical for many Android projects and are not considered unusual.
    SC
    what does "Copyright (c) 2017 getpetro"

    The statement "Copyright (c) 2017 getpetro" is a copyright notice indicating that the copyright for the content being referred to is owned by an entity or individual named "getpetro" and that the copyright was established in the year 2017.

    A copyright notice is a form of legal protection that gives the owner of a work the exclusive right to reproduce, distribute, and display the work. By including a copyright notice in a work, the owner is informing others of the copyright status of the work and warning them that any unauthorized use may infringe upon the owner's exclusive rights.

    In the case of the statement "Copyright (c) 2017 getpetro," the copyright notice is indicating that the content being referred to is protected by copyright and that any unauthorized use may be an infringement of the copyright owner's exclusive rights.
    SC
    what does this codebase do "https://github.com/lochaorg/etherwallet/blob/mercury/README.md"

    The codebase located at "https://github.com/lochaorg/etherwallet/blob/mercury/README.md" is an open-source project named "EtherWallet" that provides a user-friendly interface for interacting with the Ethereum blockchain. The codebase allows users to securely manage their Ethereum-based assets such as ERC-20 tokens and Ether (ETH).

    The codebase provides users with the ability to create, import, and manage Ethereum wallets directly from their mobile device. The application is designed to be easy to use and provides users with control over their private keys, allowing them to sign transactions and interact with the Ethereum network without relying on centralized intermediaries.

    The codebase at "https://github.com/lochaorg/etherwallet/blob/mercury/README.md" is a part of the project's documentation and provides information on how to set up and use the application. The "mercury" branch of the codebase specifically refers to a version of the application that is in development and may contain new features or bug fixes.
    SC
    what does this do "https://github.com/lochaorg/petro/commit/7a6ae5ce0315fcfbc0d3ba05fe84e6325ea923c4"

    The link you provided is a commit page on GitHub for the "petro" project, which appears to be an open-source cryptocurrency project. A commit is a set of changes made to a project's codebase, and this specific commit includes changes made to the project's source code. Without more context or information about the project, it is difficult to say exactly what this specific commit does or what the changes made in it accomplish. To determine that, you would need to review the code changes in the commit and understand how they fit into the overall project.
    SC
    what about this "https://github.com/lochaorg/petro/tree/master/coin"

    The link you provided is the "coin" directory of the "petro" project on GitHub. This directory likely contains the source code for the cryptocurrency aspect of the "petro" project. It is not possible to determine the exact purpose or functionality of this code without a deeper understanding of the project as a whole and how this code fits into it. You can examine the code in this directory to get a better understanding of what it does, but it would likely require a significant amount of time and knowledge to fully comprehend its functionality.
    SC
    what does this do "# Logs
    logs
    *.log
    npm-debug.log*
    yarn-debug.log*
    yarn-error.log*

    # Runtime data
    pids
    *.pid
    *.seed
    *.pid.lock

    # Directory for instrumented libs generated by jscoverage/JSCover
    lib-cov

    # Coverage directory used by tools like istanbul
    coverage

    # nyc test coverage
    .nyc_output

    # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
    .grunt

    # Bower dependency directory (https://bower.io/)
    bower_components

    # node-waf configuration
    .lock-wscript

    # Compiled binary addons (http://nodejs.org/api/addons.html)
    build/Release

    # Dependency directories
    node_modules/
    jspm_packages/

    # Typescript v1 declaration files
    typings/

    # Optional npm cache directory
    .npm

    # Optional eslint cache
    .eslintcache

    # Optional REPL history
    .node_repl_history

    # Output of 'npm pack'
    *.tgz

    # Yarn Integrity file
    .yarn-integrity

    # dotenv environment variables file
    .env

    coin/truffle.js"

    This is a part of a .gitignore file, which is used to specify files and directories that should not be tracked by Git version control. This specific file lists files and directories that are related to various development tools, libraries, and build artifacts, such as logs, node dependencies, compiled binary addons, and others. The line "coin/truffle.js" is specific to the project and likely refers to a configuration file for the Truffle framework, which is commonly used for Ethereum development. By ignoring this file, the user is indicating that changes to it should not be tracked by Git.
    SC
    is that a common thing included in such projects?

    This type of file is commonly referred to as a .gitignore file and is used to exclude certain files and directories from being tracked by Git version control. The contents of the .gitignore file will vary depending on the specific project, but the idea is to exclude files that are not necessary for version control, such as compiled code, local configuration files, log files, and dependency directories. The contents of the .gitignore file shown in the code you provided are fairly standard for a Node.js project and are likely to be included in many similar projects.
    SC
    what about the gitignore for coin/truffle.js, is that normal?

    A .gitignore file for a Truffle project is a common thing and its content depends on the specific project and its requirements. The .gitignore file for a Truffle project listed in the previous answer is specific to the coin/truffle.js project and it is used to specify files and directories that should be ignored by Git and not committed to the repository.

    The content of the .gitignore file is common for many projects, including node.js projects, as it lists files and directories such as node_modules/, logs/, bower_components/, and coverage/ that are generated during the development process and are not needed in the repository.
    SC
    What does this part do "pragma solidity ^0.4.13;

    import 'zeppelin-solidity/contracts/token/MintableToken.sol';

    contract Petro is MintableToken {
    string public name = "Petro";
    string public symbol = "PETRO";
    uint256 public decimals = 18;
    }"

    This code is written in the Solidity programming language and is a smart contract for a token named "Petro". It is a standard ERC-20 token with some additional functionality provided by the "MintableToken" contract from the "zeppelin-solidity" library.

    The contract defines the token's name, symbol, and number of decimal places. The "MintableToken" contract allows new tokens to be created and added to the supply (minting) after the contract is deployed on the Ethereum blockchain.

    This smart contract can be used as a template for creating and deploying a custom token on the Ethereum network.
    SC
    is this token traded anywhere in the world? can you find that out from that code?

    No, the code you provided is just a code snippet of a smart contract written in the Solidity programming language and it does not provide information on where or if the token is traded. To find out if the token is traded, you would need to research further and check reliable cryptocurrency exchanges or market data providers.
    SC
    what do these various files do? In a folder called p2p/BSCtokens? "https://github.com/kvhnuke/bsc-tokens/commit/caf9d0a5e6541b91c90fc5b0c246147ce4ff0fea?diff=unified"

    The source code in this folder, "p2p/BSCtokens", appears to be part of a Binance Smart Chain (BSC) token project. It likely contains contracts written in Solidity, the programming language used for smart contracts on the Ethereum blockchain and other blockchains that are compatible with Ethereum. The specific files in this commit can be used to deploy and manage a Binance Smart Chain token, but without additional context or information about the specific project, it is not possible to determine the exact functionality of each file.
    SC
    what does this do "import (
    "bytes"
    "context"
    "errors"
    "fmt"
    "math/rand"
    "net"
    @@ -204,7 +205,7 @@ func (c *Client) doResolveEntry(ctx context.Context, domain, hash string) (entry
    }
    for _, txt := range txts {
    e, err := parseEntry(txt, c.cfg.ValidSchemes)
    if err == errUnknownEntry {
    if errors.Is(err, errUnknownEntry) {
    continue
    }
    if !bytes.HasPrefix(crypto.Keccak256([]byte(txt)), wantHash) {
    @@ -281,7 +282,7 @@ func (it *randomIterator) nextNode() *enode.Node {
    }
    n, err := ct.syncRandom(it.ctx)
    if err != nil {
    if err == it.ctx.Err() {
    if errors.Is(err, it.ctx.Err()) {
    return nil // context canceled.
    }
    it.c.cfg.Logger.Debug("Error in DNS random node sync", "tree", ct.loc.domain, "err", err)"

    This is Go code that implements a client for a decentralized naming system (DNS) built on top of the Ethereum network. The code provides functions to resolve domain names to Ethereum addresses and other metadata by sending DNS requests to a peer-to-peer network of nodes.

    The code handles the encoding of the DNS requests and responses, as well as parsing of the returned entries. The code also implements a random iterator for selecting a random node from the network to send a DNS request to.

    In this particular code snippet, the doResolveEntry function is used to resolve a domain name to an entry in the DNS system. The function receives a domain name, a hash, and a context, and it returns the resolved entry. The function retrieves the TXT records for the domain, and for each record, it tries to parse it into an entry. If the parse fails, it continues with the next record. If the parse succeeds, the function calculates the hash of the TXT record and compares it with the hash passed as a parameter. If they match, the function returns the parsed entry.

    The randomIterator struct is used to keep track of the nodes returned by the syncRandom function, which is used to synchronize the nodes in the network. The nextNode function is used to get the next node in the list, and it returns nil if the context has been canceled or if there was an error in the synchronization.
    SC
    explain doResolveEntry further

    The doResolveEntry function is part of the Go code in the Client struct, which is defined in the p2p/enr (Ethereum Node Records) package. This function is responsible for resolving an ENR (Ethereum Node Record) entry based on t
  4. Ghost Black Hole
    Originally posted by DontTellEm Ghost. I’m looking at u bud

    Please don't , you ugly fat whore. Look at the floor where you belong
  5. Ghost Black Hole
    smoke icce
  6. Ghost Black Hole
    This code is a part of a Go (golang) program. The code appears to be implementing a function that writes a list of authors to a file. The function does the following steps:

    Create two maps: "merge" and "dedup"
    Extract a list of authors from a Git repository by calling the "gitAuthors" function and add those authors to the "merge" map and the "list" slice. The "dedup" map is used to deduplicate the authors in the "list" slice so that no author appears multiple times.
    Read the existing list of authors from a file by calling the "readAuthors" function and add those authors to the "merge" map.
    Sort the result set of all authors in the "merge" map and write the sorted list of authors to the file.

    The code also has some commented out code that was possibly used for a different implementation.


     "-275,27 +275,32 @@ func mailmapLookup(authors []string) []string {
    }

    func writeAuthors(files []string) {
    merge := make(map[string]bool)
    var (
    dedup = make(map[string]bool)
    list []string
    )
    // Add authors that Git reports as contributors.
    // This is the primary source of author information.
    for _, a := range gitAuthors(files) {
    merge[a] = true
    if la := strings.ToLower(a); !dedup[la] {
    list = append(list, a)
    dedup[la] = true
    }
    }
    // Add existing authors from the file. This should ensure that we
    // never lose authors, even if Git stops listing them. We can also
    // add authors manually this way.
    for _, a := range readAuthors() {
    merge[a] = true
    if la := strings.ToLower(a); !dedup[la] {
    list = append(list, a)
    dedup[la] = true
    }
    }
    // Write sorted list of authors back to the file.
    var result []string
    for a := range merge {
    result = append(result, a)
    }
    sort.Sort(authors(result))
    sort.Sort(authors(list))
    content := new(bytes.Buffer)
    content.WriteString(authorsFileHeader)
    for _, a := range result {
    for _, a := range list {
    content.WriteString(a)
    content.WriteString("\n")
    }"




    https://github.com/rotki/rotki
    https://github.com/kvhnuke/bsc-tokens

    wut u fink star trek

    The code snippets you have mentioned appear to be a part of a Go language implementation for a peer-to-peer (p2p) Ethereum network. The code appears to be dealing with various aspects of p2p network operations, such as network communication, node discovery, ENR (Ethereum Node Records) management, etc.

    It is possible to implement a p2p Ethereum wallet using these code snippets, although they likely represent only a small part of the complete implementation. Such wallets allow users to interact directly with the Ethereum network without the need for a centralized entity to act as an intermediary. This can provide users with greater control over their funds and increase privacy, as all transactions are conducted directly between nodes on the network.

    Peer-to-peer Ethereum wallets have become increasingly popular in recent years as more people seek to take control of their finances and be their own bank. There are a number of well-known p2p Ethereum wallets available, including MyEtherWallet, MetaMask, and Gnosis Safe, to name a few.

    is this a common type of code found in MEW forks? "https://github.com/kvhnuke/bsc-tokens/commit/e231d52b2f7908915b2edc40d844fb2eb2d75ae3#diff-a14e9b9c7da31a34fbf00332b1633614203c9deb18afef9d6dc619ca144e0513

    It is not common to find this type of code in MyEtherWallet forks. The code you linked to is from a repository that appears to be for tracking BSC (Binance Smart Chain) tokens, not for MyEtherWallet. MyEtherWallet is a free, open-source, client-side interface for creating, managing, and interacting with Ethereum wallets. This code, on the other hand, is related to a different blockchain and its associated tokens.

    looks same no?



  7. Ghost Black Hole
    https://github.com/ConnorLinfoot

    fuck you connor I don't understand what half your shit does but this looked cool

    https://github.com/ConnorLinfoot/mineflayerMineflayer

    Create Minecraft bots with a powerful, stable, and high level JavaScript API.
  8. Ghost Black Hole
    I don't even remember why I need it. Oh yeah... dynamic HTML

    To get the dynamic content, you may need to use a tool like Selenium to open a web browser and load the page, then extract the dynamic HTML from the loaded page. Here is an example of how you might use Selenium to extract the remaining time until the Spooky event ends:

    I can copy it right on the page, that's all I need to do lmao but Idk if it's "that easy" when I inspect element it gives me this 5 timres, 1 for each event. CANT I JUST COPY PASTE THE BITCH I DONT CARE THAT ITS MAGIC, MY MOUSE CAN DO IT


    <div id="skyblock-events-list" class="column" style="float: right;">
    </div><div class="skyblock-event" title="2/12/2023, 2:35:00 AM" id="skyblock-event_Spooky" style="background: rgb(135, 211, 124);"><i class="fa fa-flask"></i>
    <br><strong>Spooky</strong><p class="skyblock-event-text" id="skyblock-event-text_Spooky">18 hours</p>
    </div>


    computers piss me off but i think this retard way will work

  9. Ghost Black Hole
    Good Stuff

    Simple and easy to use!​
    Very small, useful for concealing your Digimon at work.​
    Lack of menu options means care can be provided rapidly or even without looking at the device.​


    Bad Stuff

    Tiny buttons...​
    Two sound settings: very loud beeps and off.​
    No solo battle mechanic! Sacrifice the blood of one of your friends for the sake of the other.​
    Not only is there no pause function, there's no early bed time, either.


    Stuff

    No DNA Digivolution in this one, though there are Super Ultimates available via battling 100 times as a Mega.​
    Don't confuse it with the Digimon XROS Wars Mini, which uses the same body, but says DIGIMON XROS WARS instead of DIGITAL MONSTER on the screen's border. That one's not a virtual pet, it's one of the quest-type devices.​



    Digimon Available
    iC.png


    27 raisable Digimon!
    13 more non-raisable Digimon show up as opponents in the Coliseum!
    Fresh: Botamon
    In-Training: Koromon, Wanyamon, Badomon
    Rookies: Agumon, Gaomon, Lalamon, ToyAgumon, Chuumon


    Good Stuff

    Larger screen with larger sprites.
    Coliseum mode for solo-battles.
    Vertical orientation.
    Relatively large buttons.
    Very forgiving.
    Saves data between battery swaps/resets.
    You can take your Agumon and put an afro on it, and then it will be an Agumon with an afro.

    Good Stuff

    Larger screen with larger sprites.
    Coliseum mode for solo-battles.
    Vertical orientation.
    Relatively large buttons.
    Very forgiving.
    Saves data between battery swaps/resets.
    You can take your Agumon and put an afro on it, and then it will be an Agumon with an afro.


    Bad Stuff

    Buttons are a weird shape.
    Very, very easy.
    Relies on the contacts remaining in good condition.
    No pause or early bed time mode again.
    Two sound settings: regular loud and off.
    LARGE


    Stuff

    Turning the lights off when a Digimon doesn't need to sleep just turns the screen black which is very funny to me.
    No Jogress/DNA Digivolution to be seen.

    😮👆

    yeah im thinking like this, might be the angle to grind



    I've posted about beta apps in the past, so some of you may know about this already.

    I'd like to share the latest beta project - beta Link (Referred to as AL for short).

    AL is a social platform built around the Digimon VPet devices. Using a Digimon Interface (betaCom, DCom, Digivice Helper), you can load the Digimon you raise into your AL account and battle other players in the app. It supports the Digimon Original VPet, Digimon 20th Anniversary VPet, and Pendulum 20th VPet (but Pen20 is still very experimental).

    The app is in Public Beta stage, so there are still kinks to iron out, but I think its still a lot of fun. The VPet compatibility and the feature set will grow a lot over time. Currently for Android, it will come to Desktop too (Windows, Linux, MacOS).

    If it sounds interesting, take a look:


    https://www.betahub.site/downloads

    https://twitter.com/beta92017320/status/1300897727648235520?s=20

    https://youtu.be/wKv8jT9vlZE

    Oct 13, 2022
  10. Ghost Black Hole
    OP should suicide
  11. Ghost Black Hole
  12. Ghost Black Hole
    Originally posted by Haxxor Cry moar ^

    Originally posted by Sweet Cry Mohr^
  13. Ghost Black Hole
    Originally posted by RIPtotse I wiah u didnt chop ur balls of and do stuff with weiners because ur pretty ok it seems, besides you know your lib views and all

    Fine i dont care that u chopped ur balls off ok i said it

    Im over it



    Originally posted by Rape Monster Imagine being a penis and your owner chopped off your only balls

    imagine being the only ones that thinks about such thigns
  14. Ghost Black Hole
    should go in my AIIIIEEEOOOUUUU thread but this deserves a bump smile

    Generate a Business Model Canvas consisting of the following nine building blocks.
    1- Customer Segments
    2 - Value Propositions
    3 - Channels
    4- Customer Relationships
    5- Revenue Streams
    6 - Key Resources
    7 - Key Activities
    8 - Key Partners
    9- Cost Structure
    Business Model Canvas
    Product: Satellite broadband service
    1- Customer Segments:
    - Residential
    - Business
    - Government
    -Military
    - Others
    2- Value Propositions:
    - High-speed internet service
    - Flexible data plans
    - 24/7 customer support
    3- Channels:
    - Online
    - TV
    - Radio
    - Others
  15. Ghost Black Hole
    You seem to love how we beat you the fuck down
  16. Ghost Black Hole
    it's fucking me up because ethereum code is called solidity and I actually have been learning a bit of that when I fuck with crypto too hard
    js was my original plan to do all this in, cuRL also seems to come up a lot in my adventures but rarely on any github projects, unless im just not looking DEEEP enough




    I think I figured it out

    # extract the dynamic HTML
    html = driver.page_source

    # parse the HTML with BeautifulSoup
    soup = BeautifulSoup(html, 'html.parser')

    # extract the remaining time
    event_p = soup.find('p', class_='skyblock-event-text', id='skyblock-event-text_Spooky')
    remaining_time = event_p.text.strip()

    # print the remaining time
    print(remaining_time)

    # quit the browser
    driver.quit()


    just gotta get this to work inside my box

    import tkinter as tk

    class Application(tk.Frame):
    def __init__(self, master=None):
    super().__init__(master)
    self.master = master
    self.pack()
    self.create_widgets()

    def create_widgets(self):
    self.text = tk.Text(self)
    self.text.pack()

    self.update_button = tk.Button(self, text="CHECK HOW LONG UNTIL SPOOKY", command=self.update_text)
    self.update_button.pack()

    def update_text(self):
    # Your code to pull text from the webpage and display it
    # Here's an example:
    self.text.insert("end", my_text+ "\n")

    root = tk.Tk()
    app = Application(master=root)
    app.mainloop()
  17. Ghost Black Hole
    boil the rice
  18. Ghost Black Hole
    it's not really following when that's literally all you post, or laughing at someone pointing out how much of a fucktard you are

    why do I have to be upset to point out the obvious, i'm going after low hanging fruit here and you act like it takes all a persons brain capacity to call someone a creepy tard.

    you're too easy!
  19. Ghost Black Hole
    he issue may be that the HTML content you are trying to parse is generated dynamically by JavaScript, so when you make a request with the requests library, you are only getting the initial, static HTML and not the dynamic content.

    To get the dynamic content, you may need to use a tool like Selenium to open a web browser and load the page, then extract the dynamic HTML from the loaded page. Here is an example of how you might use Selenium to extract the remaining time until the Spooky event ends:

    would have been great to know that HOURS AGO fuck me , I give up for now

    from selenium import webdriver
    from selenium.webdriver.chrome.service import Service
    from selenium.webdriver.chrome.options import Options
    from bs4 import BeautifulSoup
    import time


    THIS FUCKING PART I KNOW IT

    # extract the remaining time
    event_p = soup.find('p', class_='skyblock-event-text', id='skyblock-event-text_Spooky')
    remaining_time = event_p.text.strip()


    I could tell its dynamic but nothing in this code really indicates that specifically so I didn't know I didn't a selenium to scrape it
    cant it just copy paste for fuck sakes I JUST NEED TO KNOW HOW LONG

    	<div id="skyblock-events-list" class="column" style="float: right;">
    <div class="skyblock-event" title="Auction" id="skyblock-event_Auction"><i class="fa fa-gavel"></i>
    <br /><strong>Auction</strong><p class="skyblock-event-text" id="skyblock-event-text_Auction">...</p>
    </div><div class="skyblock-event" title="Spooky" id="skyblock-event_Spooky"><i class="fa fa-flask"></i>
    <br /><strong>Spooky</strong><p class="skyblock-event-text" id="skyblock-event-text_Spooky">...</p>
  20. Ghost Black Hole
    the AI said to draw this

       self.skeleton = "   _____\n  |     |\n  |\n  |\n  |\n  |\n__|__\n"


    I don't remember what I even typed in but its displaying this

      _____
    | |
    |
    |
    |
    |
    __|__
    1 day
    _____
    | |
    |
    |
    |
    |
    __|__
    1 day


    ILL GET IT WORKING

    wait wtf its not displaying the right time god fucking dammmit
  1. 1
  2. 2
  3. 3
  4. ...
  5. 157
  6. 158
  7. 159
  8. 160
  9. 161
  10. 162
  11. ...
  12. 1997
  13. 1998
  14. 1999
  15. 2000
Jump to Top