How to force a person to write to you with the power of thought


How can the method of suggestion help in raising a child?

Suggestion is not a destructive factor, as is commonly believed. Correctly using the method of suggestion, you can cultivate in a child such qualities as confidence, courage and truthfulness...

Suggestion method

Suggestion¹ is the process of presenting information that is perceived without critical evaluation and influences a number of human mental processes. Psychological suggestion is used to change a person's behavior while blocking his thinking.

This method of suggestion acquires special power when repeated several times. From the first time a person may not perceive the information suggested to him, but after listening to the same thing several times, he will definitely take it for granted.

The essence of suggestion is that a certain idea is evoked in a person’s subconscious or in his own subconscious. Due to this, you can influence your own feelings, your will, your critical abilities.

How can suggestion affect a child's upbringing?

Pedagogical and medical practice testifies to the strong suggestibility of children.

If you instill in a child what is reasonable and kind, this will guarantee that in adolescence he will be immune to bad influences.

Suggestion will help you improve your relationship with your children and make the child want to do the right thing and behave well.

You should be very careful when you suggest something to a child or give advice. Never give advice to your child thoughtlessly, because your advice can have the most detrimental effect on him.

Think carefully before you say anything to your child. Teachers and parents must have a thorough knowledge of the science of hypnosis, NLP² and suggestion. Then they will be able to effectively teach, educate and develop students and their own children.

Child's consciousness

Children have a flexible, gentle and pliable consciousness. In childhood, all impressions leave indelible marks in the child’s subconscious. When children grow up, changing or erasing impressions from memory becomes impossible.

What should you do to raise your child correctly?

Parents should instill confidence in the souls of their children. They should say: “Here is a lion. Do you see the lion in the picture? Roar like a lion. Be brave like a lion. Do you see who is in the picture? Become, like him, noble and generous.”

How to instill positive attitudes in your child?

Once you've put your child to bed and he's actually asleep, whisper positive messages into his ear. In a dream, the child’s subconscious is maximally revealed and is subject to suggestion from the parents. Speak into his ear in a whisper in the first person:

  • I (child's name) am the bravest.
  • I (child's name) are the smartest.
  • I (child's name) are the most beautiful.
  • I (child's name) is growing strong and successful.
  • I (child's name) grow up rich.

You can come up with many other positive attitudes that will help you correct behavior, establish understanding and improve relationships with children.

Notes and feature articles for deeper understanding of the material

¹ Suggestion is a psychological influence on a person’s consciousness, in which a person’s uncritical perception of beliefs and attitudes occurs (Wikipedia).

You can read about one of the techniques of suggestion here>>>

² Neurolinguistic programming is a direction in psychotherapy and practical psychology, not recognized by the academic community, based on the technique of modeling (copying) the verbal and nonverbal behavior of people who have achieved success in any area, and a set of connections between forms of speech, eye movements, body movements and memory (Wikipedia).

Find out: “How to influence a person using NLP?”

Categories : Relationships with children

Tags : instilling thoughts, influencing

Telepathy is possible with the help of... the Internet!

Author Vitaly Salnik

08.09.2013 14:00

Science » Technology

American researchers have shown how you can control a person via the Internet. Moreover, control in the literal sense, forcing him to perform certain actions, acting directly on the brain. Such “know-how” as a brain-computer interface allows you to directly transmit commands from one head to another via the Internet.

17 shared

“The Internet was a way to connect computers, and now it can connect human brains. We want to learn how to directly transfer knowledge from one head to another,” notes psychology professor Andrew Stocco, a participant in the experiments.

Mind games - controlling the power of thought

This is a project that will allow you to play any game only with the power of your mind. The device can emulate the W, A, S and D keys to play any games on your computer... You don't need to press any keys, just think about the steering wheel: left, right or straight. You can change these keys to any other keys or mouse button. Of course, you need to practice to control the games, but on the other hand, this is a great thing for training your concentration.

[media=
https://youtu.be/MC7lOypxXhY
]

The basis of this project is an electrophysiological monitoring method for recording the electrical activity of the brain, i.e. Simply put, this is EEG (Electroencephalography).

Mind games - controlling the power of thought

EEG measures voltage fluctuations resulting from ionic current in neurons in the brain. Diagnostic applications typically focus on EEG spectral content, that is, the type of neural oscillations (commonly called "brain waves") that can be observed in EEG signals. (thanks to Wikipedia). But in this case, two very precise values ​​are used.

• Alpha is the frequency range from 7 Hz to 14 Hz. It occurs when closing the eyes and relaxing and is relieved by opening the eyes or mental stress. • Beta frequency range from 15 Hz to 30 Hz. Low amplitude beta with multiple and different frequencies is often associated with active, busy or anxious thinking and active concentration. Essentially, the device can detect your level of attention, level of meditation and blinking. The more focused you are, the higher the level of “attention” becomes, the more relaxed you are, the higher the level of “meditation” becomes.

Games specifically tailored to control brain waves:

All of them are available in the NeroSky Store. But after a few hours you will get tired of playing them.

Tools:

• Glue gun • Double-sided tape • Soldering iron • solder

Software:

• Arduino IDE • Software Serial Library • Mindwave Library

Headset spare parts:

• Necomimi Brainwave Cat Ears • 650mAh Li-Ion Battery • Li-Ion Battery Charger • 5V Voltage Boost Module (Disassemble the module and connect the circuit containing the charger and additional modules. So you have a charger and circuit power supply.) • Resistor 100 Ohm and 200 Ohm • Bluetooth module HC-06 • Wires

Receiver spare parts:

• Arduino Leonardo • Development board • Jumper wires • One green and one red LED • HC-05 Bluetooth module • Plexiglas

HC-06

: First upload the sketch named "HC_06_Bluetooth" to Arduino UNO, then connect the Bluetooth module as shown in the diagram.
Open Serial Monitor in Arduino IDE and wait while Arduino configures the BT module. Your Bluetooth module is now set to 57600 baud.

//HC-06-Bluetooth void setup() { // Start the hardware serial. Serial.begin(9600); // default HC-06 baud rate delay(1000); Serial.print("AT"); delay(1000); Serial.print("AT+VERSION"); delay(1000); Serial.print("AT+PIN"); // to remove password delay(1000); Serial.print("AT+BAUD7"); // Set baudrate to 576000 — eg Necomimi dafault delay(1000); Serial.begin(57600); // delay(1000); } void loop() { }

You can try many BCI (Brain Computer Interface) apps because the Necomimi Bluetooth enabled toy hack will be compatible with all Neurosky apps. You can use these apps to learn how to control your brain waves.

HC-05:

Then use "HC_05_Bluetooth" and boot your Arduino the same way as before.
Connect the "EN" pin of the HC-05 to the 3v3 Arduino. You must write the address of your HC-06 module in the code. Check the BT module address on your Android smartphone as in the picture. Replace the ":" (double dots) with "," commas in the code. //HC-06-Bluetooth void setup() { // Start the hardware serial. Serial.begin(9600); // default HC-05 baud rate delay(1000); Serial.print("AT"); delay(1000); Serial.print("AT+VERSION"); delay(1000); Serial.println("AT+ROLE=1″); //set the HC-05 to master mode delay(1000); Serial.println(" AT+LINK="Insert your address here"); //now the module should connect automatically delay(1000); Serial.print("AT+UART=57600,1,0"); // Set baudrate to 576000 Serial.begin(57600); // delay(1000); } void loop() { } Check the address of HC-06 using Android phone (see the picture). And you should change the address in the code: 20:15:09:15:17:82 ==> 2020.09.151782 So the HC-05 module can recognize the address. So just remove the ":" Your Bluetooth modules should now pair with each other. If you have problems connecting modules, you can read more here

The details that will catch your brainwaves come from Necomimi. This toy can move its ears depending on your waves. A useless toy, but inside there is a small chip that reads brain waves, filters out noise and produces a very good signal. Works with a UART (Serial) interface so with some hacking it can be used by an Arduino to read brainwaves. The role of this headset is to wirelessly transmit brain waves to the Arduino Leonardo. Nobody needs cables on their heads, so a comfortable headset was invented. The photo below shows how to disassemble the toy and make a headset out of it.

First, let's disassemble the body. The screws are under the sticker. Remove the sticker and the back of the device to reveal a small circuit board inside. The one that is located under the large board is needed - this is the Neurosky TGAM chip. It is connected by four pins to the main microcontroller board, so take a soldering iron and carefully unsolder the board with the chip from the main board. Now you can build in your own power supply. The author used a 500mAh Li-ion battery, a USB charger circuit, a 5V boost circuit, and two resistors (100 ohms and 200 ohms) to provide a 3.4V power supply for the Bluetooth chip and module.

See the diagram to put it all together. After removing the batteries, connectors and everything unnecessary, use double-sided tape to install everything on the left side of the headset. First create a battery circuit with a charger and a 5V DC-DC boost module. After this, solder two resistors - this is a 3.3 volt divider. It provides power to the sensor. Now solder a wire to the T-pin on the Neurosky TGAM board, which sends data to the BT slave module HC-06 module. The entire receiver circuit is secured to a piece of plexiglass using double-sided tape.

Connect the Arduino Leonardo to the breadboard, and then connected the Bluetooth module and LEDs. Use the HC-05 Bluetooth module here, which is already configured. Using some jumpers, make the following connections: 1. Arduino Leonardo-5v for Bluetooth-VCC and two LED cathodes 2. Arduino Leonardo-GND for Bluetooth-GND 3. Arduino Leonardo-D9 for Bluetooth-TX 4. Arduino Leonardo-D5 for anode red LED 5. Arduino Leonardo-D6 for green LED anode

That's all, so now you have to download the program code. The Arduino Leonardo board can emulate a keyboard or mouse. Using this feature, the author has created code that simulates WASD and controls many games on your computer. NeuroSky uses eSense values: concentration and meditation from 1 to 100 and detects blinks. If the eSense value reaches the limit (70 for meditation and 65 for attention) or detects blinking, emulates the pressed key.

The role of the two LEDs is to indicate when you have reached the limit of attention or meditation. Red indicates attention and green indicates meditation.

Connect your Arduino Leonardo and download the code below.

/* Code created by Tamás Imets for playing videogames with mindwaves Feel free to use it 25th of March, 2020 */ #include #include #include SoftwareSerial bluetooth(9, 8); //softwareserial pins Mindwave mindwave; //mindwave library activated int medlimit = 70; //set limits int attlimit = 65; //set limits void setup() { bluetooth.begin(MINDWAVE_BAUDRATE); //set Baudrate pinMode(5, OUTPUT); //setup pins pinMode(4, OUTPUT); //setup pins } void onMindwaveData() { if (mindwave.quality() < 95) { /if you blink Keyboard.write('w'); //presses W } if (mindwave.quality() == 100) { Keyboard.write(' '); } if (mindwave.meditation() > medlimit) { //if you meditate digitalWrite(5, HIGH); Keyboard.write('d'); //presses D } if (mindwave.meditation() < medlimit) { digitalWrite(5, LOW); Keyboard.write(' '); } if (mindwave.attention() > attlimit) { //if youe focus digitalWrite(6, HIGH); Keyboard.write('a'); //presses A } if (mindwave.attention() < attlimit) { digitalWrite(6, LOW); Keyboard.write(' '); } } void loop() { mindwave.update(bluetooth, onMindwaveData); }

Download the libraries listed at the beginning of the article. The Bluetooth modules are already configured, so after downloading the code, you can start playing video games.

It's easy to learn how to use this device. A few hours of practice makes you a real racer, with it you can control almost any game. Only your brain must get used to controlling its activities. Once your device is ready, follow these steps to use your mindwave game controller. 1. Place the headset on your head. 2. Connect the receiver to your computer. 3. Check if Bluetooth modules are connected. 4. Turn on the circuit and try to increase your level of attention or meditation. If the LEDs light up, you've done a good job. Now you can try playing 5 games. Enjoy the Ultimate Gamer game. To control the game, do the following: • Blink to start the car (emulates the "W" key) • Blink again to stop (emulates the "Space" key) • Relax to stay to the right (emulates the "D" key) • Focus to turn left (simulates the “A” key) You can play GTA, Need for speed, online games, action games.

Source

Become the author of the site, publish your own articles, descriptions of homemade products and pay for the text. Read more here.

Alternative view

What do you know about the Faroe Islands? I didn't know anything until today. If you too, I report: this is a group of 18 islands (17 of which are inhabited), which are located in the North Atlantic Ocean between Scotland and Iceland, are part of the Kingdom of Denmark, but since 1948 they have independently resolved almost all issues, with the exception of defence, justice, police, common currency and foreign policy. And just the other day, the Director of Tourism of the Faroe Islands, Gudrid Højgaard, said that due to the coronavirus they are not accepting tourists (which is logical), but they have freed up a huge amount of time to implement the project, which I call “Avatar”. This is when one person can control another from a distance. Intrigued?

Do you want to control a person? It&#39;s already possible!
Do you want to control a person? It's already possible!

In the video below, Ms. Højgaard explains that they created an app to help people enjoy the beauty of the Faroe Islands from afar. The idea is very simple: you install the application, launch it, and on the screen you see what your “avatar” sees. This is an employee of the islands' tourism company who puts a helmet with a camera on his head, and you can control it using the on-screen joystick. There is even a “jump” button available, by clicking on which you give a command so that the real person on the other side of the smartphone jumps.

Agree, a very original idea that was on the surface, but so far no one has really taken advantage of it. Thus, the country (if you can call it that) made virtual video tours of its territory. But not in the usual form, like Google Maps, but in an interactive one. You decide where to go, where to see and what to do next. At the same time, you are in no way limited in maneuvers, which Google Maps does not allow. A person can go almost anywhere, he does not need a road to take a panoramic view. Therefore, in essence, we have an avatar that is capable of carrying out any of your commands (within reason, of course). And this concept turned on my imagination. And very strongly.

The Faroe Islands are located here. But few people know anything about them at all.
The Faroe Islands are located here. But few people know anything about them at all.

The simplest and most understandable application of this concept is tourism. Imagine that you launch the application, select any point on the globe and activate your “avatar”. At this moment, a person on the other side of the planet puts on a special helmet (or something like that) and begins to broadcast the picture to your smartphone. Basic control keys are available to you (forward, backward, turn left or right). It's possible that you can give voice commands to your avatar while they have an earpiece in their ear. This way he receives commands from the virtual joystick and at the same time hears you. It already sounds fantastic, but there’s nothing unrealistic about it, right? Such “helmets” could be sold for, say, 50 dollars. Anyone can buy it and register themselves as an avatar. For 50 dollars per hour (or 30 or 100), many would agree to connect to such a system. It's almost like Uber, but you don't need a license or license to drive a taxi. The prospects are truly limitless.


The Faroe Islands have absolutely stunning views.The Faroe Islands have absolutely stunning views.
Promotional video:
But let's not dwell on this. Such systems can be used in a huge number of areas. For example, to overcome your own phobias. Let's say you are afraid of depth, heights, spiders or something else. We find an avatar for whom this is not a problem and give him real-time instructions to overcome our phobia. Agree, touching a spider or watching how a spider is touched are completely different things. Being on this side of the screen we feel safe, but at the same time we are in complete control of the situation with our avatar. So you can jump with a parachute, dive to the bottom of the ocean or ride the scariest roller coaster. Great? What if we go even further and imagine that we are holding in our hands not a smartphone, but a virtual reality helmet? What if there is a 360-degree camera on the avatar’s side and we can look in any direction we want? This already seems like a step into a completely new world, but technically nothing prevents us from realizing this, right?

How far can your fantasies take you?
How far can your fantasies take you?

We continue to develop the topic. What about the adult entertainment industry? It’s one thing to watch videos on popular sites, and quite another to take direct part in them. The most unimaginable fantasies can be realized with the help of avatars (if they agree to this, of course). The issue of legal regulation arises, of course, but I am sure that all this is being resolved. You can enter several levels of avatars from ordinary pleasure ones to extreme or “adult” avatars. It's a question of price. Moreover, anyone can connect to this network. The entry threshold is the purchase of a “helmet”. Although I can well imagine a business case in which such helmets are issued free of charge, and a commission is simply taken from the avatar for each communication session, why not?

Did you know that the concept for Avatar began in the mid-1990s when James Cameron wrote an 80-page concept script for the film. But the film itself was released only in 2009.

And finally, let's not stop in our fantasies. Want to fight with a stranger on the street? Why not. We give the command to the avatar and off we go. It is clear that this will cost more, because you will have to at least pay a fine or serve a couple of weeks in prison, but if they pay well, then maybe there will be performers? What about some group actions? 10 people gather their avatars and organize some kind of public event. From fan fights to blocking streets. In life, few people are ready to go against the law, but here for little (relatively) money you can find an avatar from a third world country and do something that you wouldn’t even think of doing yourself in your homeland.

You can also go to Disneyland, throw stones into the Indian Ocean, visit the Louvre or the final of a Champions League match. There are no restrictions!

I think by this point you’ve already had a lot of different ideas in your head on how to use avatars.

Renat Grishin

Rating
( 2 ratings, average 4.5 out of 5 )
Did you like the article? Share with friends:
For any suggestions regarding the site: [email protected]
Для любых предложений по сайту: [email protected]