2023-11-03 16:39:48 +00:00
<!DOCTYPE html>
< html >
< head >
< title > burgernotes< / title >
< meta charset = "UTF-8" / >
< meta http-equiv = "X-UA-Compatible" content = "IE=edge" / >
< meta name = "viewport" content = "width=device-width, initial-scale=1, maximum-scale=1" >
< link rel = "stylesheet" type = "text/css" href = "/static/css/style.css" / >
< / head >
< body >
2023-11-03 18:35:49 +00:00
< h1 class = "w300" > Burgernotes Discontinuation FAQ< / h2 >
After 4 months, on November 12, 2023, Burgernotes will shut down.
2023-11-03 16:39:48 +00:00
< br > < br >
2023-11-03 18:35:49 +00:00
You might be asking, how will this affect me?
2023-11-03 16:39:48 +00:00
< ul >
< li > You'll no longer be able to access Burgernotes, and all of your notes.< / li >
< li > You may download your notes before November 12, 2023.< / li >
2023-11-03 18:35:49 +00:00
< li > Your data will be permanently deleted after November 12, 2023.< / li >
2023-11-03 16:39:48 +00:00
< li > Third-party instances will be unaffected, but will likely no longer be maintained.< / li >
2023-11-03 18:35:49 +00:00
< li > As of November 3, 2023, you may no longer create a new Burgernotes account.< / li >
2023-11-03 18:10:36 +00:00
< li > If you still want to use Burgernotes after the discontinuation date, use the < a href = "https://notes.hectabit.org/" > Hectabit.org< / a > instance, by Tracker-Friendly.< / li >
2023-11-03 16:39:48 +00:00
< / ul >
2023-11-03 18:35:49 +00:00
< h2 class = "w300" > Downloading your notes< / h3 >
You may download your notes until November 12th. To do this:
2023-11-03 16:39:48 +00:00
< ul >
< li > Open Burgernotes< / li >
< li > Open the settings menu< / li >
< li > Press "export notes"< / li >
< / ul >
Your notes will be saved to a JSON file.
2023-11-03 18:35:49 +00:00
< h2 class = "w300" > Alternatives< / h3 >
Like Burgernotes - all the alternatives listed below are free software
2023-11-03 16:39:48 +00:00
< ul >
2023-11-03 18:35:49 +00:00
< li > Standard Notes - very similar to Burgernotes< / li >
< li > Joplin - A pretty powerful note taking app< / li >
2023-11-03 16:39:48 +00:00
< / ul >
2023-11-03 18:35:49 +00:00
< h2 class = "w300" > Special thanks< / h3 >
Special thanks to all of these amazing people that made Burgernotes possible:
2023-11-03 16:39:48 +00:00
< ul >
< li > hippoz< / li >
< li > ctapak< / li >
< li > Mollomm1< / li >
< li > Tracker-Friendly< / li >
< li > Karimrir< / li >
< li > Pandarose< / li >
< li > Neptune< / li >
< li class = "hidden" id = "youThing" > < / li >
< / ul >
< / body >
< style >
body {
margin-left: 15px;
2023-11-03 16:56:29 +00:00
@media (prefers-color-scheme: dark) {
color: white !important;
}
2023-11-03 16:39:48 +00:00
}
< / style >
< script >
fetch("/api/userinfo", {
method: "POST",
body: JSON.stringify({
secretKey: localStorage.getItem("DONOTSHARE-secretkey")
}),
headers: {
"Content-type": "application/json; charset=UTF-8"
}
})
.then((response) => {
async function doStuff() {
let responseData = await response.json()
2023-11-03 16:54:50 +00:00
if (response.status == 200) {
let youThing = document.getElementById("youThing")
youThing.classList.remove("hidden")
youThing.innerText = "You, " + responseData["username"] + ", for using Burgernotes!"
}
2023-11-03 16:39:48 +00:00
}
doStuff()
})
< / script >
< / html >