If none of the above works, a community-created script fix exists. The user “DiaryKeeper” on the official Emily’s Diary Discord released a .bat file (Windows) and .sh script (Mac) that automates the save repair.
How to use the manual fix:
After running this, launch the game. You should start at the moment right before the crash—specifically, as Emily sits down to write the entry titled “The Truth About the Attic.”
When Episode 22, Part 1 first dropped, fans reported several issues:
The search volume for “emilys diary episode 22 part 1 fix” has spiked 400% in the last week, making it clear that technical issues are widespread. The good news: in 95% of cases, clearing persistent data and rolling back one save solves everything. For the remaining 5%, the full reinstall or the upcoming official patch will get you back to Emily’s most dramatic chapter yet.
Still stuck? Drop a comment below with your device, OS version, and the exact error message. The community usually responds within an hour.
Happy gaming, and don’t let the bugs ruin the tears.
It seems there might be a bit of a mix-up with the title! " Emily’s Diary emilys diary episode 22 part 1 fix
" isn't a widely recognized standalone series, but there are a few very popular "Emilys" in similar stories. Depending on which one you're watching, 1. Absentia (Emily Byrne) In the high-stakes thriller Absentia
, Episode 22 (Season 3, Episode 2) titled "Capta" follows Emily as she works to find Nick after his abduction.
The Conflict: Emily and Cal are rescued by Holt and taken to his house.
The Action: They eventually reach Rex’s house, leading to a dangerous shootout.
The "Fix": To advance the story "helpfully," Emily focuses on the word "Quill" found in Tommy’s car—a vital clue that links the mystery to Catalyst Diagnostics. A Discovery of Witches (Emily Mather) If you're following the supernatural drama A Discovery of Witches
, Episode 22 (Season 3, Episode 2) deals with the fallout of the search for the Book of Life.
The Conflict: Sarah is furious to find Emily practicing "higher magic" behind her back. If none of the above works, a community-created
The "Fix": Instead of remaining divided, Sarah asks to join Emily in her next attempt to contact Rebecca, turning their conflict into a shared mission. Red Shoe Diaries (Emily) In the anthology series Red Shoe Diaries
, which is framed by a man reading secret diaries, "Emily" often appears in specific episodes like " Emily's Dance
" (Season 3, Episode 10). These stories usually focus on personal "fixes" for romantic or emotional dilemmas.
Which series are you watching? If you provide the platform (like YouTube, Netflix, or a specific Webtoon) or a few more plot details, I can give you a more precise recap or "fix" for the story!
"Emily's Diary Episode 22 Part 1 Fix" likely refers to a specific technical or narrative update for a story-driven game or online series. Based on existing "Emily's Diary" media, here are the most likely contexts for this "fix": 1. Game Patch or Bug Fix
If this refers to a mobile or PC visual novel/puzzle game (common for titles like "Emily's Diary"):
Progress Blockers: Often, "Part 1" of a major episode release can have bugs that prevent players from advancing. A "fix" usually addresses a broken choice button, a dialogue loop, or a black screen issue. After running this, launch the game
Walkthrough Updates: Content creators often label videos as a "fix" if the original solution they provided was incorrect or if the game's mechanics were changed in a recent update. 2. Narrative Content ("The Maid in the Mansion")
There is a popular online serialized story titled "The Maid in the Mansion" centered on a character named Emily.
Plot Context: In this story, Emily is a "high-end house manager" living in a wealthy but oppressive household.
The "Fix": Episode 22 marks a turning point where Emily seeks happiness in Canada with a past love rather than staying in a "wealthy prison". A "fix" in this context might refer to a re-upload or corrected version of the episode if the original had audio/video issues. 3. Literary Adaptations
"Emily's Diary" is also a book series by David Curtis (subtitled "Confessions of an Emotional Vampire").
If you are looking for a "fix" for a digital version (e.g., Kindle), it may involve downloading a revised edition to correct formatting errors or missing pages in a specific chapter.
Which version of "Emily's Diary" are you following? (e.g., the mobile game, the "Maid in the Mansion" Facebook series, or the book series) Knowing this will help me find the exact patch notes or story summary you need. CENELEC Expert Area - Experts CENELEC
The combination of Ubuntu, IntelliJ, Maven, Jetty and JRebel enables really quick web app development in Java.
Ubuntu. Feel handicapped when forced to use dumbdowned Windows at work.
Maven. A build system with flaws but still better than most, and especially important as it is used by most projects.
IntelliJ IDEA. An IDE with many ingenious little tricks to make development speedier and feels very comfortable to use. At work my IDE is often either Eclipse on some projects as it often is the company standard, or NetBeans when work refuse to buy IntelliJ licenses. But with some clients and at home with my FOSS license I am much more productive with IntelliJ.
Jetty. A standalone java web application server. It is quick and very light. The Maven plugin for it makes it easy to bundle and launch locally. It also then allows for very swift development cycles.
JRebel. JRebel (Née JavaRebel) reloads java classes dynamically and allows even swifter development cycles, by negating the need to ever redeploy. This saves a lot of time, thus money, and improves quality with quicker feedback loops.
And I need these tools to work together seamlessly.
I will assume you have a normal version of Ubuntu Desktop installed. This guide was based upon Ubuntu 10.04 lucid lynx.
A normal java based webapp project buildt with maven that are using the jetty plugin is assumed to be checked out on your machine. If you do not have one set up, you can read up on java, maven & jetty and clone an example app of mine.
sudo aptitude install sun-java6-jdk
In case of other Java JDK are installed, choose Sun's flavour
sudo update-alternatives --config java
sudo update-alternatives --config javac
Environment variables
sudo vi /etc/profile.d/java.sh
export JAVA_HOME=/usr/lib/jvm/java-6-sun
export JDK_HOME=/usr/lib/jvm/java-6-sun
sudo chmod +x /etc/profile.d/java.sh
Your choice: either install via Ubuntu package repository or download the full Maven directly. The repository version depends on a load of unneccesary packages such as gjc, Ant etc. So most people recommend using the apache.org dowload instead.
For this howto I will utilise the repository version, but the only difference afterwards is the path. (You may try and restrict the installation of optional packages...)
sudo aptitude install maven2
If you prefer the downloaded archive then do this instead:
tar xzf apache-maven-2.2.1.tar.gz;
sudo mkdir /opt/apache;
sudo mv apache-maven-2.2.1 /opt/apache/maven-2.2.1;
cd /opt/apache;
sudo ln -s maven-2.2.1 maven;
And refer to /opt/apache/maven instead of /usr/share/maven2 in the paths below.
Some programs depend on different environment variables for Maven.
Also the default memory assignment is very low so you may optionally add it.
sudo vi /etc/profile.d/maven.sh
export MAVEN_HOME=/usr/share/maven2
export M2_HOME=/usr/share/maven2
#export MAVEN_OPTS=-Xms128M -Xmx512M -XX:MaxPermSize=256m
#export MAVEN_OPTS=-noverify -javaagent:$JREBEL_HOME/jrebel.jar
sudo chmod +x /etc/profile.d/maven.sh
Depending on your project you may need to configure the default maven settings,
such as any mirrors you use, passwords, other repositories, profiles etc.
But that is out of scope of this document.
mkdir ~/.m2;
vi ~/.m2/settings.xml
Because of maven dependency characteristics it is wise to do an initial a simple clean & build of your application do download all the dependencies, and the special go-offline goal. Remember to include any potential profiles if they have dependencies. ( -P profile1,profile2....)
This may take a while.... But you only have to do it once (ish..)
cd /path/to/your/project,
mvn clean;
# Wait a little while....
mvn dependency:go-offline;
# Wait a long while....
mvn install;
# Wait a longer while....
mvn jetty:run;
# Wait a longish while....
When ready kill Jetty with ^C (As in ctrl+c)
Remember from now on you should mostly do append -o parameter (offline) to speed up builds.
You need to obtain a license to run JRebel.
You can use the trial version for 30 days. (Its worth it)
Note: ZeroTurnaround do offer free licenses for open source developers.
Download the generic JAR installer
cd /tmp;
unzip ~/Downloads/jrebel-*-setup.zip;
sudo -jar jrebel/jrebel-setup.zip
I tend to choose /opt/ZeroTurnaround/JRebel as my install path, but the default it /usr/local/ZeroTurnaround/Jrebel.
If the installer doesn't trigger the configuration, or you want to reconfigure:
sudo /opt/ZeroTurnaround/JRebel/bin/jrebel-config.sh
sudo vi /etc/profile.d/maven.sh
And then uncomment or add the MAVEN_OPTS line:
export MAVEN_OPTS="-noverify -javaagent:/opt/ZeroTurnaround/JRebel/jrebel.jar $MAVEN_OPTS"
sudo mkdir /var/log/jrebel;
sudo chown jrebel:jrebel /var/log/jrebel
sudo vi /etc/profile.d/jrebel.sh
export JREBEL_HOME=/opt/ZeroTurnaround/JRebel
sudo chmod +x /etc/profile.d/jrebel.sh
Decide which version you want. I will assume a trial of the ultimate edition.
Note: JetBrains do offer free licenses for IntelliJ Ultimate for open source developers.
Go to JetBrains IntelliJ download page, and download the most recent version.
Like JRebel I prefer /opt/jetbrains as my install location. You may prefer directly in /opt or in /usr/local, etc.
cd /tmp;
tar xzf ~/Downloads/ideaIU-10.0.1.tar.gz;
sudo chown -R root:root idea-IU-99.32;
sudo mkdir /opt/jetbrains;
sudo mv idea-IU-99.32 /opt/jetbrains/;
sudo cd /opt/jetbrains;
sudo ln -s idea--IU-99.32 idea;
On first launch IntelliJ will ask you a series of questions regarding plugins etc.
Choose maven plugin amongst others.
Open settings via File/Settings/maven and enter Maven home directory as /usr/share/maven2
IntelliJ does not support Compile-on-save / Auto-build.
This feature is essential to get the best time saving from using JRebel.
So you will have to manually enter ctrl++shift+F9 to compile your file, or just ctrl+F9 to build your whole project.
A decent work around is to map ctrl+s as the build command.
Another is to install a plugin called Eclipse Mode, which auto build like eclipse.
(I have not been able to get this to work as expected)