Since we're not shaking hands anymore because of Corona, I suggest to shake butts as a gesture of greeting instead.
Entry created on 2020-03-09 (edited 2020-03-17)
Authors: steeph (338)
Categories: Corona (12)
Silly (32)
Thoughts (72)
Languages used: en (189)
The WILD Ball
Entry Permalink (edited 2020-03-06)
Authors: steeph (338)
Categories: Dreaming (9)
Lucid Dream Induction (3)
Lucid Dreaming (11)
Projects (40)
incomplete (33)
Languages used: en (189)
Topics: Projects (72)
WILD Ball - electronic DIY aid in WILD induction
What is a WILD Ball?
WILD Ball is the name I have given my little project to build a device that aids a person in falling asleep more consciously and possibly experience waking-initiated lucid dreams.
It is a tennis ball sized device that you hold in your hand while trying to fall asleep consciously (usually after a WBTB). WILD (waking-initiated lucid dream) is referring to my preferred way to experience dream consciousness.
(How) Does it work?
The most common reason why WILD attempts fail is that the critical moment - the exact moment where you start to perceive the dream instead of your physical surrounding enough to control the dream consciously - is simply missed. You stay awake for a while, and when/if you finally fall asleep, you don't notice it. It is important to stay aware until or become aware right at that moment where you already perceive a dream but are still conscious enough to control it. There is a variety of mental and a few physical techniques that are supposed to help one to accomplish just that. This device is an additional aid to mental techniques. As with other electronic devices made to aid lucid dream (LD) induction, it is expected to work best if you already have experience in successful LD induction. Of course it is not necessary to have experienced LDs before in order for this device to help accomplish this goal. I suggest its usage as a part of the WILD induction training of anybody who sees it as a fitting addition to their WILD practice. If you already have the ability to explore hypnagogic hallucinations extensively or sometimes experience the beginning of a dream without becoming lucid, this device might fill a gap in your LD practice.
The WILD Balll has two different usage modes. (More might be added in the future.) Both aim to remind its user of their intention to fall asleep consciously by sounding a buzzer whenever the muscle contraction of the hand that is holding it drops below a certain threshold. It is an old technique to hold something in one hand and let it fall on something that makes a noise, thus waking one up right at the moment where muscle contraction is too weak to hold the object. This technique is seldomly discussed in the lucid dreaming community though and I have found only a handful of reports of people experimenting with or using it. Using an electronic device instead of a heavy object and a noisy underground has some advantages which might overcome the limitations that the classical approach has.
- The type of sound can be altered in software. The built presented here only provides a simple piezo buzzer. But the design can easily be extended to play more complex sounds or music.
- The length and volume of the sound can be altered in software, making it easier to tune it to your personal requirements.
- The device can be used at any sleeping place and does not need to be set up before use when travelling.
- By using headphones or a speaker pillow a loud alarm sound can be played for the user without disturbing other sleepers in the same room.
- Obviously it is cooler to do it this way than to rely on simple physics.
Mode 0 imitates the classical approach of letting the object fall when the muscle contraction becomes weak. The alarm sound is triggered when the device is moving at a certain speed or above. Movement is detected in three axes independently. The speed threshold can be simply set in software. If you want to move your hand or otherwise adjust your body during a WILD attempt without triggering the alarm, you can simply squeeze the device, which disables the sound until you let go and only hold it lightly again. For more uses of mode 1, see Ideas/modifications below.
Mode 1 follows a different approach to achive the same result. You steadily squeeze the device during your WILD aatempt. As soon as the pressure drops below a certain threshold the alarm sounds for the defined duration. Right now this a implemented with a binary switch which means the threshold can not be adjusted in software but only changing the the way the switch is built, by using a different pre-manufactured switch or by changing (the hardness of) its surrounding (the ball itself). The switch could be replaced with a preassure sensor to allow more gradual detection of preassure loss.
How to build one
(tba)
Challenges/known problems
(tba)
Getting used to holding the object, alarm sound too loud, getting used to the sound
The code
If you have a device built according to the above pictures then you can use the below Arduino sketch (download .ino file) as it is. Otherwise it should give you an idea of how to program the microcontroller used in your DIY built.
/*
This is the Arduino sketch for the WILD Ball, a simple device that aids a person in falling asleep more
consciously and possibly experience waking-initiated lucid dreams.
More information at: https://steeph.de/projects/wildball/
*/
#include<Wire.h>
const boolean usageMode = 0; /*
There are two different usage modes:
0: The alarm is triggered when the device is moved unless the button is pressed. (The button can be pressed
while adjusting the hand or lying position. When the button is let go the alarm is active again.)
1: Movements are ignored. The alarm is triggered and will sound for toneDuration milliseconds when the button is not pressed. */
const boolean debugMode = 0; // Print messages to serial port if debugMode is enabled
int buzzerPin = 5;
int buttonPin = 4;
int threshold = 1000; // The smaller this value the more sensitive the device will be to movement
const int MPU=0x68;
int16_t AcX,AcY,AcZ,Tmp,GyX,GyY,GyZ;
int toneDuration = 300; // Minimum duration of alarm sound in milliseconds
int toneFrequency = 250; // The frequency of the alarm sound
void setup(){
Wire.begin();
Wire.beginTransmission(MPU);
Wire.write(0x6B);
Wire.write(0);
Wire.endTransmission(true);
if (debugMode) { Serial.begin(9600); }
pinMode(buzzerPin, OUTPUT);
pinMode(buttonPin, INPUT);
}
void loop(){
if (!usageMode) {
Wire.beginTransmission(MPU);
Wire.write(0x3B);
Wire.endTransmission(false);
Wire.requestFrom(MPU,14,true);
AcX=Wire.read()<<8|Wire.read();
AcY=Wire.read()<<8|Wire.read();
AcZ=Wire.read()<<8|Wire.read();
Tmp=Wire.read()<<8|Wire.read();
GyX=Wire.read()<<8|Wire.read();
GyY=Wire.read()<<8|Wire.read();
GyZ=Wire.read()<<8|Wire.read();
}
if (debugMode && !usageMode) {
Serial.print("Accelerometer: ");
Serial.print("X = "); Serial.print(AcX);
Serial.print(" | Y = "); Serial.print(AcY);
Serial.print(" | Z = "); Serial.println(AcZ);
Serial.print("Gyroscope: ");
Serial.print("X = "); Serial.print(GyX);
Serial.print(" | Y = "); Serial.print(GyY);
Serial.print(" | Z = "); Serial.println(GyZ);
Serial.println(" ");
}
if (usageMode) {
if (debugMode) { Serial.println("Usage Mode 1"); Serial.println(); }
if (!buttonPressed()) {
tone(5, toneFrequency, toneDuration);
}
} else {
if (debugMode) { Serial.println("Usage Mode 0"); Serial.println(); }
if (moved(GyX,GyY,GyZ) && !buttonPressed()) {
tone(5, toneFrequency, toneDuration);
if (debugMode) { Serial.println("Ha! You moved!"); Serial.println(); }
}
}
delay(100);
}
boolean buttonPressed() {
if (digitalRead(buttonPin)) {
if (debugMode) { Serial.println("Button is pressed."); Serial.println(); }
return true;
} else {
return false;
}
}
boolean moved (int16_t x, int16_t y, int16_t z) {
if(x > threshold || y > threshold || z > threshold || x < -threshold || y < -threshold || z < -threshold)
{
return true;
}
else {
return false;
}
}
Ideas/modifications
(tbc)
The device does not have to be placed inside a ball. You can built a case and place the components according to your personal needs. Because it does not have to drop on anything but only move it is also possible to use mode 1 with the device strapped to the hand if you prefer to hold up an arm instead of holding something in your hand. If you usually experience muscle twitches while falling asleep, e.g. in your legs or feet, as many people do, you can also experiment with the device strapped to your foot or leg.
Instead of sounding a buzzer for a pre-defined duration, you can experiment with different signals, be it blinking LEDs a playing an MP3 file from a different device or extension module. By adding a wave module the variety of sounds can be increased so that you can choose the best sound to make you aware quickly without waking you up completely. You yourself probably know best what sound that might be. But as with the rhythm nappping technique, short loud sounds are most likely to lead to a successfull LD induction attrempt.
FILD mode (tba)
Entry Permalink (edited 2020-03-06)
Authors: steeph (338)
Categories: Internet (3)
Silly (32)
Thoughts (72)
Languages used: en (189)
Ow wow, internet is huge!
Entry Permalink (edited 2020-03-06)
Authors: steeph (338)
Categories: Bathing (1)
Silly (32)
Thoughts (72)
Languages used: en (189)
I would like to participate in a bathing competition some time.
Entry Permalink (edited 2020-03-06)
Authors: steeph (338)
Categories: Life (5)
Thoughts (72)
Time (1)
Work (3)
Languages used: en (189)
When I was working half-time I was making and doing fun things and hobbies were hobbies. Now - working full-time - I spend too much time being annoyed that I don't have more free time. Accepting that this is life is the most cowardly thing I've done. Good thing I notices in time.
Entry Permalink (edited 2020-03-06)
Authors: steeph (338)
Categories: Posting (1)
Silly (32)
Summer (2)
Thoughts (72)
Languages used: en (189)
LOST
Name: SummerLast seen: Last week
Character traits: Warm to hot, sunny, dry
Special needs: Cooling with water or moving air
If found, please return to Europe
THANK YOU!
Project: mixlog
Entry Permalink (edited 2020-03-06)
Authors: steeph (338)
Categories: Blogs (4)
Projects (40)
Web Site (1)
incomplete (33)
obsolete (4)
Languages used: en (189)
Topics: Projects → Web Sites → Discontinued (4)
I just canceled some domains that I had registered. Among them were the domain names mixblog23.de and mixlog.de. Both of which were once used for a blogging platform of mine that wasn't alive for a long time. But I kept the domains just in case. (I don't know which case that would have been.)
The platform was initially supposed to be called Mixblog, but I couldn't find a free domain name that I liked. So at some point I registered mixlog.de, which by now sounds better and more familiar to me anyway.
The point of mixlog was - apart from me having a website to build and something to learn on - to create personal feed of content from different blogs on that website and other sources (RSS feeds). It could essentially be used as a feed reader in a web browser with the ability to publish stuff on the same site. RSS aggregation wasn't scaling well, so it would have been difficult if many people would have used it as a feed reader for many feeds. But that wasn't its main purpose anyway. So, you could post blog posts, image galleries (which technically were blog posts too) and links to posts on other websites (which imported the content and worked as a repost). You could follow blogs and repost and fav posts from bogs on mixlog and from other blogs as well. Classic blog comments existed too. Pingbacks and RSS feeds were supported as I still liked to think was standard back then.
I saw the platform as like sort of a twitter with fewer members, more features and without contrains (no small character limit, reblogging and following blogs from other websites was supported). When I later learned about tumblr, I started to think of mixlog as like sort of a tumblr with more features and a less professional design and UI. But I don't think tumblr even existed when I stopped working on mixlog.
So why isn't mixlog around anymore? At its peak there were three active users on the platform (not daily active, far from, actually). That included me, a friend who tested it with me in the early development stage and another friend, who tried it out for a short while. Altogether there were four user accounts/blogs. And mine was the only one that showed sings of prolonged motivation to post stuff. So when it became clear to me that nobody but me would be using it I thought it to be overblown for a personal weblog, stopped adding features and eventually took it offline instead of fixing a potential vulnerability of the underlying framework.
I guess this here is just to say: R.I.P., mixlog! You will forever have a place on my backup RAID.
(tba: screen shot)
Some Thoughts on Hoarding
Entry Permalink (edited 2020-03-06)
Authors: steeph (338)
Categories: Hoarding (5)
Life (5)
Thoughts (72)
Languages used: en (189)
Here are in short my tips to reduce hoarding of stuff you think you may need some day but almost certainly won't. If you're not really a hoarder - as in the worst examples that TV likes to portrait - but do have a problem throwing things away despite not having space to store all that clutter, this may help to clean out your storage. (I'm assuming it may because it does for me.)
- Be aware that you are keeping stuff that you don't actually need or use reularly. Make yourself aware that your reasons to keep things may not be as good as you feel they are.
- Weed out things that you didn't use for a long time. Maybe plan an afternoon or sorting every six months or make a rule on how long you have to not use something in order to declare something unused. Use that time also to reflect on your reason to keep things. Is it really important to keep an object related to a good memory? How sure are you you will build that project some day that you've started to gather parts for?
- Sort unused things in three catagories, like: "Definitely still need it for a good reason", "Don't currently need or use it, but...", Don't actually need it". Then as move many things as possible from the second to the third catagory. Find reasons for doing so (be honest, you know the reasons) until you only have two catagories left.
- Ask a friend for a favour: Give them everything from the "don't need it" catagory and ask them to throw it away for you because you don't have the heart to do it. Chances are they can at least somewhat relate to your problem but have no problem throwing things away they've never seen before. IF they decide to keep some of it then it's their problem now. Feel free to donate valuable or really useful things or give them to a give-away store before throwing away the rest. Don't keep things because you want to seel them for money unless you do it right now and get rid of the things immediately.
- Forget about all that stuff so you don't feel bad when the day comes where you actually could have used one of the things you gave away.
If you have too much money you then buying storage or land to store things without having them clutter up your house is an alternative. But it's not really worth it. It's just paying money so you can keep that warmish feelng of still having access to everything but you'll also keep your problem. I mean unless you're really collecting something valuable or you become "that guy" for your town with large property where everybody goes before buying anything other than foot. Some towns have such a guy who stores avery piece of wood and metal they see so others can browse for their DIY projects. I like these guys. But you don't have the property for such a stock, do you? So don't try to be that guy for you town, for your friends or just for yourself. It takes the same amount of space in either case.
Being a digital hoarder myself, I'm hypocritical enough to have a different opiniont about data hoarding. But I'll write about that another time.