User Controls

  1. 1
  2. 2
  3. 3
  4. ...
  5. 8
  6. 9
  7. 10
  8. 11
  9. 12
  10. 13
  11. ...
  12. 20
  13. 21
  14. 22
  15. 23

Posts by Stupid noob opened the secret cow portal

  1. youngje
  2. We must create INDISPUTABLE EVIDENCE that Santa is Definitely real (he is) so that in the future the entire generation of youth grows up being told about Santa and is literally unable to deny the existence of such a entity based on the amount of fake evidence we create

    We must keep the magic alive and there is nothing more magical than disinformation, propaganda and conspiracy.



    Imagine if we did this to zoomers, they would be ANTI "trust the science" as society tells them they are conspiracy theorists for believing in Santa TRUST THE SCIENCE not all those topographical maps, satellite photos of the north pole, old geocities pages with pictures and old youtube uploads/video evidence (similar to UFO's) of SANTA ACTUALLY FLYING AROUND

    I don't know the best way to do it but I think hijacking an old geocities website to put up a fake "santa watch" community like pretending it's the first website about santa and then slowly creating a massive web and trying to get articles written or plant evidence that santa is 100% real and there is a disinfo campaign to create discourse around it

    We don't even have to convince a single person alive right now that Santa is real, in fact this could fail/be easily undone if it becomes widely known about and prevented I think. I think if enough fake evidence was created eventually we would reach a point where news stories start coming out where people talk about the "phenomenon" of children/teenagers unwilling to deny santa exists when confronted by their parents, etc

    Like do your parents believe 9/11 was a hoax? OR that Trump really won the election? Same kinda deal



    https://www.washingtonpost.com/news/acts-of-faith/wp/2017/10/04/santa-dead-archaeologists-say/
    https://christmaslightinstallation.com/10-ways-prove-santa-exists/
    https://www.npr.org/2023/01/22/1150596852/girl-asks-police-to-run-dna-test-on-christmas-cookie-for-evidence-of-santa-claus
    https://medium.com/the-twilight/the-ultimate-question-is-santa-real-or-fake-d0ea87b6308d

    At FactCheckNI we are interested in facts. Through the training we deliver, we also come face-to-face with many of the beliefs people hold dear. Here we unpack one of the most cherished beliefs, and show how even fact checkers can engage with a little bit of magic …

    Where did “Santa Claus” come from?

    So where did “Santa Claus”/ “Santa”/ “Father Christmas” come from? The legend may have begun in the Lowlands, where every year, Sinterklaas, an old man with a long white beard wearing a red robe and mitre, holding a golden crosier, delivers presents to good children the night before 6th of December. He and his horse walk over the roofs of the houses, accompanied by his helper, Zwarte Piet (Black Pete), who enters the houses through the chimney. Once inside, Piet finds the shoes of the children living there sitting alongside a carrot that has been left to feed Sinterklaas’ horse, and a bottle of beer for himself. Piet takes the carrot and beer, replacing them with sweets and toys.

    https://factcheckni.org/articles/news/the-santa-myth-a-joyful-act-of-confirmation-bias/
  3. So you can just call that shit directly with code to draw a triangle? draw it on what though. I don't remember windows having any pre built rendering tools, or maybe it does and i'm retarded.

    I tried to learn programming a lot when I was young but never had internet and pretty much every book I got besides BASIC and HTML wanted me to download a compiler or would come with a CD but my computer was too shit to run it or something

    I feel like I should have experience using visual basic studio but I remember it always just not working or being very fucked to use but it seems more accessible to me now, idk why.
  4. Originally posted by Speedy Parker

    ive never seen that in my life and certainly never posted it
  5. I almost suicideed
  6. I don't know what a directX call is but I want complex animations under 64kb
  7. Originally posted by ⠀⠀⠀⠀⠀⠀ 1. Hacked admin's spare administrator Enigma account.

    2. Hard deleted three corrupt mod accounts and one kidiot forum.

    3. Made myself a mod.

    4. Hacked four lazy mod accounts.

    5. Killed the Reputation System.

    6. Got all unjustly permabanned members unbanned.

    7. Got Lanny permanbanned.

    8. Forced Zok to shut down his cesspool of corruption.

    9. Killed all imitators except this one.

    10. (To Be Announced)

    now THATS a legacy!
  8. Originally posted by aldra , GUIs are gay

    OH ARE THEY NOW

  9. python triggers me, I think I might just be retarded though.

    I am not familiar with "high level" languages I guess, like C# and HTML or CSS or js I have a much easier time with, or even the Ethereum solidity code.
  10. I was trying to make a GUI but pyqt is a nigger and the AI broke my GUI code . I still have the working version from before it tried hooking the buttons

    I think it's some issue with define: class something idk if you can have two defines class with the same name in both files if one is calling the other

    Like why the fuck does "total_posts" need to be defined when I hook it up to a GUI when the code works just fine without defining it. Looks defined already to me not like a class but I CAN TELL what it is ,


    import tkinter as tk
    from tkinter import filedialog
    from postgrapber import PostGraber

    # create the UI window
    window = tk.Tk()
    window.title('Post Scraper')
    window.geometry('400x300')

    # add a label at the top of the window
    # image = tk.PhotoImage(file='swamp.png')
    # label = tk.Label(window, image=image)
    # label.pack()

    # instantiate the PostGraber object
    tool = PostGraber()

    # add a button to trigger the scraping
    def scrape():
    tool.scrape_posts()
    tk.messagebox.showinfo('Scraping complete', 'All posts have been scraped.')

    button = tk.Button(window, text='Scrape Posts', command=scrape)
    button.pack()

    window.mainloop()
  11. Originally posted by aldra I wrote something similar in perl a while back


    if you want to be able to work on individual posts you probably want to store them in a database or something, trying to separate them again is going to be confusing as shit because plenty of posts have the word 'post' or two linebreaks in them

    i tjhink it's retarding something unless he really did post kyivforum twice

    this seems fuckey but not too hard to work with like if I got all the posts they would each be numbered, kinda. Probably hard to work with in CODE but I just wanted the raw text posts for a backup kinda



    https://niggasin.space/user/6311/posts
  12. https://files.catbox.moe/9zb6zn.py

    import requests
    from bs4 import BeautifulSoup

    # define the URL pattern and the total number of pages DONT FORGET USER NUMBER
    url_pattern = "https://niggasin.space/user//posts?p={}"
    total_pages = 5

    # create a list to store the post text from each page
    all_posts = []

    # loop through each page and extract the post text
    for page_num in range(1, total_pages + 1):
    url = url_pattern.format(page_num)
    response = requests.get(url)
    soup = BeautifulSoup(response.content, 'html.parser')
    post_blocks = soup.find_all('div', class_='post-block')
    for block in post_blocks:
    post_body = block.find('div', class_='post-body')
    if post_body:
    all_posts.append(post_body.get_text())

    # write the post text to a file
    with open('all_posts.txt', 'w', encoding='utf-8') as f:
    for i, post in enumerate(all_posts):
    f.write(f'[post {i+1}]\n{post}\n\n')
  13. Originally posted by WellHung Would it be more appropriate if we focused on applications, instead?

    Applications of what? You want to make an app? Got any ideas? I could help you code it, I made a tool for scraping posts . Trying to make a UO for it but I'm tarded
  14. Was one of the first 3 trianglists 3 POINTS OF A TRIANGLE

    Made a popular thread with lots of views (resulting in a total of 0 long term posters)

    Got banned for 1+ years for a years long spam campaign and shitfucked the site so hard it had to have a 10 post limit on new accounts and captcha AND YouTube tags were added because before when it auto embedded I learned you can just post 200 videos and crash any browser / nuke threads by doing so

    Good times
  15. Originally posted by alper1925 When 1 kg of sodium hydroxide and 1 kg of ammonium sulfate are combined, it produces my own water?

    when and where do we add ephedrine do we release ephedrine into ammonium sodium rxn or do we reveal the effect of isopropyl alcohol rxn sinemi ephedrine
  16. I literally have a thread with almost a million views, 100k minimum that still gets bumped from 2017
  17. Originally posted by WellHung Let's differentiate between morals and ethics

    Sounds like a job for a robot🤖
  18. Jones test
  19. I don't want anyone to die I try to encourage people stay alive and not suicide. Most people here for by accidental drug o erdose from loneliness depression so I try to talk to people even if they are bitter and full of hate, I mean who isn't these days.

    It's sad that all the cool people seem to die before the shitty ones so the world just get diluted with faggotry



    Originally posted by WellHung . We treat each other's lives as though we live as an insect for 3 weeks. We are meaningless…a mere spec in the microcosm.

    Yeah 👍 100 years is nothing in the grand scheme of the universe and you get 1 chance to not be an upset faggot and learn,/,teach as much as possible

    People like totse2kq1 call me evil for TEACHING HOW TO COOK METH OMG WHAT IF SOMEONE BLEW THEIR HAND UP YOU COULD GO TO PRISON

    that's a evil mentality . I teach because knowledge should be free
  1. 1
  2. 2
  3. 3
  4. ...
  5. 8
  6. 9
  7. 10
  8. 11
  9. 12
  10. 13
  11. ...
  12. 20
  13. 21
  14. 22
  15. 23
Jump to Top