How to get old Sticky Notes back after December 2018 update to Windows 10?
I used for years this solution: https://superuser.com/a/1173332/458487 linking to https://www.winhelponline.com/blog/get-classic-sticky-notes-windows-10-anniversary/
After December 2018 "Feature update to Windows 10, version 1809", it no longer works, tested on both Windows 10 Home and Windows 10 Professional (Home OS build 17763.194).
I copied the old stikynot exe and mui files into the System32 folder (including the MUI file to the en-US folder) as usual after bigger update, but it won't run. The task is starting for a second or two, either displaying name Sticky Notes when MUI file is present, or no name at all f I delete it, there's no icon and it silently ends without ever showing anything. Any ideas how to fix it?
I tried downloading SNTSearch.dll, doesn't help.
Thank you very much! I don't want to use the obnoxious Metro-styled new Sticky Notes - either I repair this, or will find an alternative. But I grew used to the look and ease of use.
EDIT: On other machine I haven't purged the Windows.old folder yet, and when I run it from System32 there, it starts. So we're probably missing some other DLL. Any idea how to find out which? Are there any logs anywhere? I'm not that familiar with debugging under Windows unfortunately.
windows-10 sticky-notes windows-10-v1809
add a comment |
I used for years this solution: https://superuser.com/a/1173332/458487 linking to https://www.winhelponline.com/blog/get-classic-sticky-notes-windows-10-anniversary/
After December 2018 "Feature update to Windows 10, version 1809", it no longer works, tested on both Windows 10 Home and Windows 10 Professional (Home OS build 17763.194).
I copied the old stikynot exe and mui files into the System32 folder (including the MUI file to the en-US folder) as usual after bigger update, but it won't run. The task is starting for a second or two, either displaying name Sticky Notes when MUI file is present, or no name at all f I delete it, there's no icon and it silently ends without ever showing anything. Any ideas how to fix it?
I tried downloading SNTSearch.dll, doesn't help.
Thank you very much! I don't want to use the obnoxious Metro-styled new Sticky Notes - either I repair this, or will find an alternative. But I grew used to the look and ease of use.
EDIT: On other machine I haven't purged the Windows.old folder yet, and when I run it from System32 there, it starts. So we're probably missing some other DLL. Any idea how to find out which? Are there any logs anywhere? I'm not that familiar with debugging under Windows unfortunately.
windows-10 sticky-notes windows-10-v1809
add a comment |
I used for years this solution: https://superuser.com/a/1173332/458487 linking to https://www.winhelponline.com/blog/get-classic-sticky-notes-windows-10-anniversary/
After December 2018 "Feature update to Windows 10, version 1809", it no longer works, tested on both Windows 10 Home and Windows 10 Professional (Home OS build 17763.194).
I copied the old stikynot exe and mui files into the System32 folder (including the MUI file to the en-US folder) as usual after bigger update, but it won't run. The task is starting for a second or two, either displaying name Sticky Notes when MUI file is present, or no name at all f I delete it, there's no icon and it silently ends without ever showing anything. Any ideas how to fix it?
I tried downloading SNTSearch.dll, doesn't help.
Thank you very much! I don't want to use the obnoxious Metro-styled new Sticky Notes - either I repair this, or will find an alternative. But I grew used to the look and ease of use.
EDIT: On other machine I haven't purged the Windows.old folder yet, and when I run it from System32 there, it starts. So we're probably missing some other DLL. Any idea how to find out which? Are there any logs anywhere? I'm not that familiar with debugging under Windows unfortunately.
windows-10 sticky-notes windows-10-v1809
I used for years this solution: https://superuser.com/a/1173332/458487 linking to https://www.winhelponline.com/blog/get-classic-sticky-notes-windows-10-anniversary/
After December 2018 "Feature update to Windows 10, version 1809", it no longer works, tested on both Windows 10 Home and Windows 10 Professional (Home OS build 17763.194).
I copied the old stikynot exe and mui files into the System32 folder (including the MUI file to the en-US folder) as usual after bigger update, but it won't run. The task is starting for a second or two, either displaying name Sticky Notes when MUI file is present, or no name at all f I delete it, there's no icon and it silently ends without ever showing anything. Any ideas how to fix it?
I tried downloading SNTSearch.dll, doesn't help.
Thank you very much! I don't want to use the obnoxious Metro-styled new Sticky Notes - either I repair this, or will find an alternative. But I grew used to the look and ease of use.
EDIT: On other machine I haven't purged the Windows.old folder yet, and when I run it from System32 there, it starts. So we're probably missing some other DLL. Any idea how to find out which? Are there any logs anywhere? I'm not that familiar with debugging under Windows unfortunately.
windows-10 sticky-notes windows-10-v1809
windows-10 sticky-notes windows-10-v1809
edited Dec 22 '18 at 10:09
LuH
asked Dec 21 '18 at 9:53
LuHLuH
715
715
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
To run old Sticky Note in Windows 10 Version 1809 aka. October 2018 Update, StikyNot.exe
needs a compatible DUI70.DLL file (Windows DirectUI Engine). A fair bit of warning, there are many websites which provide DLL files (Dynamic Link Library) for free. DO NOT download them because they may contain harmful malwares.
There are many ways to download old Windows 10 ISO files. Here I have choose a tool from HeiDoc.net which uses official Microsoft link to download ISO files. For this procedure, I have used two Windows 10 versions --
Version 1511 (November Update) forStikyNot.exe
andStikyNot.exe.mui
Version 1803 (April 2018 Update) forDUI70.DLL
andDUI70.dll.mui
Extract those files from their ISO files respectively. Here are the list of what we need:
Win10_1511_English_x64.iso
|
+-- sources
|
+-- install.wim
|
+-- WindowsSystem32StikyNot.exe
+-- WindowsSystem32en-USStikyNot.exe.mui
Win10_1803_English_x64.iso
|
+-- sources
|
+-- install.wim
|
+-- WindowsSystem32DUI70.dll
+-- WindowsSystem32en-USDUI70.dll.mui
The en-US
folder may change according to the main locale of that ISO file, for example, en-GB
for UK English, zh-CN
for simplified Chinese etc. Copy those above four files in any folder like this:
MyFolder
|
+-- StikyNot.exe
+-- DUI70.dll
|
+-- en-US
|
+-- StikyNot.exe.mui
+-- DUI70.dll.mui
Alternatively, both files can be copied from Windows 7 ISO file. So how did I find the dependency of DUI70.dll
? Answer, with Dependencies tool (open-source and free) and some trial 'n error. Open the StikyNot.exe
in that tool. It will show many functions are imported from DUI70.dll
library. The other imported functions are from System32 libraries.
Thanks for your in-depth reply! However, in my system, the files dui70.dll and dui70.dll.mui are present both in Windows.old and the current version. They are different - old dui70.dll has 1 719 808 bytes (created Jun 6, 18, 20:43, md5 923706cce2eb713fa7cc04db93c52da3) and the new one has 1 761 280 bytes and is from Sep 15, 18, 09:28 (44017d29603b61caacfe78161070403f). Can't delete/overwrite the new one even as an administrator - apparently it's in use. Any other clues? Do you want a list of files in my System32?
– LuH
Dec 26 '18 at 21:44
For some reason I was stuck trying to make it work in the live System32 folder, while the obvious solution is to put it elsewhere (likeC:Program Files (x86)stikynot
). So, the files working for me, pulled from an older version of the system (don't need anything else in the folder):b2e22260e4238371b90a1ad8d85804d1
*dui70.dll42e7a1e58b1708de50db56dfbe061ab3
*StikyNot.exe53c978bed543b4716925f6a361887fda
*en-USdui70.dll.muia4ba35f4eb39a76e3067d840258bcd94
*en-USStikyNot.exe.mui Thanks, @Biswapriyo!
– LuH
Jan 13 at 23:56
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "3"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1386589%2fhow-to-get-old-sticky-notes-back-after-december-2018-update-to-windows-10%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
To run old Sticky Note in Windows 10 Version 1809 aka. October 2018 Update, StikyNot.exe
needs a compatible DUI70.DLL file (Windows DirectUI Engine). A fair bit of warning, there are many websites which provide DLL files (Dynamic Link Library) for free. DO NOT download them because they may contain harmful malwares.
There are many ways to download old Windows 10 ISO files. Here I have choose a tool from HeiDoc.net which uses official Microsoft link to download ISO files. For this procedure, I have used two Windows 10 versions --
Version 1511 (November Update) forStikyNot.exe
andStikyNot.exe.mui
Version 1803 (April 2018 Update) forDUI70.DLL
andDUI70.dll.mui
Extract those files from their ISO files respectively. Here are the list of what we need:
Win10_1511_English_x64.iso
|
+-- sources
|
+-- install.wim
|
+-- WindowsSystem32StikyNot.exe
+-- WindowsSystem32en-USStikyNot.exe.mui
Win10_1803_English_x64.iso
|
+-- sources
|
+-- install.wim
|
+-- WindowsSystem32DUI70.dll
+-- WindowsSystem32en-USDUI70.dll.mui
The en-US
folder may change according to the main locale of that ISO file, for example, en-GB
for UK English, zh-CN
for simplified Chinese etc. Copy those above four files in any folder like this:
MyFolder
|
+-- StikyNot.exe
+-- DUI70.dll
|
+-- en-US
|
+-- StikyNot.exe.mui
+-- DUI70.dll.mui
Alternatively, both files can be copied from Windows 7 ISO file. So how did I find the dependency of DUI70.dll
? Answer, with Dependencies tool (open-source and free) and some trial 'n error. Open the StikyNot.exe
in that tool. It will show many functions are imported from DUI70.dll
library. The other imported functions are from System32 libraries.
Thanks for your in-depth reply! However, in my system, the files dui70.dll and dui70.dll.mui are present both in Windows.old and the current version. They are different - old dui70.dll has 1 719 808 bytes (created Jun 6, 18, 20:43, md5 923706cce2eb713fa7cc04db93c52da3) and the new one has 1 761 280 bytes and is from Sep 15, 18, 09:28 (44017d29603b61caacfe78161070403f). Can't delete/overwrite the new one even as an administrator - apparently it's in use. Any other clues? Do you want a list of files in my System32?
– LuH
Dec 26 '18 at 21:44
For some reason I was stuck trying to make it work in the live System32 folder, while the obvious solution is to put it elsewhere (likeC:Program Files (x86)stikynot
). So, the files working for me, pulled from an older version of the system (don't need anything else in the folder):b2e22260e4238371b90a1ad8d85804d1
*dui70.dll42e7a1e58b1708de50db56dfbe061ab3
*StikyNot.exe53c978bed543b4716925f6a361887fda
*en-USdui70.dll.muia4ba35f4eb39a76e3067d840258bcd94
*en-USStikyNot.exe.mui Thanks, @Biswapriyo!
– LuH
Jan 13 at 23:56
add a comment |
To run old Sticky Note in Windows 10 Version 1809 aka. October 2018 Update, StikyNot.exe
needs a compatible DUI70.DLL file (Windows DirectUI Engine). A fair bit of warning, there are many websites which provide DLL files (Dynamic Link Library) for free. DO NOT download them because they may contain harmful malwares.
There are many ways to download old Windows 10 ISO files. Here I have choose a tool from HeiDoc.net which uses official Microsoft link to download ISO files. For this procedure, I have used two Windows 10 versions --
Version 1511 (November Update) forStikyNot.exe
andStikyNot.exe.mui
Version 1803 (April 2018 Update) forDUI70.DLL
andDUI70.dll.mui
Extract those files from their ISO files respectively. Here are the list of what we need:
Win10_1511_English_x64.iso
|
+-- sources
|
+-- install.wim
|
+-- WindowsSystem32StikyNot.exe
+-- WindowsSystem32en-USStikyNot.exe.mui
Win10_1803_English_x64.iso
|
+-- sources
|
+-- install.wim
|
+-- WindowsSystem32DUI70.dll
+-- WindowsSystem32en-USDUI70.dll.mui
The en-US
folder may change according to the main locale of that ISO file, for example, en-GB
for UK English, zh-CN
for simplified Chinese etc. Copy those above four files in any folder like this:
MyFolder
|
+-- StikyNot.exe
+-- DUI70.dll
|
+-- en-US
|
+-- StikyNot.exe.mui
+-- DUI70.dll.mui
Alternatively, both files can be copied from Windows 7 ISO file. So how did I find the dependency of DUI70.dll
? Answer, with Dependencies tool (open-source and free) and some trial 'n error. Open the StikyNot.exe
in that tool. It will show many functions are imported from DUI70.dll
library. The other imported functions are from System32 libraries.
Thanks for your in-depth reply! However, in my system, the files dui70.dll and dui70.dll.mui are present both in Windows.old and the current version. They are different - old dui70.dll has 1 719 808 bytes (created Jun 6, 18, 20:43, md5 923706cce2eb713fa7cc04db93c52da3) and the new one has 1 761 280 bytes and is from Sep 15, 18, 09:28 (44017d29603b61caacfe78161070403f). Can't delete/overwrite the new one even as an administrator - apparently it's in use. Any other clues? Do you want a list of files in my System32?
– LuH
Dec 26 '18 at 21:44
For some reason I was stuck trying to make it work in the live System32 folder, while the obvious solution is to put it elsewhere (likeC:Program Files (x86)stikynot
). So, the files working for me, pulled from an older version of the system (don't need anything else in the folder):b2e22260e4238371b90a1ad8d85804d1
*dui70.dll42e7a1e58b1708de50db56dfbe061ab3
*StikyNot.exe53c978bed543b4716925f6a361887fda
*en-USdui70.dll.muia4ba35f4eb39a76e3067d840258bcd94
*en-USStikyNot.exe.mui Thanks, @Biswapriyo!
– LuH
Jan 13 at 23:56
add a comment |
To run old Sticky Note in Windows 10 Version 1809 aka. October 2018 Update, StikyNot.exe
needs a compatible DUI70.DLL file (Windows DirectUI Engine). A fair bit of warning, there are many websites which provide DLL files (Dynamic Link Library) for free. DO NOT download them because they may contain harmful malwares.
There are many ways to download old Windows 10 ISO files. Here I have choose a tool from HeiDoc.net which uses official Microsoft link to download ISO files. For this procedure, I have used two Windows 10 versions --
Version 1511 (November Update) forStikyNot.exe
andStikyNot.exe.mui
Version 1803 (April 2018 Update) forDUI70.DLL
andDUI70.dll.mui
Extract those files from their ISO files respectively. Here are the list of what we need:
Win10_1511_English_x64.iso
|
+-- sources
|
+-- install.wim
|
+-- WindowsSystem32StikyNot.exe
+-- WindowsSystem32en-USStikyNot.exe.mui
Win10_1803_English_x64.iso
|
+-- sources
|
+-- install.wim
|
+-- WindowsSystem32DUI70.dll
+-- WindowsSystem32en-USDUI70.dll.mui
The en-US
folder may change according to the main locale of that ISO file, for example, en-GB
for UK English, zh-CN
for simplified Chinese etc. Copy those above four files in any folder like this:
MyFolder
|
+-- StikyNot.exe
+-- DUI70.dll
|
+-- en-US
|
+-- StikyNot.exe.mui
+-- DUI70.dll.mui
Alternatively, both files can be copied from Windows 7 ISO file. So how did I find the dependency of DUI70.dll
? Answer, with Dependencies tool (open-source and free) and some trial 'n error. Open the StikyNot.exe
in that tool. It will show many functions are imported from DUI70.dll
library. The other imported functions are from System32 libraries.
To run old Sticky Note in Windows 10 Version 1809 aka. October 2018 Update, StikyNot.exe
needs a compatible DUI70.DLL file (Windows DirectUI Engine). A fair bit of warning, there are many websites which provide DLL files (Dynamic Link Library) for free. DO NOT download them because they may contain harmful malwares.
There are many ways to download old Windows 10 ISO files. Here I have choose a tool from HeiDoc.net which uses official Microsoft link to download ISO files. For this procedure, I have used two Windows 10 versions --
Version 1511 (November Update) forStikyNot.exe
andStikyNot.exe.mui
Version 1803 (April 2018 Update) forDUI70.DLL
andDUI70.dll.mui
Extract those files from their ISO files respectively. Here are the list of what we need:
Win10_1511_English_x64.iso
|
+-- sources
|
+-- install.wim
|
+-- WindowsSystem32StikyNot.exe
+-- WindowsSystem32en-USStikyNot.exe.mui
Win10_1803_English_x64.iso
|
+-- sources
|
+-- install.wim
|
+-- WindowsSystem32DUI70.dll
+-- WindowsSystem32en-USDUI70.dll.mui
The en-US
folder may change according to the main locale of that ISO file, for example, en-GB
for UK English, zh-CN
for simplified Chinese etc. Copy those above four files in any folder like this:
MyFolder
|
+-- StikyNot.exe
+-- DUI70.dll
|
+-- en-US
|
+-- StikyNot.exe.mui
+-- DUI70.dll.mui
Alternatively, both files can be copied from Windows 7 ISO file. So how did I find the dependency of DUI70.dll
? Answer, with Dependencies tool (open-source and free) and some trial 'n error. Open the StikyNot.exe
in that tool. It will show many functions are imported from DUI70.dll
library. The other imported functions are from System32 libraries.
answered Dec 22 '18 at 19:37
BiswapriyoBiswapriyo
2,87031341
2,87031341
Thanks for your in-depth reply! However, in my system, the files dui70.dll and dui70.dll.mui are present both in Windows.old and the current version. They are different - old dui70.dll has 1 719 808 bytes (created Jun 6, 18, 20:43, md5 923706cce2eb713fa7cc04db93c52da3) and the new one has 1 761 280 bytes and is from Sep 15, 18, 09:28 (44017d29603b61caacfe78161070403f). Can't delete/overwrite the new one even as an administrator - apparently it's in use. Any other clues? Do you want a list of files in my System32?
– LuH
Dec 26 '18 at 21:44
For some reason I was stuck trying to make it work in the live System32 folder, while the obvious solution is to put it elsewhere (likeC:Program Files (x86)stikynot
). So, the files working for me, pulled from an older version of the system (don't need anything else in the folder):b2e22260e4238371b90a1ad8d85804d1
*dui70.dll42e7a1e58b1708de50db56dfbe061ab3
*StikyNot.exe53c978bed543b4716925f6a361887fda
*en-USdui70.dll.muia4ba35f4eb39a76e3067d840258bcd94
*en-USStikyNot.exe.mui Thanks, @Biswapriyo!
– LuH
Jan 13 at 23:56
add a comment |
Thanks for your in-depth reply! However, in my system, the files dui70.dll and dui70.dll.mui are present both in Windows.old and the current version. They are different - old dui70.dll has 1 719 808 bytes (created Jun 6, 18, 20:43, md5 923706cce2eb713fa7cc04db93c52da3) and the new one has 1 761 280 bytes and is from Sep 15, 18, 09:28 (44017d29603b61caacfe78161070403f). Can't delete/overwrite the new one even as an administrator - apparently it's in use. Any other clues? Do you want a list of files in my System32?
– LuH
Dec 26 '18 at 21:44
For some reason I was stuck trying to make it work in the live System32 folder, while the obvious solution is to put it elsewhere (likeC:Program Files (x86)stikynot
). So, the files working for me, pulled from an older version of the system (don't need anything else in the folder):b2e22260e4238371b90a1ad8d85804d1
*dui70.dll42e7a1e58b1708de50db56dfbe061ab3
*StikyNot.exe53c978bed543b4716925f6a361887fda
*en-USdui70.dll.muia4ba35f4eb39a76e3067d840258bcd94
*en-USStikyNot.exe.mui Thanks, @Biswapriyo!
– LuH
Jan 13 at 23:56
Thanks for your in-depth reply! However, in my system, the files dui70.dll and dui70.dll.mui are present both in Windows.old and the current version. They are different - old dui70.dll has 1 719 808 bytes (created Jun 6, 18, 20:43, md5 923706cce2eb713fa7cc04db93c52da3) and the new one has 1 761 280 bytes and is from Sep 15, 18, 09:28 (44017d29603b61caacfe78161070403f). Can't delete/overwrite the new one even as an administrator - apparently it's in use. Any other clues? Do you want a list of files in my System32?
– LuH
Dec 26 '18 at 21:44
Thanks for your in-depth reply! However, in my system, the files dui70.dll and dui70.dll.mui are present both in Windows.old and the current version. They are different - old dui70.dll has 1 719 808 bytes (created Jun 6, 18, 20:43, md5 923706cce2eb713fa7cc04db93c52da3) and the new one has 1 761 280 bytes and is from Sep 15, 18, 09:28 (44017d29603b61caacfe78161070403f). Can't delete/overwrite the new one even as an administrator - apparently it's in use. Any other clues? Do you want a list of files in my System32?
– LuH
Dec 26 '18 at 21:44
For some reason I was stuck trying to make it work in the live System32 folder, while the obvious solution is to put it elsewhere (like
C:Program Files (x86)stikynot
). So, the files working for me, pulled from an older version of the system (don't need anything else in the folder): b2e22260e4238371b90a1ad8d85804d1
*dui70.dll 42e7a1e58b1708de50db56dfbe061ab3
*StikyNot.exe 53c978bed543b4716925f6a361887fda
*en-USdui70.dll.mui a4ba35f4eb39a76e3067d840258bcd94
*en-USStikyNot.exe.mui Thanks, @Biswapriyo!– LuH
Jan 13 at 23:56
For some reason I was stuck trying to make it work in the live System32 folder, while the obvious solution is to put it elsewhere (like
C:Program Files (x86)stikynot
). So, the files working for me, pulled from an older version of the system (don't need anything else in the folder): b2e22260e4238371b90a1ad8d85804d1
*dui70.dll 42e7a1e58b1708de50db56dfbe061ab3
*StikyNot.exe 53c978bed543b4716925f6a361887fda
*en-USdui70.dll.mui a4ba35f4eb39a76e3067d840258bcd94
*en-USStikyNot.exe.mui Thanks, @Biswapriyo!– LuH
Jan 13 at 23:56
add a comment |
Thanks for contributing an answer to Super User!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1386589%2fhow-to-get-old-sticky-notes-back-after-december-2018-update-to-windows-10%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown