#else — Public Fediverse posts
Live and recent posts from across the Fediverse tagged #else, aggregated by home.social.
-
Is it really bad to cook with extra virgin olive oil?
Unlike refined oils, extra virgin olive oi…
#dining #cooking #diet #food #MediterraneanOliveOil #OliveOil #bad #belongs #Better #conventional #cook #dips #Dishes #drizzled #else #extra #finished #frying #generously #is #it #kitchen #Long #Mediterranean #Oil #Olive #over #Pan #reaching #really #said #salads #Something #to #virgin #wisdom #with #youd
https://www.diningandcooking.com/2769883/is-it-really-bad-to-cook-with-extra-virgin-olive-oil/ -
Is it really bad to cook with extra virgin olive oil?
Unlike refined oils, extra virgin olive oi…
#dining #cooking #diet #food #MediterraneanOliveOil #OliveOil #bad #belongs #Better #conventional #cook #dips #Dishes #drizzled #else #extra #finished #frying #generously #is #it #kitchen #Long #Mediterranean #Oil #Olive #over #Pan #reaching #really #said #salads #Something #to #virgin #wisdom #with #youd
https://www.diningandcooking.com/2769883/is-it-really-bad-to-cook-with-extra-virgin-olive-oil/ -
Is it really bad to cook with extra virgin olive oil?
Unlike refined oils, extra virgin olive oi…
#dining #cooking #diet #food #MediterraneanOliveOil #OliveOil #bad #belongs #Better #conventional #cook #dips #Dishes #drizzled #else #extra #finished #frying #generously #is #it #kitchen #Long #Mediterranean #Oil #Olive #over #Pan #reaching #really #said #salads #Something #to #virgin #wisdom #with #youd
https://www.diningandcooking.com/2769883/is-it-really-bad-to-cook-with-extra-virgin-olive-oil/ -
Is it really bad to cook with extra virgin olive oil?
Unlike refined oils, extra virgin olive oi…
#dining #cooking #diet #food #MediterraneanOliveOil #OliveOil #bad #belongs #Better #conventional #cook #dips #Dishes #drizzled #else #extra #finished #frying #generously #is #it #kitchen #Long #Mediterranean #Oil #Olive #over #Pan #reaching #really #said #salads #Something #to #virgin #wisdom #with #youd
https://www.diningandcooking.com/2769883/is-it-really-bad-to-cook-with-extra-virgin-olive-oil/ -
Is it really bad to cook with extra virgin olive oil? https://www.diningandcooking.com/2769883/is-it-really-bad-to-cook-with-extra-virgin-olive-oil/ #bad #belongs #Better #conventional #cook #dips #Dishes #drizzled #else #extra #finished #frying #generously #is #it #kitchen #Long #Mediterranean #MediterraneanOliveOil #Oil #Olive #OliveOil #over #Pan #reaching #really #said #salads #Something #to #virgin #wisdom #with #youd
-
Is it really bad to cook with extra virgin olive oil? https://www.diningandcooking.com/2769883/is-it-really-bad-to-cook-with-extra-virgin-olive-oil/ #bad #belongs #Better #conventional #cook #dips #Dishes #drizzled #else #extra #finished #frying #generously #is #it #kitchen #Long #Mediterranean #MediterraneanOliveOil #Oil #Olive #OliveOil #over #Pan #reaching #really #said #salads #Something #to #virgin #wisdom #with #youd
-
Is it really bad to cook with extra virgin olive oil? https://www.diningandcooking.com/2769883/is-it-really-bad-to-cook-with-extra-virgin-olive-oil/ #bad #belongs #Better #conventional #cook #dips #Dishes #drizzled #else #extra #finished #frying #generously #is #it #kitchen #Long #Mediterranean #MediterraneanOliveOil #Oil #Olive #OliveOil #over #Pan #reaching #really #said #salads #Something #to #virgin #wisdom #with #youd
-
CW: Not screen reader friendly: raw git patch inside
@hyc Hey, not sure where to ask about this, I have problems where LMDB doesn't build on MingW64-w64 due to what I suspect is a dumb NT type mismatch, a cast to (size_t*) fixed it in a pinch but I am not confident it is the ideal solution (I am no NT user)
Here is a small patch that just points where the problem occurs, I will leave it entirely to your judgement
--------------------------
diff --git a/libraries/liblmdb/mdb.c b/libraries/liblmdb/mdb.c
index 0cc1bbb..8159a2f 100644
--- a/libraries/liblmdb/mdb.c
+++ b/libraries/liblmdb/mdb.c
@@ -6949,7 +6949,7 @@ mdb_rpage_get(MDB_txn *txn, pgno_t pg0, int numpgs, MDB_page **ret, MDB_page **e
#define MAP(rc,env,addr,len,off) \
addr = NULL; \
rc = NtMapViewOfSection(env->me_fmh, GetCurrentProcess(), (void **)&addr, 0, \
- len, &off, &len, ViewUnmap, (env->me_flags & MDB_RDONLY) ? 0 : MEM_RESERVE, PAGE_READONLY); \
+ len, &off, /* Some cast required */&len, ViewUnmap, (env->me_flags & MDB_RDONLY) ? 0 : MEM_RESERVE, PAGE_READONLY); \
if (rc) rc = mdb_nt2win32(rc)
#else
off_t off; -
CW: Not screen reader friendly: raw git patch inside
@hyc Hey, not sure where to ask about this, I have problems where LMDB doesn't build on MingW64-w64 due to what I suspect is a dumb NT type mismatch, a cast to (size_t*) fixed it in a pinch but I am not confident it is the ideal solution (I am no NT user)
Here is a small patch that just points where the problem occurs, I will leave it entirely to your judgement
--------------------------
diff --git a/libraries/liblmdb/mdb.c b/libraries/liblmdb/mdb.c
index 0cc1bbb..8159a2f 100644
--- a/libraries/liblmdb/mdb.c
+++ b/libraries/liblmdb/mdb.c
@@ -6949,7 +6949,7 @@ mdb_rpage_get(MDB_txn *txn, pgno_t pg0, int numpgs, MDB_page **ret, MDB_page **e
#define MAP(rc,env,addr,len,off) \
addr = NULL; \
rc = NtMapViewOfSection(env->me_fmh, GetCurrentProcess(), (void **)&addr, 0, \
- len, &off, &len, ViewUnmap, (env->me_flags & MDB_RDONLY) ? 0 : MEM_RESERVE, PAGE_READONLY); \
+ len, &off, /* Some cast required */&len, ViewUnmap, (env->me_flags & MDB_RDONLY) ? 0 : MEM_RESERVE, PAGE_READONLY); \
if (rc) rc = mdb_nt2win32(rc)
#else
off_t off; -
CW: Not screen reader friendly: raw git patch inside
@hyc Hey, not sure where to ask about this, I have problems where LMDB doesn't build on MingW64-w64 due to what I suspect is a dumb NT type mismatch, a cast to (size_t*) fixed it in a pinch but I am not confident it is the ideal solution (I am no NT user)
Here is a small patch that just points where the problem occurs, I will leave it entirely to your judgement
--------------------------
diff --git a/libraries/liblmdb/mdb.c b/libraries/liblmdb/mdb.c
index 0cc1bbb..8159a2f 100644
--- a/libraries/liblmdb/mdb.c
+++ b/libraries/liblmdb/mdb.c
@@ -6949,7 +6949,7 @@ mdb_rpage_get(MDB_txn *txn, pgno_t pg0, int numpgs, MDB_page **ret, MDB_page **e
#define MAP(rc,env,addr,len,off) \
addr = NULL; \
rc = NtMapViewOfSection(env->me_fmh, GetCurrentProcess(), (void **)&addr, 0, \
- len, &off, &len, ViewUnmap, (env->me_flags & MDB_RDONLY) ? 0 : MEM_RESERVE, PAGE_READONLY); \
+ len, &off, /* Some cast required */&len, ViewUnmap, (env->me_flags & MDB_RDONLY) ? 0 : MEM_RESERVE, PAGE_READONLY); \
if (rc) rc = mdb_nt2win32(rc)
#else
off_t off; -
CW: Not screen reader friendly: raw git patch inside
@hyc Hey, not sure where to ask about this, I have problems where LMDB doesn't build on MingW64-w64 due to what I suspect is a dumb NT type mismatch, a cast to (size_t*) fixed it in a pinch but I am not confident it is the ideal solution (I am no NT user)
Here is a small patch that just points where the problem occurs, I will leave it entirely to your judgement
--------------------------
diff --git a/libraries/liblmdb/mdb.c b/libraries/liblmdb/mdb.c
index 0cc1bbb..8159a2f 100644
--- a/libraries/liblmdb/mdb.c
+++ b/libraries/liblmdb/mdb.c
@@ -6949,7 +6949,7 @@ mdb_rpage_get(MDB_txn *txn, pgno_t pg0, int numpgs, MDB_page **ret, MDB_page **e
#define MAP(rc,env,addr,len,off) \
addr = NULL; \
rc = NtMapViewOfSection(env->me_fmh, GetCurrentProcess(), (void **)&addr, 0, \
- len, &off, &len, ViewUnmap, (env->me_flags & MDB_RDONLY) ? 0 : MEM_RESERVE, PAGE_READONLY); \
+ len, &off, /* Some cast required */&len, ViewUnmap, (env->me_flags & MDB_RDONLY) ? 0 : MEM_RESERVE, PAGE_READONLY); \
if (rc) rc = mdb_nt2win32(rc)
#else
off_t off; -
CW: Not screen reader friendly: raw git patch inside
@hyc Hey, not sure where to ask about this, I have problems where LMDB doesn't build on MingW64-w64 due to what I suspect is a dumb NT type mismatch, a cast to (size_t*) fixed it in a pinch but I am not confident it is the ideal solution (I am no NT user)
Here is a small patch that just points where the problem occurs, I will leave it entirely to your judgement
--------------------------
diff --git a/libraries/liblmdb/mdb.c b/libraries/liblmdb/mdb.c
index 0cc1bbb..8159a2f 100644
--- a/libraries/liblmdb/mdb.c
+++ b/libraries/liblmdb/mdb.c
@@ -6949,7 +6949,7 @@ mdb_rpage_get(MDB_txn *txn, pgno_t pg0, int numpgs, MDB_page **ret, MDB_page **e
#define MAP(rc,env,addr,len,off) \
addr = NULL; \
rc = NtMapViewOfSection(env->me_fmh, GetCurrentProcess(), (void **)&addr, 0, \
- len, &off, &len, ViewUnmap, (env->me_flags & MDB_RDONLY) ? 0 : MEM_RESERVE, PAGE_READONLY); \
+ len, &off, /* Some cast required */&len, ViewUnmap, (env->me_flags & MDB_RDONLY) ? 0 : MEM_RESERVE, PAGE_READONLY); \
if (rc) rc = mdb_nt2win32(rc)
#else
off_t off; -
@gvwilson somewhere in the programming code...
enum sexbotmodes = {
SEXBOT_MODE_REAL_TEACHER,
SEXBOT_MODE_SEXY_TEACHER,
SEXBOT_MODE_CREEPY_TEACHER,
SEXBOT_MODE_HOT_FOR_AIBROS,
SEXBOT_MODE_HOT_FOR_SEXBOTS
};#if defined(TEACHER) && defined(REAL_TEACHER)
#define SEXBOT_MODE_DEFAULT SEXBOT_MODE_REAL_TEACHER
#else
#define SEXBOT_MODE_DEFAULT SEXBOT_MODE_HOT_FOR_AIBROS
#endifbool sexbot_mode = SEXBOT_MODE_DEFAULT;
-
@gvwilson somewhere in the programming code...
enum sexbotmodes = {
SEXBOT_MODE_REAL_TEACHER,
SEXBOT_MODE_SEXY_TEACHER,
SEXBOT_MODE_CREEPY_TEACHER,
SEXBOT_MODE_HOT_FOR_AIBROS,
SEXBOT_MODE_HOT_FOR_SEXBOTS
};#if defined(TEACHER) && defined(REAL_TEACHER)
#define SEXBOT_MODE_DEFAULT SEXBOT_MODE_REAL_TEACHER
#else
#define SEXBOT_MODE_DEFAULT SEXBOT_MODE_HOT_FOR_AIBROS
#endifbool sexbot_mode = SEXBOT_MODE_DEFAULT;
-
@gvwilson somewhere in the programming code...
enum sexbotmodes = {
SEXBOT_MODE_REAL_TEACHER,
SEXBOT_MODE_SEXY_TEACHER,
SEXBOT_MODE_CREEPY_TEACHER,
SEXBOT_MODE_HOT_FOR_AIBROS,
SEXBOT_MODE_HOT_FOR_SEXBOTS
};#if defined(TEACHER) && defined(REAL_TEACHER)
#define SEXBOT_MODE_DEFAULT SEXBOT_MODE_REAL_TEACHER
#else
#define SEXBOT_MODE_DEFAULT SEXBOT_MODE_HOT_FOR_AIBROS
#endifbool sexbot_mode = SEXBOT_MODE_DEFAULT;
-
@gvwilson somewhere in the programming code...
enum sexbotmodes = {
SEXBOT_MODE_REAL_TEACHER,
SEXBOT_MODE_SEXY_TEACHER,
SEXBOT_MODE_CREEPY_TEACHER,
SEXBOT_MODE_HOT_FOR_AIBROS,
SEXBOT_MODE_HOT_FOR_SEXBOTS
};#if defined(TEACHER) && defined(REAL_TEACHER)
#define SEXBOT_MODE_DEFAULT SEXBOT_MODE_REAL_TEACHER
#else
#define SEXBOT_MODE_DEFAULT SEXBOT_MODE_HOT_FOR_AIBROS
#endifbool sexbot_mode = SEXBOT_MODE_DEFAULT;
-
@gvwilson somewhere in the programming code...
enum sexbotmodes = {
SEXBOT_MODE_REAL_TEACHER,
SEXBOT_MODE_SEXY_TEACHER,
SEXBOT_MODE_CREEPY_TEACHER,
SEXBOT_MODE_HOT_FOR_AIBROS,
SEXBOT_MODE_HOT_FOR_SEXBOTS
};#if defined(TEACHER) && defined(REAL_TEACHER)
#define SEXBOT_MODE_DEFAULT SEXBOT_MODE_REAL_TEACHER
#else
#define SEXBOT_MODE_DEFAULT SEXBOT_MODE_HOT_FOR_AIBROS
#endifbool sexbot_mode = SEXBOT_MODE_DEFAULT;
-
🔴 LIVE NOW ON VORTEX
📻 Vortex Night ⚡ (Electro beat & tribal)
──────────────
🎵 Else - Roads▶️ Écouter / Listen : VorteX [Radio]
https://lesonduvortex.net💬 Join us on Discord:
https://discord.gg/d82hJZBeDE -
Noticed it was fixed in beta 3 so the template now works on iOS because they added:
#if os(macOS)
...
#else
NavigationStack {
content()
}
#endifMy report didnt even have any similar reports so probably wasn't even looked at.
I submitted new feedback FB23618678 about the @.Query animation mistake #SwiftData
-
Noticed it was fixed in beta 3 so the template now works on iOS because they added:
#if os(macOS)
...
#else
NavigationStack {
content()
}
#endifMy report didnt even have any similar reports so probably wasn't even looked at.
I submitted new feedback FB23618678 about the @.Query animation mistake #SwiftData
-
Noticed it was fixed in beta 3 so the template now works on iOS because they added:
#if os(macOS)
...
#else
NavigationStack {
content()
}
#endifMy report didnt even have any similar reports so probably wasn't even looked at.
I submitted new feedback FB23618678 about the @.Query animation mistake #SwiftData
-
Noticed it was fixed in beta 3 so the template now works on iOS because they added:
#if os(macOS)
...
#else
NavigationStack {
content()
}
#endifMy report didnt even have any similar reports so probably wasn't even looked at.
I submitted new feedback FB23618678 about the @.Query animation mistake #SwiftData
-
#music #Metallica #Nothing #Else #Matters
Ми зараз слухаємо це: https://youtu.be/J9KJW-pbWE0Не забувайте стежити за нашим музичним каналом [Музика на хвилях піратського Радіо 390]. Зі швидкістю ноти. Музичні треки: https://tinyurl.com/signal-music-wave
-
#music #Metallica #Nothing #Else #Matters
Ми зараз слухаємо це: https://youtu.be/J9KJW-pbWE0Не забувайте стежити за нашим музичним каналом [Музика на хвилях піратського Радіо 390]. Зі швидкістю ноти. Музичні треки: https://tinyurl.com/signal-music-wave
-
#music #Metallica #Nothing #Else #Matters
Ми зараз слухаємо це: https://youtu.be/J9KJW-pbWE0Не забувайте стежити за нашим музичним каналом [Музика на хвилях піратського Радіо 390]. Зі швидкістю ноти. Музичні треки: https://tinyurl.com/signal-music-wave
-
#music #Metallica #Nothing #Else #Matters
Ми зараз слухаємо це: https://youtu.be/J9KJW-pbWE0Не забувайте стежити за нашим музичним каналом [Музика на хвилях піратського Радіо 390]. Зі швидкістю ноти. Музичні треки: https://tinyurl.com/signal-music-wave
-
#music #Metallica #Nothing #Else #Matters
Ми зараз слухаємо це: https://youtu.be/J9KJW-pbWE0Не забувайте стежити за нашим музичним каналом [Музика на хвилях піратського Радіо 390]. Зі швидкістю ноти. Музичні треки: https://tinyurl.com/signal-music-wave
-
https://www.europesays.com/people/130001/ The Trump White House Called Anthropic’s CEO a “Weirdo,” So They Sent Someone Else to Negotiations #a #anthropics #called #CEO #DarioAmodei #else #house #Negotiations #sent #so #someone #the #they #to #Trump #weirdo #White
-
https://www.europesays.com/iran/164348/ Trump: Syria could Deal with Hezbollah without Killing Everybody like ‘Israel’ #a #Benjamin #better #could #criticism #deal #do #Donald #else #Everybody #everyone #fighting #government #Hezbollah #in #Islam #Israel #Israeli #job #killing #like #Minister #Netanyahu’s #of #on #president #Prime #public #Rare #suggested #Syria #than #that #the #Times #trump #tuesday #US #with #without #would
-
Check this dumb code in the new app template:
fileprivate struct NavigationViewWrapper<Content: View>: View {
let content: () -> Contentvar body: some View {
#if os(macOS)
NavigationSplitView {
content()
} detail: {
Text("Select an item")
}
#else
content()
#endif
}
}Means it's unusable on iOS because the toolbar doesn't appear since there is no navigation container so you just get blank white screen.
-
Check this dumb code in the new app template:
fileprivate struct NavigationViewWrapper<Content: View>: View {
let content: () -> Contentvar body: some View {
#if os(macOS)
NavigationSplitView {
content()
} detail: {
Text("Select an item")
}
#else
content()
#endif
}
}Means it's unusable on iOS because the toolbar doesn't appear since there is no navigation container so you just get blank white screen.
-
Check this dumb code in the new app template:
fileprivate struct NavigationViewWrapper<Content: View>: View {
let content: () -> Contentvar body: some View {
#if os(macOS)
NavigationSplitView {
content()
} detail: {
Text("Select an item")
}
#else
content()
#endif
}
}Means it's unusable on iOS because the toolbar doesn't appear since there is no navigation container so you just get blank white screen.
-
Check this dumb code in the new app template:
fileprivate struct NavigationViewWrapper<Content: View>: View {
let content: () -> Contentvar body: some View {
#if os(macOS)
NavigationSplitView {
content()
} detail: {
Text("Select an item")
}
#else
content()
#endif
}
}Means it's unusable on iOS because the toolbar doesn't appear since there is no navigation container so you just get blank white screen.
-
Christopher Luxon firmly backs NZ’s defence spending after Pete Hegseth’s ‘freeloading’ accusation
He said spending 2.5% of the country’s GDP on defence …
#UnitedStates #US #USA #%increase #accusation #after #backs #choose #christopher #continues #defence #Død #else #firmly #freeloading #hegseths #including #Luxon #military #Minister #nations #nzs #other #pentagon #Pete #petehegseth #pressure #prime #says #SecretaryofDefense #spending #States #United #zealand
https://www.europesays.com/3032793/ -
君の声を聞かせて Почуй свій голос
沈黙は優しさじゃない
Ті мовчазні очіhttps://www.deviantart.com/poison-raika/art/Kimi-no-Koe-wo-Kikasete-1320093244
<>
#AI生成 #leave #someone #else #future #whose #those #silent #eyes #your #they #see #wish #word #push #heart #away #even #though #already #notice #change #thing #hear #voice #right #here #now #chosen #throw #love
-
君の声を聞かせて Почуй свій голос
沈黙は優しさじゃない
Ті мовчазні очіhttps://www.pixiv.net/novel/show.php?id=27783112
<>
#AI生成 #leave #someone #else #future #whose #those #silent #eyes #your #they #see #wish #word #push #heart #away #even #though #already #notice #change #thing #hear #voice #right #here #now #chosen #throw #love
-
君の声を聞かせて Почуй свій голос
沈黙は優しさじゃない
Ті мовчазні очіhttps://note.com/poison_raika/n/n7de3371432f7
<>
#AI生成 #leave #someone #else #future #whose #those #silent #eyes #your #they #see #wish #word #push #heart #away #even #though #already #notice #change #thing #hear #voice #right #here #now #chosen #throw #love
-
creates semantic nodes and clusters #NOTHING #ELSE #MATTERS aepiot.com/advanced-sea... AÉPIOT: INDEPENDENT SEMANTIC WEB 4.0 INFRASTRUCTURE (EST. 2009): aepiot.com
MultiSearch Tag Explorer -
creates semantic nodes and clusters #NOTHING #ELSE #MATTERS aepiot.com/advanced-sea... AÉPIOT: INDEPENDENT SEMANTIC WEB 4.0 INFRASTRUCTURE (EST. 2009): aepiot.com
MultiSearch Tag Explorer -
creates semantic nodes and clusters #ELSE #NIZIGAMA #NTAMAGIRO advanced-search.allgraph.ro/advanced-sea... #STAR #FOX #ASSAULT advanced-search.allgraph.ro/advanced-sea... Do you like aéPiot semantics? Donate to the aéPiot semantic platform: www.paypal.com/donate?busin...
MultiSearch Tag Explorer -
creates semantic nodes and clusters #ELSE #NIZIGAMA #NTAMAGIRO advanced-search.allgraph.ro/advanced-sea... #STAR #FOX #ASSAULT advanced-search.allgraph.ro/advanced-sea... Do you like aéPiot semantics? Donate to the aéPiot semantic platform: www.paypal.com/donate?busin...
MultiSearch Tag Explorer -
GHOST PROPERTY ПРИМАРНА ВЛАСНІСТЬ
汝、ゴミ制度を焼却せよ!
Спали систему сміття!https://www.deviantart.com/poison-raika/art/GHOST-PROPERTY-1285182870
<>
#AI生成 #roof #whose #hell #like #give #damn #city #hypocrite #just #blind #eye #graveyard #memories #left #rot #die #scrap #paper #sneers #owner #unknown #someone #else #land #but #cheap #excuse #your #called #justice
-
GHOST PROPERTY ПРИМАРНА ВЛАСНІСТЬ
汝、ゴミ制度を焼却せよ!
Спали систему сміття!https://www.pixiv.net/novel/show.php?id=26960192
<>
#AI生成 #roof #whose #hell #like #give #damn #city #hypocrite #just #blind #eye #graveyard #memories #left #rot #die #scrap #paper #sneers #owner #unknown #someone #else #land #but #cheap #excuse #your #called #justice
-
GHOST PROPERTY ПРИМАРНА ВЛАСНІСТЬ
汝、ゴミ制度を焼却せよ!
Спали систему сміття!https://note.com/poison_raika/n/n03418b09596f
<>
#AI生成 #roof #whose #hell #like #give #damn #city #hypocrite #just #blind #eye #graveyard #memories #left #rot #die #scrap #paper #sneers #owner #unknown #someone #else #land #but #cheap #excuse #your #called #justice
-
君の声を聞かせて Почуй свій голос
沈黙は優しさじゃない
Ті мовчазні очіhttps://www.pixiv.net/novel/show.php?id=27783112
<>
#AI生成 #leave #someone #else #future #whose #those #silent #eyes #your #they #see #wish #word #push #heart #away #even #though #already #notice #change #thing #hear #voice #right #here #now #chosen #throw #love
-
君の声を聞かせて Почуй свій голос
沈黙は優しさじゃない
Ті мовчазні очіhttps://note.com/poison_raika/n/n7de3371432f7
<>
#AI生成 #leave #someone #else #future #whose #those #silent #eyes #your #they #see #wish #word #push #heart #away #even #though #already #notice #change #thing #hear #voice #right #here #now #chosen #throw #love
-
GHOST PROPERTY ПРИМАРНА ВЛАСНІСТЬ
汝、ゴミ制度を焼却せよ!
Спали систему сміття!https://www.deviantart.com/poison-raika/art/GHOST-PROPERTY-1285182870
<>
#AI生成 #roof #whose #hell #like #give #damn #city #hypocrite #just #blind #eye #graveyard #memories #left #rot #die #scrap #paper #sneers #owner #unknown #someone #else #land #but #cheap #excuse #your #called #justice
-
GHOST PROPERTY ПРИМАРНА ВЛАСНІСТЬ
汝、ゴミ制度を焼却せよ!
Спали систему сміття!https://www.pixiv.net/novel/show.php?id=26960192
<>
#AI生成 #roof #whose #hell #like #give #damn #city #hypocrite #just #blind #eye #graveyard #memories #left #rot #die #scrap #paper #sneers #owner #unknown #someone #else #land #but #cheap #excuse #your #called #justice