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.
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.
TLR = 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.
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.
TLR = 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()