SUBLIMINAL MAXXING + CODE GTFIH

hallo

hallo

Ale fajny bober
Joined
Nov 6, 2020
Posts
325
Reputation
376
The unconscious mind is very powerful and it dictates some of your actions whether you realize it or not.

One such study type keeps reoccurring:

Subject is shown image and text or another image is flashed onto the screen so quickly it is imperceptible. Whatever was flashed on the screen was imperceptible to the viewer but still elicited a reaction or internalization.

Study: "Nonconscious Processing: Subliminal Perception, Memory, and Cognition" by Kunst-Wilson and Zajonc (1980)

  • Summary: In this study, participants were exposed to images with emotional content flashed subliminally. The researchers found that these images elicited physiological responses even though participants were not consciously aware of seeing them.

Study: "Subliminal Affect Priming" by Murphy and Zajonc (1993)

  • Summary: This study involved pairing neutral faces with subliminally presented positive or negative images. The results showed that participants' attitudes towards the neutral faces were influenced by the emotional valence of the subliminal images, indicating that subconscious processing affected their attitudes.

SO I CODED MY OWN SUBLIMINAL GENERATOR THAT YOU CAN PUT UP TO 5 MESSAGES THAT FLASH IMPERCEPTIBLY AND RANDOMLY.

The method is if you put and view messages unknown to you (have a friend make them up) you will subconsciously internalize them. I personally believe this applies to things that you are in mental control of such as: your willpower to study hard by viewing "you are a hard worker" and not physical attributes like height for example.
We act in alignment to how we internally (subconsciously) perceive ourselves to be. People who rot in bed all day subconsciously believe they are losers. If you feel anxious approaching the girl you like, it may be because you subconsciously believe (perhaps rightfully so) that you are not capable of attracting her.

TL:DR = I think this works for making yourself think differently not lengthening your ramus or things of a physical nature.

To run this code just open up a juptyer notebook or download visual studio code then copy paste this in. The things to modify with your own messages are within the "" in the # Define messages and properties part.
Python:
import pygame
import random
import requests
from io import BytesIO
from PIL import Image
import sys

def download_image(url):
    response = requests.get(url)
    image = Image.open(BytesIO(response.content))
    return pygame.image.fromstring(image.tobytes(), image.size, image.mode)

def main():
    pygame.init()
    screen_size = (1500, 1000)
    screen = pygame.display.set_mode(screen_size)
    pygame.display.set_caption("Subliminal Flashing Message")

    # Load an image as the visual stimulus
    image_url = 'https://www.imgonline.com.ua/examples/random-pixels-wallpaper-big.jpg'  # Replace with the URL of your image
    background_image = download_image(image_url)
    background_image = pygame.transform.scale(background_image, screen_size)

    # Define messages and properties
    messages = [
        "Subliminal 1",
        "Subliminal 2",
        "Subliminal 3",
        "Subliminal 4",
        "Subliminal 5"
    ]
    font = pygame.font.Font(None, 36)
    text_color = (255, 255, 255)  # White color

    # Timing for subliminal flashes
    message_display_duration = 5  # Duration the message is displayed, in milliseconds
    min_interval = 500  # Minimum interval between messages, in milliseconds
    max_interval = 1000  # Maximum interval, in milliseconds

    last_time_flashed = pygame.time.get_ticks()
    display_message = False
    message = random.choice(messages)

    while True:
        current_time = pygame.time.get_ticks()
        for event in pygame.event.get():
            if event.type == pygame.QUIT:
                pygame.quit()
                sys.exit()

        screen.blit(background_image, (0, 0))

        if display_message:
            text = font.render(message, True, text_color)
            text_rect = text.get_rect(center=(screen_size[0] // 2, screen_size[1] // 2))
            screen.blit(text, text_rect)
            if current_time - last_time_flashed > message_display_duration:
                display_message = False
                last_time_flashed = current_time + random.randint(min_interval, max_interval)
        else:
            if current_time - last_time_flashed > random.randint(min_interval, max_interval):
                display_message = True
                message = random.choice(messages)
                last_time_flashed = current_time

        pygame.display.flip()

if __name__ == "__main__":
    main()

inb4 dnr​

 
  • +1
  • JFL
Reactions: efidescontinuado, baldgeeza, Lookologist003 and 8 others
print("hello world")
 
  • JFL
  • +1
Reactions: subanimal, efidescontinuado, Deleted member 66828 and 12 others
what a time to be above 70IQ and laugh at this
 
  • JFL
  • +1
Reactions: Deleted member 66828, AySab, LegitUser and 16 others
what a time to be above 70IQ and laugh at this
You injected an unproven fat dissolving agent from Korea into your cheeks face by yourself while already having hollow cheeks. NOT TO MENTION YOUR NOSE JFL MAN 😭😭... post results thou
 
  • JFL
  • +1
Reactions: baku9, efidescontinuado, PsychoH and 3 others
You injected an unproven fat dissolving agent from Korea into your cheeks face by yourself while already having hollow cheeks. NOT TO MENTION YOUR NOSE JFL MAN 😭😭... post results thou
nice alt bro !
 
 
Find a single study after 2010 and then I'll consider reading this absolute fucking bullshit
 
I fucking hate python. that's all.
 
  • JFL
Reactions: efidescontinuado
There is some irony in having the IQ and grasp of logic to create computer programs, but also the IQ to consume subliminal.
 
high iq : subliminals work
mid iq : cope cope cope cope cope
low iq : subliminals work
 
There is some irony in having the IQ and grasp of logic to create computer programs, but also the IQ to consume subliminal.
This was for course I am taking lmao. "A computer program in python with medical application"
 
  • +1
Reactions: Lookologist003

Similar threads

Spidermanne2returns
Replies
16
Views
4K
Flawless_fliy
Flawless_fliy
Acion
Replies
18
Views
2K
Pikabro
Pikabro
Baban
Replies
40
Views
8K
looks>books
looks>books

Users who are viewing this thread

Back
Top