1 |
DENIED
|
ROLE_USER
|
null |
|
Show voter details
|
2 |
DENIED
|
moderate
|
App\Entity\EntryComment {#2489
+user: App\Entity\User {#1452 …}
+entry: Proxies\__CG__\App\Entity\Entry {#1365 …}
+magazine: App\Entity\Magazine {#305
+icon: null
+name: "datahoarder@lemmy.ml"
+title: "datahoarder"
+description: """
**Who are we?**\n
\n
We are digital librarians. Among us are represented the various reasons to keep data – legal requirements, competitive requirements, uncertainty of permanence of cloud services, distaste for transmitting your data externally (e.g. government or corporate espionage), cultural and familial archivists, internet collapse preppers, and people who do it themselves so they’re sure it’s done right. Everyone has their reasons for curating the data they have decided to keep (either forever or For A Damn Long Time). Along the way we have sought out like-minded individuals to exchange strategies, war stories, and cautionary tales of failures.\n
\n
We are one. We are legion. And we’re trying really hard not to forget.\n
\n
– 5-4-3-2-1-bang from [this thread](https://web.archive.org/web/20221111153119/https://old.reddit.com/r/DataHoarder/comments/41tqt4/hi_guys_can_i_kindly_ask_for_an_eli5_of_this/cz53pi0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 58
+entryCommentCount: 311
+postCount: 1
+postCommentCount: 1
+isAdult: false
+customCss: null
+lastActive: DateTime @1729502222 {#313
date: 2024-10-21 11:17:02.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#293 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#289 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#278 …}
+entries: Doctrine\ORM\PersistentCollection {#236 …}
+posts: Doctrine\ORM\PersistentCollection {#194 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#256 …}
+bans: Doctrine\ORM\PersistentCollection {#173 …}
+reports: Doctrine\ORM\PersistentCollection {#159 …}
+badges: Doctrine\ORM\PersistentCollection {#137 …}
+logs: Doctrine\ORM\PersistentCollection {#127 …}
+awards: Doctrine\ORM\PersistentCollection {#116 …}
+categories: Doctrine\ORM\PersistentCollection {#103 …}
-id: 32
+apId: "datahoarder@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/datahoarder"
+apPublicUrl: "https://lemmy.ml/c/datahoarder"
+apFollowersUrl: "https://lemmy.ml/c/datahoarder/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "datahoarder"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729303437 {#314
date: 2024-10-19 04:03:57.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1695727192 {#308
date: 2023-09-26 13:19:52.0 +02:00
}
}
+image: null
+parent: null
+root: null
+body: """
I just spent a bit too much time making this (it was fun), so don’t even tell me if you’re not going to use it.\n
\n
You can open up a desired book’s page, start this first script in the console, and then scroll through the book:\n
\n
```\n
\n
<span style="color:#323232;">let imgs = new Set();\n
</span><span style="color:#323232;">\n
</span><span style="color:#323232;">function cheese() { \n
</span><span style="color:#323232;"> for(let img of document.getElementsByTagName("img")) {\n
</span><span style="color:#323232;"> if(img.parentElement.parentElement.className == "pageImageDisplay") imgs.add(img.attributes["src"].value);\n
</span><span style="color:#323232;"> }\n
</span><span style="color:#323232;">}\n
</span><span style="color:#323232;">\n
</span><span style="color:#323232;">setInterval(cheese, 5);\n
</span>\n
```\n
\n
And once you’re done you may run this script to download each image:\n
\n
```\n
\n
<span style="color:#323232;">function toDataURL(url) {\n
</span><span style="color:#323232;"> return fetch(url).then((response) => {\n
</span><span style="color:#323232;"> return response.blob();\n
</span><span style="color:#323232;"> }).then(blob => {\n
</span><span style="color:#323232;"> return URL.createObjectURL(blob);\n
</span><span style="color:#323232;"> });\n
</span><span style="color:#323232;">}\n
</span><span style="color:#323232;">\n
</span><span style="color:#323232;">async function asd() {\n
</span><span style="color:#323232;"> for(let img of imgs) {\n
</span><span style="color:#323232;"> const a = document.createElement("a");\n
</span><span style="color:#323232;"> a.href = await toDataURL(img);\n
</span><span style="color:#323232;"> let name;\n
</span><span style="color:#323232;"> for(let thing of img.split("&")) {\n
</span><span style="color:#323232;"> if(thing.startsWith("pg=")) {\n
</span><span style="color:#323232;"> name = thing.split("=")[1];\n
</span><span style="color:#323232;"> console.log(name);\n
</span><span style="color:#323232;"> break;\n
</span><span style="color:#323232;"> }\n
</span><span style="color:#323232;"> }\n
</span><span style="color:#323232;"> a.download = name;\n
</span><span style="color:#323232;"> document.body.appendChild(a);\n
</span><span style="color:#323232;"> a.click();\n
</span><span style="color:#323232;"> document.body.removeChild(a);\n
</span><span style="color:#323232;"> }\n
</span><span style="color:#323232;">}\n
</span><span style="color:#323232;">\n
</span><span style="color:#323232;">asd();\n
</span>\n
```\n
\n
Alternatively you may simply run something like this to get the links:\n
\n
```\n
\n
<span style="color:#323232;">for(let img of imgs) {\n
</span><span style="color:#323232;">\tconsole.log(img)\n
</span><span style="color:#323232;">}\n
</span>\n
```\n
\n
There’s stuff you can tweak of course if it don’t quite work for you. Worked fine on me tests.\n
\n
If you notice a page missing, you should be able to just scroll back to it and then download again to get everything. The first script just keeps collecting pages till you refresh the site. Which also means you should refresh once you are done downloading, as it eats CPU for breakfast.\n
\n
Oh and ***NEVER RUN ANY JAVASCRIPT CODE SOMEONE ON THE INTERNET TELLS YOU TO RUN***
"""
+lang: "en"
+isAdult: false
+favouriteCount: 2
+score: 0
+lastActive: DateTime @1729502222 {#1369
date: 2024-10-21 11:17:02.0 +02:00
}
+ip: null
+tags: [
"323232"
]
+mentions: [
"@antonim@lemmy.dbzer0.com"
]
+children: Doctrine\ORM\PersistentCollection {#1378 …}
+nested: Doctrine\ORM\PersistentCollection {#1371 …}
+votes: Doctrine\ORM\PersistentCollection {#2436 …}
+reports: Doctrine\ORM\PersistentCollection {#2446 …}
+favourites: Doctrine\ORM\PersistentCollection {#1938 …}
+notifications: Doctrine\ORM\PersistentCollection {#1444 …}
-id: 30017
-bodyTs: "'1':129 '5':71 'a.click':137 'a.download':133 'a.href':113 'abl':190 'also':217 'altern':141 'asd':103,140 'async':101 'await':114 'back':194 'bit':5 'blob':97,100 'book':34,49 'break':132 'breakfast':232 'chees':55,70 'code':239 'collect':209 'consol':43 'console.log':130,158 'const':109 'cours':167 'cpu':230 'desir':33 'document.body.appendchild':135 'document.body.removechild':138 'document.createelement':111 'document.getelementsbytagname':60 'done':76,225 'download':83,199,226 'eat':229 'even':17 'everyth':203 'fetch':90 'fine':177 'first':39,205 'fun':13 'function':54,86,102 'get':150,202 'go':24 'imag':85 'img':51,58,61,106,108,116,155,157,159 'img.attributes':66 'img.parentelement.parentelement.classname':63 'img.split':123 'imgs.add':65 'internet':243 'javascript':238 'keep':208 'let':50,57,105,117,120,154 'like':147 'link':152 'make':9 'may':78,143 'mean':218 'miss':186 'much':7 'name':118,127,131,134 'never':235 'new':52 'notic':183 'oh':233 'open':30 'page':36,185,210 'pageimagedisplay':64 'pg':126 'quit':172 're':22,75 'refresh':213,221 'respons':93 'response.blob':95 'return':89,94,98 'run':79,145,236,247 'script':40,81,206 'scroll':46,193 'set':53 'setinterv':69 'simpli':144 'site':215 'someon':240 'someth':146 'spent':3 'src':67 'start':37 'stuff':162 'tell':18,244 'test':180 'thing':121 'thing.split':128 'thing.startswith':125 'till':211 'time':8 'todataurl':87,115 'tweak':165 'url':88,91 'url.createobjecturl':99 'use':26 'valu':68 'work':173,176"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemm.ee/comment/3445560"
+editedAt: null
+createdAt: DateTimeImmutable @1694484327 {#1398
date: 2023-09-12 04:05:27.0 +02:00
}
} |
|
Show voter details
|
3 |
DENIED
|
edit
|
App\Entity\EntryComment {#2489
+user: App\Entity\User {#1452 …}
+entry: Proxies\__CG__\App\Entity\Entry {#1365 …}
+magazine: App\Entity\Magazine {#305
+icon: null
+name: "datahoarder@lemmy.ml"
+title: "datahoarder"
+description: """
**Who are we?**\n
\n
We are digital librarians. Among us are represented the various reasons to keep data – legal requirements, competitive requirements, uncertainty of permanence of cloud services, distaste for transmitting your data externally (e.g. government or corporate espionage), cultural and familial archivists, internet collapse preppers, and people who do it themselves so they’re sure it’s done right. Everyone has their reasons for curating the data they have decided to keep (either forever or For A Damn Long Time). Along the way we have sought out like-minded individuals to exchange strategies, war stories, and cautionary tales of failures.\n
\n
We are one. We are legion. And we’re trying really hard not to forget.\n
\n
– 5-4-3-2-1-bang from [this thread](https://web.archive.org/web/20221111153119/https://old.reddit.com/r/DataHoarder/comments/41tqt4/hi_guys_can_i_kindly_ask_for_an_eli5_of_this/cz53pi0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 58
+entryCommentCount: 311
+postCount: 1
+postCommentCount: 1
+isAdult: false
+customCss: null
+lastActive: DateTime @1729502222 {#313
date: 2024-10-21 11:17:02.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#293 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#289 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#278 …}
+entries: Doctrine\ORM\PersistentCollection {#236 …}
+posts: Doctrine\ORM\PersistentCollection {#194 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#256 …}
+bans: Doctrine\ORM\PersistentCollection {#173 …}
+reports: Doctrine\ORM\PersistentCollection {#159 …}
+badges: Doctrine\ORM\PersistentCollection {#137 …}
+logs: Doctrine\ORM\PersistentCollection {#127 …}
+awards: Doctrine\ORM\PersistentCollection {#116 …}
+categories: Doctrine\ORM\PersistentCollection {#103 …}
-id: 32
+apId: "datahoarder@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/datahoarder"
+apPublicUrl: "https://lemmy.ml/c/datahoarder"
+apFollowersUrl: "https://lemmy.ml/c/datahoarder/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "datahoarder"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729303437 {#314
date: 2024-10-19 04:03:57.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1695727192 {#308
date: 2023-09-26 13:19:52.0 +02:00
}
}
+image: null
+parent: null
+root: null
+body: """
I just spent a bit too much time making this (it was fun), so don’t even tell me if you’re not going to use it.\n
\n
You can open up a desired book’s page, start this first script in the console, and then scroll through the book:\n
\n
```\n
\n
<span style="color:#323232;">let imgs = new Set();\n
</span><span style="color:#323232;">\n
</span><span style="color:#323232;">function cheese() { \n
</span><span style="color:#323232;"> for(let img of document.getElementsByTagName("img")) {\n
</span><span style="color:#323232;"> if(img.parentElement.parentElement.className == "pageImageDisplay") imgs.add(img.attributes["src"].value);\n
</span><span style="color:#323232;"> }\n
</span><span style="color:#323232;">}\n
</span><span style="color:#323232;">\n
</span><span style="color:#323232;">setInterval(cheese, 5);\n
</span>\n
```\n
\n
And once you’re done you may run this script to download each image:\n
\n
```\n
\n
<span style="color:#323232;">function toDataURL(url) {\n
</span><span style="color:#323232;"> return fetch(url).then((response) => {\n
</span><span style="color:#323232;"> return response.blob();\n
</span><span style="color:#323232;"> }).then(blob => {\n
</span><span style="color:#323232;"> return URL.createObjectURL(blob);\n
</span><span style="color:#323232;"> });\n
</span><span style="color:#323232;">}\n
</span><span style="color:#323232;">\n
</span><span style="color:#323232;">async function asd() {\n
</span><span style="color:#323232;"> for(let img of imgs) {\n
</span><span style="color:#323232;"> const a = document.createElement("a");\n
</span><span style="color:#323232;"> a.href = await toDataURL(img);\n
</span><span style="color:#323232;"> let name;\n
</span><span style="color:#323232;"> for(let thing of img.split("&")) {\n
</span><span style="color:#323232;"> if(thing.startsWith("pg=")) {\n
</span><span style="color:#323232;"> name = thing.split("=")[1];\n
</span><span style="color:#323232;"> console.log(name);\n
</span><span style="color:#323232;"> break;\n
</span><span style="color:#323232;"> }\n
</span><span style="color:#323232;"> }\n
</span><span style="color:#323232;"> a.download = name;\n
</span><span style="color:#323232;"> document.body.appendChild(a);\n
</span><span style="color:#323232;"> a.click();\n
</span><span style="color:#323232;"> document.body.removeChild(a);\n
</span><span style="color:#323232;"> }\n
</span><span style="color:#323232;">}\n
</span><span style="color:#323232;">\n
</span><span style="color:#323232;">asd();\n
</span>\n
```\n
\n
Alternatively you may simply run something like this to get the links:\n
\n
```\n
\n
<span style="color:#323232;">for(let img of imgs) {\n
</span><span style="color:#323232;">\tconsole.log(img)\n
</span><span style="color:#323232;">}\n
</span>\n
```\n
\n
There’s stuff you can tweak of course if it don’t quite work for you. Worked fine on me tests.\n
\n
If you notice a page missing, you should be able to just scroll back to it and then download again to get everything. The first script just keeps collecting pages till you refresh the site. Which also means you should refresh once you are done downloading, as it eats CPU for breakfast.\n
\n
Oh and ***NEVER RUN ANY JAVASCRIPT CODE SOMEONE ON THE INTERNET TELLS YOU TO RUN***
"""
+lang: "en"
+isAdult: false
+favouriteCount: 2
+score: 0
+lastActive: DateTime @1729502222 {#1369
date: 2024-10-21 11:17:02.0 +02:00
}
+ip: null
+tags: [
"323232"
]
+mentions: [
"@antonim@lemmy.dbzer0.com"
]
+children: Doctrine\ORM\PersistentCollection {#1378 …}
+nested: Doctrine\ORM\PersistentCollection {#1371 …}
+votes: Doctrine\ORM\PersistentCollection {#2436 …}
+reports: Doctrine\ORM\PersistentCollection {#2446 …}
+favourites: Doctrine\ORM\PersistentCollection {#1938 …}
+notifications: Doctrine\ORM\PersistentCollection {#1444 …}
-id: 30017
-bodyTs: "'1':129 '5':71 'a.click':137 'a.download':133 'a.href':113 'abl':190 'also':217 'altern':141 'asd':103,140 'async':101 'await':114 'back':194 'bit':5 'blob':97,100 'book':34,49 'break':132 'breakfast':232 'chees':55,70 'code':239 'collect':209 'consol':43 'console.log':130,158 'const':109 'cours':167 'cpu':230 'desir':33 'document.body.appendchild':135 'document.body.removechild':138 'document.createelement':111 'document.getelementsbytagname':60 'done':76,225 'download':83,199,226 'eat':229 'even':17 'everyth':203 'fetch':90 'fine':177 'first':39,205 'fun':13 'function':54,86,102 'get':150,202 'go':24 'imag':85 'img':51,58,61,106,108,116,155,157,159 'img.attributes':66 'img.parentelement.parentelement.classname':63 'img.split':123 'imgs.add':65 'internet':243 'javascript':238 'keep':208 'let':50,57,105,117,120,154 'like':147 'link':152 'make':9 'may':78,143 'mean':218 'miss':186 'much':7 'name':118,127,131,134 'never':235 'new':52 'notic':183 'oh':233 'open':30 'page':36,185,210 'pageimagedisplay':64 'pg':126 'quit':172 're':22,75 'refresh':213,221 'respons':93 'response.blob':95 'return':89,94,98 'run':79,145,236,247 'script':40,81,206 'scroll':46,193 'set':53 'setinterv':69 'simpli':144 'site':215 'someon':240 'someth':146 'spent':3 'src':67 'start':37 'stuff':162 'tell':18,244 'test':180 'thing':121 'thing.split':128 'thing.startswith':125 'till':211 'time':8 'todataurl':87,115 'tweak':165 'url':88,91 'url.createobjecturl':99 'use':26 'valu':68 'work':173,176"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemm.ee/comment/3445560"
+editedAt: null
+createdAt: DateTimeImmutable @1694484327 {#1398
date: 2023-09-12 04:05:27.0 +02:00
}
} |
|
Show voter details
|
4 |
DENIED
|
moderate
|
App\Entity\EntryComment {#2489
+user: App\Entity\User {#1452 …}
+entry: Proxies\__CG__\App\Entity\Entry {#1365 …}
+magazine: App\Entity\Magazine {#305
+icon: null
+name: "datahoarder@lemmy.ml"
+title: "datahoarder"
+description: """
**Who are we?**\n
\n
We are digital librarians. Among us are represented the various reasons to keep data – legal requirements, competitive requirements, uncertainty of permanence of cloud services, distaste for transmitting your data externally (e.g. government or corporate espionage), cultural and familial archivists, internet collapse preppers, and people who do it themselves so they’re sure it’s done right. Everyone has their reasons for curating the data they have decided to keep (either forever or For A Damn Long Time). Along the way we have sought out like-minded individuals to exchange strategies, war stories, and cautionary tales of failures.\n
\n
We are one. We are legion. And we’re trying really hard not to forget.\n
\n
– 5-4-3-2-1-bang from [this thread](https://web.archive.org/web/20221111153119/https://old.reddit.com/r/DataHoarder/comments/41tqt4/hi_guys_can_i_kindly_ask_for_an_eli5_of_this/cz53pi0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 58
+entryCommentCount: 311
+postCount: 1
+postCommentCount: 1
+isAdult: false
+customCss: null
+lastActive: DateTime @1729502222 {#313
date: 2024-10-21 11:17:02.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#293 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#289 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#278 …}
+entries: Doctrine\ORM\PersistentCollection {#236 …}
+posts: Doctrine\ORM\PersistentCollection {#194 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#256 …}
+bans: Doctrine\ORM\PersistentCollection {#173 …}
+reports: Doctrine\ORM\PersistentCollection {#159 …}
+badges: Doctrine\ORM\PersistentCollection {#137 …}
+logs: Doctrine\ORM\PersistentCollection {#127 …}
+awards: Doctrine\ORM\PersistentCollection {#116 …}
+categories: Doctrine\ORM\PersistentCollection {#103 …}
-id: 32
+apId: "datahoarder@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/datahoarder"
+apPublicUrl: "https://lemmy.ml/c/datahoarder"
+apFollowersUrl: "https://lemmy.ml/c/datahoarder/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "datahoarder"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729303437 {#314
date: 2024-10-19 04:03:57.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1695727192 {#308
date: 2023-09-26 13:19:52.0 +02:00
}
}
+image: null
+parent: null
+root: null
+body: """
I just spent a bit too much time making this (it was fun), so don’t even tell me if you’re not going to use it.\n
\n
You can open up a desired book’s page, start this first script in the console, and then scroll through the book:\n
\n
```\n
\n
<span style="color:#323232;">let imgs = new Set();\n
</span><span style="color:#323232;">\n
</span><span style="color:#323232;">function cheese() { \n
</span><span style="color:#323232;"> for(let img of document.getElementsByTagName("img")) {\n
</span><span style="color:#323232;"> if(img.parentElement.parentElement.className == "pageImageDisplay") imgs.add(img.attributes["src"].value);\n
</span><span style="color:#323232;"> }\n
</span><span style="color:#323232;">}\n
</span><span style="color:#323232;">\n
</span><span style="color:#323232;">setInterval(cheese, 5);\n
</span>\n
```\n
\n
And once you’re done you may run this script to download each image:\n
\n
```\n
\n
<span style="color:#323232;">function toDataURL(url) {\n
</span><span style="color:#323232;"> return fetch(url).then((response) => {\n
</span><span style="color:#323232;"> return response.blob();\n
</span><span style="color:#323232;"> }).then(blob => {\n
</span><span style="color:#323232;"> return URL.createObjectURL(blob);\n
</span><span style="color:#323232;"> });\n
</span><span style="color:#323232;">}\n
</span><span style="color:#323232;">\n
</span><span style="color:#323232;">async function asd() {\n
</span><span style="color:#323232;"> for(let img of imgs) {\n
</span><span style="color:#323232;"> const a = document.createElement("a");\n
</span><span style="color:#323232;"> a.href = await toDataURL(img);\n
</span><span style="color:#323232;"> let name;\n
</span><span style="color:#323232;"> for(let thing of img.split("&")) {\n
</span><span style="color:#323232;"> if(thing.startsWith("pg=")) {\n
</span><span style="color:#323232;"> name = thing.split("=")[1];\n
</span><span style="color:#323232;"> console.log(name);\n
</span><span style="color:#323232;"> break;\n
</span><span style="color:#323232;"> }\n
</span><span style="color:#323232;"> }\n
</span><span style="color:#323232;"> a.download = name;\n
</span><span style="color:#323232;"> document.body.appendChild(a);\n
</span><span style="color:#323232;"> a.click();\n
</span><span style="color:#323232;"> document.body.removeChild(a);\n
</span><span style="color:#323232;"> }\n
</span><span style="color:#323232;">}\n
</span><span style="color:#323232;">\n
</span><span style="color:#323232;">asd();\n
</span>\n
```\n
\n
Alternatively you may simply run something like this to get the links:\n
\n
```\n
\n
<span style="color:#323232;">for(let img of imgs) {\n
</span><span style="color:#323232;">\tconsole.log(img)\n
</span><span style="color:#323232;">}\n
</span>\n
```\n
\n
There’s stuff you can tweak of course if it don’t quite work for you. Worked fine on me tests.\n
\n
If you notice a page missing, you should be able to just scroll back to it and then download again to get everything. The first script just keeps collecting pages till you refresh the site. Which also means you should refresh once you are done downloading, as it eats CPU for breakfast.\n
\n
Oh and ***NEVER RUN ANY JAVASCRIPT CODE SOMEONE ON THE INTERNET TELLS YOU TO RUN***
"""
+lang: "en"
+isAdult: false
+favouriteCount: 2
+score: 0
+lastActive: DateTime @1729502222 {#1369
date: 2024-10-21 11:17:02.0 +02:00
}
+ip: null
+tags: [
"323232"
]
+mentions: [
"@antonim@lemmy.dbzer0.com"
]
+children: Doctrine\ORM\PersistentCollection {#1378 …}
+nested: Doctrine\ORM\PersistentCollection {#1371 …}
+votes: Doctrine\ORM\PersistentCollection {#2436 …}
+reports: Doctrine\ORM\PersistentCollection {#2446 …}
+favourites: Doctrine\ORM\PersistentCollection {#1938 …}
+notifications: Doctrine\ORM\PersistentCollection {#1444 …}
-id: 30017
-bodyTs: "'1':129 '5':71 'a.click':137 'a.download':133 'a.href':113 'abl':190 'also':217 'altern':141 'asd':103,140 'async':101 'await':114 'back':194 'bit':5 'blob':97,100 'book':34,49 'break':132 'breakfast':232 'chees':55,70 'code':239 'collect':209 'consol':43 'console.log':130,158 'const':109 'cours':167 'cpu':230 'desir':33 'document.body.appendchild':135 'document.body.removechild':138 'document.createelement':111 'document.getelementsbytagname':60 'done':76,225 'download':83,199,226 'eat':229 'even':17 'everyth':203 'fetch':90 'fine':177 'first':39,205 'fun':13 'function':54,86,102 'get':150,202 'go':24 'imag':85 'img':51,58,61,106,108,116,155,157,159 'img.attributes':66 'img.parentelement.parentelement.classname':63 'img.split':123 'imgs.add':65 'internet':243 'javascript':238 'keep':208 'let':50,57,105,117,120,154 'like':147 'link':152 'make':9 'may':78,143 'mean':218 'miss':186 'much':7 'name':118,127,131,134 'never':235 'new':52 'notic':183 'oh':233 'open':30 'page':36,185,210 'pageimagedisplay':64 'pg':126 'quit':172 're':22,75 'refresh':213,221 'respons':93 'response.blob':95 'return':89,94,98 'run':79,145,236,247 'script':40,81,206 'scroll':46,193 'set':53 'setinterv':69 'simpli':144 'site':215 'someon':240 'someth':146 'spent':3 'src':67 'start':37 'stuff':162 'tell':18,244 'test':180 'thing':121 'thing.split':128 'thing.startswith':125 'till':211 'time':8 'todataurl':87,115 'tweak':165 'url':88,91 'url.createobjecturl':99 'use':26 'valu':68 'work':173,176"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemm.ee/comment/3445560"
+editedAt: null
+createdAt: DateTimeImmutable @1694484327 {#1398
date: 2023-09-12 04:05:27.0 +02:00
}
} |
|
Show voter details
|
5 |
DENIED
|
ROLE_USER
|
null |
|
Show voter details
|
6 |
DENIED
|
moderate
|
App\Entity\EntryComment {#3008
+user: Proxies\__CG__\App\Entity\User {#3091 …}
+entry: Proxies\__CG__\App\Entity\Entry {#1365 …}
+magazine: App\Entity\Magazine {#305
+icon: null
+name: "datahoarder@lemmy.ml"
+title: "datahoarder"
+description: """
**Who are we?**\n
\n
We are digital librarians. Among us are represented the various reasons to keep data – legal requirements, competitive requirements, uncertainty of permanence of cloud services, distaste for transmitting your data externally (e.g. government or corporate espionage), cultural and familial archivists, internet collapse preppers, and people who do it themselves so they’re sure it’s done right. Everyone has their reasons for curating the data they have decided to keep (either forever or For A Damn Long Time). Along the way we have sought out like-minded individuals to exchange strategies, war stories, and cautionary tales of failures.\n
\n
We are one. We are legion. And we’re trying really hard not to forget.\n
\n
– 5-4-3-2-1-bang from [this thread](https://web.archive.org/web/20221111153119/https://old.reddit.com/r/DataHoarder/comments/41tqt4/hi_guys_can_i_kindly_ask_for_an_eli5_of_this/cz53pi0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 58
+entryCommentCount: 311
+postCount: 1
+postCommentCount: 1
+isAdult: false
+customCss: null
+lastActive: DateTime @1729502222 {#313
date: 2024-10-21 11:17:02.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#293 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#289 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#278 …}
+entries: Doctrine\ORM\PersistentCollection {#236 …}
+posts: Doctrine\ORM\PersistentCollection {#194 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#256 …}
+bans: Doctrine\ORM\PersistentCollection {#173 …}
+reports: Doctrine\ORM\PersistentCollection {#159 …}
+badges: Doctrine\ORM\PersistentCollection {#137 …}
+logs: Doctrine\ORM\PersistentCollection {#127 …}
+awards: Doctrine\ORM\PersistentCollection {#116 …}
+categories: Doctrine\ORM\PersistentCollection {#103 …}
-id: 32
+apId: "datahoarder@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/datahoarder"
+apPublicUrl: "https://lemmy.ml/c/datahoarder"
+apFollowersUrl: "https://lemmy.ml/c/datahoarder/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "datahoarder"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729303437 {#314
date: 2024-10-19 04:03:57.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1695727192 {#308
date: 2023-09-26 13:19:52.0 +02:00
}
}
+image: null
+parent: App\Entity\EntryComment {#2489
+user: App\Entity\User {#1452 …}
+entry: Proxies\__CG__\App\Entity\Entry {#1365 …}
+magazine: App\Entity\Magazine {#305}
+image: null
+parent: null
+root: null
+body: """
I just spent a bit too much time making this (it was fun), so don’t even tell me if you’re not going to use it.\n
\n
You can open up a desired book’s page, start this first script in the console, and then scroll through the book:\n
\n
```\n
\n
<span style="color:#323232;">let imgs = new Set();\n
</span><span style="color:#323232;">\n
</span><span style="color:#323232;">function cheese() { \n
</span><span style="color:#323232;"> for(let img of document.getElementsByTagName("img")) {\n
</span><span style="color:#323232;"> if(img.parentElement.parentElement.className == "pageImageDisplay") imgs.add(img.attributes["src"].value);\n
</span><span style="color:#323232;"> }\n
</span><span style="color:#323232;">}\n
</span><span style="color:#323232;">\n
</span><span style="color:#323232;">setInterval(cheese, 5);\n
</span>\n
```\n
\n
And once you’re done you may run this script to download each image:\n
\n
```\n
\n
<span style="color:#323232;">function toDataURL(url) {\n
</span><span style="color:#323232;"> return fetch(url).then((response) => {\n
</span><span style="color:#323232;"> return response.blob();\n
</span><span style="color:#323232;"> }).then(blob => {\n
</span><span style="color:#323232;"> return URL.createObjectURL(blob);\n
</span><span style="color:#323232;"> });\n
</span><span style="color:#323232;">}\n
</span><span style="color:#323232;">\n
</span><span style="color:#323232;">async function asd() {\n
</span><span style="color:#323232;"> for(let img of imgs) {\n
</span><span style="color:#323232;"> const a = document.createElement("a");\n
</span><span style="color:#323232;"> a.href = await toDataURL(img);\n
</span><span style="color:#323232;"> let name;\n
</span><span style="color:#323232;"> for(let thing of img.split("&")) {\n
</span><span style="color:#323232;"> if(thing.startsWith("pg=")) {\n
</span><span style="color:#323232;"> name = thing.split("=")[1];\n
</span><span style="color:#323232;"> console.log(name);\n
</span><span style="color:#323232;"> break;\n
</span><span style="color:#323232;"> }\n
</span><span style="color:#323232;"> }\n
</span><span style="color:#323232;"> a.download = name;\n
</span><span style="color:#323232;"> document.body.appendChild(a);\n
</span><span style="color:#323232;"> a.click();\n
</span><span style="color:#323232;"> document.body.removeChild(a);\n
</span><span style="color:#323232;"> }\n
</span><span style="color:#323232;">}\n
</span><span style="color:#323232;">\n
</span><span style="color:#323232;">asd();\n
</span>\n
```\n
\n
Alternatively you may simply run something like this to get the links:\n
\n
```\n
\n
<span style="color:#323232;">for(let img of imgs) {\n
</span><span style="color:#323232;">\tconsole.log(img)\n
</span><span style="color:#323232;">}\n
</span>\n
```\n
\n
There’s stuff you can tweak of course if it don’t quite work for you. Worked fine on me tests.\n
\n
If you notice a page missing, you should be able to just scroll back to it and then download again to get everything. The first script just keeps collecting pages till you refresh the site. Which also means you should refresh once you are done downloading, as it eats CPU for breakfast.\n
\n
Oh and ***NEVER RUN ANY JAVASCRIPT CODE SOMEONE ON THE INTERNET TELLS YOU TO RUN***
"""
+lang: "en"
+isAdult: false
+favouriteCount: 2
+score: 0
+lastActive: DateTime @1729502222 {#1369
date: 2024-10-21 11:17:02.0 +02:00
}
+ip: null
+tags: [
"323232"
]
+mentions: [
"@antonim@lemmy.dbzer0.com"
]
+children: Doctrine\ORM\PersistentCollection {#1378 …}
+nested: Doctrine\ORM\PersistentCollection {#1371 …}
+votes: Doctrine\ORM\PersistentCollection {#2436 …}
+reports: Doctrine\ORM\PersistentCollection {#2446 …}
+favourites: Doctrine\ORM\PersistentCollection {#1938 …}
+notifications: Doctrine\ORM\PersistentCollection {#1444 …}
-id: 30017
-bodyTs: "'1':129 '5':71 'a.click':137 'a.download':133 'a.href':113 'abl':190 'also':217 'altern':141 'asd':103,140 'async':101 'await':114 'back':194 'bit':5 'blob':97,100 'book':34,49 'break':132 'breakfast':232 'chees':55,70 'code':239 'collect':209 'consol':43 'console.log':130,158 'const':109 'cours':167 'cpu':230 'desir':33 'document.body.appendchild':135 'document.body.removechild':138 'document.createelement':111 'document.getelementsbytagname':60 'done':76,225 'download':83,199,226 'eat':229 'even':17 'everyth':203 'fetch':90 'fine':177 'first':39,205 'fun':13 'function':54,86,102 'get':150,202 'go':24 'imag':85 'img':51,58,61,106,108,116,155,157,159 'img.attributes':66 'img.parentelement.parentelement.classname':63 'img.split':123 'imgs.add':65 'internet':243 'javascript':238 'keep':208 'let':50,57,105,117,120,154 'like':147 'link':152 'make':9 'may':78,143 'mean':218 'miss':186 'much':7 'name':118,127,131,134 'never':235 'new':52 'notic':183 'oh':233 'open':30 'page':36,185,210 'pageimagedisplay':64 'pg':126 'quit':172 're':22,75 'refresh':213,221 'respons':93 'response.blob':95 'return':89,94,98 'run':79,145,236,247 'script':40,81,206 'scroll':46,193 'set':53 'setinterv':69 'simpli':144 'site':215 'someon':240 'someth':146 'spent':3 'src':67 'start':37 'stuff':162 'tell':18,244 'test':180 'thing':121 'thing.split':128 'thing.startswith':125 'till':211 'time':8 'todataurl':87,115 'tweak':165 'url':88,91 'url.createobjecturl':99 'use':26 'valu':68 'work':173,176"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemm.ee/comment/3445560"
+editedAt: null
+createdAt: DateTimeImmutable @1694484327 {#1398
date: 2023-09-12 04:05:27.0 +02:00
}
}
+root: App\Entity\EntryComment {#2489}
+body: """
Well, I may be technologically semi-literate and I may have felt a bit dizzy when I saw actual code in your comment, but I sure as hell will find a way to put it to use, no matter the cost.\n
\n
You’re terrific, man. No idea what else to say.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 1
+score: 0
+lastActive: DateTime @1694533159 {#3009
date: 2023-09-12 17:39:19.0 +02:00
}
+ip: null
+tags: null
+mentions: [
"@antonim@lemmy.dbzer0.com"
"@bela@lemm.ee"
]
+children: Doctrine\ORM\PersistentCollection {#3090 …}
+nested: Doctrine\ORM\PersistentCollection {#3088 …}
+votes: Doctrine\ORM\PersistentCollection {#3086 …}
+reports: Doctrine\ORM\PersistentCollection {#3084 …}
+favourites: Doctrine\ORM\PersistentCollection {#3082 …}
+notifications: Doctrine\ORM\PersistentCollection {#3080 …}
-id: 351202
-bodyTs: "'actual':20 'bit':15 'code':21 'comment':24 'cost':42 'dizzi':16 'els':50 'felt':13 'find':31 'hell':29 'idea':48 'liter':8 'man':46 'matter':40 'may':3,11 'put':35 're':44 'saw':19 'say':52 'semi':7 'semi-liter':6 'sure':27 'technolog':5 'terrif':45 'use':38 'way':33 'well':1"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.dbzer0.com/comment/2975607"
+editedAt: null
+createdAt: DateTimeImmutable @1694533159 {#3012
date: 2023-09-12 17:39:19.0 +02:00
}
} |
|
Show voter details
|
7 |
DENIED
|
edit
|
App\Entity\EntryComment {#3008
+user: Proxies\__CG__\App\Entity\User {#3091 …}
+entry: Proxies\__CG__\App\Entity\Entry {#1365 …}
+magazine: App\Entity\Magazine {#305
+icon: null
+name: "datahoarder@lemmy.ml"
+title: "datahoarder"
+description: """
**Who are we?**\n
\n
We are digital librarians. Among us are represented the various reasons to keep data – legal requirements, competitive requirements, uncertainty of permanence of cloud services, distaste for transmitting your data externally (e.g. government or corporate espionage), cultural and familial archivists, internet collapse preppers, and people who do it themselves so they’re sure it’s done right. Everyone has their reasons for curating the data they have decided to keep (either forever or For A Damn Long Time). Along the way we have sought out like-minded individuals to exchange strategies, war stories, and cautionary tales of failures.\n
\n
We are one. We are legion. And we’re trying really hard not to forget.\n
\n
– 5-4-3-2-1-bang from [this thread](https://web.archive.org/web/20221111153119/https://old.reddit.com/r/DataHoarder/comments/41tqt4/hi_guys_can_i_kindly_ask_for_an_eli5_of_this/cz53pi0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 58
+entryCommentCount: 311
+postCount: 1
+postCommentCount: 1
+isAdult: false
+customCss: null
+lastActive: DateTime @1729502222 {#313
date: 2024-10-21 11:17:02.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#293 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#289 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#278 …}
+entries: Doctrine\ORM\PersistentCollection {#236 …}
+posts: Doctrine\ORM\PersistentCollection {#194 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#256 …}
+bans: Doctrine\ORM\PersistentCollection {#173 …}
+reports: Doctrine\ORM\PersistentCollection {#159 …}
+badges: Doctrine\ORM\PersistentCollection {#137 …}
+logs: Doctrine\ORM\PersistentCollection {#127 …}
+awards: Doctrine\ORM\PersistentCollection {#116 …}
+categories: Doctrine\ORM\PersistentCollection {#103 …}
-id: 32
+apId: "datahoarder@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/datahoarder"
+apPublicUrl: "https://lemmy.ml/c/datahoarder"
+apFollowersUrl: "https://lemmy.ml/c/datahoarder/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "datahoarder"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729303437 {#314
date: 2024-10-19 04:03:57.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1695727192 {#308
date: 2023-09-26 13:19:52.0 +02:00
}
}
+image: null
+parent: App\Entity\EntryComment {#2489
+user: App\Entity\User {#1452 …}
+entry: Proxies\__CG__\App\Entity\Entry {#1365 …}
+magazine: App\Entity\Magazine {#305}
+image: null
+parent: null
+root: null
+body: """
I just spent a bit too much time making this (it was fun), so don’t even tell me if you’re not going to use it.\n
\n
You can open up a desired book’s page, start this first script in the console, and then scroll through the book:\n
\n
```\n
\n
<span style="color:#323232;">let imgs = new Set();\n
</span><span style="color:#323232;">\n
</span><span style="color:#323232;">function cheese() { \n
</span><span style="color:#323232;"> for(let img of document.getElementsByTagName("img")) {\n
</span><span style="color:#323232;"> if(img.parentElement.parentElement.className == "pageImageDisplay") imgs.add(img.attributes["src"].value);\n
</span><span style="color:#323232;"> }\n
</span><span style="color:#323232;">}\n
</span><span style="color:#323232;">\n
</span><span style="color:#323232;">setInterval(cheese, 5);\n
</span>\n
```\n
\n
And once you’re done you may run this script to download each image:\n
\n
```\n
\n
<span style="color:#323232;">function toDataURL(url) {\n
</span><span style="color:#323232;"> return fetch(url).then((response) => {\n
</span><span style="color:#323232;"> return response.blob();\n
</span><span style="color:#323232;"> }).then(blob => {\n
</span><span style="color:#323232;"> return URL.createObjectURL(blob);\n
</span><span style="color:#323232;"> });\n
</span><span style="color:#323232;">}\n
</span><span style="color:#323232;">\n
</span><span style="color:#323232;">async function asd() {\n
</span><span style="color:#323232;"> for(let img of imgs) {\n
</span><span style="color:#323232;"> const a = document.createElement("a");\n
</span><span style="color:#323232;"> a.href = await toDataURL(img);\n
</span><span style="color:#323232;"> let name;\n
</span><span style="color:#323232;"> for(let thing of img.split("&")) {\n
</span><span style="color:#323232;"> if(thing.startsWith("pg=")) {\n
</span><span style="color:#323232;"> name = thing.split("=")[1];\n
</span><span style="color:#323232;"> console.log(name);\n
</span><span style="color:#323232;"> break;\n
</span><span style="color:#323232;"> }\n
</span><span style="color:#323232;"> }\n
</span><span style="color:#323232;"> a.download = name;\n
</span><span style="color:#323232;"> document.body.appendChild(a);\n
</span><span style="color:#323232;"> a.click();\n
</span><span style="color:#323232;"> document.body.removeChild(a);\n
</span><span style="color:#323232;"> }\n
</span><span style="color:#323232;">}\n
</span><span style="color:#323232;">\n
</span><span style="color:#323232;">asd();\n
</span>\n
```\n
\n
Alternatively you may simply run something like this to get the links:\n
\n
```\n
\n
<span style="color:#323232;">for(let img of imgs) {\n
</span><span style="color:#323232;">\tconsole.log(img)\n
</span><span style="color:#323232;">}\n
</span>\n
```\n
\n
There’s stuff you can tweak of course if it don’t quite work for you. Worked fine on me tests.\n
\n
If you notice a page missing, you should be able to just scroll back to it and then download again to get everything. The first script just keeps collecting pages till you refresh the site. Which also means you should refresh once you are done downloading, as it eats CPU for breakfast.\n
\n
Oh and ***NEVER RUN ANY JAVASCRIPT CODE SOMEONE ON THE INTERNET TELLS YOU TO RUN***
"""
+lang: "en"
+isAdult: false
+favouriteCount: 2
+score: 0
+lastActive: DateTime @1729502222 {#1369
date: 2024-10-21 11:17:02.0 +02:00
}
+ip: null
+tags: [
"323232"
]
+mentions: [
"@antonim@lemmy.dbzer0.com"
]
+children: Doctrine\ORM\PersistentCollection {#1378 …}
+nested: Doctrine\ORM\PersistentCollection {#1371 …}
+votes: Doctrine\ORM\PersistentCollection {#2436 …}
+reports: Doctrine\ORM\PersistentCollection {#2446 …}
+favourites: Doctrine\ORM\PersistentCollection {#1938 …}
+notifications: Doctrine\ORM\PersistentCollection {#1444 …}
-id: 30017
-bodyTs: "'1':129 '5':71 'a.click':137 'a.download':133 'a.href':113 'abl':190 'also':217 'altern':141 'asd':103,140 'async':101 'await':114 'back':194 'bit':5 'blob':97,100 'book':34,49 'break':132 'breakfast':232 'chees':55,70 'code':239 'collect':209 'consol':43 'console.log':130,158 'const':109 'cours':167 'cpu':230 'desir':33 'document.body.appendchild':135 'document.body.removechild':138 'document.createelement':111 'document.getelementsbytagname':60 'done':76,225 'download':83,199,226 'eat':229 'even':17 'everyth':203 'fetch':90 'fine':177 'first':39,205 'fun':13 'function':54,86,102 'get':150,202 'go':24 'imag':85 'img':51,58,61,106,108,116,155,157,159 'img.attributes':66 'img.parentelement.parentelement.classname':63 'img.split':123 'imgs.add':65 'internet':243 'javascript':238 'keep':208 'let':50,57,105,117,120,154 'like':147 'link':152 'make':9 'may':78,143 'mean':218 'miss':186 'much':7 'name':118,127,131,134 'never':235 'new':52 'notic':183 'oh':233 'open':30 'page':36,185,210 'pageimagedisplay':64 'pg':126 'quit':172 're':22,75 'refresh':213,221 'respons':93 'response.blob':95 'return':89,94,98 'run':79,145,236,247 'script':40,81,206 'scroll':46,193 'set':53 'setinterv':69 'simpli':144 'site':215 'someon':240 'someth':146 'spent':3 'src':67 'start':37 'stuff':162 'tell':18,244 'test':180 'thing':121 'thing.split':128 'thing.startswith':125 'till':211 'time':8 'todataurl':87,115 'tweak':165 'url':88,91 'url.createobjecturl':99 'use':26 'valu':68 'work':173,176"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemm.ee/comment/3445560"
+editedAt: null
+createdAt: DateTimeImmutable @1694484327 {#1398
date: 2023-09-12 04:05:27.0 +02:00
}
}
+root: App\Entity\EntryComment {#2489}
+body: """
Well, I may be technologically semi-literate and I may have felt a bit dizzy when I saw actual code in your comment, but I sure as hell will find a way to put it to use, no matter the cost.\n
\n
You’re terrific, man. No idea what else to say.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 1
+score: 0
+lastActive: DateTime @1694533159 {#3009
date: 2023-09-12 17:39:19.0 +02:00
}
+ip: null
+tags: null
+mentions: [
"@antonim@lemmy.dbzer0.com"
"@bela@lemm.ee"
]
+children: Doctrine\ORM\PersistentCollection {#3090 …}
+nested: Doctrine\ORM\PersistentCollection {#3088 …}
+votes: Doctrine\ORM\PersistentCollection {#3086 …}
+reports: Doctrine\ORM\PersistentCollection {#3084 …}
+favourites: Doctrine\ORM\PersistentCollection {#3082 …}
+notifications: Doctrine\ORM\PersistentCollection {#3080 …}
-id: 351202
-bodyTs: "'actual':20 'bit':15 'code':21 'comment':24 'cost':42 'dizzi':16 'els':50 'felt':13 'find':31 'hell':29 'idea':48 'liter':8 'man':46 'matter':40 'may':3,11 'put':35 're':44 'saw':19 'say':52 'semi':7 'semi-liter':6 'sure':27 'technolog':5 'terrif':45 'use':38 'way':33 'well':1"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.dbzer0.com/comment/2975607"
+editedAt: null
+createdAt: DateTimeImmutable @1694533159 {#3012
date: 2023-09-12 17:39:19.0 +02:00
}
} |
|
Show voter details
|
8 |
DENIED
|
moderate
|
App\Entity\EntryComment {#3008
+user: Proxies\__CG__\App\Entity\User {#3091 …}
+entry: Proxies\__CG__\App\Entity\Entry {#1365 …}
+magazine: App\Entity\Magazine {#305
+icon: null
+name: "datahoarder@lemmy.ml"
+title: "datahoarder"
+description: """
**Who are we?**\n
\n
We are digital librarians. Among us are represented the various reasons to keep data – legal requirements, competitive requirements, uncertainty of permanence of cloud services, distaste for transmitting your data externally (e.g. government or corporate espionage), cultural and familial archivists, internet collapse preppers, and people who do it themselves so they’re sure it’s done right. Everyone has their reasons for curating the data they have decided to keep (either forever or For A Damn Long Time). Along the way we have sought out like-minded individuals to exchange strategies, war stories, and cautionary tales of failures.\n
\n
We are one. We are legion. And we’re trying really hard not to forget.\n
\n
– 5-4-3-2-1-bang from [this thread](https://web.archive.org/web/20221111153119/https://old.reddit.com/r/DataHoarder/comments/41tqt4/hi_guys_can_i_kindly_ask_for_an_eli5_of_this/cz53pi0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 58
+entryCommentCount: 311
+postCount: 1
+postCommentCount: 1
+isAdult: false
+customCss: null
+lastActive: DateTime @1729502222 {#313
date: 2024-10-21 11:17:02.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#293 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#289 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#278 …}
+entries: Doctrine\ORM\PersistentCollection {#236 …}
+posts: Doctrine\ORM\PersistentCollection {#194 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#256 …}
+bans: Doctrine\ORM\PersistentCollection {#173 …}
+reports: Doctrine\ORM\PersistentCollection {#159 …}
+badges: Doctrine\ORM\PersistentCollection {#137 …}
+logs: Doctrine\ORM\PersistentCollection {#127 …}
+awards: Doctrine\ORM\PersistentCollection {#116 …}
+categories: Doctrine\ORM\PersistentCollection {#103 …}
-id: 32
+apId: "datahoarder@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/datahoarder"
+apPublicUrl: "https://lemmy.ml/c/datahoarder"
+apFollowersUrl: "https://lemmy.ml/c/datahoarder/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "datahoarder"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729303437 {#314
date: 2024-10-19 04:03:57.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1695727192 {#308
date: 2023-09-26 13:19:52.0 +02:00
}
}
+image: null
+parent: App\Entity\EntryComment {#2489
+user: App\Entity\User {#1452 …}
+entry: Proxies\__CG__\App\Entity\Entry {#1365 …}
+magazine: App\Entity\Magazine {#305}
+image: null
+parent: null
+root: null
+body: """
I just spent a bit too much time making this (it was fun), so don’t even tell me if you’re not going to use it.\n
\n
You can open up a desired book’s page, start this first script in the console, and then scroll through the book:\n
\n
```\n
\n
<span style="color:#323232;">let imgs = new Set();\n
</span><span style="color:#323232;">\n
</span><span style="color:#323232;">function cheese() { \n
</span><span style="color:#323232;"> for(let img of document.getElementsByTagName("img")) {\n
</span><span style="color:#323232;"> if(img.parentElement.parentElement.className == "pageImageDisplay") imgs.add(img.attributes["src"].value);\n
</span><span style="color:#323232;"> }\n
</span><span style="color:#323232;">}\n
</span><span style="color:#323232;">\n
</span><span style="color:#323232;">setInterval(cheese, 5);\n
</span>\n
```\n
\n
And once you’re done you may run this script to download each image:\n
\n
```\n
\n
<span style="color:#323232;">function toDataURL(url) {\n
</span><span style="color:#323232;"> return fetch(url).then((response) => {\n
</span><span style="color:#323232;"> return response.blob();\n
</span><span style="color:#323232;"> }).then(blob => {\n
</span><span style="color:#323232;"> return URL.createObjectURL(blob);\n
</span><span style="color:#323232;"> });\n
</span><span style="color:#323232;">}\n
</span><span style="color:#323232;">\n
</span><span style="color:#323232;">async function asd() {\n
</span><span style="color:#323232;"> for(let img of imgs) {\n
</span><span style="color:#323232;"> const a = document.createElement("a");\n
</span><span style="color:#323232;"> a.href = await toDataURL(img);\n
</span><span style="color:#323232;"> let name;\n
</span><span style="color:#323232;"> for(let thing of img.split("&")) {\n
</span><span style="color:#323232;"> if(thing.startsWith("pg=")) {\n
</span><span style="color:#323232;"> name = thing.split("=")[1];\n
</span><span style="color:#323232;"> console.log(name);\n
</span><span style="color:#323232;"> break;\n
</span><span style="color:#323232;"> }\n
</span><span style="color:#323232;"> }\n
</span><span style="color:#323232;"> a.download = name;\n
</span><span style="color:#323232;"> document.body.appendChild(a);\n
</span><span style="color:#323232;"> a.click();\n
</span><span style="color:#323232;"> document.body.removeChild(a);\n
</span><span style="color:#323232;"> }\n
</span><span style="color:#323232;">}\n
</span><span style="color:#323232;">\n
</span><span style="color:#323232;">asd();\n
</span>\n
```\n
\n
Alternatively you may simply run something like this to get the links:\n
\n
```\n
\n
<span style="color:#323232;">for(let img of imgs) {\n
</span><span style="color:#323232;">\tconsole.log(img)\n
</span><span style="color:#323232;">}\n
</span>\n
```\n
\n
There’s stuff you can tweak of course if it don’t quite work for you. Worked fine on me tests.\n
\n
If you notice a page missing, you should be able to just scroll back to it and then download again to get everything. The first script just keeps collecting pages till you refresh the site. Which also means you should refresh once you are done downloading, as it eats CPU for breakfast.\n
\n
Oh and ***NEVER RUN ANY JAVASCRIPT CODE SOMEONE ON THE INTERNET TELLS YOU TO RUN***
"""
+lang: "en"
+isAdult: false
+favouriteCount: 2
+score: 0
+lastActive: DateTime @1729502222 {#1369
date: 2024-10-21 11:17:02.0 +02:00
}
+ip: null
+tags: [
"323232"
]
+mentions: [
"@antonim@lemmy.dbzer0.com"
]
+children: Doctrine\ORM\PersistentCollection {#1378 …}
+nested: Doctrine\ORM\PersistentCollection {#1371 …}
+votes: Doctrine\ORM\PersistentCollection {#2436 …}
+reports: Doctrine\ORM\PersistentCollection {#2446 …}
+favourites: Doctrine\ORM\PersistentCollection {#1938 …}
+notifications: Doctrine\ORM\PersistentCollection {#1444 …}
-id: 30017
-bodyTs: "'1':129 '5':71 'a.click':137 'a.download':133 'a.href':113 'abl':190 'also':217 'altern':141 'asd':103,140 'async':101 'await':114 'back':194 'bit':5 'blob':97,100 'book':34,49 'break':132 'breakfast':232 'chees':55,70 'code':239 'collect':209 'consol':43 'console.log':130,158 'const':109 'cours':167 'cpu':230 'desir':33 'document.body.appendchild':135 'document.body.removechild':138 'document.createelement':111 'document.getelementsbytagname':60 'done':76,225 'download':83,199,226 'eat':229 'even':17 'everyth':203 'fetch':90 'fine':177 'first':39,205 'fun':13 'function':54,86,102 'get':150,202 'go':24 'imag':85 'img':51,58,61,106,108,116,155,157,159 'img.attributes':66 'img.parentelement.parentelement.classname':63 'img.split':123 'imgs.add':65 'internet':243 'javascript':238 'keep':208 'let':50,57,105,117,120,154 'like':147 'link':152 'make':9 'may':78,143 'mean':218 'miss':186 'much':7 'name':118,127,131,134 'never':235 'new':52 'notic':183 'oh':233 'open':30 'page':36,185,210 'pageimagedisplay':64 'pg':126 'quit':172 're':22,75 'refresh':213,221 'respons':93 'response.blob':95 'return':89,94,98 'run':79,145,236,247 'script':40,81,206 'scroll':46,193 'set':53 'setinterv':69 'simpli':144 'site':215 'someon':240 'someth':146 'spent':3 'src':67 'start':37 'stuff':162 'tell':18,244 'test':180 'thing':121 'thing.split':128 'thing.startswith':125 'till':211 'time':8 'todataurl':87,115 'tweak':165 'url':88,91 'url.createobjecturl':99 'use':26 'valu':68 'work':173,176"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemm.ee/comment/3445560"
+editedAt: null
+createdAt: DateTimeImmutable @1694484327 {#1398
date: 2023-09-12 04:05:27.0 +02:00
}
}
+root: App\Entity\EntryComment {#2489}
+body: """
Well, I may be technologically semi-literate and I may have felt a bit dizzy when I saw actual code in your comment, but I sure as hell will find a way to put it to use, no matter the cost.\n
\n
You’re terrific, man. No idea what else to say.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 1
+score: 0
+lastActive: DateTime @1694533159 {#3009
date: 2023-09-12 17:39:19.0 +02:00
}
+ip: null
+tags: null
+mentions: [
"@antonim@lemmy.dbzer0.com"
"@bela@lemm.ee"
]
+children: Doctrine\ORM\PersistentCollection {#3090 …}
+nested: Doctrine\ORM\PersistentCollection {#3088 …}
+votes: Doctrine\ORM\PersistentCollection {#3086 …}
+reports: Doctrine\ORM\PersistentCollection {#3084 …}
+favourites: Doctrine\ORM\PersistentCollection {#3082 …}
+notifications: Doctrine\ORM\PersistentCollection {#3080 …}
-id: 351202
-bodyTs: "'actual':20 'bit':15 'code':21 'comment':24 'cost':42 'dizzi':16 'els':50 'felt':13 'find':31 'hell':29 'idea':48 'liter':8 'man':46 'matter':40 'may':3,11 'put':35 're':44 'saw':19 'say':52 'semi':7 'semi-liter':6 'sure':27 'technolog':5 'terrif':45 'use':38 'way':33 'well':1"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.dbzer0.com/comment/2975607"
+editedAt: null
+createdAt: DateTimeImmutable @1694533159 {#3012
date: 2023-09-12 17:39:19.0 +02:00
}
} |
|
Show voter details
|
9 |
DENIED
|
ROLE_USER
|
null |
|
Show voter details
|
10 |
DENIED
|
moderate
|
App\Entity\EntryComment {#1721
+user: App\Entity\User {#1715 …}
+entry: Proxies\__CG__\App\Entity\Entry {#1597 …}
+magazine: App\Entity\Magazine {#305
+icon: null
+name: "datahoarder@lemmy.ml"
+title: "datahoarder"
+description: """
**Who are we?**\n
\n
We are digital librarians. Among us are represented the various reasons to keep data – legal requirements, competitive requirements, uncertainty of permanence of cloud services, distaste for transmitting your data externally (e.g. government or corporate espionage), cultural and familial archivists, internet collapse preppers, and people who do it themselves so they’re sure it’s done right. Everyone has their reasons for curating the data they have decided to keep (either forever or For A Damn Long Time). Along the way we have sought out like-minded individuals to exchange strategies, war stories, and cautionary tales of failures.\n
\n
We are one. We are legion. And we’re trying really hard not to forget.\n
\n
– 5-4-3-2-1-bang from [this thread](https://web.archive.org/web/20221111153119/https://old.reddit.com/r/DataHoarder/comments/41tqt4/hi_guys_can_i_kindly_ask_for_an_eli5_of_this/cz53pi0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 58
+entryCommentCount: 311
+postCount: 1
+postCommentCount: 1
+isAdult: false
+customCss: null
+lastActive: DateTime @1729502222 {#313
date: 2024-10-21 11:17:02.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#293 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#289 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#278 …}
+entries: Doctrine\ORM\PersistentCollection {#236 …}
+posts: Doctrine\ORM\PersistentCollection {#194 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#256 …}
+bans: Doctrine\ORM\PersistentCollection {#173 …}
+reports: Doctrine\ORM\PersistentCollection {#159 …}
+badges: Doctrine\ORM\PersistentCollection {#137 …}
+logs: Doctrine\ORM\PersistentCollection {#127 …}
+awards: Doctrine\ORM\PersistentCollection {#116 …}
+categories: Doctrine\ORM\PersistentCollection {#103 …}
-id: 32
+apId: "datahoarder@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/datahoarder"
+apPublicUrl: "https://lemmy.ml/c/datahoarder"
+apFollowersUrl: "https://lemmy.ml/c/datahoarder/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "datahoarder"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729303437 {#314
date: 2024-10-19 04:03:57.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1695727192 {#308
date: 2023-09-26 13:19:52.0 +02:00
}
}
+image: null
+parent: null
+root: null
+body: """
I think for me, it’s because it’s *sort-of* (though not!) self-archiving.\n
\n
If a site has a reasonable amount of popularity and subscriptions, it would take that site going down, plus all the sites that communicated with it, for the data to be fully lost.\n
\n
Not to mention that a lot of the sites are run by reasonably altruistic people, who are more likely to hand over than just shutter.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 1
+score: 0
+lastActive: DateTime @1729440012 {#1630
date: 2024-10-20 18:00:12.0 +02:00
}
+ip: null
+tags: null
+mentions: [
"@person@lemm.ee"
]
+children: Doctrine\ORM\PersistentCollection {#1728 …}
+nested: Doctrine\ORM\PersistentCollection {#1730 …}
+votes: Doctrine\ORM\PersistentCollection {#1734 …}
+reports: Doctrine\ORM\PersistentCollection {#1727 …}
+favourites: Doctrine\ORM\PersistentCollection {#1733 …}
+notifications: Doctrine\ORM\PersistentCollection {#1724 …}
-id: 350471
-bodyTs: "'altruist':64 'amount':24 'archiv':17 'communic':41 'data':46 'fulli':49 'go':34 'hand':71 'like':69 'lost':50 'lot':56 'mention':53 'peopl':65 'plus':36 'popular':26 'reason':23,63 'run':61 'self':16 'self-archiv':15 'shutter':75 'site':20,33,39,59 'sort':11 'sort-of':10 'subscript':28 'take':31 'think':2 'though':13 'would':30"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://feddit.uk/comment/6324069"
+editedAt: null
+createdAt: DateTimeImmutable @1706551939 {#1731
date: 2024-01-29 19:12:19.0 +01:00
}
} |
|
Show voter details
|
11 |
DENIED
|
edit
|
App\Entity\EntryComment {#1721
+user: App\Entity\User {#1715 …}
+entry: Proxies\__CG__\App\Entity\Entry {#1597 …}
+magazine: App\Entity\Magazine {#305
+icon: null
+name: "datahoarder@lemmy.ml"
+title: "datahoarder"
+description: """
**Who are we?**\n
\n
We are digital librarians. Among us are represented the various reasons to keep data – legal requirements, competitive requirements, uncertainty of permanence of cloud services, distaste for transmitting your data externally (e.g. government or corporate espionage), cultural and familial archivists, internet collapse preppers, and people who do it themselves so they’re sure it’s done right. Everyone has their reasons for curating the data they have decided to keep (either forever or For A Damn Long Time). Along the way we have sought out like-minded individuals to exchange strategies, war stories, and cautionary tales of failures.\n
\n
We are one. We are legion. And we’re trying really hard not to forget.\n
\n
– 5-4-3-2-1-bang from [this thread](https://web.archive.org/web/20221111153119/https://old.reddit.com/r/DataHoarder/comments/41tqt4/hi_guys_can_i_kindly_ask_for_an_eli5_of_this/cz53pi0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 58
+entryCommentCount: 311
+postCount: 1
+postCommentCount: 1
+isAdult: false
+customCss: null
+lastActive: DateTime @1729502222 {#313
date: 2024-10-21 11:17:02.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#293 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#289 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#278 …}
+entries: Doctrine\ORM\PersistentCollection {#236 …}
+posts: Doctrine\ORM\PersistentCollection {#194 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#256 …}
+bans: Doctrine\ORM\PersistentCollection {#173 …}
+reports: Doctrine\ORM\PersistentCollection {#159 …}
+badges: Doctrine\ORM\PersistentCollection {#137 …}
+logs: Doctrine\ORM\PersistentCollection {#127 …}
+awards: Doctrine\ORM\PersistentCollection {#116 …}
+categories: Doctrine\ORM\PersistentCollection {#103 …}
-id: 32
+apId: "datahoarder@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/datahoarder"
+apPublicUrl: "https://lemmy.ml/c/datahoarder"
+apFollowersUrl: "https://lemmy.ml/c/datahoarder/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "datahoarder"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729303437 {#314
date: 2024-10-19 04:03:57.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1695727192 {#308
date: 2023-09-26 13:19:52.0 +02:00
}
}
+image: null
+parent: null
+root: null
+body: """
I think for me, it’s because it’s *sort-of* (though not!) self-archiving.\n
\n
If a site has a reasonable amount of popularity and subscriptions, it would take that site going down, plus all the sites that communicated with it, for the data to be fully lost.\n
\n
Not to mention that a lot of the sites are run by reasonably altruistic people, who are more likely to hand over than just shutter.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 1
+score: 0
+lastActive: DateTime @1729440012 {#1630
date: 2024-10-20 18:00:12.0 +02:00
}
+ip: null
+tags: null
+mentions: [
"@person@lemm.ee"
]
+children: Doctrine\ORM\PersistentCollection {#1728 …}
+nested: Doctrine\ORM\PersistentCollection {#1730 …}
+votes: Doctrine\ORM\PersistentCollection {#1734 …}
+reports: Doctrine\ORM\PersistentCollection {#1727 …}
+favourites: Doctrine\ORM\PersistentCollection {#1733 …}
+notifications: Doctrine\ORM\PersistentCollection {#1724 …}
-id: 350471
-bodyTs: "'altruist':64 'amount':24 'archiv':17 'communic':41 'data':46 'fulli':49 'go':34 'hand':71 'like':69 'lost':50 'lot':56 'mention':53 'peopl':65 'plus':36 'popular':26 'reason':23,63 'run':61 'self':16 'self-archiv':15 'shutter':75 'site':20,33,39,59 'sort':11 'sort-of':10 'subscript':28 'take':31 'think':2 'though':13 'would':30"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://feddit.uk/comment/6324069"
+editedAt: null
+createdAt: DateTimeImmutable @1706551939 {#1731
date: 2024-01-29 19:12:19.0 +01:00
}
} |
|
Show voter details
|
12 |
DENIED
|
moderate
|
App\Entity\EntryComment {#1721
+user: App\Entity\User {#1715 …}
+entry: Proxies\__CG__\App\Entity\Entry {#1597 …}
+magazine: App\Entity\Magazine {#305
+icon: null
+name: "datahoarder@lemmy.ml"
+title: "datahoarder"
+description: """
**Who are we?**\n
\n
We are digital librarians. Among us are represented the various reasons to keep data – legal requirements, competitive requirements, uncertainty of permanence of cloud services, distaste for transmitting your data externally (e.g. government or corporate espionage), cultural and familial archivists, internet collapse preppers, and people who do it themselves so they’re sure it’s done right. Everyone has their reasons for curating the data they have decided to keep (either forever or For A Damn Long Time). Along the way we have sought out like-minded individuals to exchange strategies, war stories, and cautionary tales of failures.\n
\n
We are one. We are legion. And we’re trying really hard not to forget.\n
\n
– 5-4-3-2-1-bang from [this thread](https://web.archive.org/web/20221111153119/https://old.reddit.com/r/DataHoarder/comments/41tqt4/hi_guys_can_i_kindly_ask_for_an_eli5_of_this/cz53pi0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 58
+entryCommentCount: 311
+postCount: 1
+postCommentCount: 1
+isAdult: false
+customCss: null
+lastActive: DateTime @1729502222 {#313
date: 2024-10-21 11:17:02.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#293 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#289 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#278 …}
+entries: Doctrine\ORM\PersistentCollection {#236 …}
+posts: Doctrine\ORM\PersistentCollection {#194 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#256 …}
+bans: Doctrine\ORM\PersistentCollection {#173 …}
+reports: Doctrine\ORM\PersistentCollection {#159 …}
+badges: Doctrine\ORM\PersistentCollection {#137 …}
+logs: Doctrine\ORM\PersistentCollection {#127 …}
+awards: Doctrine\ORM\PersistentCollection {#116 …}
+categories: Doctrine\ORM\PersistentCollection {#103 …}
-id: 32
+apId: "datahoarder@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/datahoarder"
+apPublicUrl: "https://lemmy.ml/c/datahoarder"
+apFollowersUrl: "https://lemmy.ml/c/datahoarder/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "datahoarder"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729303437 {#314
date: 2024-10-19 04:03:57.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1695727192 {#308
date: 2023-09-26 13:19:52.0 +02:00
}
}
+image: null
+parent: null
+root: null
+body: """
I think for me, it’s because it’s *sort-of* (though not!) self-archiving.\n
\n
If a site has a reasonable amount of popularity and subscriptions, it would take that site going down, plus all the sites that communicated with it, for the data to be fully lost.\n
\n
Not to mention that a lot of the sites are run by reasonably altruistic people, who are more likely to hand over than just shutter.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 1
+score: 0
+lastActive: DateTime @1729440012 {#1630
date: 2024-10-20 18:00:12.0 +02:00
}
+ip: null
+tags: null
+mentions: [
"@person@lemm.ee"
]
+children: Doctrine\ORM\PersistentCollection {#1728 …}
+nested: Doctrine\ORM\PersistentCollection {#1730 …}
+votes: Doctrine\ORM\PersistentCollection {#1734 …}
+reports: Doctrine\ORM\PersistentCollection {#1727 …}
+favourites: Doctrine\ORM\PersistentCollection {#1733 …}
+notifications: Doctrine\ORM\PersistentCollection {#1724 …}
-id: 350471
-bodyTs: "'altruist':64 'amount':24 'archiv':17 'communic':41 'data':46 'fulli':49 'go':34 'hand':71 'like':69 'lost':50 'lot':56 'mention':53 'peopl':65 'plus':36 'popular':26 'reason':23,63 'run':61 'self':16 'self-archiv':15 'shutter':75 'site':20,33,39,59 'sort':11 'sort-of':10 'subscript':28 'take':31 'think':2 'though':13 'would':30"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://feddit.uk/comment/6324069"
+editedAt: null
+createdAt: DateTimeImmutable @1706551939 {#1731
date: 2024-01-29 19:12:19.0 +01:00
}
} |
|
Show voter details
|
13 |
DENIED
|
ROLE_USER
|
null |
|
Show voter details
|
14 |
DENIED
|
moderate
|
App\Entity\EntryComment {#3275
+user: App\Entity\User {#2772 …}
+entry: Proxies\__CG__\App\Entity\Entry {#1597 …}
+magazine: App\Entity\Magazine {#305
+icon: null
+name: "datahoarder@lemmy.ml"
+title: "datahoarder"
+description: """
**Who are we?**\n
\n
We are digital librarians. Among us are represented the various reasons to keep data – legal requirements, competitive requirements, uncertainty of permanence of cloud services, distaste for transmitting your data externally (e.g. government or corporate espionage), cultural and familial archivists, internet collapse preppers, and people who do it themselves so they’re sure it’s done right. Everyone has their reasons for curating the data they have decided to keep (either forever or For A Damn Long Time). Along the way we have sought out like-minded individuals to exchange strategies, war stories, and cautionary tales of failures.\n
\n
We are one. We are legion. And we’re trying really hard not to forget.\n
\n
– 5-4-3-2-1-bang from [this thread](https://web.archive.org/web/20221111153119/https://old.reddit.com/r/DataHoarder/comments/41tqt4/hi_guys_can_i_kindly_ask_for_an_eli5_of_this/cz53pi0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 58
+entryCommentCount: 311
+postCount: 1
+postCommentCount: 1
+isAdult: false
+customCss: null
+lastActive: DateTime @1729502222 {#313
date: 2024-10-21 11:17:02.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#293 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#289 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#278 …}
+entries: Doctrine\ORM\PersistentCollection {#236 …}
+posts: Doctrine\ORM\PersistentCollection {#194 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#256 …}
+bans: Doctrine\ORM\PersistentCollection {#173 …}
+reports: Doctrine\ORM\PersistentCollection {#159 …}
+badges: Doctrine\ORM\PersistentCollection {#137 …}
+logs: Doctrine\ORM\PersistentCollection {#127 …}
+awards: Doctrine\ORM\PersistentCollection {#116 …}
+categories: Doctrine\ORM\PersistentCollection {#103 …}
-id: 32
+apId: "datahoarder@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/datahoarder"
+apPublicUrl: "https://lemmy.ml/c/datahoarder"
+apFollowersUrl: "https://lemmy.ml/c/datahoarder/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "datahoarder"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729303437 {#314
date: 2024-10-19 04:03:57.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1695727192 {#308
date: 2023-09-26 13:19:52.0 +02:00
}
}
+image: null
+parent: App\Entity\EntryComment {#1721
+user: App\Entity\User {#1715 …}
+entry: Proxies\__CG__\App\Entity\Entry {#1597 …}
+magazine: App\Entity\Magazine {#305}
+image: null
+parent: null
+root: null
+body: """
I think for me, it’s because it’s *sort-of* (though not!) self-archiving.\n
\n
If a site has a reasonable amount of popularity and subscriptions, it would take that site going down, plus all the sites that communicated with it, for the data to be fully lost.\n
\n
Not to mention that a lot of the sites are run by reasonably altruistic people, who are more likely to hand over than just shutter.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 1
+score: 0
+lastActive: DateTime @1729440012 {#1630
date: 2024-10-20 18:00:12.0 +02:00
}
+ip: null
+tags: null
+mentions: [
"@person@lemm.ee"
]
+children: Doctrine\ORM\PersistentCollection {#1728 …}
+nested: Doctrine\ORM\PersistentCollection {#1730 …}
+votes: Doctrine\ORM\PersistentCollection {#1734 …}
+reports: Doctrine\ORM\PersistentCollection {#1727 …}
+favourites: Doctrine\ORM\PersistentCollection {#1733 …}
+notifications: Doctrine\ORM\PersistentCollection {#1724 …}
-id: 350471
-bodyTs: "'altruist':64 'amount':24 'archiv':17 'communic':41 'data':46 'fulli':49 'go':34 'hand':71 'like':69 'lost':50 'lot':56 'mention':53 'peopl':65 'plus':36 'popular':26 'reason':23,63 'run':61 'self':16 'self-archiv':15 'shutter':75 'site':20,33,39,59 'sort':11 'sort-of':10 'subscript':28 'take':31 'think':2 'though':13 'would':30"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://feddit.uk/comment/6324069"
+editedAt: null
+createdAt: DateTimeImmutable @1706551939 {#1731
date: 2024-01-29 19:12:19.0 +01:00
}
}
+root: App\Entity\EntryComment {#1721}
+body: "A fair point!"
+lang: "en"
+isAdult: false
+favouriteCount: 1
+score: 0
+lastActive: DateTime @1706553125 {#3273
date: 2024-01-29 19:32:05.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@person@lemm.ee"
"@GreatAlbatross@feddit.uk"
]
+children: Doctrine\ORM\PersistentCollection {#3276 …}
+nested: Doctrine\ORM\PersistentCollection {#3278 …}
+votes: Doctrine\ORM\PersistentCollection {#3280 …}
+reports: Doctrine\ORM\PersistentCollection {#3282 …}
+favourites: Doctrine\ORM\PersistentCollection {#3284 …}
+notifications: Doctrine\ORM\PersistentCollection {#3286 …}
-id: 350520
-bodyTs: "'fair':2 'point':3"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemm.ee/comment/8793945"
+editedAt: null
+createdAt: DateTimeImmutable @1706553125 {#3274
date: 2024-01-29 19:32:05.0 +01:00
}
} |
|
Show voter details
|
15 |
DENIED
|
edit
|
App\Entity\EntryComment {#3275
+user: App\Entity\User {#2772 …}
+entry: Proxies\__CG__\App\Entity\Entry {#1597 …}
+magazine: App\Entity\Magazine {#305
+icon: null
+name: "datahoarder@lemmy.ml"
+title: "datahoarder"
+description: """
**Who are we?**\n
\n
We are digital librarians. Among us are represented the various reasons to keep data – legal requirements, competitive requirements, uncertainty of permanence of cloud services, distaste for transmitting your data externally (e.g. government or corporate espionage), cultural and familial archivists, internet collapse preppers, and people who do it themselves so they’re sure it’s done right. Everyone has their reasons for curating the data they have decided to keep (either forever or For A Damn Long Time). Along the way we have sought out like-minded individuals to exchange strategies, war stories, and cautionary tales of failures.\n
\n
We are one. We are legion. And we’re trying really hard not to forget.\n
\n
– 5-4-3-2-1-bang from [this thread](https://web.archive.org/web/20221111153119/https://old.reddit.com/r/DataHoarder/comments/41tqt4/hi_guys_can_i_kindly_ask_for_an_eli5_of_this/cz53pi0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 58
+entryCommentCount: 311
+postCount: 1
+postCommentCount: 1
+isAdult: false
+customCss: null
+lastActive: DateTime @1729502222 {#313
date: 2024-10-21 11:17:02.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#293 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#289 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#278 …}
+entries: Doctrine\ORM\PersistentCollection {#236 …}
+posts: Doctrine\ORM\PersistentCollection {#194 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#256 …}
+bans: Doctrine\ORM\PersistentCollection {#173 …}
+reports: Doctrine\ORM\PersistentCollection {#159 …}
+badges: Doctrine\ORM\PersistentCollection {#137 …}
+logs: Doctrine\ORM\PersistentCollection {#127 …}
+awards: Doctrine\ORM\PersistentCollection {#116 …}
+categories: Doctrine\ORM\PersistentCollection {#103 …}
-id: 32
+apId: "datahoarder@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/datahoarder"
+apPublicUrl: "https://lemmy.ml/c/datahoarder"
+apFollowersUrl: "https://lemmy.ml/c/datahoarder/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "datahoarder"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729303437 {#314
date: 2024-10-19 04:03:57.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1695727192 {#308
date: 2023-09-26 13:19:52.0 +02:00
}
}
+image: null
+parent: App\Entity\EntryComment {#1721
+user: App\Entity\User {#1715 …}
+entry: Proxies\__CG__\App\Entity\Entry {#1597 …}
+magazine: App\Entity\Magazine {#305}
+image: null
+parent: null
+root: null
+body: """
I think for me, it’s because it’s *sort-of* (though not!) self-archiving.\n
\n
If a site has a reasonable amount of popularity and subscriptions, it would take that site going down, plus all the sites that communicated with it, for the data to be fully lost.\n
\n
Not to mention that a lot of the sites are run by reasonably altruistic people, who are more likely to hand over than just shutter.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 1
+score: 0
+lastActive: DateTime @1729440012 {#1630
date: 2024-10-20 18:00:12.0 +02:00
}
+ip: null
+tags: null
+mentions: [
"@person@lemm.ee"
]
+children: Doctrine\ORM\PersistentCollection {#1728 …}
+nested: Doctrine\ORM\PersistentCollection {#1730 …}
+votes: Doctrine\ORM\PersistentCollection {#1734 …}
+reports: Doctrine\ORM\PersistentCollection {#1727 …}
+favourites: Doctrine\ORM\PersistentCollection {#1733 …}
+notifications: Doctrine\ORM\PersistentCollection {#1724 …}
-id: 350471
-bodyTs: "'altruist':64 'amount':24 'archiv':17 'communic':41 'data':46 'fulli':49 'go':34 'hand':71 'like':69 'lost':50 'lot':56 'mention':53 'peopl':65 'plus':36 'popular':26 'reason':23,63 'run':61 'self':16 'self-archiv':15 'shutter':75 'site':20,33,39,59 'sort':11 'sort-of':10 'subscript':28 'take':31 'think':2 'though':13 'would':30"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://feddit.uk/comment/6324069"
+editedAt: null
+createdAt: DateTimeImmutable @1706551939 {#1731
date: 2024-01-29 19:12:19.0 +01:00
}
}
+root: App\Entity\EntryComment {#1721}
+body: "A fair point!"
+lang: "en"
+isAdult: false
+favouriteCount: 1
+score: 0
+lastActive: DateTime @1706553125 {#3273
date: 2024-01-29 19:32:05.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@person@lemm.ee"
"@GreatAlbatross@feddit.uk"
]
+children: Doctrine\ORM\PersistentCollection {#3276 …}
+nested: Doctrine\ORM\PersistentCollection {#3278 …}
+votes: Doctrine\ORM\PersistentCollection {#3280 …}
+reports: Doctrine\ORM\PersistentCollection {#3282 …}
+favourites: Doctrine\ORM\PersistentCollection {#3284 …}
+notifications: Doctrine\ORM\PersistentCollection {#3286 …}
-id: 350520
-bodyTs: "'fair':2 'point':3"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemm.ee/comment/8793945"
+editedAt: null
+createdAt: DateTimeImmutable @1706553125 {#3274
date: 2024-01-29 19:32:05.0 +01:00
}
} |
|
Show voter details
|
16 |
DENIED
|
moderate
|
App\Entity\EntryComment {#3275
+user: App\Entity\User {#2772 …}
+entry: Proxies\__CG__\App\Entity\Entry {#1597 …}
+magazine: App\Entity\Magazine {#305
+icon: null
+name: "datahoarder@lemmy.ml"
+title: "datahoarder"
+description: """
**Who are we?**\n
\n
We are digital librarians. Among us are represented the various reasons to keep data – legal requirements, competitive requirements, uncertainty of permanence of cloud services, distaste for transmitting your data externally (e.g. government or corporate espionage), cultural and familial archivists, internet collapse preppers, and people who do it themselves so they’re sure it’s done right. Everyone has their reasons for curating the data they have decided to keep (either forever or For A Damn Long Time). Along the way we have sought out like-minded individuals to exchange strategies, war stories, and cautionary tales of failures.\n
\n
We are one. We are legion. And we’re trying really hard not to forget.\n
\n
– 5-4-3-2-1-bang from [this thread](https://web.archive.org/web/20221111153119/https://old.reddit.com/r/DataHoarder/comments/41tqt4/hi_guys_can_i_kindly_ask_for_an_eli5_of_this/cz53pi0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 58
+entryCommentCount: 311
+postCount: 1
+postCommentCount: 1
+isAdult: false
+customCss: null
+lastActive: DateTime @1729502222 {#313
date: 2024-10-21 11:17:02.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#293 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#289 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#278 …}
+entries: Doctrine\ORM\PersistentCollection {#236 …}
+posts: Doctrine\ORM\PersistentCollection {#194 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#256 …}
+bans: Doctrine\ORM\PersistentCollection {#173 …}
+reports: Doctrine\ORM\PersistentCollection {#159 …}
+badges: Doctrine\ORM\PersistentCollection {#137 …}
+logs: Doctrine\ORM\PersistentCollection {#127 …}
+awards: Doctrine\ORM\PersistentCollection {#116 …}
+categories: Doctrine\ORM\PersistentCollection {#103 …}
-id: 32
+apId: "datahoarder@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/datahoarder"
+apPublicUrl: "https://lemmy.ml/c/datahoarder"
+apFollowersUrl: "https://lemmy.ml/c/datahoarder/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "datahoarder"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729303437 {#314
date: 2024-10-19 04:03:57.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1695727192 {#308
date: 2023-09-26 13:19:52.0 +02:00
}
}
+image: null
+parent: App\Entity\EntryComment {#1721
+user: App\Entity\User {#1715 …}
+entry: Proxies\__CG__\App\Entity\Entry {#1597 …}
+magazine: App\Entity\Magazine {#305}
+image: null
+parent: null
+root: null
+body: """
I think for me, it’s because it’s *sort-of* (though not!) self-archiving.\n
\n
If a site has a reasonable amount of popularity and subscriptions, it would take that site going down, plus all the sites that communicated with it, for the data to be fully lost.\n
\n
Not to mention that a lot of the sites are run by reasonably altruistic people, who are more likely to hand over than just shutter.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 1
+score: 0
+lastActive: DateTime @1729440012 {#1630
date: 2024-10-20 18:00:12.0 +02:00
}
+ip: null
+tags: null
+mentions: [
"@person@lemm.ee"
]
+children: Doctrine\ORM\PersistentCollection {#1728 …}
+nested: Doctrine\ORM\PersistentCollection {#1730 …}
+votes: Doctrine\ORM\PersistentCollection {#1734 …}
+reports: Doctrine\ORM\PersistentCollection {#1727 …}
+favourites: Doctrine\ORM\PersistentCollection {#1733 …}
+notifications: Doctrine\ORM\PersistentCollection {#1724 …}
-id: 350471
-bodyTs: "'altruist':64 'amount':24 'archiv':17 'communic':41 'data':46 'fulli':49 'go':34 'hand':71 'like':69 'lost':50 'lot':56 'mention':53 'peopl':65 'plus':36 'popular':26 'reason':23,63 'run':61 'self':16 'self-archiv':15 'shutter':75 'site':20,33,39,59 'sort':11 'sort-of':10 'subscript':28 'take':31 'think':2 'though':13 'would':30"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://feddit.uk/comment/6324069"
+editedAt: null
+createdAt: DateTimeImmutable @1706551939 {#1731
date: 2024-01-29 19:12:19.0 +01:00
}
}
+root: App\Entity\EntryComment {#1721}
+body: "A fair point!"
+lang: "en"
+isAdult: false
+favouriteCount: 1
+score: 0
+lastActive: DateTime @1706553125 {#3273
date: 2024-01-29 19:32:05.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@person@lemm.ee"
"@GreatAlbatross@feddit.uk"
]
+children: Doctrine\ORM\PersistentCollection {#3276 …}
+nested: Doctrine\ORM\PersistentCollection {#3278 …}
+votes: Doctrine\ORM\PersistentCollection {#3280 …}
+reports: Doctrine\ORM\PersistentCollection {#3282 …}
+favourites: Doctrine\ORM\PersistentCollection {#3284 …}
+notifications: Doctrine\ORM\PersistentCollection {#3286 …}
-id: 350520
-bodyTs: "'fair':2 'point':3"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemm.ee/comment/8793945"
+editedAt: null
+createdAt: DateTimeImmutable @1706553125 {#3274
date: 2024-01-29 19:32:05.0 +01:00
}
} |
|
Show voter details
|
17 |
DENIED
|
ROLE_USER
|
null |
|
Show voter details
|
18 |
DENIED
|
moderate
|
App\Entity\EntryComment {#1382
+user: App\Entity\User {#2018 …}
+entry: Proxies\__CG__\App\Entity\Entry {#1401 …}
+magazine: App\Entity\Magazine {#305
+icon: null
+name: "datahoarder@lemmy.ml"
+title: "datahoarder"
+description: """
**Who are we?**\n
\n
We are digital librarians. Among us are represented the various reasons to keep data – legal requirements, competitive requirements, uncertainty of permanence of cloud services, distaste for transmitting your data externally (e.g. government or corporate espionage), cultural and familial archivists, internet collapse preppers, and people who do it themselves so they’re sure it’s done right. Everyone has their reasons for curating the data they have decided to keep (either forever or For A Damn Long Time). Along the way we have sought out like-minded individuals to exchange strategies, war stories, and cautionary tales of failures.\n
\n
We are one. We are legion. And we’re trying really hard not to forget.\n
\n
– 5-4-3-2-1-bang from [this thread](https://web.archive.org/web/20221111153119/https://old.reddit.com/r/DataHoarder/comments/41tqt4/hi_guys_can_i_kindly_ask_for_an_eli5_of_this/cz53pi0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 58
+entryCommentCount: 311
+postCount: 1
+postCommentCount: 1
+isAdult: false
+customCss: null
+lastActive: DateTime @1729502222 {#313
date: 2024-10-21 11:17:02.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#293 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#289 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#278 …}
+entries: Doctrine\ORM\PersistentCollection {#236 …}
+posts: Doctrine\ORM\PersistentCollection {#194 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#256 …}
+bans: Doctrine\ORM\PersistentCollection {#173 …}
+reports: Doctrine\ORM\PersistentCollection {#159 …}
+badges: Doctrine\ORM\PersistentCollection {#137 …}
+logs: Doctrine\ORM\PersistentCollection {#127 …}
+awards: Doctrine\ORM\PersistentCollection {#116 …}
+categories: Doctrine\ORM\PersistentCollection {#103 …}
-id: 32
+apId: "datahoarder@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/datahoarder"
+apPublicUrl: "https://lemmy.ml/c/datahoarder"
+apFollowersUrl: "https://lemmy.ml/c/datahoarder/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "datahoarder"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729303437 {#314
date: 2024-10-19 04:03:57.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1695727192 {#308
date: 2023-09-26 13:19:52.0 +02:00
}
}
+image: null
+parent: null
+root: null
+body: """
SSDs lose charge over time. Within a year, bitflips might occur. I recommend going with an HDD with a shockproof case.\n
\n
[This ineo t2580](https://www.newegg.com/ineo-t2580-case/p/2NG-006X-00003) looks good but I can’t seem to find the maximum capacity. Try not to use HDDs over 12TB and you should be fine.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 5
+score: 0
+lastActive: DateTime @1727238380 {#1381
date: 2024-09-25 06:26:20.0 +02:00
}
+ip: null
+tags: null
+mentions: [
"@M500@lemmy.ml"
]
+children: Doctrine\ORM\PersistentCollection {#1404 …}
+nested: Doctrine\ORM\PersistentCollection {#1361 …}
+votes: Doctrine\ORM\PersistentCollection {#1403 …}
+reports: Doctrine\ORM\PersistentCollection {#2023 …}
+favourites: Doctrine\ORM\PersistentCollection {#2032 …}
+notifications: Doctrine\ORM\PersistentCollection {#2024 …}
-id: 236785
-bodyTs: "'/ineo-t2580-case/p/2ng-006x-00003)':27 '12tb':46 'bitflip':9 'capac':39 'case':21 'charg':3 'find':36 'fine':51 'go':14 'good':29 'hdd':17 'hdds':44 'ineo':23 'look':28 'lose':2 'maximum':38 'might':10 'occur':11 'recommend':13 'seem':34 'shockproof':20 'ssds':1 't2580':24 'time':5 'tri':40 'use':43 'within':6 'www.newegg.com':26 'www.newegg.com/ineo-t2580-case/p/2ng-006x-00003)':25 'year':8"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://feddit.de/comment/5186571"
+editedAt: null
+createdAt: DateTimeImmutable @1701070747 {#1383
date: 2023-11-27 08:39:07.0 +01:00
}
} |
|
Show voter details
|
19 |
DENIED
|
edit
|
App\Entity\EntryComment {#1382
+user: App\Entity\User {#2018 …}
+entry: Proxies\__CG__\App\Entity\Entry {#1401 …}
+magazine: App\Entity\Magazine {#305
+icon: null
+name: "datahoarder@lemmy.ml"
+title: "datahoarder"
+description: """
**Who are we?**\n
\n
We are digital librarians. Among us are represented the various reasons to keep data – legal requirements, competitive requirements, uncertainty of permanence of cloud services, distaste for transmitting your data externally (e.g. government or corporate espionage), cultural and familial archivists, internet collapse preppers, and people who do it themselves so they’re sure it’s done right. Everyone has their reasons for curating the data they have decided to keep (either forever or For A Damn Long Time). Along the way we have sought out like-minded individuals to exchange strategies, war stories, and cautionary tales of failures.\n
\n
We are one. We are legion. And we’re trying really hard not to forget.\n
\n
– 5-4-3-2-1-bang from [this thread](https://web.archive.org/web/20221111153119/https://old.reddit.com/r/DataHoarder/comments/41tqt4/hi_guys_can_i_kindly_ask_for_an_eli5_of_this/cz53pi0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 58
+entryCommentCount: 311
+postCount: 1
+postCommentCount: 1
+isAdult: false
+customCss: null
+lastActive: DateTime @1729502222 {#313
date: 2024-10-21 11:17:02.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#293 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#289 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#278 …}
+entries: Doctrine\ORM\PersistentCollection {#236 …}
+posts: Doctrine\ORM\PersistentCollection {#194 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#256 …}
+bans: Doctrine\ORM\PersistentCollection {#173 …}
+reports: Doctrine\ORM\PersistentCollection {#159 …}
+badges: Doctrine\ORM\PersistentCollection {#137 …}
+logs: Doctrine\ORM\PersistentCollection {#127 …}
+awards: Doctrine\ORM\PersistentCollection {#116 …}
+categories: Doctrine\ORM\PersistentCollection {#103 …}
-id: 32
+apId: "datahoarder@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/datahoarder"
+apPublicUrl: "https://lemmy.ml/c/datahoarder"
+apFollowersUrl: "https://lemmy.ml/c/datahoarder/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "datahoarder"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729303437 {#314
date: 2024-10-19 04:03:57.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1695727192 {#308
date: 2023-09-26 13:19:52.0 +02:00
}
}
+image: null
+parent: null
+root: null
+body: """
SSDs lose charge over time. Within a year, bitflips might occur. I recommend going with an HDD with a shockproof case.\n
\n
[This ineo t2580](https://www.newegg.com/ineo-t2580-case/p/2NG-006X-00003) looks good but I can’t seem to find the maximum capacity. Try not to use HDDs over 12TB and you should be fine.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 5
+score: 0
+lastActive: DateTime @1727238380 {#1381
date: 2024-09-25 06:26:20.0 +02:00
}
+ip: null
+tags: null
+mentions: [
"@M500@lemmy.ml"
]
+children: Doctrine\ORM\PersistentCollection {#1404 …}
+nested: Doctrine\ORM\PersistentCollection {#1361 …}
+votes: Doctrine\ORM\PersistentCollection {#1403 …}
+reports: Doctrine\ORM\PersistentCollection {#2023 …}
+favourites: Doctrine\ORM\PersistentCollection {#2032 …}
+notifications: Doctrine\ORM\PersistentCollection {#2024 …}
-id: 236785
-bodyTs: "'/ineo-t2580-case/p/2ng-006x-00003)':27 '12tb':46 'bitflip':9 'capac':39 'case':21 'charg':3 'find':36 'fine':51 'go':14 'good':29 'hdd':17 'hdds':44 'ineo':23 'look':28 'lose':2 'maximum':38 'might':10 'occur':11 'recommend':13 'seem':34 'shockproof':20 'ssds':1 't2580':24 'time':5 'tri':40 'use':43 'within':6 'www.newegg.com':26 'www.newegg.com/ineo-t2580-case/p/2ng-006x-00003)':25 'year':8"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://feddit.de/comment/5186571"
+editedAt: null
+createdAt: DateTimeImmutable @1701070747 {#1383
date: 2023-11-27 08:39:07.0 +01:00
}
} |
|
Show voter details
|
20 |
DENIED
|
moderate
|
App\Entity\EntryComment {#1382
+user: App\Entity\User {#2018 …}
+entry: Proxies\__CG__\App\Entity\Entry {#1401 …}
+magazine: App\Entity\Magazine {#305
+icon: null
+name: "datahoarder@lemmy.ml"
+title: "datahoarder"
+description: """
**Who are we?**\n
\n
We are digital librarians. Among us are represented the various reasons to keep data – legal requirements, competitive requirements, uncertainty of permanence of cloud services, distaste for transmitting your data externally (e.g. government or corporate espionage), cultural and familial archivists, internet collapse preppers, and people who do it themselves so they’re sure it’s done right. Everyone has their reasons for curating the data they have decided to keep (either forever or For A Damn Long Time). Along the way we have sought out like-minded individuals to exchange strategies, war stories, and cautionary tales of failures.\n
\n
We are one. We are legion. And we’re trying really hard not to forget.\n
\n
– 5-4-3-2-1-bang from [this thread](https://web.archive.org/web/20221111153119/https://old.reddit.com/r/DataHoarder/comments/41tqt4/hi_guys_can_i_kindly_ask_for_an_eli5_of_this/cz53pi0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 58
+entryCommentCount: 311
+postCount: 1
+postCommentCount: 1
+isAdult: false
+customCss: null
+lastActive: DateTime @1729502222 {#313
date: 2024-10-21 11:17:02.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#293 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#289 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#278 …}
+entries: Doctrine\ORM\PersistentCollection {#236 …}
+posts: Doctrine\ORM\PersistentCollection {#194 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#256 …}
+bans: Doctrine\ORM\PersistentCollection {#173 …}
+reports: Doctrine\ORM\PersistentCollection {#159 …}
+badges: Doctrine\ORM\PersistentCollection {#137 …}
+logs: Doctrine\ORM\PersistentCollection {#127 …}
+awards: Doctrine\ORM\PersistentCollection {#116 …}
+categories: Doctrine\ORM\PersistentCollection {#103 …}
-id: 32
+apId: "datahoarder@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/datahoarder"
+apPublicUrl: "https://lemmy.ml/c/datahoarder"
+apFollowersUrl: "https://lemmy.ml/c/datahoarder/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "datahoarder"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729303437 {#314
date: 2024-10-19 04:03:57.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1695727192 {#308
date: 2023-09-26 13:19:52.0 +02:00
}
}
+image: null
+parent: null
+root: null
+body: """
SSDs lose charge over time. Within a year, bitflips might occur. I recommend going with an HDD with a shockproof case.\n
\n
[This ineo t2580](https://www.newegg.com/ineo-t2580-case/p/2NG-006X-00003) looks good but I can’t seem to find the maximum capacity. Try not to use HDDs over 12TB and you should be fine.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 5
+score: 0
+lastActive: DateTime @1727238380 {#1381
date: 2024-09-25 06:26:20.0 +02:00
}
+ip: null
+tags: null
+mentions: [
"@M500@lemmy.ml"
]
+children: Doctrine\ORM\PersistentCollection {#1404 …}
+nested: Doctrine\ORM\PersistentCollection {#1361 …}
+votes: Doctrine\ORM\PersistentCollection {#1403 …}
+reports: Doctrine\ORM\PersistentCollection {#2023 …}
+favourites: Doctrine\ORM\PersistentCollection {#2032 …}
+notifications: Doctrine\ORM\PersistentCollection {#2024 …}
-id: 236785
-bodyTs: "'/ineo-t2580-case/p/2ng-006x-00003)':27 '12tb':46 'bitflip':9 'capac':39 'case':21 'charg':3 'find':36 'fine':51 'go':14 'good':29 'hdd':17 'hdds':44 'ineo':23 'look':28 'lose':2 'maximum':38 'might':10 'occur':11 'recommend':13 'seem':34 'shockproof':20 'ssds':1 't2580':24 'time':5 'tri':40 'use':43 'within':6 'www.newegg.com':26 'www.newegg.com/ineo-t2580-case/p/2ng-006x-00003)':25 'year':8"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://feddit.de/comment/5186571"
+editedAt: null
+createdAt: DateTimeImmutable @1701070747 {#1383
date: 2023-11-27 08:39:07.0 +01:00
}
} |
|
Show voter details
|
21 |
DENIED
|
ROLE_USER
|
null |
|
Show voter details
|
22 |
DENIED
|
moderate
|
App\Entity\EntryComment {#3076
+user: Proxies\__CG__\App\Entity\User {#3075 …}
+entry: Proxies\__CG__\App\Entity\Entry {#1401 …}
+magazine: App\Entity\Magazine {#305
+icon: null
+name: "datahoarder@lemmy.ml"
+title: "datahoarder"
+description: """
**Who are we?**\n
\n
We are digital librarians. Among us are represented the various reasons to keep data – legal requirements, competitive requirements, uncertainty of permanence of cloud services, distaste for transmitting your data externally (e.g. government or corporate espionage), cultural and familial archivists, internet collapse preppers, and people who do it themselves so they’re sure it’s done right. Everyone has their reasons for curating the data they have decided to keep (either forever or For A Damn Long Time). Along the way we have sought out like-minded individuals to exchange strategies, war stories, and cautionary tales of failures.\n
\n
We are one. We are legion. And we’re trying really hard not to forget.\n
\n
– 5-4-3-2-1-bang from [this thread](https://web.archive.org/web/20221111153119/https://old.reddit.com/r/DataHoarder/comments/41tqt4/hi_guys_can_i_kindly_ask_for_an_eli5_of_this/cz53pi0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 58
+entryCommentCount: 311
+postCount: 1
+postCommentCount: 1
+isAdult: false
+customCss: null
+lastActive: DateTime @1729502222 {#313
date: 2024-10-21 11:17:02.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#293 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#289 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#278 …}
+entries: Doctrine\ORM\PersistentCollection {#236 …}
+posts: Doctrine\ORM\PersistentCollection {#194 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#256 …}
+bans: Doctrine\ORM\PersistentCollection {#173 …}
+reports: Doctrine\ORM\PersistentCollection {#159 …}
+badges: Doctrine\ORM\PersistentCollection {#137 …}
+logs: Doctrine\ORM\PersistentCollection {#127 …}
+awards: Doctrine\ORM\PersistentCollection {#116 …}
+categories: Doctrine\ORM\PersistentCollection {#103 …}
-id: 32
+apId: "datahoarder@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/datahoarder"
+apPublicUrl: "https://lemmy.ml/c/datahoarder"
+apFollowersUrl: "https://lemmy.ml/c/datahoarder/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "datahoarder"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729303437 {#314
date: 2024-10-19 04:03:57.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1695727192 {#308
date: 2023-09-26 13:19:52.0 +02:00
}
}
+image: null
+parent: App\Entity\EntryComment {#1382
+user: App\Entity\User {#2018 …}
+entry: Proxies\__CG__\App\Entity\Entry {#1401 …}
+magazine: App\Entity\Magazine {#305}
+image: null
+parent: null
+root: null
+body: """
SSDs lose charge over time. Within a year, bitflips might occur. I recommend going with an HDD with a shockproof case.\n
\n
[This ineo t2580](https://www.newegg.com/ineo-t2580-case/p/2NG-006X-00003) looks good but I can’t seem to find the maximum capacity. Try not to use HDDs over 12TB and you should be fine.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 5
+score: 0
+lastActive: DateTime @1727238380 {#1381
date: 2024-09-25 06:26:20.0 +02:00
}
+ip: null
+tags: null
+mentions: [
"@M500@lemmy.ml"
]
+children: Doctrine\ORM\PersistentCollection {#1404 …}
+nested: Doctrine\ORM\PersistentCollection {#1361 …}
+votes: Doctrine\ORM\PersistentCollection {#1403 …}
+reports: Doctrine\ORM\PersistentCollection {#2023 …}
+favourites: Doctrine\ORM\PersistentCollection {#2032 …}
+notifications: Doctrine\ORM\PersistentCollection {#2024 …}
-id: 236785
-bodyTs: "'/ineo-t2580-case/p/2ng-006x-00003)':27 '12tb':46 'bitflip':9 'capac':39 'case':21 'charg':3 'find':36 'fine':51 'go':14 'good':29 'hdd':17 'hdds':44 'ineo':23 'look':28 'lose':2 'maximum':38 'might':10 'occur':11 'recommend':13 'seem':34 'shockproof':20 'ssds':1 't2580':24 'time':5 'tri':40 'use':43 'within':6 'www.newegg.com':26 'www.newegg.com/ineo-t2580-case/p/2ng-006x-00003)':25 'year':8"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://feddit.de/comment/5186571"
+editedAt: null
+createdAt: DateTimeImmutable @1701070747 {#1383
date: 2023-11-27 08:39:07.0 +01:00
}
}
+root: App\Entity\EntryComment {#1382}
+body: """
If you avoid QLC drives, keep it at a reasonable temperature, and don’t use a drive that’s had a large number of write cycles, it will be fine for a year.\n
\n
I would definitely read everything on the disk yearly so the controller can detect any weak blocks and rewrite them though. A good way to read everything would be to take a checksum. You can then compare that to the previous checksum to make sure the files haven’t changed too.\n
\n
Mechanical drives have issues with long term storage as well. When hard drives get older, sometimes they will just refuse to spin up after sitting for a long time.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1701075402 {#3078
date: 2023-11-27 09:56:42.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@M500@lemmy.ml"
"@Helix@feddit.de"
]
+children: Doctrine\ORM\PersistentCollection {#3074 …}
+nested: Doctrine\ORM\PersistentCollection {#3072 …}
+votes: Doctrine\ORM\PersistentCollection {#3070 …}
+reports: Doctrine\ORM\PersistentCollection {#3068 …}
+favourites: Doctrine\ORM\PersistentCollection {#3066 …}
+notifications: Doctrine\ORM\PersistentCollection {#3064 …}
-id: 327136
-bodyTs: "'avoid':3 'block':50 'chang':83 'checksum':66,75 'compar':70 'control':45 'cycl':26 'definit':36 'detect':47 'disk':41 'drive':5,17,86,97 'everyth':38,60 'file':80 'fine':30 'get':98 'good':56 'hard':96 'haven':81 'issu':88 'keep':6 'larg':22 'long':90,112 'make':77 'mechan':85 'number':23 'older':99 'previous':74 'qlc':4 'read':37,59 'reason':10 'refus':104 'rewrit':52 'sit':109 'sometim':100 'spin':106 'storag':92 'sure':78 'take':64 'temperatur':11 'term':91 'though':54 'time':113 'use':15 'way':57 'weak':49 'well':94 'would':35,61 'write':25 'year':33,42"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5213315"
+editedAt: null
+createdAt: DateTimeImmutable @1701075402 {#3077
date: 2023-11-27 09:56:42.0 +01:00
}
} |
|
Show voter details
|
23 |
DENIED
|
edit
|
App\Entity\EntryComment {#3076
+user: Proxies\__CG__\App\Entity\User {#3075 …}
+entry: Proxies\__CG__\App\Entity\Entry {#1401 …}
+magazine: App\Entity\Magazine {#305
+icon: null
+name: "datahoarder@lemmy.ml"
+title: "datahoarder"
+description: """
**Who are we?**\n
\n
We are digital librarians. Among us are represented the various reasons to keep data – legal requirements, competitive requirements, uncertainty of permanence of cloud services, distaste for transmitting your data externally (e.g. government or corporate espionage), cultural and familial archivists, internet collapse preppers, and people who do it themselves so they’re sure it’s done right. Everyone has their reasons for curating the data they have decided to keep (either forever or For A Damn Long Time). Along the way we have sought out like-minded individuals to exchange strategies, war stories, and cautionary tales of failures.\n
\n
We are one. We are legion. And we’re trying really hard not to forget.\n
\n
– 5-4-3-2-1-bang from [this thread](https://web.archive.org/web/20221111153119/https://old.reddit.com/r/DataHoarder/comments/41tqt4/hi_guys_can_i_kindly_ask_for_an_eli5_of_this/cz53pi0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 58
+entryCommentCount: 311
+postCount: 1
+postCommentCount: 1
+isAdult: false
+customCss: null
+lastActive: DateTime @1729502222 {#313
date: 2024-10-21 11:17:02.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#293 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#289 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#278 …}
+entries: Doctrine\ORM\PersistentCollection {#236 …}
+posts: Doctrine\ORM\PersistentCollection {#194 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#256 …}
+bans: Doctrine\ORM\PersistentCollection {#173 …}
+reports: Doctrine\ORM\PersistentCollection {#159 …}
+badges: Doctrine\ORM\PersistentCollection {#137 …}
+logs: Doctrine\ORM\PersistentCollection {#127 …}
+awards: Doctrine\ORM\PersistentCollection {#116 …}
+categories: Doctrine\ORM\PersistentCollection {#103 …}
-id: 32
+apId: "datahoarder@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/datahoarder"
+apPublicUrl: "https://lemmy.ml/c/datahoarder"
+apFollowersUrl: "https://lemmy.ml/c/datahoarder/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "datahoarder"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729303437 {#314
date: 2024-10-19 04:03:57.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1695727192 {#308
date: 2023-09-26 13:19:52.0 +02:00
}
}
+image: null
+parent: App\Entity\EntryComment {#1382
+user: App\Entity\User {#2018 …}
+entry: Proxies\__CG__\App\Entity\Entry {#1401 …}
+magazine: App\Entity\Magazine {#305}
+image: null
+parent: null
+root: null
+body: """
SSDs lose charge over time. Within a year, bitflips might occur. I recommend going with an HDD with a shockproof case.\n
\n
[This ineo t2580](https://www.newegg.com/ineo-t2580-case/p/2NG-006X-00003) looks good but I can’t seem to find the maximum capacity. Try not to use HDDs over 12TB and you should be fine.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 5
+score: 0
+lastActive: DateTime @1727238380 {#1381
date: 2024-09-25 06:26:20.0 +02:00
}
+ip: null
+tags: null
+mentions: [
"@M500@lemmy.ml"
]
+children: Doctrine\ORM\PersistentCollection {#1404 …}
+nested: Doctrine\ORM\PersistentCollection {#1361 …}
+votes: Doctrine\ORM\PersistentCollection {#1403 …}
+reports: Doctrine\ORM\PersistentCollection {#2023 …}
+favourites: Doctrine\ORM\PersistentCollection {#2032 …}
+notifications: Doctrine\ORM\PersistentCollection {#2024 …}
-id: 236785
-bodyTs: "'/ineo-t2580-case/p/2ng-006x-00003)':27 '12tb':46 'bitflip':9 'capac':39 'case':21 'charg':3 'find':36 'fine':51 'go':14 'good':29 'hdd':17 'hdds':44 'ineo':23 'look':28 'lose':2 'maximum':38 'might':10 'occur':11 'recommend':13 'seem':34 'shockproof':20 'ssds':1 't2580':24 'time':5 'tri':40 'use':43 'within':6 'www.newegg.com':26 'www.newegg.com/ineo-t2580-case/p/2ng-006x-00003)':25 'year':8"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://feddit.de/comment/5186571"
+editedAt: null
+createdAt: DateTimeImmutable @1701070747 {#1383
date: 2023-11-27 08:39:07.0 +01:00
}
}
+root: App\Entity\EntryComment {#1382}
+body: """
If you avoid QLC drives, keep it at a reasonable temperature, and don’t use a drive that’s had a large number of write cycles, it will be fine for a year.\n
\n
I would definitely read everything on the disk yearly so the controller can detect any weak blocks and rewrite them though. A good way to read everything would be to take a checksum. You can then compare that to the previous checksum to make sure the files haven’t changed too.\n
\n
Mechanical drives have issues with long term storage as well. When hard drives get older, sometimes they will just refuse to spin up after sitting for a long time.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1701075402 {#3078
date: 2023-11-27 09:56:42.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@M500@lemmy.ml"
"@Helix@feddit.de"
]
+children: Doctrine\ORM\PersistentCollection {#3074 …}
+nested: Doctrine\ORM\PersistentCollection {#3072 …}
+votes: Doctrine\ORM\PersistentCollection {#3070 …}
+reports: Doctrine\ORM\PersistentCollection {#3068 …}
+favourites: Doctrine\ORM\PersistentCollection {#3066 …}
+notifications: Doctrine\ORM\PersistentCollection {#3064 …}
-id: 327136
-bodyTs: "'avoid':3 'block':50 'chang':83 'checksum':66,75 'compar':70 'control':45 'cycl':26 'definit':36 'detect':47 'disk':41 'drive':5,17,86,97 'everyth':38,60 'file':80 'fine':30 'get':98 'good':56 'hard':96 'haven':81 'issu':88 'keep':6 'larg':22 'long':90,112 'make':77 'mechan':85 'number':23 'older':99 'previous':74 'qlc':4 'read':37,59 'reason':10 'refus':104 'rewrit':52 'sit':109 'sometim':100 'spin':106 'storag':92 'sure':78 'take':64 'temperatur':11 'term':91 'though':54 'time':113 'use':15 'way':57 'weak':49 'well':94 'would':35,61 'write':25 'year':33,42"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5213315"
+editedAt: null
+createdAt: DateTimeImmutable @1701075402 {#3077
date: 2023-11-27 09:56:42.0 +01:00
}
} |
|
Show voter details
|
24 |
DENIED
|
moderate
|
App\Entity\EntryComment {#3076
+user: Proxies\__CG__\App\Entity\User {#3075 …}
+entry: Proxies\__CG__\App\Entity\Entry {#1401 …}
+magazine: App\Entity\Magazine {#305
+icon: null
+name: "datahoarder@lemmy.ml"
+title: "datahoarder"
+description: """
**Who are we?**\n
\n
We are digital librarians. Among us are represented the various reasons to keep data – legal requirements, competitive requirements, uncertainty of permanence of cloud services, distaste for transmitting your data externally (e.g. government or corporate espionage), cultural and familial archivists, internet collapse preppers, and people who do it themselves so they’re sure it’s done right. Everyone has their reasons for curating the data they have decided to keep (either forever or For A Damn Long Time). Along the way we have sought out like-minded individuals to exchange strategies, war stories, and cautionary tales of failures.\n
\n
We are one. We are legion. And we’re trying really hard not to forget.\n
\n
– 5-4-3-2-1-bang from [this thread](https://web.archive.org/web/20221111153119/https://old.reddit.com/r/DataHoarder/comments/41tqt4/hi_guys_can_i_kindly_ask_for_an_eli5_of_this/cz53pi0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 58
+entryCommentCount: 311
+postCount: 1
+postCommentCount: 1
+isAdult: false
+customCss: null
+lastActive: DateTime @1729502222 {#313
date: 2024-10-21 11:17:02.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#293 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#289 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#278 …}
+entries: Doctrine\ORM\PersistentCollection {#236 …}
+posts: Doctrine\ORM\PersistentCollection {#194 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#256 …}
+bans: Doctrine\ORM\PersistentCollection {#173 …}
+reports: Doctrine\ORM\PersistentCollection {#159 …}
+badges: Doctrine\ORM\PersistentCollection {#137 …}
+logs: Doctrine\ORM\PersistentCollection {#127 …}
+awards: Doctrine\ORM\PersistentCollection {#116 …}
+categories: Doctrine\ORM\PersistentCollection {#103 …}
-id: 32
+apId: "datahoarder@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/datahoarder"
+apPublicUrl: "https://lemmy.ml/c/datahoarder"
+apFollowersUrl: "https://lemmy.ml/c/datahoarder/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "datahoarder"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729303437 {#314
date: 2024-10-19 04:03:57.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1695727192 {#308
date: 2023-09-26 13:19:52.0 +02:00
}
}
+image: null
+parent: App\Entity\EntryComment {#1382
+user: App\Entity\User {#2018 …}
+entry: Proxies\__CG__\App\Entity\Entry {#1401 …}
+magazine: App\Entity\Magazine {#305}
+image: null
+parent: null
+root: null
+body: """
SSDs lose charge over time. Within a year, bitflips might occur. I recommend going with an HDD with a shockproof case.\n
\n
[This ineo t2580](https://www.newegg.com/ineo-t2580-case/p/2NG-006X-00003) looks good but I can’t seem to find the maximum capacity. Try not to use HDDs over 12TB and you should be fine.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 5
+score: 0
+lastActive: DateTime @1727238380 {#1381
date: 2024-09-25 06:26:20.0 +02:00
}
+ip: null
+tags: null
+mentions: [
"@M500@lemmy.ml"
]
+children: Doctrine\ORM\PersistentCollection {#1404 …}
+nested: Doctrine\ORM\PersistentCollection {#1361 …}
+votes: Doctrine\ORM\PersistentCollection {#1403 …}
+reports: Doctrine\ORM\PersistentCollection {#2023 …}
+favourites: Doctrine\ORM\PersistentCollection {#2032 …}
+notifications: Doctrine\ORM\PersistentCollection {#2024 …}
-id: 236785
-bodyTs: "'/ineo-t2580-case/p/2ng-006x-00003)':27 '12tb':46 'bitflip':9 'capac':39 'case':21 'charg':3 'find':36 'fine':51 'go':14 'good':29 'hdd':17 'hdds':44 'ineo':23 'look':28 'lose':2 'maximum':38 'might':10 'occur':11 'recommend':13 'seem':34 'shockproof':20 'ssds':1 't2580':24 'time':5 'tri':40 'use':43 'within':6 'www.newegg.com':26 'www.newegg.com/ineo-t2580-case/p/2ng-006x-00003)':25 'year':8"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://feddit.de/comment/5186571"
+editedAt: null
+createdAt: DateTimeImmutable @1701070747 {#1383
date: 2023-11-27 08:39:07.0 +01:00
}
}
+root: App\Entity\EntryComment {#1382}
+body: """
If you avoid QLC drives, keep it at a reasonable temperature, and don’t use a drive that’s had a large number of write cycles, it will be fine for a year.\n
\n
I would definitely read everything on the disk yearly so the controller can detect any weak blocks and rewrite them though. A good way to read everything would be to take a checksum. You can then compare that to the previous checksum to make sure the files haven’t changed too.\n
\n
Mechanical drives have issues with long term storage as well. When hard drives get older, sometimes they will just refuse to spin up after sitting for a long time.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1701075402 {#3078
date: 2023-11-27 09:56:42.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@M500@lemmy.ml"
"@Helix@feddit.de"
]
+children: Doctrine\ORM\PersistentCollection {#3074 …}
+nested: Doctrine\ORM\PersistentCollection {#3072 …}
+votes: Doctrine\ORM\PersistentCollection {#3070 …}
+reports: Doctrine\ORM\PersistentCollection {#3068 …}
+favourites: Doctrine\ORM\PersistentCollection {#3066 …}
+notifications: Doctrine\ORM\PersistentCollection {#3064 …}
-id: 327136
-bodyTs: "'avoid':3 'block':50 'chang':83 'checksum':66,75 'compar':70 'control':45 'cycl':26 'definit':36 'detect':47 'disk':41 'drive':5,17,86,97 'everyth':38,60 'file':80 'fine':30 'get':98 'good':56 'hard':96 'haven':81 'issu':88 'keep':6 'larg':22 'long':90,112 'make':77 'mechan':85 'number':23 'older':99 'previous':74 'qlc':4 'read':37,59 'reason':10 'refus':104 'rewrit':52 'sit':109 'sometim':100 'spin':106 'storag':92 'sure':78 'take':64 'temperatur':11 'term':91 'though':54 'time':113 'use':15 'way':57 'weak':49 'well':94 'would':35,61 'write':25 'year':33,42"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5213315"
+editedAt: null
+createdAt: DateTimeImmutable @1701075402 {#3077
date: 2023-11-27 09:56:42.0 +01:00
}
} |
|
Show voter details
|
25 |
DENIED
|
ROLE_USER
|
null |
|
Show voter details
|
26 |
DENIED
|
moderate
|
App\Entity\EntryComment {#3060
+user: Proxies\__CG__\App\Entity\User {#3059 …}
+entry: Proxies\__CG__\App\Entity\Entry {#1401 …}
+magazine: App\Entity\Magazine {#305
+icon: null
+name: "datahoarder@lemmy.ml"
+title: "datahoarder"
+description: """
**Who are we?**\n
\n
We are digital librarians. Among us are represented the various reasons to keep data – legal requirements, competitive requirements, uncertainty of permanence of cloud services, distaste for transmitting your data externally (e.g. government or corporate espionage), cultural and familial archivists, internet collapse preppers, and people who do it themselves so they’re sure it’s done right. Everyone has their reasons for curating the data they have decided to keep (either forever or For A Damn Long Time). Along the way we have sought out like-minded individuals to exchange strategies, war stories, and cautionary tales of failures.\n
\n
We are one. We are legion. And we’re trying really hard not to forget.\n
\n
– 5-4-3-2-1-bang from [this thread](https://web.archive.org/web/20221111153119/https://old.reddit.com/r/DataHoarder/comments/41tqt4/hi_guys_can_i_kindly_ask_for_an_eli5_of_this/cz53pi0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 58
+entryCommentCount: 311
+postCount: 1
+postCommentCount: 1
+isAdult: false
+customCss: null
+lastActive: DateTime @1729502222 {#313
date: 2024-10-21 11:17:02.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#293 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#289 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#278 …}
+entries: Doctrine\ORM\PersistentCollection {#236 …}
+posts: Doctrine\ORM\PersistentCollection {#194 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#256 …}
+bans: Doctrine\ORM\PersistentCollection {#173 …}
+reports: Doctrine\ORM\PersistentCollection {#159 …}
+badges: Doctrine\ORM\PersistentCollection {#137 …}
+logs: Doctrine\ORM\PersistentCollection {#127 …}
+awards: Doctrine\ORM\PersistentCollection {#116 …}
+categories: Doctrine\ORM\PersistentCollection {#103 …}
-id: 32
+apId: "datahoarder@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/datahoarder"
+apPublicUrl: "https://lemmy.ml/c/datahoarder"
+apFollowersUrl: "https://lemmy.ml/c/datahoarder/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "datahoarder"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729303437 {#314
date: 2024-10-19 04:03:57.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1695727192 {#308
date: 2023-09-26 13:19:52.0 +02:00
}
}
+image: null
+parent: App\Entity\EntryComment {#1382
+user: App\Entity\User {#2018 …}
+entry: Proxies\__CG__\App\Entity\Entry {#1401 …}
+magazine: App\Entity\Magazine {#305}
+image: null
+parent: null
+root: null
+body: """
SSDs lose charge over time. Within a year, bitflips might occur. I recommend going with an HDD with a shockproof case.\n
\n
[This ineo t2580](https://www.newegg.com/ineo-t2580-case/p/2NG-006X-00003) looks good but I can’t seem to find the maximum capacity. Try not to use HDDs over 12TB and you should be fine.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 5
+score: 0
+lastActive: DateTime @1727238380 {#1381
date: 2024-09-25 06:26:20.0 +02:00
}
+ip: null
+tags: null
+mentions: [
"@M500@lemmy.ml"
]
+children: Doctrine\ORM\PersistentCollection {#1404 …}
+nested: Doctrine\ORM\PersistentCollection {#1361 …}
+votes: Doctrine\ORM\PersistentCollection {#1403 …}
+reports: Doctrine\ORM\PersistentCollection {#2023 …}
+favourites: Doctrine\ORM\PersistentCollection {#2032 …}
+notifications: Doctrine\ORM\PersistentCollection {#2024 …}
-id: 236785
-bodyTs: "'/ineo-t2580-case/p/2ng-006x-00003)':27 '12tb':46 'bitflip':9 'capac':39 'case':21 'charg':3 'find':36 'fine':51 'go':14 'good':29 'hdd':17 'hdds':44 'ineo':23 'look':28 'lose':2 'maximum':38 'might':10 'occur':11 'recommend':13 'seem':34 'shockproof':20 'ssds':1 't2580':24 'time':5 'tri':40 'use':43 'within':6 'www.newegg.com':26 'www.newegg.com/ineo-t2580-case/p/2ng-006x-00003)':25 'year':8"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://feddit.de/comment/5186571"
+editedAt: null
+createdAt: DateTimeImmutable @1701070747 {#1383
date: 2023-11-27 08:39:07.0 +01:00
}
}
+root: App\Entity\EntryComment {#1382}
+body: """
Thanks, I was thinking about a 1tb my passport from western digital.\n
\n
I live in a third world country so my options are a bit limited.\n
\n
I’m not worried about her dropping the drive, I just don’t want to ask her to lug around a 3.5” drive.\n
\n
Are mechanical drive resistant to bit flips?
"""
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1701070936 {#3062
date: 2023-11-27 08:42:16.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@M500@lemmy.ml"
"@Helix@feddit.de"
]
+children: Doctrine\ORM\PersistentCollection {#3058 …}
+nested: Doctrine\ORM\PersistentCollection {#3056 …}
+votes: Doctrine\ORM\PersistentCollection {#3054 …}
+reports: Doctrine\ORM\PersistentCollection {#3052 …}
+favourites: Doctrine\ORM\PersistentCollection {#3050 …}
+notifications: Doctrine\ORM\PersistentCollection {#3048 …}
-id: 326513
-bodyTs: "'1tb':7 '3.5':48 'around':46 'ask':42 'bit':25,55 'countri':19 'digit':12 'drive':35,49,52 'drop':33 'flip':56 'limit':26 'live':14 'lug':45 'm':28 'mechan':51 'option':22 'passport':9 'resist':53 'thank':1 'think':4 'third':17 'want':40 'western':11 'world':18 'worri':30"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.ml/comment/6155510"
+editedAt: null
+createdAt: DateTimeImmutable @1701070936 {#3061
date: 2023-11-27 08:42:16.0 +01:00
}
} |
|
Show voter details
|
27 |
DENIED
|
edit
|
App\Entity\EntryComment {#3060
+user: Proxies\__CG__\App\Entity\User {#3059 …}
+entry: Proxies\__CG__\App\Entity\Entry {#1401 …}
+magazine: App\Entity\Magazine {#305
+icon: null
+name: "datahoarder@lemmy.ml"
+title: "datahoarder"
+description: """
**Who are we?**\n
\n
We are digital librarians. Among us are represented the various reasons to keep data – legal requirements, competitive requirements, uncertainty of permanence of cloud services, distaste for transmitting your data externally (e.g. government or corporate espionage), cultural and familial archivists, internet collapse preppers, and people who do it themselves so they’re sure it’s done right. Everyone has their reasons for curating the data they have decided to keep (either forever or For A Damn Long Time). Along the way we have sought out like-minded individuals to exchange strategies, war stories, and cautionary tales of failures.\n
\n
We are one. We are legion. And we’re trying really hard not to forget.\n
\n
– 5-4-3-2-1-bang from [this thread](https://web.archive.org/web/20221111153119/https://old.reddit.com/r/DataHoarder/comments/41tqt4/hi_guys_can_i_kindly_ask_for_an_eli5_of_this/cz53pi0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 58
+entryCommentCount: 311
+postCount: 1
+postCommentCount: 1
+isAdult: false
+customCss: null
+lastActive: DateTime @1729502222 {#313
date: 2024-10-21 11:17:02.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#293 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#289 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#278 …}
+entries: Doctrine\ORM\PersistentCollection {#236 …}
+posts: Doctrine\ORM\PersistentCollection {#194 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#256 …}
+bans: Doctrine\ORM\PersistentCollection {#173 …}
+reports: Doctrine\ORM\PersistentCollection {#159 …}
+badges: Doctrine\ORM\PersistentCollection {#137 …}
+logs: Doctrine\ORM\PersistentCollection {#127 …}
+awards: Doctrine\ORM\PersistentCollection {#116 …}
+categories: Doctrine\ORM\PersistentCollection {#103 …}
-id: 32
+apId: "datahoarder@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/datahoarder"
+apPublicUrl: "https://lemmy.ml/c/datahoarder"
+apFollowersUrl: "https://lemmy.ml/c/datahoarder/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "datahoarder"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729303437 {#314
date: 2024-10-19 04:03:57.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1695727192 {#308
date: 2023-09-26 13:19:52.0 +02:00
}
}
+image: null
+parent: App\Entity\EntryComment {#1382
+user: App\Entity\User {#2018 …}
+entry: Proxies\__CG__\App\Entity\Entry {#1401 …}
+magazine: App\Entity\Magazine {#305}
+image: null
+parent: null
+root: null
+body: """
SSDs lose charge over time. Within a year, bitflips might occur. I recommend going with an HDD with a shockproof case.\n
\n
[This ineo t2580](https://www.newegg.com/ineo-t2580-case/p/2NG-006X-00003) looks good but I can’t seem to find the maximum capacity. Try not to use HDDs over 12TB and you should be fine.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 5
+score: 0
+lastActive: DateTime @1727238380 {#1381
date: 2024-09-25 06:26:20.0 +02:00
}
+ip: null
+tags: null
+mentions: [
"@M500@lemmy.ml"
]
+children: Doctrine\ORM\PersistentCollection {#1404 …}
+nested: Doctrine\ORM\PersistentCollection {#1361 …}
+votes: Doctrine\ORM\PersistentCollection {#1403 …}
+reports: Doctrine\ORM\PersistentCollection {#2023 …}
+favourites: Doctrine\ORM\PersistentCollection {#2032 …}
+notifications: Doctrine\ORM\PersistentCollection {#2024 …}
-id: 236785
-bodyTs: "'/ineo-t2580-case/p/2ng-006x-00003)':27 '12tb':46 'bitflip':9 'capac':39 'case':21 'charg':3 'find':36 'fine':51 'go':14 'good':29 'hdd':17 'hdds':44 'ineo':23 'look':28 'lose':2 'maximum':38 'might':10 'occur':11 'recommend':13 'seem':34 'shockproof':20 'ssds':1 't2580':24 'time':5 'tri':40 'use':43 'within':6 'www.newegg.com':26 'www.newegg.com/ineo-t2580-case/p/2ng-006x-00003)':25 'year':8"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://feddit.de/comment/5186571"
+editedAt: null
+createdAt: DateTimeImmutable @1701070747 {#1383
date: 2023-11-27 08:39:07.0 +01:00
}
}
+root: App\Entity\EntryComment {#1382}
+body: """
Thanks, I was thinking about a 1tb my passport from western digital.\n
\n
I live in a third world country so my options are a bit limited.\n
\n
I’m not worried about her dropping the drive, I just don’t want to ask her to lug around a 3.5” drive.\n
\n
Are mechanical drive resistant to bit flips?
"""
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1701070936 {#3062
date: 2023-11-27 08:42:16.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@M500@lemmy.ml"
"@Helix@feddit.de"
]
+children: Doctrine\ORM\PersistentCollection {#3058 …}
+nested: Doctrine\ORM\PersistentCollection {#3056 …}
+votes: Doctrine\ORM\PersistentCollection {#3054 …}
+reports: Doctrine\ORM\PersistentCollection {#3052 …}
+favourites: Doctrine\ORM\PersistentCollection {#3050 …}
+notifications: Doctrine\ORM\PersistentCollection {#3048 …}
-id: 326513
-bodyTs: "'1tb':7 '3.5':48 'around':46 'ask':42 'bit':25,55 'countri':19 'digit':12 'drive':35,49,52 'drop':33 'flip':56 'limit':26 'live':14 'lug':45 'm':28 'mechan':51 'option':22 'passport':9 'resist':53 'thank':1 'think':4 'third':17 'want':40 'western':11 'world':18 'worri':30"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.ml/comment/6155510"
+editedAt: null
+createdAt: DateTimeImmutable @1701070936 {#3061
date: 2023-11-27 08:42:16.0 +01:00
}
} |
|
Show voter details
|
28 |
DENIED
|
moderate
|
App\Entity\EntryComment {#3060
+user: Proxies\__CG__\App\Entity\User {#3059 …}
+entry: Proxies\__CG__\App\Entity\Entry {#1401 …}
+magazine: App\Entity\Magazine {#305
+icon: null
+name: "datahoarder@lemmy.ml"
+title: "datahoarder"
+description: """
**Who are we?**\n
\n
We are digital librarians. Among us are represented the various reasons to keep data – legal requirements, competitive requirements, uncertainty of permanence of cloud services, distaste for transmitting your data externally (e.g. government or corporate espionage), cultural and familial archivists, internet collapse preppers, and people who do it themselves so they’re sure it’s done right. Everyone has their reasons for curating the data they have decided to keep (either forever or For A Damn Long Time). Along the way we have sought out like-minded individuals to exchange strategies, war stories, and cautionary tales of failures.\n
\n
We are one. We are legion. And we’re trying really hard not to forget.\n
\n
– 5-4-3-2-1-bang from [this thread](https://web.archive.org/web/20221111153119/https://old.reddit.com/r/DataHoarder/comments/41tqt4/hi_guys_can_i_kindly_ask_for_an_eli5_of_this/cz53pi0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 58
+entryCommentCount: 311
+postCount: 1
+postCommentCount: 1
+isAdult: false
+customCss: null
+lastActive: DateTime @1729502222 {#313
date: 2024-10-21 11:17:02.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#293 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#289 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#278 …}
+entries: Doctrine\ORM\PersistentCollection {#236 …}
+posts: Doctrine\ORM\PersistentCollection {#194 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#256 …}
+bans: Doctrine\ORM\PersistentCollection {#173 …}
+reports: Doctrine\ORM\PersistentCollection {#159 …}
+badges: Doctrine\ORM\PersistentCollection {#137 …}
+logs: Doctrine\ORM\PersistentCollection {#127 …}
+awards: Doctrine\ORM\PersistentCollection {#116 …}
+categories: Doctrine\ORM\PersistentCollection {#103 …}
-id: 32
+apId: "datahoarder@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/datahoarder"
+apPublicUrl: "https://lemmy.ml/c/datahoarder"
+apFollowersUrl: "https://lemmy.ml/c/datahoarder/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "datahoarder"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729303437 {#314
date: 2024-10-19 04:03:57.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1695727192 {#308
date: 2023-09-26 13:19:52.0 +02:00
}
}
+image: null
+parent: App\Entity\EntryComment {#1382
+user: App\Entity\User {#2018 …}
+entry: Proxies\__CG__\App\Entity\Entry {#1401 …}
+magazine: App\Entity\Magazine {#305}
+image: null
+parent: null
+root: null
+body: """
SSDs lose charge over time. Within a year, bitflips might occur. I recommend going with an HDD with a shockproof case.\n
\n
[This ineo t2580](https://www.newegg.com/ineo-t2580-case/p/2NG-006X-00003) looks good but I can’t seem to find the maximum capacity. Try not to use HDDs over 12TB and you should be fine.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 5
+score: 0
+lastActive: DateTime @1727238380 {#1381
date: 2024-09-25 06:26:20.0 +02:00
}
+ip: null
+tags: null
+mentions: [
"@M500@lemmy.ml"
]
+children: Doctrine\ORM\PersistentCollection {#1404 …}
+nested: Doctrine\ORM\PersistentCollection {#1361 …}
+votes: Doctrine\ORM\PersistentCollection {#1403 …}
+reports: Doctrine\ORM\PersistentCollection {#2023 …}
+favourites: Doctrine\ORM\PersistentCollection {#2032 …}
+notifications: Doctrine\ORM\PersistentCollection {#2024 …}
-id: 236785
-bodyTs: "'/ineo-t2580-case/p/2ng-006x-00003)':27 '12tb':46 'bitflip':9 'capac':39 'case':21 'charg':3 'find':36 'fine':51 'go':14 'good':29 'hdd':17 'hdds':44 'ineo':23 'look':28 'lose':2 'maximum':38 'might':10 'occur':11 'recommend':13 'seem':34 'shockproof':20 'ssds':1 't2580':24 'time':5 'tri':40 'use':43 'within':6 'www.newegg.com':26 'www.newegg.com/ineo-t2580-case/p/2ng-006x-00003)':25 'year':8"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://feddit.de/comment/5186571"
+editedAt: null
+createdAt: DateTimeImmutable @1701070747 {#1383
date: 2023-11-27 08:39:07.0 +01:00
}
}
+root: App\Entity\EntryComment {#1382}
+body: """
Thanks, I was thinking about a 1tb my passport from western digital.\n
\n
I live in a third world country so my options are a bit limited.\n
\n
I’m not worried about her dropping the drive, I just don’t want to ask her to lug around a 3.5” drive.\n
\n
Are mechanical drive resistant to bit flips?
"""
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1701070936 {#3062
date: 2023-11-27 08:42:16.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@M500@lemmy.ml"
"@Helix@feddit.de"
]
+children: Doctrine\ORM\PersistentCollection {#3058 …}
+nested: Doctrine\ORM\PersistentCollection {#3056 …}
+votes: Doctrine\ORM\PersistentCollection {#3054 …}
+reports: Doctrine\ORM\PersistentCollection {#3052 …}
+favourites: Doctrine\ORM\PersistentCollection {#3050 …}
+notifications: Doctrine\ORM\PersistentCollection {#3048 …}
-id: 326513
-bodyTs: "'1tb':7 '3.5':48 'around':46 'ask':42 'bit':25,55 'countri':19 'digit':12 'drive':35,49,52 'drop':33 'flip':56 'limit':26 'live':14 'lug':45 'm':28 'mechan':51 'option':22 'passport':9 'resist':53 'thank':1 'think':4 'third':17 'want':40 'western':11 'world':18 'worri':30"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.ml/comment/6155510"
+editedAt: null
+createdAt: DateTimeImmutable @1701070936 {#3061
date: 2023-11-27 08:42:16.0 +01:00
}
} |
|
Show voter details
|
29 |
DENIED
|
ROLE_USER
|
null |
|
Show voter details
|
30 |
DENIED
|
moderate
|
App\Entity\EntryComment {#2332
+user: App\Entity\User {#2327 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2344 …}
+magazine: App\Entity\Magazine {#305
+icon: null
+name: "datahoarder@lemmy.ml"
+title: "datahoarder"
+description: """
**Who are we?**\n
\n
We are digital librarians. Among us are represented the various reasons to keep data – legal requirements, competitive requirements, uncertainty of permanence of cloud services, distaste for transmitting your data externally (e.g. government or corporate espionage), cultural and familial archivists, internet collapse preppers, and people who do it themselves so they’re sure it’s done right. Everyone has their reasons for curating the data they have decided to keep (either forever or For A Damn Long Time). Along the way we have sought out like-minded individuals to exchange strategies, war stories, and cautionary tales of failures.\n
\n
We are one. We are legion. And we’re trying really hard not to forget.\n
\n
– 5-4-3-2-1-bang from [this thread](https://web.archive.org/web/20221111153119/https://old.reddit.com/r/DataHoarder/comments/41tqt4/hi_guys_can_i_kindly_ask_for_an_eli5_of_this/cz53pi0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 58
+entryCommentCount: 311
+postCount: 1
+postCommentCount: 1
+isAdult: false
+customCss: null
+lastActive: DateTime @1729502222 {#313
date: 2024-10-21 11:17:02.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#293 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#289 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#278 …}
+entries: Doctrine\ORM\PersistentCollection {#236 …}
+posts: Doctrine\ORM\PersistentCollection {#194 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#256 …}
+bans: Doctrine\ORM\PersistentCollection {#173 …}
+reports: Doctrine\ORM\PersistentCollection {#159 …}
+badges: Doctrine\ORM\PersistentCollection {#137 …}
+logs: Doctrine\ORM\PersistentCollection {#127 …}
+awards: Doctrine\ORM\PersistentCollection {#116 …}
+categories: Doctrine\ORM\PersistentCollection {#103 …}
-id: 32
+apId: "datahoarder@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/datahoarder"
+apPublicUrl: "https://lemmy.ml/c/datahoarder"
+apFollowersUrl: "https://lemmy.ml/c/datahoarder/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "datahoarder"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729303437 {#314
date: 2024-10-19 04:03:57.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1695727192 {#308
date: 2023-09-26 13:19:52.0 +02:00
}
}
+image: null
+parent: null
+root: null
+body: "You say the sound comes from the power supply and the HDD is not plugged into the computer. My diagnistic: the power-supply makes a noise when it operates at very low load (almost 0mA of current), it is probaly making the cyclic noise because of some blinking LED or another very small variation of the loaf somewhere. This is a very common symptom of cheap power-supplies, but it doesn’t necessarly mean it isn’t working normally, just an annoyance."
+lang: "en"
+isAdult: false
+favouriteCount: 2
+score: 0
+lastActive: DateTime @1720885403 {#2330
date: 2024-07-13 17:43:23.0 +02:00
}
+ip: null
+tags: null
+mentions: [
"@otp@sh.itjust.works"
]
+children: Doctrine\ORM\PersistentCollection {#2349 …}
+nested: Doctrine\ORM\PersistentCollection {#2141 …}
+votes: Doctrine\ORM\PersistentCollection {#2164 …}
+reports: Doctrine\ORM\PersistentCollection {#2314 …}
+favourites: Doctrine\ORM\PersistentCollection {#2328 …}
+notifications: Doctrine\ORM\PersistentCollection {#2191 …}
-id: 295334
-bodyTs: "'0ma':36 'almost':35 'annoy':84 'anoth':52 'blink':49 'cheap':67 'come':5 'common':64 'comput':18 'current':38 'cyclic':44 'diagnist':20 'doesn':73 'hdd':12 'isn':78 'led':50 'load':34 'loaf':58 'low':33 'make':25,42 'mean':76 'necessar':75 'nois':27,45 'normal':81 'oper':30 'plug':15 'power':8,23,69 'power-suppli':22,68 'probali':41 'say':2 'small':54 'somewher':59 'sound':4 'suppli':9,24,70 'symptom':65 'variat':55 'work':80"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.world/comment/6547335"
+editedAt: null
+createdAt: DateTimeImmutable @1704875011 {#2348
date: 2024-01-10 09:23:31.0 +01:00
}
} |
|
Show voter details
|
31 |
DENIED
|
edit
|
App\Entity\EntryComment {#2332
+user: App\Entity\User {#2327 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2344 …}
+magazine: App\Entity\Magazine {#305
+icon: null
+name: "datahoarder@lemmy.ml"
+title: "datahoarder"
+description: """
**Who are we?**\n
\n
We are digital librarians. Among us are represented the various reasons to keep data – legal requirements, competitive requirements, uncertainty of permanence of cloud services, distaste for transmitting your data externally (e.g. government or corporate espionage), cultural and familial archivists, internet collapse preppers, and people who do it themselves so they’re sure it’s done right. Everyone has their reasons for curating the data they have decided to keep (either forever or For A Damn Long Time). Along the way we have sought out like-minded individuals to exchange strategies, war stories, and cautionary tales of failures.\n
\n
We are one. We are legion. And we’re trying really hard not to forget.\n
\n
– 5-4-3-2-1-bang from [this thread](https://web.archive.org/web/20221111153119/https://old.reddit.com/r/DataHoarder/comments/41tqt4/hi_guys_can_i_kindly_ask_for_an_eli5_of_this/cz53pi0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 58
+entryCommentCount: 311
+postCount: 1
+postCommentCount: 1
+isAdult: false
+customCss: null
+lastActive: DateTime @1729502222 {#313
date: 2024-10-21 11:17:02.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#293 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#289 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#278 …}
+entries: Doctrine\ORM\PersistentCollection {#236 …}
+posts: Doctrine\ORM\PersistentCollection {#194 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#256 …}
+bans: Doctrine\ORM\PersistentCollection {#173 …}
+reports: Doctrine\ORM\PersistentCollection {#159 …}
+badges: Doctrine\ORM\PersistentCollection {#137 …}
+logs: Doctrine\ORM\PersistentCollection {#127 …}
+awards: Doctrine\ORM\PersistentCollection {#116 …}
+categories: Doctrine\ORM\PersistentCollection {#103 …}
-id: 32
+apId: "datahoarder@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/datahoarder"
+apPublicUrl: "https://lemmy.ml/c/datahoarder"
+apFollowersUrl: "https://lemmy.ml/c/datahoarder/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "datahoarder"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729303437 {#314
date: 2024-10-19 04:03:57.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1695727192 {#308
date: 2023-09-26 13:19:52.0 +02:00
}
}
+image: null
+parent: null
+root: null
+body: "You say the sound comes from the power supply and the HDD is not plugged into the computer. My diagnistic: the power-supply makes a noise when it operates at very low load (almost 0mA of current), it is probaly making the cyclic noise because of some blinking LED or another very small variation of the loaf somewhere. This is a very common symptom of cheap power-supplies, but it doesn’t necessarly mean it isn’t working normally, just an annoyance."
+lang: "en"
+isAdult: false
+favouriteCount: 2
+score: 0
+lastActive: DateTime @1720885403 {#2330
date: 2024-07-13 17:43:23.0 +02:00
}
+ip: null
+tags: null
+mentions: [
"@otp@sh.itjust.works"
]
+children: Doctrine\ORM\PersistentCollection {#2349 …}
+nested: Doctrine\ORM\PersistentCollection {#2141 …}
+votes: Doctrine\ORM\PersistentCollection {#2164 …}
+reports: Doctrine\ORM\PersistentCollection {#2314 …}
+favourites: Doctrine\ORM\PersistentCollection {#2328 …}
+notifications: Doctrine\ORM\PersistentCollection {#2191 …}
-id: 295334
-bodyTs: "'0ma':36 'almost':35 'annoy':84 'anoth':52 'blink':49 'cheap':67 'come':5 'common':64 'comput':18 'current':38 'cyclic':44 'diagnist':20 'doesn':73 'hdd':12 'isn':78 'led':50 'load':34 'loaf':58 'low':33 'make':25,42 'mean':76 'necessar':75 'nois':27,45 'normal':81 'oper':30 'plug':15 'power':8,23,69 'power-suppli':22,68 'probali':41 'say':2 'small':54 'somewher':59 'sound':4 'suppli':9,24,70 'symptom':65 'variat':55 'work':80"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.world/comment/6547335"
+editedAt: null
+createdAt: DateTimeImmutable @1704875011 {#2348
date: 2024-01-10 09:23:31.0 +01:00
}
} |
|
Show voter details
|
32 |
DENIED
|
moderate
|
App\Entity\EntryComment {#2332
+user: App\Entity\User {#2327 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2344 …}
+magazine: App\Entity\Magazine {#305
+icon: null
+name: "datahoarder@lemmy.ml"
+title: "datahoarder"
+description: """
**Who are we?**\n
\n
We are digital librarians. Among us are represented the various reasons to keep data – legal requirements, competitive requirements, uncertainty of permanence of cloud services, distaste for transmitting your data externally (e.g. government or corporate espionage), cultural and familial archivists, internet collapse preppers, and people who do it themselves so they’re sure it’s done right. Everyone has their reasons for curating the data they have decided to keep (either forever or For A Damn Long Time). Along the way we have sought out like-minded individuals to exchange strategies, war stories, and cautionary tales of failures.\n
\n
We are one. We are legion. And we’re trying really hard not to forget.\n
\n
– 5-4-3-2-1-bang from [this thread](https://web.archive.org/web/20221111153119/https://old.reddit.com/r/DataHoarder/comments/41tqt4/hi_guys_can_i_kindly_ask_for_an_eli5_of_this/cz53pi0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 58
+entryCommentCount: 311
+postCount: 1
+postCommentCount: 1
+isAdult: false
+customCss: null
+lastActive: DateTime @1729502222 {#313
date: 2024-10-21 11:17:02.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#293 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#289 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#278 …}
+entries: Doctrine\ORM\PersistentCollection {#236 …}
+posts: Doctrine\ORM\PersistentCollection {#194 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#256 …}
+bans: Doctrine\ORM\PersistentCollection {#173 …}
+reports: Doctrine\ORM\PersistentCollection {#159 …}
+badges: Doctrine\ORM\PersistentCollection {#137 …}
+logs: Doctrine\ORM\PersistentCollection {#127 …}
+awards: Doctrine\ORM\PersistentCollection {#116 …}
+categories: Doctrine\ORM\PersistentCollection {#103 …}
-id: 32
+apId: "datahoarder@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/datahoarder"
+apPublicUrl: "https://lemmy.ml/c/datahoarder"
+apFollowersUrl: "https://lemmy.ml/c/datahoarder/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "datahoarder"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729303437 {#314
date: 2024-10-19 04:03:57.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1695727192 {#308
date: 2023-09-26 13:19:52.0 +02:00
}
}
+image: null
+parent: null
+root: null
+body: "You say the sound comes from the power supply and the HDD is not plugged into the computer. My diagnistic: the power-supply makes a noise when it operates at very low load (almost 0mA of current), it is probaly making the cyclic noise because of some blinking LED or another very small variation of the loaf somewhere. This is a very common symptom of cheap power-supplies, but it doesn’t necessarly mean it isn’t working normally, just an annoyance."
+lang: "en"
+isAdult: false
+favouriteCount: 2
+score: 0
+lastActive: DateTime @1720885403 {#2330
date: 2024-07-13 17:43:23.0 +02:00
}
+ip: null
+tags: null
+mentions: [
"@otp@sh.itjust.works"
]
+children: Doctrine\ORM\PersistentCollection {#2349 …}
+nested: Doctrine\ORM\PersistentCollection {#2141 …}
+votes: Doctrine\ORM\PersistentCollection {#2164 …}
+reports: Doctrine\ORM\PersistentCollection {#2314 …}
+favourites: Doctrine\ORM\PersistentCollection {#2328 …}
+notifications: Doctrine\ORM\PersistentCollection {#2191 …}
-id: 295334
-bodyTs: "'0ma':36 'almost':35 'annoy':84 'anoth':52 'blink':49 'cheap':67 'come':5 'common':64 'comput':18 'current':38 'cyclic':44 'diagnist':20 'doesn':73 'hdd':12 'isn':78 'led':50 'load':34 'loaf':58 'low':33 'make':25,42 'mean':76 'necessar':75 'nois':27,45 'normal':81 'oper':30 'plug':15 'power':8,23,69 'power-suppli':22,68 'probali':41 'say':2 'small':54 'somewher':59 'sound':4 'suppli':9,24,70 'symptom':65 'variat':55 'work':80"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.world/comment/6547335"
+editedAt: null
+createdAt: DateTimeImmutable @1704875011 {#2348
date: 2024-01-10 09:23:31.0 +01:00
}
} |
|
Show voter details
|
33 |
DENIED
|
ROLE_USER
|
null |
|
Show voter details
|
34 |
DENIED
|
moderate
|
App\Entity\EntryComment {#3245
+user: Proxies\__CG__\App\Entity\User {#3185 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2344 …}
+magazine: App\Entity\Magazine {#305
+icon: null
+name: "datahoarder@lemmy.ml"
+title: "datahoarder"
+description: """
**Who are we?**\n
\n
We are digital librarians. Among us are represented the various reasons to keep data – legal requirements, competitive requirements, uncertainty of permanence of cloud services, distaste for transmitting your data externally (e.g. government or corporate espionage), cultural and familial archivists, internet collapse preppers, and people who do it themselves so they’re sure it’s done right. Everyone has their reasons for curating the data they have decided to keep (either forever or For A Damn Long Time). Along the way we have sought out like-minded individuals to exchange strategies, war stories, and cautionary tales of failures.\n
\n
We are one. We are legion. And we’re trying really hard not to forget.\n
\n
– 5-4-3-2-1-bang from [this thread](https://web.archive.org/web/20221111153119/https://old.reddit.com/r/DataHoarder/comments/41tqt4/hi_guys_can_i_kindly_ask_for_an_eli5_of_this/cz53pi0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 58
+entryCommentCount: 311
+postCount: 1
+postCommentCount: 1
+isAdult: false
+customCss: null
+lastActive: DateTime @1729502222 {#313
date: 2024-10-21 11:17:02.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#293 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#289 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#278 …}
+entries: Doctrine\ORM\PersistentCollection {#236 …}
+posts: Doctrine\ORM\PersistentCollection {#194 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#256 …}
+bans: Doctrine\ORM\PersistentCollection {#173 …}
+reports: Doctrine\ORM\PersistentCollection {#159 …}
+badges: Doctrine\ORM\PersistentCollection {#137 …}
+logs: Doctrine\ORM\PersistentCollection {#127 …}
+awards: Doctrine\ORM\PersistentCollection {#116 …}
+categories: Doctrine\ORM\PersistentCollection {#103 …}
-id: 32
+apId: "datahoarder@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/datahoarder"
+apPublicUrl: "https://lemmy.ml/c/datahoarder"
+apFollowersUrl: "https://lemmy.ml/c/datahoarder/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "datahoarder"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729303437 {#314
date: 2024-10-19 04:03:57.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1695727192 {#308
date: 2023-09-26 13:19:52.0 +02:00
}
}
+image: null
+parent: App\Entity\EntryComment {#2332
+user: App\Entity\User {#2327 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2344 …}
+magazine: App\Entity\Magazine {#305}
+image: null
+parent: null
+root: null
+body: "You say the sound comes from the power supply and the HDD is not plugged into the computer. My diagnistic: the power-supply makes a noise when it operates at very low load (almost 0mA of current), it is probaly making the cyclic noise because of some blinking LED or another very small variation of the loaf somewhere. This is a very common symptom of cheap power-supplies, but it doesn’t necessarly mean it isn’t working normally, just an annoyance."
+lang: "en"
+isAdult: false
+favouriteCount: 2
+score: 0
+lastActive: DateTime @1720885403 {#2330
date: 2024-07-13 17:43:23.0 +02:00
}
+ip: null
+tags: null
+mentions: [
"@otp@sh.itjust.works"
]
+children: Doctrine\ORM\PersistentCollection {#2349 …}
+nested: Doctrine\ORM\PersistentCollection {#2141 …}
+votes: Doctrine\ORM\PersistentCollection {#2164 …}
+reports: Doctrine\ORM\PersistentCollection {#2314 …}
+favourites: Doctrine\ORM\PersistentCollection {#2328 …}
+notifications: Doctrine\ORM\PersistentCollection {#2191 …}
-id: 295334
-bodyTs: "'0ma':36 'almost':35 'annoy':84 'anoth':52 'blink':49 'cheap':67 'come':5 'common':64 'comput':18 'current':38 'cyclic':44 'diagnist':20 'doesn':73 'hdd':12 'isn':78 'led':50 'load':34 'loaf':58 'low':33 'make':25,42 'mean':76 'necessar':75 'nois':27,45 'normal':81 'oper':30 'plug':15 'power':8,23,69 'power-suppli':22,68 'probali':41 'say':2 'small':54 'somewher':59 'sound':4 'suppli':9,24,70 'symptom':65 'variat':55 'work':80"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.world/comment/6547335"
+editedAt: null
+createdAt: DateTimeImmutable @1704875011 {#2348
date: 2024-01-10 09:23:31.0 +01:00
}
}
+root: App\Entity\EntryComment {#2332}
+body: """
It’s weird – the sound happens when the power supply is plugged into the outlet and the HDD, but it turns off when the HDD is plugged into the PC.\n
\n
I could look for a blinking LED, but it really does sound like a noise maker rather than something electrical. But I’m not an expert.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1704931163 {#3243
date: 2024-01-11 00:59:23.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@otp@sh.itjust.works"
"@synapse1278@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#3246 …}
+nested: Doctrine\ORM\PersistentCollection {#3248 …}
+votes: Doctrine\ORM\PersistentCollection {#3250 …}
+reports: Doctrine\ORM\PersistentCollection {#3252 …}
+favourites: Doctrine\ORM\PersistentCollection {#3254 …}
+notifications: Doctrine\ORM\PersistentCollection {#3256 …}
-id: 297770
-bodyTs: "'blink':36 'could':32 'electr':50 'expert':56 'happen':6 'hdd':18,25 'led':37 'like':43 'look':33 'm':53 'maker':46 'nois':45 'outlet':15 'pc':30 'plug':12,27 'power':9 'rather':47 'realli':40 'someth':49 'sound':5,42 'suppli':10 'turn':21 'weird':3"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://sh.itjust.works/comment/7363882"
+editedAt: null
+createdAt: DateTimeImmutable @1704931163 {#3244
date: 2024-01-11 00:59:23.0 +01:00
}
} |
|
Show voter details
|
35 |
DENIED
|
edit
|
App\Entity\EntryComment {#3245
+user: Proxies\__CG__\App\Entity\User {#3185 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2344 …}
+magazine: App\Entity\Magazine {#305
+icon: null
+name: "datahoarder@lemmy.ml"
+title: "datahoarder"
+description: """
**Who are we?**\n
\n
We are digital librarians. Among us are represented the various reasons to keep data – legal requirements, competitive requirements, uncertainty of permanence of cloud services, distaste for transmitting your data externally (e.g. government or corporate espionage), cultural and familial archivists, internet collapse preppers, and people who do it themselves so they’re sure it’s done right. Everyone has their reasons for curating the data they have decided to keep (either forever or For A Damn Long Time). Along the way we have sought out like-minded individuals to exchange strategies, war stories, and cautionary tales of failures.\n
\n
We are one. We are legion. And we’re trying really hard not to forget.\n
\n
– 5-4-3-2-1-bang from [this thread](https://web.archive.org/web/20221111153119/https://old.reddit.com/r/DataHoarder/comments/41tqt4/hi_guys_can_i_kindly_ask_for_an_eli5_of_this/cz53pi0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 58
+entryCommentCount: 311
+postCount: 1
+postCommentCount: 1
+isAdult: false
+customCss: null
+lastActive: DateTime @1729502222 {#313
date: 2024-10-21 11:17:02.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#293 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#289 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#278 …}
+entries: Doctrine\ORM\PersistentCollection {#236 …}
+posts: Doctrine\ORM\PersistentCollection {#194 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#256 …}
+bans: Doctrine\ORM\PersistentCollection {#173 …}
+reports: Doctrine\ORM\PersistentCollection {#159 …}
+badges: Doctrine\ORM\PersistentCollection {#137 …}
+logs: Doctrine\ORM\PersistentCollection {#127 …}
+awards: Doctrine\ORM\PersistentCollection {#116 …}
+categories: Doctrine\ORM\PersistentCollection {#103 …}
-id: 32
+apId: "datahoarder@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/datahoarder"
+apPublicUrl: "https://lemmy.ml/c/datahoarder"
+apFollowersUrl: "https://lemmy.ml/c/datahoarder/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "datahoarder"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729303437 {#314
date: 2024-10-19 04:03:57.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1695727192 {#308
date: 2023-09-26 13:19:52.0 +02:00
}
}
+image: null
+parent: App\Entity\EntryComment {#2332
+user: App\Entity\User {#2327 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2344 …}
+magazine: App\Entity\Magazine {#305}
+image: null
+parent: null
+root: null
+body: "You say the sound comes from the power supply and the HDD is not plugged into the computer. My diagnistic: the power-supply makes a noise when it operates at very low load (almost 0mA of current), it is probaly making the cyclic noise because of some blinking LED or another very small variation of the loaf somewhere. This is a very common symptom of cheap power-supplies, but it doesn’t necessarly mean it isn’t working normally, just an annoyance."
+lang: "en"
+isAdult: false
+favouriteCount: 2
+score: 0
+lastActive: DateTime @1720885403 {#2330
date: 2024-07-13 17:43:23.0 +02:00
}
+ip: null
+tags: null
+mentions: [
"@otp@sh.itjust.works"
]
+children: Doctrine\ORM\PersistentCollection {#2349 …}
+nested: Doctrine\ORM\PersistentCollection {#2141 …}
+votes: Doctrine\ORM\PersistentCollection {#2164 …}
+reports: Doctrine\ORM\PersistentCollection {#2314 …}
+favourites: Doctrine\ORM\PersistentCollection {#2328 …}
+notifications: Doctrine\ORM\PersistentCollection {#2191 …}
-id: 295334
-bodyTs: "'0ma':36 'almost':35 'annoy':84 'anoth':52 'blink':49 'cheap':67 'come':5 'common':64 'comput':18 'current':38 'cyclic':44 'diagnist':20 'doesn':73 'hdd':12 'isn':78 'led':50 'load':34 'loaf':58 'low':33 'make':25,42 'mean':76 'necessar':75 'nois':27,45 'normal':81 'oper':30 'plug':15 'power':8,23,69 'power-suppli':22,68 'probali':41 'say':2 'small':54 'somewher':59 'sound':4 'suppli':9,24,70 'symptom':65 'variat':55 'work':80"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.world/comment/6547335"
+editedAt: null
+createdAt: DateTimeImmutable @1704875011 {#2348
date: 2024-01-10 09:23:31.0 +01:00
}
}
+root: App\Entity\EntryComment {#2332}
+body: """
It’s weird – the sound happens when the power supply is plugged into the outlet and the HDD, but it turns off when the HDD is plugged into the PC.\n
\n
I could look for a blinking LED, but it really does sound like a noise maker rather than something electrical. But I’m not an expert.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1704931163 {#3243
date: 2024-01-11 00:59:23.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@otp@sh.itjust.works"
"@synapse1278@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#3246 …}
+nested: Doctrine\ORM\PersistentCollection {#3248 …}
+votes: Doctrine\ORM\PersistentCollection {#3250 …}
+reports: Doctrine\ORM\PersistentCollection {#3252 …}
+favourites: Doctrine\ORM\PersistentCollection {#3254 …}
+notifications: Doctrine\ORM\PersistentCollection {#3256 …}
-id: 297770
-bodyTs: "'blink':36 'could':32 'electr':50 'expert':56 'happen':6 'hdd':18,25 'led':37 'like':43 'look':33 'm':53 'maker':46 'nois':45 'outlet':15 'pc':30 'plug':12,27 'power':9 'rather':47 'realli':40 'someth':49 'sound':5,42 'suppli':10 'turn':21 'weird':3"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://sh.itjust.works/comment/7363882"
+editedAt: null
+createdAt: DateTimeImmutable @1704931163 {#3244
date: 2024-01-11 00:59:23.0 +01:00
}
} |
|
Show voter details
|
36 |
DENIED
|
moderate
|
App\Entity\EntryComment {#3245
+user: Proxies\__CG__\App\Entity\User {#3185 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2344 …}
+magazine: App\Entity\Magazine {#305
+icon: null
+name: "datahoarder@lemmy.ml"
+title: "datahoarder"
+description: """
**Who are we?**\n
\n
We are digital librarians. Among us are represented the various reasons to keep data – legal requirements, competitive requirements, uncertainty of permanence of cloud services, distaste for transmitting your data externally (e.g. government or corporate espionage), cultural and familial archivists, internet collapse preppers, and people who do it themselves so they’re sure it’s done right. Everyone has their reasons for curating the data they have decided to keep (either forever or For A Damn Long Time). Along the way we have sought out like-minded individuals to exchange strategies, war stories, and cautionary tales of failures.\n
\n
We are one. We are legion. And we’re trying really hard not to forget.\n
\n
– 5-4-3-2-1-bang from [this thread](https://web.archive.org/web/20221111153119/https://old.reddit.com/r/DataHoarder/comments/41tqt4/hi_guys_can_i_kindly_ask_for_an_eli5_of_this/cz53pi0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 58
+entryCommentCount: 311
+postCount: 1
+postCommentCount: 1
+isAdult: false
+customCss: null
+lastActive: DateTime @1729502222 {#313
date: 2024-10-21 11:17:02.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#293 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#289 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#278 …}
+entries: Doctrine\ORM\PersistentCollection {#236 …}
+posts: Doctrine\ORM\PersistentCollection {#194 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#256 …}
+bans: Doctrine\ORM\PersistentCollection {#173 …}
+reports: Doctrine\ORM\PersistentCollection {#159 …}
+badges: Doctrine\ORM\PersistentCollection {#137 …}
+logs: Doctrine\ORM\PersistentCollection {#127 …}
+awards: Doctrine\ORM\PersistentCollection {#116 …}
+categories: Doctrine\ORM\PersistentCollection {#103 …}
-id: 32
+apId: "datahoarder@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/datahoarder"
+apPublicUrl: "https://lemmy.ml/c/datahoarder"
+apFollowersUrl: "https://lemmy.ml/c/datahoarder/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "datahoarder"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729303437 {#314
date: 2024-10-19 04:03:57.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1695727192 {#308
date: 2023-09-26 13:19:52.0 +02:00
}
}
+image: null
+parent: App\Entity\EntryComment {#2332
+user: App\Entity\User {#2327 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2344 …}
+magazine: App\Entity\Magazine {#305}
+image: null
+parent: null
+root: null
+body: "You say the sound comes from the power supply and the HDD is not plugged into the computer. My diagnistic: the power-supply makes a noise when it operates at very low load (almost 0mA of current), it is probaly making the cyclic noise because of some blinking LED or another very small variation of the loaf somewhere. This is a very common symptom of cheap power-supplies, but it doesn’t necessarly mean it isn’t working normally, just an annoyance."
+lang: "en"
+isAdult: false
+favouriteCount: 2
+score: 0
+lastActive: DateTime @1720885403 {#2330
date: 2024-07-13 17:43:23.0 +02:00
}
+ip: null
+tags: null
+mentions: [
"@otp@sh.itjust.works"
]
+children: Doctrine\ORM\PersistentCollection {#2349 …}
+nested: Doctrine\ORM\PersistentCollection {#2141 …}
+votes: Doctrine\ORM\PersistentCollection {#2164 …}
+reports: Doctrine\ORM\PersistentCollection {#2314 …}
+favourites: Doctrine\ORM\PersistentCollection {#2328 …}
+notifications: Doctrine\ORM\PersistentCollection {#2191 …}
-id: 295334
-bodyTs: "'0ma':36 'almost':35 'annoy':84 'anoth':52 'blink':49 'cheap':67 'come':5 'common':64 'comput':18 'current':38 'cyclic':44 'diagnist':20 'doesn':73 'hdd':12 'isn':78 'led':50 'load':34 'loaf':58 'low':33 'make':25,42 'mean':76 'necessar':75 'nois':27,45 'normal':81 'oper':30 'plug':15 'power':8,23,69 'power-suppli':22,68 'probali':41 'say':2 'small':54 'somewher':59 'sound':4 'suppli':9,24,70 'symptom':65 'variat':55 'work':80"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.world/comment/6547335"
+editedAt: null
+createdAt: DateTimeImmutable @1704875011 {#2348
date: 2024-01-10 09:23:31.0 +01:00
}
}
+root: App\Entity\EntryComment {#2332}
+body: """
It’s weird – the sound happens when the power supply is plugged into the outlet and the HDD, but it turns off when the HDD is plugged into the PC.\n
\n
I could look for a blinking LED, but it really does sound like a noise maker rather than something electrical. But I’m not an expert.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1704931163 {#3243
date: 2024-01-11 00:59:23.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@otp@sh.itjust.works"
"@synapse1278@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#3246 …}
+nested: Doctrine\ORM\PersistentCollection {#3248 …}
+votes: Doctrine\ORM\PersistentCollection {#3250 …}
+reports: Doctrine\ORM\PersistentCollection {#3252 …}
+favourites: Doctrine\ORM\PersistentCollection {#3254 …}
+notifications: Doctrine\ORM\PersistentCollection {#3256 …}
-id: 297770
-bodyTs: "'blink':36 'could':32 'electr':50 'expert':56 'happen':6 'hdd':18,25 'led':37 'like':43 'look':33 'm':53 'maker':46 'nois':45 'outlet':15 'pc':30 'plug':12,27 'power':9 'rather':47 'realli':40 'someth':49 'sound':5,42 'suppli':10 'turn':21 'weird':3"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://sh.itjust.works/comment/7363882"
+editedAt: null
+createdAt: DateTimeImmutable @1704931163 {#3244
date: 2024-01-11 00:59:23.0 +01:00
}
} |
|
Show voter details
|
37 |
DENIED
|
ROLE_USER
|
null |
|
Show voter details
|
38 |
DENIED
|
moderate
|
App\Entity\EntryComment {#3344
+user: App\Entity\User {#2327 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2344 …}
+magazine: App\Entity\Magazine {#305
+icon: null
+name: "datahoarder@lemmy.ml"
+title: "datahoarder"
+description: """
**Who are we?**\n
\n
We are digital librarians. Among us are represented the various reasons to keep data – legal requirements, competitive requirements, uncertainty of permanence of cloud services, distaste for transmitting your data externally (e.g. government or corporate espionage), cultural and familial archivists, internet collapse preppers, and people who do it themselves so they’re sure it’s done right. Everyone has their reasons for curating the data they have decided to keep (either forever or For A Damn Long Time). Along the way we have sought out like-minded individuals to exchange strategies, war stories, and cautionary tales of failures.\n
\n
We are one. We are legion. And we’re trying really hard not to forget.\n
\n
– 5-4-3-2-1-bang from [this thread](https://web.archive.org/web/20221111153119/https://old.reddit.com/r/DataHoarder/comments/41tqt4/hi_guys_can_i_kindly_ask_for_an_eli5_of_this/cz53pi0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 58
+entryCommentCount: 311
+postCount: 1
+postCommentCount: 1
+isAdult: false
+customCss: null
+lastActive: DateTime @1729502222 {#313
date: 2024-10-21 11:17:02.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#293 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#289 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#278 …}
+entries: Doctrine\ORM\PersistentCollection {#236 …}
+posts: Doctrine\ORM\PersistentCollection {#194 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#256 …}
+bans: Doctrine\ORM\PersistentCollection {#173 …}
+reports: Doctrine\ORM\PersistentCollection {#159 …}
+badges: Doctrine\ORM\PersistentCollection {#137 …}
+logs: Doctrine\ORM\PersistentCollection {#127 …}
+awards: Doctrine\ORM\PersistentCollection {#116 …}
+categories: Doctrine\ORM\PersistentCollection {#103 …}
-id: 32
+apId: "datahoarder@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/datahoarder"
+apPublicUrl: "https://lemmy.ml/c/datahoarder"
+apFollowersUrl: "https://lemmy.ml/c/datahoarder/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "datahoarder"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729303437 {#314
date: 2024-10-19 04:03:57.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1695727192 {#308
date: 2023-09-26 13:19:52.0 +02:00
}
}
+image: null
+parent: App\Entity\EntryComment {#3245
+user: Proxies\__CG__\App\Entity\User {#3185 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2344 …}
+magazine: App\Entity\Magazine {#305}
+image: null
+parent: App\Entity\EntryComment {#2332
+user: App\Entity\User {#2327 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2344 …}
+magazine: App\Entity\Magazine {#305}
+image: null
+parent: null
+root: null
+body: "You say the sound comes from the power supply and the HDD is not plugged into the computer. My diagnistic: the power-supply makes a noise when it operates at very low load (almost 0mA of current), it is probaly making the cyclic noise because of some blinking LED or another very small variation of the loaf somewhere. This is a very common symptom of cheap power-supplies, but it doesn’t necessarly mean it isn’t working normally, just an annoyance."
+lang: "en"
+isAdult: false
+favouriteCount: 2
+score: 0
+lastActive: DateTime @1720885403 {#2330
date: 2024-07-13 17:43:23.0 +02:00
}
+ip: null
+tags: null
+mentions: [
"@otp@sh.itjust.works"
]
+children: Doctrine\ORM\PersistentCollection {#2349 …}
+nested: Doctrine\ORM\PersistentCollection {#2141 …}
+votes: Doctrine\ORM\PersistentCollection {#2164 …}
+reports: Doctrine\ORM\PersistentCollection {#2314 …}
+favourites: Doctrine\ORM\PersistentCollection {#2328 …}
+notifications: Doctrine\ORM\PersistentCollection {#2191 …}
-id: 295334
-bodyTs: "'0ma':36 'almost':35 'annoy':84 'anoth':52 'blink':49 'cheap':67 'come':5 'common':64 'comput':18 'current':38 'cyclic':44 'diagnist':20 'doesn':73 'hdd':12 'isn':78 'led':50 'load':34 'loaf':58 'low':33 'make':25,42 'mean':76 'necessar':75 'nois':27,45 'normal':81 'oper':30 'plug':15 'power':8,23,69 'power-suppli':22,68 'probali':41 'say':2 'small':54 'somewher':59 'sound':4 'suppli':9,24,70 'symptom':65 'variat':55 'work':80"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.world/comment/6547335"
+editedAt: null
+createdAt: DateTimeImmutable @1704875011 {#2348
date: 2024-01-10 09:23:31.0 +01:00
}
}
+root: App\Entity\EntryComment {#2332}
+body: """
It’s weird – the sound happens when the power supply is plugged into the outlet and the HDD, but it turns off when the HDD is plugged into the PC.\n
\n
I could look for a blinking LED, but it really does sound like a noise maker rather than something electrical. But I’m not an expert.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1704931163 {#3243
date: 2024-01-11 00:59:23.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@otp@sh.itjust.works"
"@synapse1278@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#3246 …}
+nested: Doctrine\ORM\PersistentCollection {#3248 …}
+votes: Doctrine\ORM\PersistentCollection {#3250 …}
+reports: Doctrine\ORM\PersistentCollection {#3252 …}
+favourites: Doctrine\ORM\PersistentCollection {#3254 …}
+notifications: Doctrine\ORM\PersistentCollection {#3256 …}
-id: 297770
-bodyTs: "'blink':36 'could':32 'electr':50 'expert':56 'happen':6 'hdd':18,25 'led':37 'like':43 'look':33 'm':53 'maker':46 'nois':45 'outlet':15 'pc':30 'plug':12,27 'power':9 'rather':47 'realli':40 'someth':49 'sound':5,42 'suppli':10 'turn':21 'weird':3"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://sh.itjust.works/comment/7363882"
+editedAt: null
+createdAt: DateTimeImmutable @1704931163 {#3244
date: 2024-01-11 00:59:23.0 +01:00
}
}
+root: App\Entity\EntryComment {#2332}
+body: "I suppose, when you plug the HDD to the computer, it spins up and start drawing more current from the power-supply and the noise disapears. This is because the PSU has a buck-converter, the switching frequency increase proportionally with the current drawn by the load. When the current it almost 0mA, the switching frequency can be audible (electromagnetic forces can make some components vibrate, e.g: coils). When the current is nominal, the frequency will be ultrasound and you won’t hear it. I have observed this with many electronic devices. If you are worried, you can try another power-supply, after checking it has the same voltage and polarity on the plug, and can deliver at least as much current as the original one."
+lang: "en"
+isAdult: false
+favouriteCount: 1
+score: 0
+lastActive: DateTime @1704966726 {#3342
date: 2024-01-11 10:52:06.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@otp@sh.itjust.works"
"@synapse1278@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#3345 …}
+nested: Doctrine\ORM\PersistentCollection {#3347 …}
+votes: Doctrine\ORM\PersistentCollection {#3349 …}
+reports: Doctrine\ORM\PersistentCollection {#3351 …}
+favourites: Doctrine\ORM\PersistentCollection {#3353 …}
+notifications: Doctrine\ORM\PersistentCollection {#3355 …}
-id: 298647
-bodyTs: "'0ma':55 'almost':54 'anoth':102 'audibl':61 'buck':36 'buck-convert':35 'check':107 'coil':70 'compon':67 'comput':10 'convert':37 'current':18,45,52,73,125 'deliv':120 'devic':94 'disapear':27 'draw':16 'drawn':46 'e.g':69 'electromagnet':62 'electron':93 'forc':63 'frequenc':40,58,77 'hdd':7 'hear':85 'increas':41 'least':122 'load':49 'make':65 'mani':92 'much':124 'nois':26 'nomin':75 'observ':89 'one':129 'origin':128 'plug':5,117 'polar':114 'power':22,104 'power-suppli':21,103 'proport':42 'psu':32 'spin':12 'start':15 'suppli':23,105 'suppos':2 'switch':39,57 'tri':101 'ultrasound':80 'vibrat':68 'voltag':112 'won':83 'worri':98"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.world/comment/6575049"
+editedAt: null
+createdAt: DateTimeImmutable @1704966726 {#3343
date: 2024-01-11 10:52:06.0 +01:00
}
} |
|
Show voter details
|
39 |
DENIED
|
edit
|
App\Entity\EntryComment {#3344
+user: App\Entity\User {#2327 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2344 …}
+magazine: App\Entity\Magazine {#305
+icon: null
+name: "datahoarder@lemmy.ml"
+title: "datahoarder"
+description: """
**Who are we?**\n
\n
We are digital librarians. Among us are represented the various reasons to keep data – legal requirements, competitive requirements, uncertainty of permanence of cloud services, distaste for transmitting your data externally (e.g. government or corporate espionage), cultural and familial archivists, internet collapse preppers, and people who do it themselves so they’re sure it’s done right. Everyone has their reasons for curating the data they have decided to keep (either forever or For A Damn Long Time). Along the way we have sought out like-minded individuals to exchange strategies, war stories, and cautionary tales of failures.\n
\n
We are one. We are legion. And we’re trying really hard not to forget.\n
\n
– 5-4-3-2-1-bang from [this thread](https://web.archive.org/web/20221111153119/https://old.reddit.com/r/DataHoarder/comments/41tqt4/hi_guys_can_i_kindly_ask_for_an_eli5_of_this/cz53pi0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 58
+entryCommentCount: 311
+postCount: 1
+postCommentCount: 1
+isAdult: false
+customCss: null
+lastActive: DateTime @1729502222 {#313
date: 2024-10-21 11:17:02.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#293 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#289 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#278 …}
+entries: Doctrine\ORM\PersistentCollection {#236 …}
+posts: Doctrine\ORM\PersistentCollection {#194 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#256 …}
+bans: Doctrine\ORM\PersistentCollection {#173 …}
+reports: Doctrine\ORM\PersistentCollection {#159 …}
+badges: Doctrine\ORM\PersistentCollection {#137 …}
+logs: Doctrine\ORM\PersistentCollection {#127 …}
+awards: Doctrine\ORM\PersistentCollection {#116 …}
+categories: Doctrine\ORM\PersistentCollection {#103 …}
-id: 32
+apId: "datahoarder@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/datahoarder"
+apPublicUrl: "https://lemmy.ml/c/datahoarder"
+apFollowersUrl: "https://lemmy.ml/c/datahoarder/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "datahoarder"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729303437 {#314
date: 2024-10-19 04:03:57.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1695727192 {#308
date: 2023-09-26 13:19:52.0 +02:00
}
}
+image: null
+parent: App\Entity\EntryComment {#3245
+user: Proxies\__CG__\App\Entity\User {#3185 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2344 …}
+magazine: App\Entity\Magazine {#305}
+image: null
+parent: App\Entity\EntryComment {#2332
+user: App\Entity\User {#2327 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2344 …}
+magazine: App\Entity\Magazine {#305}
+image: null
+parent: null
+root: null
+body: "You say the sound comes from the power supply and the HDD is not plugged into the computer. My diagnistic: the power-supply makes a noise when it operates at very low load (almost 0mA of current), it is probaly making the cyclic noise because of some blinking LED or another very small variation of the loaf somewhere. This is a very common symptom of cheap power-supplies, but it doesn’t necessarly mean it isn’t working normally, just an annoyance."
+lang: "en"
+isAdult: false
+favouriteCount: 2
+score: 0
+lastActive: DateTime @1720885403 {#2330
date: 2024-07-13 17:43:23.0 +02:00
}
+ip: null
+tags: null
+mentions: [
"@otp@sh.itjust.works"
]
+children: Doctrine\ORM\PersistentCollection {#2349 …}
+nested: Doctrine\ORM\PersistentCollection {#2141 …}
+votes: Doctrine\ORM\PersistentCollection {#2164 …}
+reports: Doctrine\ORM\PersistentCollection {#2314 …}
+favourites: Doctrine\ORM\PersistentCollection {#2328 …}
+notifications: Doctrine\ORM\PersistentCollection {#2191 …}
-id: 295334
-bodyTs: "'0ma':36 'almost':35 'annoy':84 'anoth':52 'blink':49 'cheap':67 'come':5 'common':64 'comput':18 'current':38 'cyclic':44 'diagnist':20 'doesn':73 'hdd':12 'isn':78 'led':50 'load':34 'loaf':58 'low':33 'make':25,42 'mean':76 'necessar':75 'nois':27,45 'normal':81 'oper':30 'plug':15 'power':8,23,69 'power-suppli':22,68 'probali':41 'say':2 'small':54 'somewher':59 'sound':4 'suppli':9,24,70 'symptom':65 'variat':55 'work':80"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.world/comment/6547335"
+editedAt: null
+createdAt: DateTimeImmutable @1704875011 {#2348
date: 2024-01-10 09:23:31.0 +01:00
}
}
+root: App\Entity\EntryComment {#2332}
+body: """
It’s weird – the sound happens when the power supply is plugged into the outlet and the HDD, but it turns off when the HDD is plugged into the PC.\n
\n
I could look for a blinking LED, but it really does sound like a noise maker rather than something electrical. But I’m not an expert.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1704931163 {#3243
date: 2024-01-11 00:59:23.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@otp@sh.itjust.works"
"@synapse1278@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#3246 …}
+nested: Doctrine\ORM\PersistentCollection {#3248 …}
+votes: Doctrine\ORM\PersistentCollection {#3250 …}
+reports: Doctrine\ORM\PersistentCollection {#3252 …}
+favourites: Doctrine\ORM\PersistentCollection {#3254 …}
+notifications: Doctrine\ORM\PersistentCollection {#3256 …}
-id: 297770
-bodyTs: "'blink':36 'could':32 'electr':50 'expert':56 'happen':6 'hdd':18,25 'led':37 'like':43 'look':33 'm':53 'maker':46 'nois':45 'outlet':15 'pc':30 'plug':12,27 'power':9 'rather':47 'realli':40 'someth':49 'sound':5,42 'suppli':10 'turn':21 'weird':3"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://sh.itjust.works/comment/7363882"
+editedAt: null
+createdAt: DateTimeImmutable @1704931163 {#3244
date: 2024-01-11 00:59:23.0 +01:00
}
}
+root: App\Entity\EntryComment {#2332}
+body: "I suppose, when you plug the HDD to the computer, it spins up and start drawing more current from the power-supply and the noise disapears. This is because the PSU has a buck-converter, the switching frequency increase proportionally with the current drawn by the load. When the current it almost 0mA, the switching frequency can be audible (electromagnetic forces can make some components vibrate, e.g: coils). When the current is nominal, the frequency will be ultrasound and you won’t hear it. I have observed this with many electronic devices. If you are worried, you can try another power-supply, after checking it has the same voltage and polarity on the plug, and can deliver at least as much current as the original one."
+lang: "en"
+isAdult: false
+favouriteCount: 1
+score: 0
+lastActive: DateTime @1704966726 {#3342
date: 2024-01-11 10:52:06.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@otp@sh.itjust.works"
"@synapse1278@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#3345 …}
+nested: Doctrine\ORM\PersistentCollection {#3347 …}
+votes: Doctrine\ORM\PersistentCollection {#3349 …}
+reports: Doctrine\ORM\PersistentCollection {#3351 …}
+favourites: Doctrine\ORM\PersistentCollection {#3353 …}
+notifications: Doctrine\ORM\PersistentCollection {#3355 …}
-id: 298647
-bodyTs: "'0ma':55 'almost':54 'anoth':102 'audibl':61 'buck':36 'buck-convert':35 'check':107 'coil':70 'compon':67 'comput':10 'convert':37 'current':18,45,52,73,125 'deliv':120 'devic':94 'disapear':27 'draw':16 'drawn':46 'e.g':69 'electromagnet':62 'electron':93 'forc':63 'frequenc':40,58,77 'hdd':7 'hear':85 'increas':41 'least':122 'load':49 'make':65 'mani':92 'much':124 'nois':26 'nomin':75 'observ':89 'one':129 'origin':128 'plug':5,117 'polar':114 'power':22,104 'power-suppli':21,103 'proport':42 'psu':32 'spin':12 'start':15 'suppli':23,105 'suppos':2 'switch':39,57 'tri':101 'ultrasound':80 'vibrat':68 'voltag':112 'won':83 'worri':98"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.world/comment/6575049"
+editedAt: null
+createdAt: DateTimeImmutable @1704966726 {#3343
date: 2024-01-11 10:52:06.0 +01:00
}
} |
|
Show voter details
|
40 |
DENIED
|
moderate
|
App\Entity\EntryComment {#3344
+user: App\Entity\User {#2327 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2344 …}
+magazine: App\Entity\Magazine {#305
+icon: null
+name: "datahoarder@lemmy.ml"
+title: "datahoarder"
+description: """
**Who are we?**\n
\n
We are digital librarians. Among us are represented the various reasons to keep data – legal requirements, competitive requirements, uncertainty of permanence of cloud services, distaste for transmitting your data externally (e.g. government or corporate espionage), cultural and familial archivists, internet collapse preppers, and people who do it themselves so they’re sure it’s done right. Everyone has their reasons for curating the data they have decided to keep (either forever or For A Damn Long Time). Along the way we have sought out like-minded individuals to exchange strategies, war stories, and cautionary tales of failures.\n
\n
We are one. We are legion. And we’re trying really hard not to forget.\n
\n
– 5-4-3-2-1-bang from [this thread](https://web.archive.org/web/20221111153119/https://old.reddit.com/r/DataHoarder/comments/41tqt4/hi_guys_can_i_kindly_ask_for_an_eli5_of_this/cz53pi0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 58
+entryCommentCount: 311
+postCount: 1
+postCommentCount: 1
+isAdult: false
+customCss: null
+lastActive: DateTime @1729502222 {#313
date: 2024-10-21 11:17:02.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#293 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#289 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#278 …}
+entries: Doctrine\ORM\PersistentCollection {#236 …}
+posts: Doctrine\ORM\PersistentCollection {#194 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#256 …}
+bans: Doctrine\ORM\PersistentCollection {#173 …}
+reports: Doctrine\ORM\PersistentCollection {#159 …}
+badges: Doctrine\ORM\PersistentCollection {#137 …}
+logs: Doctrine\ORM\PersistentCollection {#127 …}
+awards: Doctrine\ORM\PersistentCollection {#116 …}
+categories: Doctrine\ORM\PersistentCollection {#103 …}
-id: 32
+apId: "datahoarder@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/datahoarder"
+apPublicUrl: "https://lemmy.ml/c/datahoarder"
+apFollowersUrl: "https://lemmy.ml/c/datahoarder/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "datahoarder"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729303437 {#314
date: 2024-10-19 04:03:57.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1695727192 {#308
date: 2023-09-26 13:19:52.0 +02:00
}
}
+image: null
+parent: App\Entity\EntryComment {#3245
+user: Proxies\__CG__\App\Entity\User {#3185 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2344 …}
+magazine: App\Entity\Magazine {#305}
+image: null
+parent: App\Entity\EntryComment {#2332
+user: App\Entity\User {#2327 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2344 …}
+magazine: App\Entity\Magazine {#305}
+image: null
+parent: null
+root: null
+body: "You say the sound comes from the power supply and the HDD is not plugged into the computer. My diagnistic: the power-supply makes a noise when it operates at very low load (almost 0mA of current), it is probaly making the cyclic noise because of some blinking LED or another very small variation of the loaf somewhere. This is a very common symptom of cheap power-supplies, but it doesn’t necessarly mean it isn’t working normally, just an annoyance."
+lang: "en"
+isAdult: false
+favouriteCount: 2
+score: 0
+lastActive: DateTime @1720885403 {#2330
date: 2024-07-13 17:43:23.0 +02:00
}
+ip: null
+tags: null
+mentions: [
"@otp@sh.itjust.works"
]
+children: Doctrine\ORM\PersistentCollection {#2349 …}
+nested: Doctrine\ORM\PersistentCollection {#2141 …}
+votes: Doctrine\ORM\PersistentCollection {#2164 …}
+reports: Doctrine\ORM\PersistentCollection {#2314 …}
+favourites: Doctrine\ORM\PersistentCollection {#2328 …}
+notifications: Doctrine\ORM\PersistentCollection {#2191 …}
-id: 295334
-bodyTs: "'0ma':36 'almost':35 'annoy':84 'anoth':52 'blink':49 'cheap':67 'come':5 'common':64 'comput':18 'current':38 'cyclic':44 'diagnist':20 'doesn':73 'hdd':12 'isn':78 'led':50 'load':34 'loaf':58 'low':33 'make':25,42 'mean':76 'necessar':75 'nois':27,45 'normal':81 'oper':30 'plug':15 'power':8,23,69 'power-suppli':22,68 'probali':41 'say':2 'small':54 'somewher':59 'sound':4 'suppli':9,24,70 'symptom':65 'variat':55 'work':80"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.world/comment/6547335"
+editedAt: null
+createdAt: DateTimeImmutable @1704875011 {#2348
date: 2024-01-10 09:23:31.0 +01:00
}
}
+root: App\Entity\EntryComment {#2332}
+body: """
It’s weird – the sound happens when the power supply is plugged into the outlet and the HDD, but it turns off when the HDD is plugged into the PC.\n
\n
I could look for a blinking LED, but it really does sound like a noise maker rather than something electrical. But I’m not an expert.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1704931163 {#3243
date: 2024-01-11 00:59:23.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@otp@sh.itjust.works"
"@synapse1278@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#3246 …}
+nested: Doctrine\ORM\PersistentCollection {#3248 …}
+votes: Doctrine\ORM\PersistentCollection {#3250 …}
+reports: Doctrine\ORM\PersistentCollection {#3252 …}
+favourites: Doctrine\ORM\PersistentCollection {#3254 …}
+notifications: Doctrine\ORM\PersistentCollection {#3256 …}
-id: 297770
-bodyTs: "'blink':36 'could':32 'electr':50 'expert':56 'happen':6 'hdd':18,25 'led':37 'like':43 'look':33 'm':53 'maker':46 'nois':45 'outlet':15 'pc':30 'plug':12,27 'power':9 'rather':47 'realli':40 'someth':49 'sound':5,42 'suppli':10 'turn':21 'weird':3"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://sh.itjust.works/comment/7363882"
+editedAt: null
+createdAt: DateTimeImmutable @1704931163 {#3244
date: 2024-01-11 00:59:23.0 +01:00
}
}
+root: App\Entity\EntryComment {#2332}
+body: "I suppose, when you plug the HDD to the computer, it spins up and start drawing more current from the power-supply and the noise disapears. This is because the PSU has a buck-converter, the switching frequency increase proportionally with the current drawn by the load. When the current it almost 0mA, the switching frequency can be audible (electromagnetic forces can make some components vibrate, e.g: coils). When the current is nominal, the frequency will be ultrasound and you won’t hear it. I have observed this with many electronic devices. If you are worried, you can try another power-supply, after checking it has the same voltage and polarity on the plug, and can deliver at least as much current as the original one."
+lang: "en"
+isAdult: false
+favouriteCount: 1
+score: 0
+lastActive: DateTime @1704966726 {#3342
date: 2024-01-11 10:52:06.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@otp@sh.itjust.works"
"@synapse1278@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#3345 …}
+nested: Doctrine\ORM\PersistentCollection {#3347 …}
+votes: Doctrine\ORM\PersistentCollection {#3349 …}
+reports: Doctrine\ORM\PersistentCollection {#3351 …}
+favourites: Doctrine\ORM\PersistentCollection {#3353 …}
+notifications: Doctrine\ORM\PersistentCollection {#3355 …}
-id: 298647
-bodyTs: "'0ma':55 'almost':54 'anoth':102 'audibl':61 'buck':36 'buck-convert':35 'check':107 'coil':70 'compon':67 'comput':10 'convert':37 'current':18,45,52,73,125 'deliv':120 'devic':94 'disapear':27 'draw':16 'drawn':46 'e.g':69 'electromagnet':62 'electron':93 'forc':63 'frequenc':40,58,77 'hdd':7 'hear':85 'increas':41 'least':122 'load':49 'make':65 'mani':92 'much':124 'nois':26 'nomin':75 'observ':89 'one':129 'origin':128 'plug':5,117 'polar':114 'power':22,104 'power-suppli':21,103 'proport':42 'psu':32 'spin':12 'start':15 'suppli':23,105 'suppos':2 'switch':39,57 'tri':101 'ultrasound':80 'vibrat':68 'voltag':112 'won':83 'worri':98"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.world/comment/6575049"
+editedAt: null
+createdAt: DateTimeImmutable @1704966726 {#3343
date: 2024-01-11 10:52:06.0 +01:00
}
} |
|
Show voter details
|
41 |
DENIED
|
ROLE_USER
|
null |
|
Show voter details
|
42 |
DENIED
|
moderate
|
App\Entity\EntryComment {#3383
+user: Proxies\__CG__\App\Entity\User {#3185 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2344 …}
+magazine: App\Entity\Magazine {#305
+icon: null
+name: "datahoarder@lemmy.ml"
+title: "datahoarder"
+description: """
**Who are we?**\n
\n
We are digital librarians. Among us are represented the various reasons to keep data – legal requirements, competitive requirements, uncertainty of permanence of cloud services, distaste for transmitting your data externally (e.g. government or corporate espionage), cultural and familial archivists, internet collapse preppers, and people who do it themselves so they’re sure it’s done right. Everyone has their reasons for curating the data they have decided to keep (either forever or For A Damn Long Time). Along the way we have sought out like-minded individuals to exchange strategies, war stories, and cautionary tales of failures.\n
\n
We are one. We are legion. And we’re trying really hard not to forget.\n
\n
– 5-4-3-2-1-bang from [this thread](https://web.archive.org/web/20221111153119/https://old.reddit.com/r/DataHoarder/comments/41tqt4/hi_guys_can_i_kindly_ask_for_an_eli5_of_this/cz53pi0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 58
+entryCommentCount: 311
+postCount: 1
+postCommentCount: 1
+isAdult: false
+customCss: null
+lastActive: DateTime @1729502222 {#313
date: 2024-10-21 11:17:02.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#293 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#289 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#278 …}
+entries: Doctrine\ORM\PersistentCollection {#236 …}
+posts: Doctrine\ORM\PersistentCollection {#194 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#256 …}
+bans: Doctrine\ORM\PersistentCollection {#173 …}
+reports: Doctrine\ORM\PersistentCollection {#159 …}
+badges: Doctrine\ORM\PersistentCollection {#137 …}
+logs: Doctrine\ORM\PersistentCollection {#127 …}
+awards: Doctrine\ORM\PersistentCollection {#116 …}
+categories: Doctrine\ORM\PersistentCollection {#103 …}
-id: 32
+apId: "datahoarder@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/datahoarder"
+apPublicUrl: "https://lemmy.ml/c/datahoarder"
+apFollowersUrl: "https://lemmy.ml/c/datahoarder/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "datahoarder"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729303437 {#314
date: 2024-10-19 04:03:57.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1695727192 {#308
date: 2023-09-26 13:19:52.0 +02:00
}
}
+image: null
+parent: App\Entity\EntryComment {#3344
+user: App\Entity\User {#2327 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2344 …}
+magazine: App\Entity\Magazine {#305}
+image: null
+parent: App\Entity\EntryComment {#3245
+user: Proxies\__CG__\App\Entity\User {#3185 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2344 …}
+magazine: App\Entity\Magazine {#305}
+image: null
+parent: App\Entity\EntryComment {#2332
+user: App\Entity\User {#2327 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2344 …}
+magazine: App\Entity\Magazine {#305}
+image: null
+parent: null
+root: null
+body: "You say the sound comes from the power supply and the HDD is not plugged into the computer. My diagnistic: the power-supply makes a noise when it operates at very low load (almost 0mA of current), it is probaly making the cyclic noise because of some blinking LED or another very small variation of the loaf somewhere. This is a very common symptom of cheap power-supplies, but it doesn’t necessarly mean it isn’t working normally, just an annoyance."
+lang: "en"
+isAdult: false
+favouriteCount: 2
+score: 0
+lastActive: DateTime @1720885403 {#2330
date: 2024-07-13 17:43:23.0 +02:00
}
+ip: null
+tags: null
+mentions: [
"@otp@sh.itjust.works"
]
+children: Doctrine\ORM\PersistentCollection {#2349 …}
+nested: Doctrine\ORM\PersistentCollection {#2141 …}
+votes: Doctrine\ORM\PersistentCollection {#2164 …}
+reports: Doctrine\ORM\PersistentCollection {#2314 …}
+favourites: Doctrine\ORM\PersistentCollection {#2328 …}
+notifications: Doctrine\ORM\PersistentCollection {#2191 …}
-id: 295334
-bodyTs: "'0ma':36 'almost':35 'annoy':84 'anoth':52 'blink':49 'cheap':67 'come':5 'common':64 'comput':18 'current':38 'cyclic':44 'diagnist':20 'doesn':73 'hdd':12 'isn':78 'led':50 'load':34 'loaf':58 'low':33 'make':25,42 'mean':76 'necessar':75 'nois':27,45 'normal':81 'oper':30 'plug':15 'power':8,23,69 'power-suppli':22,68 'probali':41 'say':2 'small':54 'somewher':59 'sound':4 'suppli':9,24,70 'symptom':65 'variat':55 'work':80"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.world/comment/6547335"
+editedAt: null
+createdAt: DateTimeImmutable @1704875011 {#2348
date: 2024-01-10 09:23:31.0 +01:00
}
}
+root: App\Entity\EntryComment {#2332}
+body: """
It’s weird – the sound happens when the power supply is plugged into the outlet and the HDD, but it turns off when the HDD is plugged into the PC.\n
\n
I could look for a blinking LED, but it really does sound like a noise maker rather than something electrical. But I’m not an expert.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1704931163 {#3243
date: 2024-01-11 00:59:23.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@otp@sh.itjust.works"
"@synapse1278@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#3246 …}
+nested: Doctrine\ORM\PersistentCollection {#3248 …}
+votes: Doctrine\ORM\PersistentCollection {#3250 …}
+reports: Doctrine\ORM\PersistentCollection {#3252 …}
+favourites: Doctrine\ORM\PersistentCollection {#3254 …}
+notifications: Doctrine\ORM\PersistentCollection {#3256 …}
-id: 297770
-bodyTs: "'blink':36 'could':32 'electr':50 'expert':56 'happen':6 'hdd':18,25 'led':37 'like':43 'look':33 'm':53 'maker':46 'nois':45 'outlet':15 'pc':30 'plug':12,27 'power':9 'rather':47 'realli':40 'someth':49 'sound':5,42 'suppli':10 'turn':21 'weird':3"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://sh.itjust.works/comment/7363882"
+editedAt: null
+createdAt: DateTimeImmutable @1704931163 {#3244
date: 2024-01-11 00:59:23.0 +01:00
}
}
+root: App\Entity\EntryComment {#2332}
+body: "I suppose, when you plug the HDD to the computer, it spins up and start drawing more current from the power-supply and the noise disapears. This is because the PSU has a buck-converter, the switching frequency increase proportionally with the current drawn by the load. When the current it almost 0mA, the switching frequency can be audible (electromagnetic forces can make some components vibrate, e.g: coils). When the current is nominal, the frequency will be ultrasound and you won’t hear it. I have observed this with many electronic devices. If you are worried, you can try another power-supply, after checking it has the same voltage and polarity on the plug, and can deliver at least as much current as the original one."
+lang: "en"
+isAdult: false
+favouriteCount: 1
+score: 0
+lastActive: DateTime @1704966726 {#3342
date: 2024-01-11 10:52:06.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@otp@sh.itjust.works"
"@synapse1278@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#3345 …}
+nested: Doctrine\ORM\PersistentCollection {#3347 …}
+votes: Doctrine\ORM\PersistentCollection {#3349 …}
+reports: Doctrine\ORM\PersistentCollection {#3351 …}
+favourites: Doctrine\ORM\PersistentCollection {#3353 …}
+notifications: Doctrine\ORM\PersistentCollection {#3355 …}
-id: 298647
-bodyTs: "'0ma':55 'almost':54 'anoth':102 'audibl':61 'buck':36 'buck-convert':35 'check':107 'coil':70 'compon':67 'comput':10 'convert':37 'current':18,45,52,73,125 'deliv':120 'devic':94 'disapear':27 'draw':16 'drawn':46 'e.g':69 'electromagnet':62 'electron':93 'forc':63 'frequenc':40,58,77 'hdd':7 'hear':85 'increas':41 'least':122 'load':49 'make':65 'mani':92 'much':124 'nois':26 'nomin':75 'observ':89 'one':129 'origin':128 'plug':5,117 'polar':114 'power':22,104 'power-suppli':21,103 'proport':42 'psu':32 'spin':12 'start':15 'suppli':23,105 'suppos':2 'switch':39,57 'tri':101 'ultrasound':80 'vibrat':68 'voltag':112 'won':83 'worri':98"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.world/comment/6575049"
+editedAt: null
+createdAt: DateTimeImmutable @1704966726 {#3343
date: 2024-01-11 10:52:06.0 +01:00
}
}
+root: App\Entity\EntryComment {#2332}
+body: """
Thank you for the reassurance. I guess I’ll just either let it be noisy or leave it fully unplugged when not in use.\n
\n
First world problems… having to choose between barely audible noise, or having to plug TWO things in to access my 14TB, lmao
"""
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1704984125 {#3384
date: 2024-01-11 15:42:05.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@otp@sh.itjust.works"
"@synapse1278@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#3379 …}
+nested: Doctrine\ORM\PersistentCollection {#3374 …}
+votes: Doctrine\ORM\PersistentCollection {#3378 …}
+reports: Doctrine\ORM\PersistentCollection {#3388 …}
+favourites: Doctrine\ORM\PersistentCollection {#3390 …}
+notifications: Doctrine\ORM\PersistentCollection {#3392 …}
-id: 299028
-bodyTs: "'14tb':45 'access':43 'audibl':33 'bare':32 'choos':30 'either':11 'first':25 'fulli':19 'guess':7 'leav':17 'let':12 'll':9 'lmao':46 'nois':34 'noisi':15 'plug':38 'problem':27 'reassur':5 'thank':1 'thing':40 'two':39 'unplug':20 'use':24 'world':26"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://sh.itjust.works/comment/7385426"
+editedAt: null
+createdAt: DateTimeImmutable @1704984125 {#3387
date: 2024-01-11 15:42:05.0 +01:00
}
} |
|
Show voter details
|
43 |
DENIED
|
edit
|
App\Entity\EntryComment {#3383
+user: Proxies\__CG__\App\Entity\User {#3185 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2344 …}
+magazine: App\Entity\Magazine {#305
+icon: null
+name: "datahoarder@lemmy.ml"
+title: "datahoarder"
+description: """
**Who are we?**\n
\n
We are digital librarians. Among us are represented the various reasons to keep data – legal requirements, competitive requirements, uncertainty of permanence of cloud services, distaste for transmitting your data externally (e.g. government or corporate espionage), cultural and familial archivists, internet collapse preppers, and people who do it themselves so they’re sure it’s done right. Everyone has their reasons for curating the data they have decided to keep (either forever or For A Damn Long Time). Along the way we have sought out like-minded individuals to exchange strategies, war stories, and cautionary tales of failures.\n
\n
We are one. We are legion. And we’re trying really hard not to forget.\n
\n
– 5-4-3-2-1-bang from [this thread](https://web.archive.org/web/20221111153119/https://old.reddit.com/r/DataHoarder/comments/41tqt4/hi_guys_can_i_kindly_ask_for_an_eli5_of_this/cz53pi0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 58
+entryCommentCount: 311
+postCount: 1
+postCommentCount: 1
+isAdult: false
+customCss: null
+lastActive: DateTime @1729502222 {#313
date: 2024-10-21 11:17:02.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#293 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#289 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#278 …}
+entries: Doctrine\ORM\PersistentCollection {#236 …}
+posts: Doctrine\ORM\PersistentCollection {#194 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#256 …}
+bans: Doctrine\ORM\PersistentCollection {#173 …}
+reports: Doctrine\ORM\PersistentCollection {#159 …}
+badges: Doctrine\ORM\PersistentCollection {#137 …}
+logs: Doctrine\ORM\PersistentCollection {#127 …}
+awards: Doctrine\ORM\PersistentCollection {#116 …}
+categories: Doctrine\ORM\PersistentCollection {#103 …}
-id: 32
+apId: "datahoarder@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/datahoarder"
+apPublicUrl: "https://lemmy.ml/c/datahoarder"
+apFollowersUrl: "https://lemmy.ml/c/datahoarder/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "datahoarder"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729303437 {#314
date: 2024-10-19 04:03:57.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1695727192 {#308
date: 2023-09-26 13:19:52.0 +02:00
}
}
+image: null
+parent: App\Entity\EntryComment {#3344
+user: App\Entity\User {#2327 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2344 …}
+magazine: App\Entity\Magazine {#305}
+image: null
+parent: App\Entity\EntryComment {#3245
+user: Proxies\__CG__\App\Entity\User {#3185 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2344 …}
+magazine: App\Entity\Magazine {#305}
+image: null
+parent: App\Entity\EntryComment {#2332
+user: App\Entity\User {#2327 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2344 …}
+magazine: App\Entity\Magazine {#305}
+image: null
+parent: null
+root: null
+body: "You say the sound comes from the power supply and the HDD is not plugged into the computer. My diagnistic: the power-supply makes a noise when it operates at very low load (almost 0mA of current), it is probaly making the cyclic noise because of some blinking LED or another very small variation of the loaf somewhere. This is a very common symptom of cheap power-supplies, but it doesn’t necessarly mean it isn’t working normally, just an annoyance."
+lang: "en"
+isAdult: false
+favouriteCount: 2
+score: 0
+lastActive: DateTime @1720885403 {#2330
date: 2024-07-13 17:43:23.0 +02:00
}
+ip: null
+tags: null
+mentions: [
"@otp@sh.itjust.works"
]
+children: Doctrine\ORM\PersistentCollection {#2349 …}
+nested: Doctrine\ORM\PersistentCollection {#2141 …}
+votes: Doctrine\ORM\PersistentCollection {#2164 …}
+reports: Doctrine\ORM\PersistentCollection {#2314 …}
+favourites: Doctrine\ORM\PersistentCollection {#2328 …}
+notifications: Doctrine\ORM\PersistentCollection {#2191 …}
-id: 295334
-bodyTs: "'0ma':36 'almost':35 'annoy':84 'anoth':52 'blink':49 'cheap':67 'come':5 'common':64 'comput':18 'current':38 'cyclic':44 'diagnist':20 'doesn':73 'hdd':12 'isn':78 'led':50 'load':34 'loaf':58 'low':33 'make':25,42 'mean':76 'necessar':75 'nois':27,45 'normal':81 'oper':30 'plug':15 'power':8,23,69 'power-suppli':22,68 'probali':41 'say':2 'small':54 'somewher':59 'sound':4 'suppli':9,24,70 'symptom':65 'variat':55 'work':80"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.world/comment/6547335"
+editedAt: null
+createdAt: DateTimeImmutable @1704875011 {#2348
date: 2024-01-10 09:23:31.0 +01:00
}
}
+root: App\Entity\EntryComment {#2332}
+body: """
It’s weird – the sound happens when the power supply is plugged into the outlet and the HDD, but it turns off when the HDD is plugged into the PC.\n
\n
I could look for a blinking LED, but it really does sound like a noise maker rather than something electrical. But I’m not an expert.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1704931163 {#3243
date: 2024-01-11 00:59:23.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@otp@sh.itjust.works"
"@synapse1278@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#3246 …}
+nested: Doctrine\ORM\PersistentCollection {#3248 …}
+votes: Doctrine\ORM\PersistentCollection {#3250 …}
+reports: Doctrine\ORM\PersistentCollection {#3252 …}
+favourites: Doctrine\ORM\PersistentCollection {#3254 …}
+notifications: Doctrine\ORM\PersistentCollection {#3256 …}
-id: 297770
-bodyTs: "'blink':36 'could':32 'electr':50 'expert':56 'happen':6 'hdd':18,25 'led':37 'like':43 'look':33 'm':53 'maker':46 'nois':45 'outlet':15 'pc':30 'plug':12,27 'power':9 'rather':47 'realli':40 'someth':49 'sound':5,42 'suppli':10 'turn':21 'weird':3"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://sh.itjust.works/comment/7363882"
+editedAt: null
+createdAt: DateTimeImmutable @1704931163 {#3244
date: 2024-01-11 00:59:23.0 +01:00
}
}
+root: App\Entity\EntryComment {#2332}
+body: "I suppose, when you plug the HDD to the computer, it spins up and start drawing more current from the power-supply and the noise disapears. This is because the PSU has a buck-converter, the switching frequency increase proportionally with the current drawn by the load. When the current it almost 0mA, the switching frequency can be audible (electromagnetic forces can make some components vibrate, e.g: coils). When the current is nominal, the frequency will be ultrasound and you won’t hear it. I have observed this with many electronic devices. If you are worried, you can try another power-supply, after checking it has the same voltage and polarity on the plug, and can deliver at least as much current as the original one."
+lang: "en"
+isAdult: false
+favouriteCount: 1
+score: 0
+lastActive: DateTime @1704966726 {#3342
date: 2024-01-11 10:52:06.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@otp@sh.itjust.works"
"@synapse1278@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#3345 …}
+nested: Doctrine\ORM\PersistentCollection {#3347 …}
+votes: Doctrine\ORM\PersistentCollection {#3349 …}
+reports: Doctrine\ORM\PersistentCollection {#3351 …}
+favourites: Doctrine\ORM\PersistentCollection {#3353 …}
+notifications: Doctrine\ORM\PersistentCollection {#3355 …}
-id: 298647
-bodyTs: "'0ma':55 'almost':54 'anoth':102 'audibl':61 'buck':36 'buck-convert':35 'check':107 'coil':70 'compon':67 'comput':10 'convert':37 'current':18,45,52,73,125 'deliv':120 'devic':94 'disapear':27 'draw':16 'drawn':46 'e.g':69 'electromagnet':62 'electron':93 'forc':63 'frequenc':40,58,77 'hdd':7 'hear':85 'increas':41 'least':122 'load':49 'make':65 'mani':92 'much':124 'nois':26 'nomin':75 'observ':89 'one':129 'origin':128 'plug':5,117 'polar':114 'power':22,104 'power-suppli':21,103 'proport':42 'psu':32 'spin':12 'start':15 'suppli':23,105 'suppos':2 'switch':39,57 'tri':101 'ultrasound':80 'vibrat':68 'voltag':112 'won':83 'worri':98"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.world/comment/6575049"
+editedAt: null
+createdAt: DateTimeImmutable @1704966726 {#3343
date: 2024-01-11 10:52:06.0 +01:00
}
}
+root: App\Entity\EntryComment {#2332}
+body: """
Thank you for the reassurance. I guess I’ll just either let it be noisy or leave it fully unplugged when not in use.\n
\n
First world problems… having to choose between barely audible noise, or having to plug TWO things in to access my 14TB, lmao
"""
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1704984125 {#3384
date: 2024-01-11 15:42:05.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@otp@sh.itjust.works"
"@synapse1278@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#3379 …}
+nested: Doctrine\ORM\PersistentCollection {#3374 …}
+votes: Doctrine\ORM\PersistentCollection {#3378 …}
+reports: Doctrine\ORM\PersistentCollection {#3388 …}
+favourites: Doctrine\ORM\PersistentCollection {#3390 …}
+notifications: Doctrine\ORM\PersistentCollection {#3392 …}
-id: 299028
-bodyTs: "'14tb':45 'access':43 'audibl':33 'bare':32 'choos':30 'either':11 'first':25 'fulli':19 'guess':7 'leav':17 'let':12 'll':9 'lmao':46 'nois':34 'noisi':15 'plug':38 'problem':27 'reassur':5 'thank':1 'thing':40 'two':39 'unplug':20 'use':24 'world':26"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://sh.itjust.works/comment/7385426"
+editedAt: null
+createdAt: DateTimeImmutable @1704984125 {#3387
date: 2024-01-11 15:42:05.0 +01:00
}
} |
|
Show voter details
|
44 |
DENIED
|
moderate
|
App\Entity\EntryComment {#3383
+user: Proxies\__CG__\App\Entity\User {#3185 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2344 …}
+magazine: App\Entity\Magazine {#305
+icon: null
+name: "datahoarder@lemmy.ml"
+title: "datahoarder"
+description: """
**Who are we?**\n
\n
We are digital librarians. Among us are represented the various reasons to keep data – legal requirements, competitive requirements, uncertainty of permanence of cloud services, distaste for transmitting your data externally (e.g. government or corporate espionage), cultural and familial archivists, internet collapse preppers, and people who do it themselves so they’re sure it’s done right. Everyone has their reasons for curating the data they have decided to keep (either forever or For A Damn Long Time). Along the way we have sought out like-minded individuals to exchange strategies, war stories, and cautionary tales of failures.\n
\n
We are one. We are legion. And we’re trying really hard not to forget.\n
\n
– 5-4-3-2-1-bang from [this thread](https://web.archive.org/web/20221111153119/https://old.reddit.com/r/DataHoarder/comments/41tqt4/hi_guys_can_i_kindly_ask_for_an_eli5_of_this/cz53pi0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 58
+entryCommentCount: 311
+postCount: 1
+postCommentCount: 1
+isAdult: false
+customCss: null
+lastActive: DateTime @1729502222 {#313
date: 2024-10-21 11:17:02.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#293 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#289 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#278 …}
+entries: Doctrine\ORM\PersistentCollection {#236 …}
+posts: Doctrine\ORM\PersistentCollection {#194 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#256 …}
+bans: Doctrine\ORM\PersistentCollection {#173 …}
+reports: Doctrine\ORM\PersistentCollection {#159 …}
+badges: Doctrine\ORM\PersistentCollection {#137 …}
+logs: Doctrine\ORM\PersistentCollection {#127 …}
+awards: Doctrine\ORM\PersistentCollection {#116 …}
+categories: Doctrine\ORM\PersistentCollection {#103 …}
-id: 32
+apId: "datahoarder@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/datahoarder"
+apPublicUrl: "https://lemmy.ml/c/datahoarder"
+apFollowersUrl: "https://lemmy.ml/c/datahoarder/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "datahoarder"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729303437 {#314
date: 2024-10-19 04:03:57.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1695727192 {#308
date: 2023-09-26 13:19:52.0 +02:00
}
}
+image: null
+parent: App\Entity\EntryComment {#3344
+user: App\Entity\User {#2327 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2344 …}
+magazine: App\Entity\Magazine {#305}
+image: null
+parent: App\Entity\EntryComment {#3245
+user: Proxies\__CG__\App\Entity\User {#3185 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2344 …}
+magazine: App\Entity\Magazine {#305}
+image: null
+parent: App\Entity\EntryComment {#2332
+user: App\Entity\User {#2327 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2344 …}
+magazine: App\Entity\Magazine {#305}
+image: null
+parent: null
+root: null
+body: "You say the sound comes from the power supply and the HDD is not plugged into the computer. My diagnistic: the power-supply makes a noise when it operates at very low load (almost 0mA of current), it is probaly making the cyclic noise because of some blinking LED or another very small variation of the loaf somewhere. This is a very common symptom of cheap power-supplies, but it doesn’t necessarly mean it isn’t working normally, just an annoyance."
+lang: "en"
+isAdult: false
+favouriteCount: 2
+score: 0
+lastActive: DateTime @1720885403 {#2330
date: 2024-07-13 17:43:23.0 +02:00
}
+ip: null
+tags: null
+mentions: [
"@otp@sh.itjust.works"
]
+children: Doctrine\ORM\PersistentCollection {#2349 …}
+nested: Doctrine\ORM\PersistentCollection {#2141 …}
+votes: Doctrine\ORM\PersistentCollection {#2164 …}
+reports: Doctrine\ORM\PersistentCollection {#2314 …}
+favourites: Doctrine\ORM\PersistentCollection {#2328 …}
+notifications: Doctrine\ORM\PersistentCollection {#2191 …}
-id: 295334
-bodyTs: "'0ma':36 'almost':35 'annoy':84 'anoth':52 'blink':49 'cheap':67 'come':5 'common':64 'comput':18 'current':38 'cyclic':44 'diagnist':20 'doesn':73 'hdd':12 'isn':78 'led':50 'load':34 'loaf':58 'low':33 'make':25,42 'mean':76 'necessar':75 'nois':27,45 'normal':81 'oper':30 'plug':15 'power':8,23,69 'power-suppli':22,68 'probali':41 'say':2 'small':54 'somewher':59 'sound':4 'suppli':9,24,70 'symptom':65 'variat':55 'work':80"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.world/comment/6547335"
+editedAt: null
+createdAt: DateTimeImmutable @1704875011 {#2348
date: 2024-01-10 09:23:31.0 +01:00
}
}
+root: App\Entity\EntryComment {#2332}
+body: """
It’s weird – the sound happens when the power supply is plugged into the outlet and the HDD, but it turns off when the HDD is plugged into the PC.\n
\n
I could look for a blinking LED, but it really does sound like a noise maker rather than something electrical. But I’m not an expert.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1704931163 {#3243
date: 2024-01-11 00:59:23.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@otp@sh.itjust.works"
"@synapse1278@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#3246 …}
+nested: Doctrine\ORM\PersistentCollection {#3248 …}
+votes: Doctrine\ORM\PersistentCollection {#3250 …}
+reports: Doctrine\ORM\PersistentCollection {#3252 …}
+favourites: Doctrine\ORM\PersistentCollection {#3254 …}
+notifications: Doctrine\ORM\PersistentCollection {#3256 …}
-id: 297770
-bodyTs: "'blink':36 'could':32 'electr':50 'expert':56 'happen':6 'hdd':18,25 'led':37 'like':43 'look':33 'm':53 'maker':46 'nois':45 'outlet':15 'pc':30 'plug':12,27 'power':9 'rather':47 'realli':40 'someth':49 'sound':5,42 'suppli':10 'turn':21 'weird':3"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://sh.itjust.works/comment/7363882"
+editedAt: null
+createdAt: DateTimeImmutable @1704931163 {#3244
date: 2024-01-11 00:59:23.0 +01:00
}
}
+root: App\Entity\EntryComment {#2332}
+body: "I suppose, when you plug the HDD to the computer, it spins up and start drawing more current from the power-supply and the noise disapears. This is because the PSU has a buck-converter, the switching frequency increase proportionally with the current drawn by the load. When the current it almost 0mA, the switching frequency can be audible (electromagnetic forces can make some components vibrate, e.g: coils). When the current is nominal, the frequency will be ultrasound and you won’t hear it. I have observed this with many electronic devices. If you are worried, you can try another power-supply, after checking it has the same voltage and polarity on the plug, and can deliver at least as much current as the original one."
+lang: "en"
+isAdult: false
+favouriteCount: 1
+score: 0
+lastActive: DateTime @1704966726 {#3342
date: 2024-01-11 10:52:06.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@otp@sh.itjust.works"
"@synapse1278@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#3345 …}
+nested: Doctrine\ORM\PersistentCollection {#3347 …}
+votes: Doctrine\ORM\PersistentCollection {#3349 …}
+reports: Doctrine\ORM\PersistentCollection {#3351 …}
+favourites: Doctrine\ORM\PersistentCollection {#3353 …}
+notifications: Doctrine\ORM\PersistentCollection {#3355 …}
-id: 298647
-bodyTs: "'0ma':55 'almost':54 'anoth':102 'audibl':61 'buck':36 'buck-convert':35 'check':107 'coil':70 'compon':67 'comput':10 'convert':37 'current':18,45,52,73,125 'deliv':120 'devic':94 'disapear':27 'draw':16 'drawn':46 'e.g':69 'electromagnet':62 'electron':93 'forc':63 'frequenc':40,58,77 'hdd':7 'hear':85 'increas':41 'least':122 'load':49 'make':65 'mani':92 'much':124 'nois':26 'nomin':75 'observ':89 'one':129 'origin':128 'plug':5,117 'polar':114 'power':22,104 'power-suppli':21,103 'proport':42 'psu':32 'spin':12 'start':15 'suppli':23,105 'suppos':2 'switch':39,57 'tri':101 'ultrasound':80 'vibrat':68 'voltag':112 'won':83 'worri':98"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.world/comment/6575049"
+editedAt: null
+createdAt: DateTimeImmutable @1704966726 {#3343
date: 2024-01-11 10:52:06.0 +01:00
}
}
+root: App\Entity\EntryComment {#2332}
+body: """
Thank you for the reassurance. I guess I’ll just either let it be noisy or leave it fully unplugged when not in use.\n
\n
First world problems… having to choose between barely audible noise, or having to plug TWO things in to access my 14TB, lmao
"""
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1704984125 {#3384
date: 2024-01-11 15:42:05.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@otp@sh.itjust.works"
"@synapse1278@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#3379 …}
+nested: Doctrine\ORM\PersistentCollection {#3374 …}
+votes: Doctrine\ORM\PersistentCollection {#3378 …}
+reports: Doctrine\ORM\PersistentCollection {#3388 …}
+favourites: Doctrine\ORM\PersistentCollection {#3390 …}
+notifications: Doctrine\ORM\PersistentCollection {#3392 …}
-id: 299028
-bodyTs: "'14tb':45 'access':43 'audibl':33 'bare':32 'choos':30 'either':11 'first':25 'fulli':19 'guess':7 'leav':17 'let':12 'll':9 'lmao':46 'nois':34 'noisi':15 'plug':38 'problem':27 'reassur':5 'thank':1 'thing':40 'two':39 'unplug':20 'use':24 'world':26"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://sh.itjust.works/comment/7385426"
+editedAt: null
+createdAt: DateTimeImmutable @1704984125 {#3387
date: 2024-01-11 15:42:05.0 +01:00
}
} |
|
Show voter details
|
45 |
DENIED
|
ROLE_USER
|
null |
|
Show voter details
|
46 |
DENIED
|
moderate
|
App\Entity\EntryComment {#2112
+user: App\Entity\User {#2161 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2344 …}
+magazine: App\Entity\Magazine {#305
+icon: null
+name: "datahoarder@lemmy.ml"
+title: "datahoarder"
+description: """
**Who are we?**\n
\n
We are digital librarians. Among us are represented the various reasons to keep data – legal requirements, competitive requirements, uncertainty of permanence of cloud services, distaste for transmitting your data externally (e.g. government or corporate espionage), cultural and familial archivists, internet collapse preppers, and people who do it themselves so they’re sure it’s done right. Everyone has their reasons for curating the data they have decided to keep (either forever or For A Damn Long Time). Along the way we have sought out like-minded individuals to exchange strategies, war stories, and cautionary tales of failures.\n
\n
We are one. We are legion. And we’re trying really hard not to forget.\n
\n
– 5-4-3-2-1-bang from [this thread](https://web.archive.org/web/20221111153119/https://old.reddit.com/r/DataHoarder/comments/41tqt4/hi_guys_can_i_kindly_ask_for_an_eli5_of_this/cz53pi0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 58
+entryCommentCount: 311
+postCount: 1
+postCommentCount: 1
+isAdult: false
+customCss: null
+lastActive: DateTime @1729502222 {#313
date: 2024-10-21 11:17:02.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#293 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#289 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#278 …}
+entries: Doctrine\ORM\PersistentCollection {#236 …}
+posts: Doctrine\ORM\PersistentCollection {#194 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#256 …}
+bans: Doctrine\ORM\PersistentCollection {#173 …}
+reports: Doctrine\ORM\PersistentCollection {#159 …}
+badges: Doctrine\ORM\PersistentCollection {#137 …}
+logs: Doctrine\ORM\PersistentCollection {#127 …}
+awards: Doctrine\ORM\PersistentCollection {#116 …}
+categories: Doctrine\ORM\PersistentCollection {#103 …}
-id: 32
+apId: "datahoarder@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/datahoarder"
+apPublicUrl: "https://lemmy.ml/c/datahoarder"
+apFollowersUrl: "https://lemmy.ml/c/datahoarder/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "datahoarder"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729303437 {#314
date: 2024-10-19 04:03:57.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1695727192 {#308
date: 2023-09-26 13:19:52.0 +02:00
}
}
+image: null
+parent: null
+root: null
+body: "I’ve come across it once with a laptop power supply. I believe it correlated to a voltage issue of some sort. We just replaced it with a new one and the problems disappeared. It definitely wasn’t coil whine, but I didn’t believe the person complaining about it until I held it up to my head myself."
+lang: "en"
+isAdult: false
+favouriteCount: 1
+score: 0
+lastActive: DateTime @1720550633 {#2109
date: 2024-07-09 20:43:53.0 +02:00
}
+ip: null
+tags: null
+mentions: [
"@otp@sh.itjust.works"
]
+children: Doctrine\ORM\PersistentCollection {#2124 …}
+nested: Doctrine\ORM\PersistentCollection {#2118 …}
+votes: Doctrine\ORM\PersistentCollection {#2121 …}
+reports: Doctrine\ORM\PersistentCollection {#2115 …}
+favourites: Doctrine\ORM\PersistentCollection {#2123 …}
+notifications: Doctrine\ORM\PersistentCollection {#2116 …}
-id: 298160
-bodyTs: "'across':4 'believ':13,45 'coil':39 'come':3 'complain':48 'correl':15 'definit':36 'didn':43 'disappear':34 'head':58 'held':53 'issu':19 'laptop':9 'new':29 'one':30 'person':47 'power':10 'problem':33 'replac':25 'sort':22 'suppli':11 've':2 'voltag':18 'wasn':37 'whine':40"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.world/comment/6569517"
+editedAt: null
+createdAt: DateTimeImmutable @1704943715 {#2103
date: 2024-01-11 04:28:35.0 +01:00
}
} |
|
Show voter details
|
47 |
DENIED
|
edit
|
App\Entity\EntryComment {#2112
+user: App\Entity\User {#2161 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2344 …}
+magazine: App\Entity\Magazine {#305
+icon: null
+name: "datahoarder@lemmy.ml"
+title: "datahoarder"
+description: """
**Who are we?**\n
\n
We are digital librarians. Among us are represented the various reasons to keep data – legal requirements, competitive requirements, uncertainty of permanence of cloud services, distaste for transmitting your data externally (e.g. government or corporate espionage), cultural and familial archivists, internet collapse preppers, and people who do it themselves so they’re sure it’s done right. Everyone has their reasons for curating the data they have decided to keep (either forever or For A Damn Long Time). Along the way we have sought out like-minded individuals to exchange strategies, war stories, and cautionary tales of failures.\n
\n
We are one. We are legion. And we’re trying really hard not to forget.\n
\n
– 5-4-3-2-1-bang from [this thread](https://web.archive.org/web/20221111153119/https://old.reddit.com/r/DataHoarder/comments/41tqt4/hi_guys_can_i_kindly_ask_for_an_eli5_of_this/cz53pi0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 58
+entryCommentCount: 311
+postCount: 1
+postCommentCount: 1
+isAdult: false
+customCss: null
+lastActive: DateTime @1729502222 {#313
date: 2024-10-21 11:17:02.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#293 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#289 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#278 …}
+entries: Doctrine\ORM\PersistentCollection {#236 …}
+posts: Doctrine\ORM\PersistentCollection {#194 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#256 …}
+bans: Doctrine\ORM\PersistentCollection {#173 …}
+reports: Doctrine\ORM\PersistentCollection {#159 …}
+badges: Doctrine\ORM\PersistentCollection {#137 …}
+logs: Doctrine\ORM\PersistentCollection {#127 …}
+awards: Doctrine\ORM\PersistentCollection {#116 …}
+categories: Doctrine\ORM\PersistentCollection {#103 …}
-id: 32
+apId: "datahoarder@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/datahoarder"
+apPublicUrl: "https://lemmy.ml/c/datahoarder"
+apFollowersUrl: "https://lemmy.ml/c/datahoarder/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "datahoarder"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729303437 {#314
date: 2024-10-19 04:03:57.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1695727192 {#308
date: 2023-09-26 13:19:52.0 +02:00
}
}
+image: null
+parent: null
+root: null
+body: "I’ve come across it once with a laptop power supply. I believe it correlated to a voltage issue of some sort. We just replaced it with a new one and the problems disappeared. It definitely wasn’t coil whine, but I didn’t believe the person complaining about it until I held it up to my head myself."
+lang: "en"
+isAdult: false
+favouriteCount: 1
+score: 0
+lastActive: DateTime @1720550633 {#2109
date: 2024-07-09 20:43:53.0 +02:00
}
+ip: null
+tags: null
+mentions: [
"@otp@sh.itjust.works"
]
+children: Doctrine\ORM\PersistentCollection {#2124 …}
+nested: Doctrine\ORM\PersistentCollection {#2118 …}
+votes: Doctrine\ORM\PersistentCollection {#2121 …}
+reports: Doctrine\ORM\PersistentCollection {#2115 …}
+favourites: Doctrine\ORM\PersistentCollection {#2123 …}
+notifications: Doctrine\ORM\PersistentCollection {#2116 …}
-id: 298160
-bodyTs: "'across':4 'believ':13,45 'coil':39 'come':3 'complain':48 'correl':15 'definit':36 'didn':43 'disappear':34 'head':58 'held':53 'issu':19 'laptop':9 'new':29 'one':30 'person':47 'power':10 'problem':33 'replac':25 'sort':22 'suppli':11 've':2 'voltag':18 'wasn':37 'whine':40"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.world/comment/6569517"
+editedAt: null
+createdAt: DateTimeImmutable @1704943715 {#2103
date: 2024-01-11 04:28:35.0 +01:00
}
} |
|
Show voter details
|
48 |
DENIED
|
moderate
|
App\Entity\EntryComment {#2112
+user: App\Entity\User {#2161 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2344 …}
+magazine: App\Entity\Magazine {#305
+icon: null
+name: "datahoarder@lemmy.ml"
+title: "datahoarder"
+description: """
**Who are we?**\n
\n
We are digital librarians. Among us are represented the various reasons to keep data – legal requirements, competitive requirements, uncertainty of permanence of cloud services, distaste for transmitting your data externally (e.g. government or corporate espionage), cultural and familial archivists, internet collapse preppers, and people who do it themselves so they’re sure it’s done right. Everyone has their reasons for curating the data they have decided to keep (either forever or For A Damn Long Time). Along the way we have sought out like-minded individuals to exchange strategies, war stories, and cautionary tales of failures.\n
\n
We are one. We are legion. And we’re trying really hard not to forget.\n
\n
– 5-4-3-2-1-bang from [this thread](https://web.archive.org/web/20221111153119/https://old.reddit.com/r/DataHoarder/comments/41tqt4/hi_guys_can_i_kindly_ask_for_an_eli5_of_this/cz53pi0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 58
+entryCommentCount: 311
+postCount: 1
+postCommentCount: 1
+isAdult: false
+customCss: null
+lastActive: DateTime @1729502222 {#313
date: 2024-10-21 11:17:02.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#293 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#289 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#278 …}
+entries: Doctrine\ORM\PersistentCollection {#236 …}
+posts: Doctrine\ORM\PersistentCollection {#194 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#256 …}
+bans: Doctrine\ORM\PersistentCollection {#173 …}
+reports: Doctrine\ORM\PersistentCollection {#159 …}
+badges: Doctrine\ORM\PersistentCollection {#137 …}
+logs: Doctrine\ORM\PersistentCollection {#127 …}
+awards: Doctrine\ORM\PersistentCollection {#116 …}
+categories: Doctrine\ORM\PersistentCollection {#103 …}
-id: 32
+apId: "datahoarder@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/datahoarder"
+apPublicUrl: "https://lemmy.ml/c/datahoarder"
+apFollowersUrl: "https://lemmy.ml/c/datahoarder/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "datahoarder"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729303437 {#314
date: 2024-10-19 04:03:57.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1695727192 {#308
date: 2023-09-26 13:19:52.0 +02:00
}
}
+image: null
+parent: null
+root: null
+body: "I’ve come across it once with a laptop power supply. I believe it correlated to a voltage issue of some sort. We just replaced it with a new one and the problems disappeared. It definitely wasn’t coil whine, but I didn’t believe the person complaining about it until I held it up to my head myself."
+lang: "en"
+isAdult: false
+favouriteCount: 1
+score: 0
+lastActive: DateTime @1720550633 {#2109
date: 2024-07-09 20:43:53.0 +02:00
}
+ip: null
+tags: null
+mentions: [
"@otp@sh.itjust.works"
]
+children: Doctrine\ORM\PersistentCollection {#2124 …}
+nested: Doctrine\ORM\PersistentCollection {#2118 …}
+votes: Doctrine\ORM\PersistentCollection {#2121 …}
+reports: Doctrine\ORM\PersistentCollection {#2115 …}
+favourites: Doctrine\ORM\PersistentCollection {#2123 …}
+notifications: Doctrine\ORM\PersistentCollection {#2116 …}
-id: 298160
-bodyTs: "'across':4 'believ':13,45 'coil':39 'come':3 'complain':48 'correl':15 'definit':36 'didn':43 'disappear':34 'head':58 'held':53 'issu':19 'laptop':9 'new':29 'one':30 'person':47 'power':10 'problem':33 'replac':25 'sort':22 'suppli':11 've':2 'voltag':18 'wasn':37 'whine':40"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.world/comment/6569517"
+editedAt: null
+createdAt: DateTimeImmutable @1704943715 {#2103
date: 2024-01-11 04:28:35.0 +01:00
}
} |
|
Show voter details
|
49 |
DENIED
|
ROLE_USER
|
null |
|
Show voter details
|
50 |
DENIED
|
moderate
|
App\Entity\EntryComment {#3260
+user: Proxies\__CG__\App\Entity\User {#3185 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2344 …}
+magazine: App\Entity\Magazine {#305
+icon: null
+name: "datahoarder@lemmy.ml"
+title: "datahoarder"
+description: """
**Who are we?**\n
\n
We are digital librarians. Among us are represented the various reasons to keep data – legal requirements, competitive requirements, uncertainty of permanence of cloud services, distaste for transmitting your data externally (e.g. government or corporate espionage), cultural and familial archivists, internet collapse preppers, and people who do it themselves so they’re sure it’s done right. Everyone has their reasons for curating the data they have decided to keep (either forever or For A Damn Long Time). Along the way we have sought out like-minded individuals to exchange strategies, war stories, and cautionary tales of failures.\n
\n
We are one. We are legion. And we’re trying really hard not to forget.\n
\n
– 5-4-3-2-1-bang from [this thread](https://web.archive.org/web/20221111153119/https://old.reddit.com/r/DataHoarder/comments/41tqt4/hi_guys_can_i_kindly_ask_for_an_eli5_of_this/cz53pi0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 58
+entryCommentCount: 311
+postCount: 1
+postCommentCount: 1
+isAdult: false
+customCss: null
+lastActive: DateTime @1729502222 {#313
date: 2024-10-21 11:17:02.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#293 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#289 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#278 …}
+entries: Doctrine\ORM\PersistentCollection {#236 …}
+posts: Doctrine\ORM\PersistentCollection {#194 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#256 …}
+bans: Doctrine\ORM\PersistentCollection {#173 …}
+reports: Doctrine\ORM\PersistentCollection {#159 …}
+badges: Doctrine\ORM\PersistentCollection {#137 …}
+logs: Doctrine\ORM\PersistentCollection {#127 …}
+awards: Doctrine\ORM\PersistentCollection {#116 …}
+categories: Doctrine\ORM\PersistentCollection {#103 …}
-id: 32
+apId: "datahoarder@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/datahoarder"
+apPublicUrl: "https://lemmy.ml/c/datahoarder"
+apFollowersUrl: "https://lemmy.ml/c/datahoarder/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "datahoarder"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729303437 {#314
date: 2024-10-19 04:03:57.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1695727192 {#308
date: 2023-09-26 13:19:52.0 +02:00
}
}
+image: null
+parent: App\Entity\EntryComment {#2112
+user: App\Entity\User {#2161 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2344 …}
+magazine: App\Entity\Magazine {#305}
+image: null
+parent: null
+root: null
+body: "I’ve come across it once with a laptop power supply. I believe it correlated to a voltage issue of some sort. We just replaced it with a new one and the problems disappeared. It definitely wasn’t coil whine, but I didn’t believe the person complaining about it until I held it up to my head myself."
+lang: "en"
+isAdult: false
+favouriteCount: 1
+score: 0
+lastActive: DateTime @1720550633 {#2109
date: 2024-07-09 20:43:53.0 +02:00
}
+ip: null
+tags: null
+mentions: [
"@otp@sh.itjust.works"
]
+children: Doctrine\ORM\PersistentCollection {#2124 …}
+nested: Doctrine\ORM\PersistentCollection {#2118 …}
+votes: Doctrine\ORM\PersistentCollection {#2121 …}
+reports: Doctrine\ORM\PersistentCollection {#2115 …}
+favourites: Doctrine\ORM\PersistentCollection {#2123 …}
+notifications: Doctrine\ORM\PersistentCollection {#2116 …}
-id: 298160
-bodyTs: "'across':4 'believ':13,45 'coil':39 'come':3 'complain':48 'correl':15 'definit':36 'didn':43 'disappear':34 'head':58 'held':53 'issu':19 'laptop':9 'new':29 'one':30 'person':47 'power':10 'problem':33 'replac':25 'sort':22 'suppli':11 've':2 'voltag':18 'wasn':37 'whine':40"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.world/comment/6569517"
+editedAt: null
+createdAt: DateTimeImmutable @1704943715 {#2103
date: 2024-01-11 04:28:35.0 +01:00
}
}
+root: App\Entity\EntryComment {#2112}
+body: "Was it like a little tiny weewoo alarm? Because that’s all I can describe it as, Lmao"
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1704944372 {#3258
date: 2024-01-11 04:39:32.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@otp@sh.itjust.works"
"@moosqueak@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#3261 …}
+nested: Doctrine\ORM\PersistentCollection {#3263 …}
+votes: Doctrine\ORM\PersistentCollection {#3265 …}
+reports: Doctrine\ORM\PersistentCollection {#3267 …}
+favourites: Doctrine\ORM\PersistentCollection {#3269 …}
+notifications: Doctrine\ORM\PersistentCollection {#3271 …}
-id: 298176
-bodyTs: "'alarm':8 'describ':15 'like':3 'littl':5 'lmao':18 'tini':6 'weewoo':7"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://sh.itjust.works/comment/7369426"
+editedAt: null
+createdAt: DateTimeImmutable @1704944372 {#3259
date: 2024-01-11 04:39:32.0 +01:00
}
} |
|
Show voter details
|
51 |
DENIED
|
edit
|
App\Entity\EntryComment {#3260
+user: Proxies\__CG__\App\Entity\User {#3185 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2344 …}
+magazine: App\Entity\Magazine {#305
+icon: null
+name: "datahoarder@lemmy.ml"
+title: "datahoarder"
+description: """
**Who are we?**\n
\n
We are digital librarians. Among us are represented the various reasons to keep data – legal requirements, competitive requirements, uncertainty of permanence of cloud services, distaste for transmitting your data externally (e.g. government or corporate espionage), cultural and familial archivists, internet collapse preppers, and people who do it themselves so they’re sure it’s done right. Everyone has their reasons for curating the data they have decided to keep (either forever or For A Damn Long Time). Along the way we have sought out like-minded individuals to exchange strategies, war stories, and cautionary tales of failures.\n
\n
We are one. We are legion. And we’re trying really hard not to forget.\n
\n
– 5-4-3-2-1-bang from [this thread](https://web.archive.org/web/20221111153119/https://old.reddit.com/r/DataHoarder/comments/41tqt4/hi_guys_can_i_kindly_ask_for_an_eli5_of_this/cz53pi0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 58
+entryCommentCount: 311
+postCount: 1
+postCommentCount: 1
+isAdult: false
+customCss: null
+lastActive: DateTime @1729502222 {#313
date: 2024-10-21 11:17:02.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#293 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#289 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#278 …}
+entries: Doctrine\ORM\PersistentCollection {#236 …}
+posts: Doctrine\ORM\PersistentCollection {#194 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#256 …}
+bans: Doctrine\ORM\PersistentCollection {#173 …}
+reports: Doctrine\ORM\PersistentCollection {#159 …}
+badges: Doctrine\ORM\PersistentCollection {#137 …}
+logs: Doctrine\ORM\PersistentCollection {#127 …}
+awards: Doctrine\ORM\PersistentCollection {#116 …}
+categories: Doctrine\ORM\PersistentCollection {#103 …}
-id: 32
+apId: "datahoarder@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/datahoarder"
+apPublicUrl: "https://lemmy.ml/c/datahoarder"
+apFollowersUrl: "https://lemmy.ml/c/datahoarder/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "datahoarder"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729303437 {#314
date: 2024-10-19 04:03:57.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1695727192 {#308
date: 2023-09-26 13:19:52.0 +02:00
}
}
+image: null
+parent: App\Entity\EntryComment {#2112
+user: App\Entity\User {#2161 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2344 …}
+magazine: App\Entity\Magazine {#305}
+image: null
+parent: null
+root: null
+body: "I’ve come across it once with a laptop power supply. I believe it correlated to a voltage issue of some sort. We just replaced it with a new one and the problems disappeared. It definitely wasn’t coil whine, but I didn’t believe the person complaining about it until I held it up to my head myself."
+lang: "en"
+isAdult: false
+favouriteCount: 1
+score: 0
+lastActive: DateTime @1720550633 {#2109
date: 2024-07-09 20:43:53.0 +02:00
}
+ip: null
+tags: null
+mentions: [
"@otp@sh.itjust.works"
]
+children: Doctrine\ORM\PersistentCollection {#2124 …}
+nested: Doctrine\ORM\PersistentCollection {#2118 …}
+votes: Doctrine\ORM\PersistentCollection {#2121 …}
+reports: Doctrine\ORM\PersistentCollection {#2115 …}
+favourites: Doctrine\ORM\PersistentCollection {#2123 …}
+notifications: Doctrine\ORM\PersistentCollection {#2116 …}
-id: 298160
-bodyTs: "'across':4 'believ':13,45 'coil':39 'come':3 'complain':48 'correl':15 'definit':36 'didn':43 'disappear':34 'head':58 'held':53 'issu':19 'laptop':9 'new':29 'one':30 'person':47 'power':10 'problem':33 'replac':25 'sort':22 'suppli':11 've':2 'voltag':18 'wasn':37 'whine':40"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.world/comment/6569517"
+editedAt: null
+createdAt: DateTimeImmutable @1704943715 {#2103
date: 2024-01-11 04:28:35.0 +01:00
}
}
+root: App\Entity\EntryComment {#2112}
+body: "Was it like a little tiny weewoo alarm? Because that’s all I can describe it as, Lmao"
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1704944372 {#3258
date: 2024-01-11 04:39:32.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@otp@sh.itjust.works"
"@moosqueak@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#3261 …}
+nested: Doctrine\ORM\PersistentCollection {#3263 …}
+votes: Doctrine\ORM\PersistentCollection {#3265 …}
+reports: Doctrine\ORM\PersistentCollection {#3267 …}
+favourites: Doctrine\ORM\PersistentCollection {#3269 …}
+notifications: Doctrine\ORM\PersistentCollection {#3271 …}
-id: 298176
-bodyTs: "'alarm':8 'describ':15 'like':3 'littl':5 'lmao':18 'tini':6 'weewoo':7"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://sh.itjust.works/comment/7369426"
+editedAt: null
+createdAt: DateTimeImmutable @1704944372 {#3259
date: 2024-01-11 04:39:32.0 +01:00
}
} |
|
Show voter details
|
52 |
DENIED
|
moderate
|
App\Entity\EntryComment {#3260
+user: Proxies\__CG__\App\Entity\User {#3185 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2344 …}
+magazine: App\Entity\Magazine {#305
+icon: null
+name: "datahoarder@lemmy.ml"
+title: "datahoarder"
+description: """
**Who are we?**\n
\n
We are digital librarians. Among us are represented the various reasons to keep data – legal requirements, competitive requirements, uncertainty of permanence of cloud services, distaste for transmitting your data externally (e.g. government or corporate espionage), cultural and familial archivists, internet collapse preppers, and people who do it themselves so they’re sure it’s done right. Everyone has their reasons for curating the data they have decided to keep (either forever or For A Damn Long Time). Along the way we have sought out like-minded individuals to exchange strategies, war stories, and cautionary tales of failures.\n
\n
We are one. We are legion. And we’re trying really hard not to forget.\n
\n
– 5-4-3-2-1-bang from [this thread](https://web.archive.org/web/20221111153119/https://old.reddit.com/r/DataHoarder/comments/41tqt4/hi_guys_can_i_kindly_ask_for_an_eli5_of_this/cz53pi0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 58
+entryCommentCount: 311
+postCount: 1
+postCommentCount: 1
+isAdult: false
+customCss: null
+lastActive: DateTime @1729502222 {#313
date: 2024-10-21 11:17:02.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#293 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#289 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#278 …}
+entries: Doctrine\ORM\PersistentCollection {#236 …}
+posts: Doctrine\ORM\PersistentCollection {#194 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#256 …}
+bans: Doctrine\ORM\PersistentCollection {#173 …}
+reports: Doctrine\ORM\PersistentCollection {#159 …}
+badges: Doctrine\ORM\PersistentCollection {#137 …}
+logs: Doctrine\ORM\PersistentCollection {#127 …}
+awards: Doctrine\ORM\PersistentCollection {#116 …}
+categories: Doctrine\ORM\PersistentCollection {#103 …}
-id: 32
+apId: "datahoarder@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/datahoarder"
+apPublicUrl: "https://lemmy.ml/c/datahoarder"
+apFollowersUrl: "https://lemmy.ml/c/datahoarder/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "datahoarder"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729303437 {#314
date: 2024-10-19 04:03:57.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1695727192 {#308
date: 2023-09-26 13:19:52.0 +02:00
}
}
+image: null
+parent: App\Entity\EntryComment {#2112
+user: App\Entity\User {#2161 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2344 …}
+magazine: App\Entity\Magazine {#305}
+image: null
+parent: null
+root: null
+body: "I’ve come across it once with a laptop power supply. I believe it correlated to a voltage issue of some sort. We just replaced it with a new one and the problems disappeared. It definitely wasn’t coil whine, but I didn’t believe the person complaining about it until I held it up to my head myself."
+lang: "en"
+isAdult: false
+favouriteCount: 1
+score: 0
+lastActive: DateTime @1720550633 {#2109
date: 2024-07-09 20:43:53.0 +02:00
}
+ip: null
+tags: null
+mentions: [
"@otp@sh.itjust.works"
]
+children: Doctrine\ORM\PersistentCollection {#2124 …}
+nested: Doctrine\ORM\PersistentCollection {#2118 …}
+votes: Doctrine\ORM\PersistentCollection {#2121 …}
+reports: Doctrine\ORM\PersistentCollection {#2115 …}
+favourites: Doctrine\ORM\PersistentCollection {#2123 …}
+notifications: Doctrine\ORM\PersistentCollection {#2116 …}
-id: 298160
-bodyTs: "'across':4 'believ':13,45 'coil':39 'come':3 'complain':48 'correl':15 'definit':36 'didn':43 'disappear':34 'head':58 'held':53 'issu':19 'laptop':9 'new':29 'one':30 'person':47 'power':10 'problem':33 'replac':25 'sort':22 'suppli':11 've':2 'voltag':18 'wasn':37 'whine':40"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.world/comment/6569517"
+editedAt: null
+createdAt: DateTimeImmutable @1704943715 {#2103
date: 2024-01-11 04:28:35.0 +01:00
}
}
+root: App\Entity\EntryComment {#2112}
+body: "Was it like a little tiny weewoo alarm? Because that’s all I can describe it as, Lmao"
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1704944372 {#3258
date: 2024-01-11 04:39:32.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@otp@sh.itjust.works"
"@moosqueak@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#3261 …}
+nested: Doctrine\ORM\PersistentCollection {#3263 …}
+votes: Doctrine\ORM\PersistentCollection {#3265 …}
+reports: Doctrine\ORM\PersistentCollection {#3267 …}
+favourites: Doctrine\ORM\PersistentCollection {#3269 …}
+notifications: Doctrine\ORM\PersistentCollection {#3271 …}
-id: 298176
-bodyTs: "'alarm':8 'describ':15 'like':3 'littl':5 'lmao':18 'tini':6 'weewoo':7"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://sh.itjust.works/comment/7369426"
+editedAt: null
+createdAt: DateTimeImmutable @1704944372 {#3259
date: 2024-01-11 04:39:32.0 +01:00
}
} |
|
Show voter details
|
53 |
DENIED
|
ROLE_USER
|
null |
|
Show voter details
|
54 |
DENIED
|
moderate
|
App\Entity\EntryComment {#2280
+user: App\Entity\User {#2217 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2344 …}
+magazine: App\Entity\Magazine {#305
+icon: null
+name: "datahoarder@lemmy.ml"
+title: "datahoarder"
+description: """
**Who are we?**\n
\n
We are digital librarians. Among us are represented the various reasons to keep data – legal requirements, competitive requirements, uncertainty of permanence of cloud services, distaste for transmitting your data externally (e.g. government or corporate espionage), cultural and familial archivists, internet collapse preppers, and people who do it themselves so they’re sure it’s done right. Everyone has their reasons for curating the data they have decided to keep (either forever or For A Damn Long Time). Along the way we have sought out like-minded individuals to exchange strategies, war stories, and cautionary tales of failures.\n
\n
We are one. We are legion. And we’re trying really hard not to forget.\n
\n
– 5-4-3-2-1-bang from [this thread](https://web.archive.org/web/20221111153119/https://old.reddit.com/r/DataHoarder/comments/41tqt4/hi_guys_can_i_kindly_ask_for_an_eli5_of_this/cz53pi0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 58
+entryCommentCount: 311
+postCount: 1
+postCommentCount: 1
+isAdult: false
+customCss: null
+lastActive: DateTime @1729502222 {#313
date: 2024-10-21 11:17:02.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#293 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#289 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#278 …}
+entries: Doctrine\ORM\PersistentCollection {#236 …}
+posts: Doctrine\ORM\PersistentCollection {#194 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#256 …}
+bans: Doctrine\ORM\PersistentCollection {#173 …}
+reports: Doctrine\ORM\PersistentCollection {#159 …}
+badges: Doctrine\ORM\PersistentCollection {#137 …}
+logs: Doctrine\ORM\PersistentCollection {#127 …}
+awards: Doctrine\ORM\PersistentCollection {#116 …}
+categories: Doctrine\ORM\PersistentCollection {#103 …}
-id: 32
+apId: "datahoarder@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/datahoarder"
+apPublicUrl: "https://lemmy.ml/c/datahoarder"
+apFollowersUrl: "https://lemmy.ml/c/datahoarder/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "datahoarder"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729303437 {#314
date: 2024-10-19 04:03:57.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1695727192 {#308
date: 2023-09-26 13:19:52.0 +02:00
}
}
+image: null
+parent: null
+root: null
+body: """
It’s not an intentional noise, it’ll be a shitty bridge rectifier.\n
\n
It’s just a cheap shitty power supply.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 9
+score: 0
+lastActive: DateTime @1720527666 {#2290
date: 2024-07-09 14:21:06.0 +02:00
}
+ip: null
+tags: null
+mentions: [
"@otp@sh.itjust.works"
]
+children: Doctrine\ORM\PersistentCollection {#2282 …}
+nested: Doctrine\ORM\PersistentCollection {#2276 …}
+votes: Doctrine\ORM\PersistentCollection {#2275 …}
+reports: Doctrine\ORM\PersistentCollection {#2261 …}
+favourites: Doctrine\ORM\PersistentCollection {#2218 …}
+notifications: Doctrine\ORM\PersistentCollection {#2221 …}
-id: 295043
-bodyTs: "'bridg':12 'cheap':18 'intent':5 'll':8 'nois':6 'power':20 'rectifi':13 'shitti':11,19 'suppli':21"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.world/comment/6541172"
+editedAt: null
+createdAt: DateTimeImmutable @1704860971 {#2296
date: 2024-01-10 05:29:31.0 +01:00
}
} |
|
Show voter details
|
55 |
DENIED
|
edit
|
App\Entity\EntryComment {#2280
+user: App\Entity\User {#2217 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2344 …}
+magazine: App\Entity\Magazine {#305
+icon: null
+name: "datahoarder@lemmy.ml"
+title: "datahoarder"
+description: """
**Who are we?**\n
\n
We are digital librarians. Among us are represented the various reasons to keep data – legal requirements, competitive requirements, uncertainty of permanence of cloud services, distaste for transmitting your data externally (e.g. government or corporate espionage), cultural and familial archivists, internet collapse preppers, and people who do it themselves so they’re sure it’s done right. Everyone has their reasons for curating the data they have decided to keep (either forever or For A Damn Long Time). Along the way we have sought out like-minded individuals to exchange strategies, war stories, and cautionary tales of failures.\n
\n
We are one. We are legion. And we’re trying really hard not to forget.\n
\n
– 5-4-3-2-1-bang from [this thread](https://web.archive.org/web/20221111153119/https://old.reddit.com/r/DataHoarder/comments/41tqt4/hi_guys_can_i_kindly_ask_for_an_eli5_of_this/cz53pi0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 58
+entryCommentCount: 311
+postCount: 1
+postCommentCount: 1
+isAdult: false
+customCss: null
+lastActive: DateTime @1729502222 {#313
date: 2024-10-21 11:17:02.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#293 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#289 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#278 …}
+entries: Doctrine\ORM\PersistentCollection {#236 …}
+posts: Doctrine\ORM\PersistentCollection {#194 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#256 …}
+bans: Doctrine\ORM\PersistentCollection {#173 …}
+reports: Doctrine\ORM\PersistentCollection {#159 …}
+badges: Doctrine\ORM\PersistentCollection {#137 …}
+logs: Doctrine\ORM\PersistentCollection {#127 …}
+awards: Doctrine\ORM\PersistentCollection {#116 …}
+categories: Doctrine\ORM\PersistentCollection {#103 …}
-id: 32
+apId: "datahoarder@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/datahoarder"
+apPublicUrl: "https://lemmy.ml/c/datahoarder"
+apFollowersUrl: "https://lemmy.ml/c/datahoarder/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "datahoarder"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729303437 {#314
date: 2024-10-19 04:03:57.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1695727192 {#308
date: 2023-09-26 13:19:52.0 +02:00
}
}
+image: null
+parent: null
+root: null
+body: """
It’s not an intentional noise, it’ll be a shitty bridge rectifier.\n
\n
It’s just a cheap shitty power supply.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 9
+score: 0
+lastActive: DateTime @1720527666 {#2290
date: 2024-07-09 14:21:06.0 +02:00
}
+ip: null
+tags: null
+mentions: [
"@otp@sh.itjust.works"
]
+children: Doctrine\ORM\PersistentCollection {#2282 …}
+nested: Doctrine\ORM\PersistentCollection {#2276 …}
+votes: Doctrine\ORM\PersistentCollection {#2275 …}
+reports: Doctrine\ORM\PersistentCollection {#2261 …}
+favourites: Doctrine\ORM\PersistentCollection {#2218 …}
+notifications: Doctrine\ORM\PersistentCollection {#2221 …}
-id: 295043
-bodyTs: "'bridg':12 'cheap':18 'intent':5 'll':8 'nois':6 'power':20 'rectifi':13 'shitti':11,19 'suppli':21"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.world/comment/6541172"
+editedAt: null
+createdAt: DateTimeImmutable @1704860971 {#2296
date: 2024-01-10 05:29:31.0 +01:00
}
} |
|
Show voter details
|
56 |
DENIED
|
moderate
|
App\Entity\EntryComment {#2280
+user: App\Entity\User {#2217 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2344 …}
+magazine: App\Entity\Magazine {#305
+icon: null
+name: "datahoarder@lemmy.ml"
+title: "datahoarder"
+description: """
**Who are we?**\n
\n
We are digital librarians. Among us are represented the various reasons to keep data – legal requirements, competitive requirements, uncertainty of permanence of cloud services, distaste for transmitting your data externally (e.g. government or corporate espionage), cultural and familial archivists, internet collapse preppers, and people who do it themselves so they’re sure it’s done right. Everyone has their reasons for curating the data they have decided to keep (either forever or For A Damn Long Time). Along the way we have sought out like-minded individuals to exchange strategies, war stories, and cautionary tales of failures.\n
\n
We are one. We are legion. And we’re trying really hard not to forget.\n
\n
– 5-4-3-2-1-bang from [this thread](https://web.archive.org/web/20221111153119/https://old.reddit.com/r/DataHoarder/comments/41tqt4/hi_guys_can_i_kindly_ask_for_an_eli5_of_this/cz53pi0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 58
+entryCommentCount: 311
+postCount: 1
+postCommentCount: 1
+isAdult: false
+customCss: null
+lastActive: DateTime @1729502222 {#313
date: 2024-10-21 11:17:02.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#293 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#289 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#278 …}
+entries: Doctrine\ORM\PersistentCollection {#236 …}
+posts: Doctrine\ORM\PersistentCollection {#194 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#256 …}
+bans: Doctrine\ORM\PersistentCollection {#173 …}
+reports: Doctrine\ORM\PersistentCollection {#159 …}
+badges: Doctrine\ORM\PersistentCollection {#137 …}
+logs: Doctrine\ORM\PersistentCollection {#127 …}
+awards: Doctrine\ORM\PersistentCollection {#116 …}
+categories: Doctrine\ORM\PersistentCollection {#103 …}
-id: 32
+apId: "datahoarder@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/datahoarder"
+apPublicUrl: "https://lemmy.ml/c/datahoarder"
+apFollowersUrl: "https://lemmy.ml/c/datahoarder/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "datahoarder"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729303437 {#314
date: 2024-10-19 04:03:57.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1695727192 {#308
date: 2023-09-26 13:19:52.0 +02:00
}
}
+image: null
+parent: null
+root: null
+body: """
It’s not an intentional noise, it’ll be a shitty bridge rectifier.\n
\n
It’s just a cheap shitty power supply.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 9
+score: 0
+lastActive: DateTime @1720527666 {#2290
date: 2024-07-09 14:21:06.0 +02:00
}
+ip: null
+tags: null
+mentions: [
"@otp@sh.itjust.works"
]
+children: Doctrine\ORM\PersistentCollection {#2282 …}
+nested: Doctrine\ORM\PersistentCollection {#2276 …}
+votes: Doctrine\ORM\PersistentCollection {#2275 …}
+reports: Doctrine\ORM\PersistentCollection {#2261 …}
+favourites: Doctrine\ORM\PersistentCollection {#2218 …}
+notifications: Doctrine\ORM\PersistentCollection {#2221 …}
-id: 295043
-bodyTs: "'bridg':12 'cheap':18 'intent':5 'll':8 'nois':6 'power':20 'rectifi':13 'shitti':11,19 'suppli':21"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.world/comment/6541172"
+editedAt: null
+createdAt: DateTimeImmutable @1704860971 {#2296
date: 2024-01-10 05:29:31.0 +01:00
}
} |
|
Show voter details
|
57 |
DENIED
|
ROLE_USER
|
null |
|
Show voter details
|
58 |
DENIED
|
moderate
|
App\Entity\EntryComment {#3230
+user: Proxies\__CG__\App\Entity\User {#3185 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2344 …}
+magazine: App\Entity\Magazine {#305
+icon: null
+name: "datahoarder@lemmy.ml"
+title: "datahoarder"
+description: """
**Who are we?**\n
\n
We are digital librarians. Among us are represented the various reasons to keep data – legal requirements, competitive requirements, uncertainty of permanence of cloud services, distaste for transmitting your data externally (e.g. government or corporate espionage), cultural and familial archivists, internet collapse preppers, and people who do it themselves so they’re sure it’s done right. Everyone has their reasons for curating the data they have decided to keep (either forever or For A Damn Long Time). Along the way we have sought out like-minded individuals to exchange strategies, war stories, and cautionary tales of failures.\n
\n
We are one. We are legion. And we’re trying really hard not to forget.\n
\n
– 5-4-3-2-1-bang from [this thread](https://web.archive.org/web/20221111153119/https://old.reddit.com/r/DataHoarder/comments/41tqt4/hi_guys_can_i_kindly_ask_for_an_eli5_of_this/cz53pi0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 58
+entryCommentCount: 311
+postCount: 1
+postCommentCount: 1
+isAdult: false
+customCss: null
+lastActive: DateTime @1729502222 {#313
date: 2024-10-21 11:17:02.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#293 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#289 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#278 …}
+entries: Doctrine\ORM\PersistentCollection {#236 …}
+posts: Doctrine\ORM\PersistentCollection {#194 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#256 …}
+bans: Doctrine\ORM\PersistentCollection {#173 …}
+reports: Doctrine\ORM\PersistentCollection {#159 …}
+badges: Doctrine\ORM\PersistentCollection {#137 …}
+logs: Doctrine\ORM\PersistentCollection {#127 …}
+awards: Doctrine\ORM\PersistentCollection {#116 …}
+categories: Doctrine\ORM\PersistentCollection {#103 …}
-id: 32
+apId: "datahoarder@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/datahoarder"
+apPublicUrl: "https://lemmy.ml/c/datahoarder"
+apFollowersUrl: "https://lemmy.ml/c/datahoarder/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "datahoarder"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729303437 {#314
date: 2024-10-19 04:03:57.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1695727192 {#308
date: 2023-09-26 13:19:52.0 +02:00
}
}
+image: null
+parent: App\Entity\EntryComment {#2280
+user: App\Entity\User {#2217 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2344 …}
+magazine: App\Entity\Magazine {#305}
+image: null
+parent: null
+root: null
+body: """
It’s not an intentional noise, it’ll be a shitty bridge rectifier.\n
\n
It’s just a cheap shitty power supply.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 9
+score: 0
+lastActive: DateTime @1720527666 {#2290
date: 2024-07-09 14:21:06.0 +02:00
}
+ip: null
+tags: null
+mentions: [
"@otp@sh.itjust.works"
]
+children: Doctrine\ORM\PersistentCollection {#2282 …}
+nested: Doctrine\ORM\PersistentCollection {#2276 …}
+votes: Doctrine\ORM\PersistentCollection {#2275 …}
+reports: Doctrine\ORM\PersistentCollection {#2261 …}
+favourites: Doctrine\ORM\PersistentCollection {#2218 …}
+notifications: Doctrine\ORM\PersistentCollection {#2221 …}
-id: 295043
-bodyTs: "'bridg':12 'cheap':18 'intent':5 'll':8 'nois':6 'power':20 'rectifi':13 'shitti':11,19 'suppli':21"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.world/comment/6541172"
+editedAt: null
+createdAt: DateTimeImmutable @1704860971 {#2296
date: 2024-01-10 05:29:31.0 +01:00
}
}
+root: App\Entity\EntryComment {#2280}
+body: """
What’s a bridge rectifier?\n
\n
The power supply is “universal” (comes with different attachments for different regions’ outlets), so I could see it doing something weird like that.\n
\n
But it only happens when it’s plugged into the outlet, but the HDD is NOT plugged into the computer.\n
\n
Could it be expecting some extra power from the PC or something?
"""
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1704931457 {#3228
date: 2024-01-11 01:04:17.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@otp@sh.itjust.works"
"@ArbiterXero@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#3231 …}
+nested: Doctrine\ORM\PersistentCollection {#3233 …}
+votes: Doctrine\ORM\PersistentCollection {#3235 …}
+reports: Doctrine\ORM\PersistentCollection {#3237 …}
+favourites: Doctrine\ORM\PersistentCollection {#3239 …}
+notifications: Doctrine\ORM\PersistentCollection {#3241 …}
-id: 297782
-bodyTs: "'attach':14 'bridg':4 'come':11 'comput':48 'could':21,49 'differ':13,16 'expect':52 'extra':54 'happen':32 'hdd':42 'like':27 'outlet':18,39 'pc':58 'plug':36,45 'power':7,55 'rectifi':5 'region':17 'see':22 'someth':25,60 'suppli':8 'univers':10 'weird':26"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://sh.itjust.works/comment/7364003"
+editedAt: null
+createdAt: DateTimeImmutable @1704931457 {#3229
date: 2024-01-11 01:04:17.0 +01:00
}
} |
|
Show voter details
|
59 |
DENIED
|
edit
|
App\Entity\EntryComment {#3230
+user: Proxies\__CG__\App\Entity\User {#3185 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2344 …}
+magazine: App\Entity\Magazine {#305
+icon: null
+name: "datahoarder@lemmy.ml"
+title: "datahoarder"
+description: """
**Who are we?**\n
\n
We are digital librarians. Among us are represented the various reasons to keep data – legal requirements, competitive requirements, uncertainty of permanence of cloud services, distaste for transmitting your data externally (e.g. government or corporate espionage), cultural and familial archivists, internet collapse preppers, and people who do it themselves so they’re sure it’s done right. Everyone has their reasons for curating the data they have decided to keep (either forever or For A Damn Long Time). Along the way we have sought out like-minded individuals to exchange strategies, war stories, and cautionary tales of failures.\n
\n
We are one. We are legion. And we’re trying really hard not to forget.\n
\n
– 5-4-3-2-1-bang from [this thread](https://web.archive.org/web/20221111153119/https://old.reddit.com/r/DataHoarder/comments/41tqt4/hi_guys_can_i_kindly_ask_for_an_eli5_of_this/cz53pi0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 58
+entryCommentCount: 311
+postCount: 1
+postCommentCount: 1
+isAdult: false
+customCss: null
+lastActive: DateTime @1729502222 {#313
date: 2024-10-21 11:17:02.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#293 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#289 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#278 …}
+entries: Doctrine\ORM\PersistentCollection {#236 …}
+posts: Doctrine\ORM\PersistentCollection {#194 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#256 …}
+bans: Doctrine\ORM\PersistentCollection {#173 …}
+reports: Doctrine\ORM\PersistentCollection {#159 …}
+badges: Doctrine\ORM\PersistentCollection {#137 …}
+logs: Doctrine\ORM\PersistentCollection {#127 …}
+awards: Doctrine\ORM\PersistentCollection {#116 …}
+categories: Doctrine\ORM\PersistentCollection {#103 …}
-id: 32
+apId: "datahoarder@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/datahoarder"
+apPublicUrl: "https://lemmy.ml/c/datahoarder"
+apFollowersUrl: "https://lemmy.ml/c/datahoarder/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "datahoarder"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729303437 {#314
date: 2024-10-19 04:03:57.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1695727192 {#308
date: 2023-09-26 13:19:52.0 +02:00
}
}
+image: null
+parent: App\Entity\EntryComment {#2280
+user: App\Entity\User {#2217 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2344 …}
+magazine: App\Entity\Magazine {#305}
+image: null
+parent: null
+root: null
+body: """
It’s not an intentional noise, it’ll be a shitty bridge rectifier.\n
\n
It’s just a cheap shitty power supply.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 9
+score: 0
+lastActive: DateTime @1720527666 {#2290
date: 2024-07-09 14:21:06.0 +02:00
}
+ip: null
+tags: null
+mentions: [
"@otp@sh.itjust.works"
]
+children: Doctrine\ORM\PersistentCollection {#2282 …}
+nested: Doctrine\ORM\PersistentCollection {#2276 …}
+votes: Doctrine\ORM\PersistentCollection {#2275 …}
+reports: Doctrine\ORM\PersistentCollection {#2261 …}
+favourites: Doctrine\ORM\PersistentCollection {#2218 …}
+notifications: Doctrine\ORM\PersistentCollection {#2221 …}
-id: 295043
-bodyTs: "'bridg':12 'cheap':18 'intent':5 'll':8 'nois':6 'power':20 'rectifi':13 'shitti':11,19 'suppli':21"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.world/comment/6541172"
+editedAt: null
+createdAt: DateTimeImmutable @1704860971 {#2296
date: 2024-01-10 05:29:31.0 +01:00
}
}
+root: App\Entity\EntryComment {#2280}
+body: """
What’s a bridge rectifier?\n
\n
The power supply is “universal” (comes with different attachments for different regions’ outlets), so I could see it doing something weird like that.\n
\n
But it only happens when it’s plugged into the outlet, but the HDD is NOT plugged into the computer.\n
\n
Could it be expecting some extra power from the PC or something?
"""
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1704931457 {#3228
date: 2024-01-11 01:04:17.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@otp@sh.itjust.works"
"@ArbiterXero@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#3231 …}
+nested: Doctrine\ORM\PersistentCollection {#3233 …}
+votes: Doctrine\ORM\PersistentCollection {#3235 …}
+reports: Doctrine\ORM\PersistentCollection {#3237 …}
+favourites: Doctrine\ORM\PersistentCollection {#3239 …}
+notifications: Doctrine\ORM\PersistentCollection {#3241 …}
-id: 297782
-bodyTs: "'attach':14 'bridg':4 'come':11 'comput':48 'could':21,49 'differ':13,16 'expect':52 'extra':54 'happen':32 'hdd':42 'like':27 'outlet':18,39 'pc':58 'plug':36,45 'power':7,55 'rectifi':5 'region':17 'see':22 'someth':25,60 'suppli':8 'univers':10 'weird':26"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://sh.itjust.works/comment/7364003"
+editedAt: null
+createdAt: DateTimeImmutable @1704931457 {#3229
date: 2024-01-11 01:04:17.0 +01:00
}
} |
|
Show voter details
|
60 |
DENIED
|
moderate
|
App\Entity\EntryComment {#3230
+user: Proxies\__CG__\App\Entity\User {#3185 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2344 …}
+magazine: App\Entity\Magazine {#305
+icon: null
+name: "datahoarder@lemmy.ml"
+title: "datahoarder"
+description: """
**Who are we?**\n
\n
We are digital librarians. Among us are represented the various reasons to keep data – legal requirements, competitive requirements, uncertainty of permanence of cloud services, distaste for transmitting your data externally (e.g. government or corporate espionage), cultural and familial archivists, internet collapse preppers, and people who do it themselves so they’re sure it’s done right. Everyone has their reasons for curating the data they have decided to keep (either forever or For A Damn Long Time). Along the way we have sought out like-minded individuals to exchange strategies, war stories, and cautionary tales of failures.\n
\n
We are one. We are legion. And we’re trying really hard not to forget.\n
\n
– 5-4-3-2-1-bang from [this thread](https://web.archive.org/web/20221111153119/https://old.reddit.com/r/DataHoarder/comments/41tqt4/hi_guys_can_i_kindly_ask_for_an_eli5_of_this/cz53pi0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 58
+entryCommentCount: 311
+postCount: 1
+postCommentCount: 1
+isAdult: false
+customCss: null
+lastActive: DateTime @1729502222 {#313
date: 2024-10-21 11:17:02.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#293 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#289 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#278 …}
+entries: Doctrine\ORM\PersistentCollection {#236 …}
+posts: Doctrine\ORM\PersistentCollection {#194 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#256 …}
+bans: Doctrine\ORM\PersistentCollection {#173 …}
+reports: Doctrine\ORM\PersistentCollection {#159 …}
+badges: Doctrine\ORM\PersistentCollection {#137 …}
+logs: Doctrine\ORM\PersistentCollection {#127 …}
+awards: Doctrine\ORM\PersistentCollection {#116 …}
+categories: Doctrine\ORM\PersistentCollection {#103 …}
-id: 32
+apId: "datahoarder@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/datahoarder"
+apPublicUrl: "https://lemmy.ml/c/datahoarder"
+apFollowersUrl: "https://lemmy.ml/c/datahoarder/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "datahoarder"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729303437 {#314
date: 2024-10-19 04:03:57.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1695727192 {#308
date: 2023-09-26 13:19:52.0 +02:00
}
}
+image: null
+parent: App\Entity\EntryComment {#2280
+user: App\Entity\User {#2217 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2344 …}
+magazine: App\Entity\Magazine {#305}
+image: null
+parent: null
+root: null
+body: """
It’s not an intentional noise, it’ll be a shitty bridge rectifier.\n
\n
It’s just a cheap shitty power supply.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 9
+score: 0
+lastActive: DateTime @1720527666 {#2290
date: 2024-07-09 14:21:06.0 +02:00
}
+ip: null
+tags: null
+mentions: [
"@otp@sh.itjust.works"
]
+children: Doctrine\ORM\PersistentCollection {#2282 …}
+nested: Doctrine\ORM\PersistentCollection {#2276 …}
+votes: Doctrine\ORM\PersistentCollection {#2275 …}
+reports: Doctrine\ORM\PersistentCollection {#2261 …}
+favourites: Doctrine\ORM\PersistentCollection {#2218 …}
+notifications: Doctrine\ORM\PersistentCollection {#2221 …}
-id: 295043
-bodyTs: "'bridg':12 'cheap':18 'intent':5 'll':8 'nois':6 'power':20 'rectifi':13 'shitti':11,19 'suppli':21"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.world/comment/6541172"
+editedAt: null
+createdAt: DateTimeImmutable @1704860971 {#2296
date: 2024-01-10 05:29:31.0 +01:00
}
}
+root: App\Entity\EntryComment {#2280}
+body: """
What’s a bridge rectifier?\n
\n
The power supply is “universal” (comes with different attachments for different regions’ outlets), so I could see it doing something weird like that.\n
\n
But it only happens when it’s plugged into the outlet, but the HDD is NOT plugged into the computer.\n
\n
Could it be expecting some extra power from the PC or something?
"""
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1704931457 {#3228
date: 2024-01-11 01:04:17.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@otp@sh.itjust.works"
"@ArbiterXero@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#3231 …}
+nested: Doctrine\ORM\PersistentCollection {#3233 …}
+votes: Doctrine\ORM\PersistentCollection {#3235 …}
+reports: Doctrine\ORM\PersistentCollection {#3237 …}
+favourites: Doctrine\ORM\PersistentCollection {#3239 …}
+notifications: Doctrine\ORM\PersistentCollection {#3241 …}
-id: 297782
-bodyTs: "'attach':14 'bridg':4 'come':11 'comput':48 'could':21,49 'differ':13,16 'expect':52 'extra':54 'happen':32 'hdd':42 'like':27 'outlet':18,39 'pc':58 'plug':36,45 'power':7,55 'rectifi':5 'region':17 'see':22 'someth':25,60 'suppli':8 'univers':10 'weird':26"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://sh.itjust.works/comment/7364003"
+editedAt: null
+createdAt: DateTimeImmutable @1704931457 {#3229
date: 2024-01-11 01:04:17.0 +01:00
}
} |
|
Show voter details
|
61 |
DENIED
|
ROLE_USER
|
null |
|
Show voter details
|
62 |
DENIED
|
moderate
|
App\Entity\EntryComment {#3359
+user: App\Entity\User {#2217 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2344 …}
+magazine: App\Entity\Magazine {#305
+icon: null
+name: "datahoarder@lemmy.ml"
+title: "datahoarder"
+description: """
**Who are we?**\n
\n
We are digital librarians. Among us are represented the various reasons to keep data – legal requirements, competitive requirements, uncertainty of permanence of cloud services, distaste for transmitting your data externally (e.g. government or corporate espionage), cultural and familial archivists, internet collapse preppers, and people who do it themselves so they’re sure it’s done right. Everyone has their reasons for curating the data they have decided to keep (either forever or For A Damn Long Time). Along the way we have sought out like-minded individuals to exchange strategies, war stories, and cautionary tales of failures.\n
\n
We are one. We are legion. And we’re trying really hard not to forget.\n
\n
– 5-4-3-2-1-bang from [this thread](https://web.archive.org/web/20221111153119/https://old.reddit.com/r/DataHoarder/comments/41tqt4/hi_guys_can_i_kindly_ask_for_an_eli5_of_this/cz53pi0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 58
+entryCommentCount: 311
+postCount: 1
+postCommentCount: 1
+isAdult: false
+customCss: null
+lastActive: DateTime @1729502222 {#313
date: 2024-10-21 11:17:02.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#293 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#289 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#278 …}
+entries: Doctrine\ORM\PersistentCollection {#236 …}
+posts: Doctrine\ORM\PersistentCollection {#194 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#256 …}
+bans: Doctrine\ORM\PersistentCollection {#173 …}
+reports: Doctrine\ORM\PersistentCollection {#159 …}
+badges: Doctrine\ORM\PersistentCollection {#137 …}
+logs: Doctrine\ORM\PersistentCollection {#127 …}
+awards: Doctrine\ORM\PersistentCollection {#116 …}
+categories: Doctrine\ORM\PersistentCollection {#103 …}
-id: 32
+apId: "datahoarder@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/datahoarder"
+apPublicUrl: "https://lemmy.ml/c/datahoarder"
+apFollowersUrl: "https://lemmy.ml/c/datahoarder/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "datahoarder"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729303437 {#314
date: 2024-10-19 04:03:57.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1695727192 {#308
date: 2023-09-26 13:19:52.0 +02:00
}
}
+image: null
+parent: App\Entity\EntryComment {#3230
+user: Proxies\__CG__\App\Entity\User {#3185 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2344 …}
+magazine: App\Entity\Magazine {#305}
+image: null
+parent: App\Entity\EntryComment {#2280
+user: App\Entity\User {#2217 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2344 …}
+magazine: App\Entity\Magazine {#305}
+image: null
+parent: null
+root: null
+body: """
It’s not an intentional noise, it’ll be a shitty bridge rectifier.\n
\n
It’s just a cheap shitty power supply.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 9
+score: 0
+lastActive: DateTime @1720527666 {#2290
date: 2024-07-09 14:21:06.0 +02:00
}
+ip: null
+tags: null
+mentions: [
"@otp@sh.itjust.works"
]
+children: Doctrine\ORM\PersistentCollection {#2282 …}
+nested: Doctrine\ORM\PersistentCollection {#2276 …}
+votes: Doctrine\ORM\PersistentCollection {#2275 …}
+reports: Doctrine\ORM\PersistentCollection {#2261 …}
+favourites: Doctrine\ORM\PersistentCollection {#2218 …}
+notifications: Doctrine\ORM\PersistentCollection {#2221 …}
-id: 295043
-bodyTs: "'bridg':12 'cheap':18 'intent':5 'll':8 'nois':6 'power':20 'rectifi':13 'shitti':11,19 'suppli':21"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.world/comment/6541172"
+editedAt: null
+createdAt: DateTimeImmutable @1704860971 {#2296
date: 2024-01-10 05:29:31.0 +01:00
}
}
+root: App\Entity\EntryComment {#2280}
+body: """
What’s a bridge rectifier?\n
\n
The power supply is “universal” (comes with different attachments for different regions’ outlets), so I could see it doing something weird like that.\n
\n
But it only happens when it’s plugged into the outlet, but the HDD is NOT plugged into the computer.\n
\n
Could it be expecting some extra power from the PC or something?
"""
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1704931457 {#3228
date: 2024-01-11 01:04:17.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@otp@sh.itjust.works"
"@ArbiterXero@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#3231 …}
+nested: Doctrine\ORM\PersistentCollection {#3233 …}
+votes: Doctrine\ORM\PersistentCollection {#3235 …}
+reports: Doctrine\ORM\PersistentCollection {#3237 …}
+favourites: Doctrine\ORM\PersistentCollection {#3239 …}
+notifications: Doctrine\ORM\PersistentCollection {#3241 …}
-id: 297782
-bodyTs: "'attach':14 'bridg':4 'come':11 'comput':48 'could':21,49 'differ':13,16 'expect':52 'extra':54 'happen':32 'hdd':42 'like':27 'outlet':18,39 'pc':58 'plug':36,45 'power':7,55 'rectifi':5 'region':17 'see':22 'someth':25,60 'suppli':8 'univers':10 'weird':26"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://sh.itjust.works/comment/7364003"
+editedAt: null
+createdAt: DateTimeImmutable @1704931457 {#3229
date: 2024-01-11 01:04:17.0 +01:00
}
}
+root: App\Entity\EntryComment {#2280}
+body: "No, it’s nothing to worry about, it’ll be just a handful of super cheap parts in the power supply. Essentially when the power supply converts ac to dc, it has a bunch of standard parts, and if you cheap out on them, sometimes they make high pitched noises. The noises can vary in pitch too."
+lang: "en"
+isAdult: false
+favouriteCount: 1
+score: 0
+lastActive: DateTime @1704941524 {#3357
date: 2024-01-11 03:52:04.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@otp@sh.itjust.works"
"@ArbiterXero@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#3360 …}
+nested: Doctrine\ORM\PersistentCollection {#3362 …}
+votes: Doctrine\ORM\PersistentCollection {#3364 …}
+reports: Doctrine\ORM\PersistentCollection {#3366 …}
+favourites: Doctrine\ORM\PersistentCollection {#3368 …}
+notifications: Doctrine\ORM\PersistentCollection {#3370 …}
-id: 298107
-bodyTs: "'ac':28 'bunch':34 'cheap':16,41 'convert':27 'dc':30 'essenti':22 'hand':13 'high':48 'll':9 'make':47 'nois':50,52 'noth':4 'part':17,37 'pitch':49,56 'power':20,25 'sometim':45 'standard':36 'super':15 'suppli':21,26 'vari':54 'worri':6"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.world/comment/6568876"
+editedAt: null
+createdAt: DateTimeImmutable @1704941524 {#3358
date: 2024-01-11 03:52:04.0 +01:00
}
} |
|
Show voter details
|
63 |
DENIED
|
edit
|
App\Entity\EntryComment {#3359
+user: App\Entity\User {#2217 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2344 …}
+magazine: App\Entity\Magazine {#305
+icon: null
+name: "datahoarder@lemmy.ml"
+title: "datahoarder"
+description: """
**Who are we?**\n
\n
We are digital librarians. Among us are represented the various reasons to keep data – legal requirements, competitive requirements, uncertainty of permanence of cloud services, distaste for transmitting your data externally (e.g. government or corporate espionage), cultural and familial archivists, internet collapse preppers, and people who do it themselves so they’re sure it’s done right. Everyone has their reasons for curating the data they have decided to keep (either forever or For A Damn Long Time). Along the way we have sought out like-minded individuals to exchange strategies, war stories, and cautionary tales of failures.\n
\n
We are one. We are legion. And we’re trying really hard not to forget.\n
\n
– 5-4-3-2-1-bang from [this thread](https://web.archive.org/web/20221111153119/https://old.reddit.com/r/DataHoarder/comments/41tqt4/hi_guys_can_i_kindly_ask_for_an_eli5_of_this/cz53pi0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 58
+entryCommentCount: 311
+postCount: 1
+postCommentCount: 1
+isAdult: false
+customCss: null
+lastActive: DateTime @1729502222 {#313
date: 2024-10-21 11:17:02.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#293 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#289 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#278 …}
+entries: Doctrine\ORM\PersistentCollection {#236 …}
+posts: Doctrine\ORM\PersistentCollection {#194 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#256 …}
+bans: Doctrine\ORM\PersistentCollection {#173 …}
+reports: Doctrine\ORM\PersistentCollection {#159 …}
+badges: Doctrine\ORM\PersistentCollection {#137 …}
+logs: Doctrine\ORM\PersistentCollection {#127 …}
+awards: Doctrine\ORM\PersistentCollection {#116 …}
+categories: Doctrine\ORM\PersistentCollection {#103 …}
-id: 32
+apId: "datahoarder@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/datahoarder"
+apPublicUrl: "https://lemmy.ml/c/datahoarder"
+apFollowersUrl: "https://lemmy.ml/c/datahoarder/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "datahoarder"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729303437 {#314
date: 2024-10-19 04:03:57.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1695727192 {#308
date: 2023-09-26 13:19:52.0 +02:00
}
}
+image: null
+parent: App\Entity\EntryComment {#3230
+user: Proxies\__CG__\App\Entity\User {#3185 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2344 …}
+magazine: App\Entity\Magazine {#305}
+image: null
+parent: App\Entity\EntryComment {#2280
+user: App\Entity\User {#2217 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2344 …}
+magazine: App\Entity\Magazine {#305}
+image: null
+parent: null
+root: null
+body: """
It’s not an intentional noise, it’ll be a shitty bridge rectifier.\n
\n
It’s just a cheap shitty power supply.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 9
+score: 0
+lastActive: DateTime @1720527666 {#2290
date: 2024-07-09 14:21:06.0 +02:00
}
+ip: null
+tags: null
+mentions: [
"@otp@sh.itjust.works"
]
+children: Doctrine\ORM\PersistentCollection {#2282 …}
+nested: Doctrine\ORM\PersistentCollection {#2276 …}
+votes: Doctrine\ORM\PersistentCollection {#2275 …}
+reports: Doctrine\ORM\PersistentCollection {#2261 …}
+favourites: Doctrine\ORM\PersistentCollection {#2218 …}
+notifications: Doctrine\ORM\PersistentCollection {#2221 …}
-id: 295043
-bodyTs: "'bridg':12 'cheap':18 'intent':5 'll':8 'nois':6 'power':20 'rectifi':13 'shitti':11,19 'suppli':21"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.world/comment/6541172"
+editedAt: null
+createdAt: DateTimeImmutable @1704860971 {#2296
date: 2024-01-10 05:29:31.0 +01:00
}
}
+root: App\Entity\EntryComment {#2280}
+body: """
What’s a bridge rectifier?\n
\n
The power supply is “universal” (comes with different attachments for different regions’ outlets), so I could see it doing something weird like that.\n
\n
But it only happens when it’s plugged into the outlet, but the HDD is NOT plugged into the computer.\n
\n
Could it be expecting some extra power from the PC or something?
"""
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1704931457 {#3228
date: 2024-01-11 01:04:17.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@otp@sh.itjust.works"
"@ArbiterXero@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#3231 …}
+nested: Doctrine\ORM\PersistentCollection {#3233 …}
+votes: Doctrine\ORM\PersistentCollection {#3235 …}
+reports: Doctrine\ORM\PersistentCollection {#3237 …}
+favourites: Doctrine\ORM\PersistentCollection {#3239 …}
+notifications: Doctrine\ORM\PersistentCollection {#3241 …}
-id: 297782
-bodyTs: "'attach':14 'bridg':4 'come':11 'comput':48 'could':21,49 'differ':13,16 'expect':52 'extra':54 'happen':32 'hdd':42 'like':27 'outlet':18,39 'pc':58 'plug':36,45 'power':7,55 'rectifi':5 'region':17 'see':22 'someth':25,60 'suppli':8 'univers':10 'weird':26"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://sh.itjust.works/comment/7364003"
+editedAt: null
+createdAt: DateTimeImmutable @1704931457 {#3229
date: 2024-01-11 01:04:17.0 +01:00
}
}
+root: App\Entity\EntryComment {#2280}
+body: "No, it’s nothing to worry about, it’ll be just a handful of super cheap parts in the power supply. Essentially when the power supply converts ac to dc, it has a bunch of standard parts, and if you cheap out on them, sometimes they make high pitched noises. The noises can vary in pitch too."
+lang: "en"
+isAdult: false
+favouriteCount: 1
+score: 0
+lastActive: DateTime @1704941524 {#3357
date: 2024-01-11 03:52:04.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@otp@sh.itjust.works"
"@ArbiterXero@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#3360 …}
+nested: Doctrine\ORM\PersistentCollection {#3362 …}
+votes: Doctrine\ORM\PersistentCollection {#3364 …}
+reports: Doctrine\ORM\PersistentCollection {#3366 …}
+favourites: Doctrine\ORM\PersistentCollection {#3368 …}
+notifications: Doctrine\ORM\PersistentCollection {#3370 …}
-id: 298107
-bodyTs: "'ac':28 'bunch':34 'cheap':16,41 'convert':27 'dc':30 'essenti':22 'hand':13 'high':48 'll':9 'make':47 'nois':50,52 'noth':4 'part':17,37 'pitch':49,56 'power':20,25 'sometim':45 'standard':36 'super':15 'suppli':21,26 'vari':54 'worri':6"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.world/comment/6568876"
+editedAt: null
+createdAt: DateTimeImmutable @1704941524 {#3358
date: 2024-01-11 03:52:04.0 +01:00
}
} |
|
Show voter details
|
64 |
DENIED
|
moderate
|
App\Entity\EntryComment {#3359
+user: App\Entity\User {#2217 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2344 …}
+magazine: App\Entity\Magazine {#305
+icon: null
+name: "datahoarder@lemmy.ml"
+title: "datahoarder"
+description: """
**Who are we?**\n
\n
We are digital librarians. Among us are represented the various reasons to keep data – legal requirements, competitive requirements, uncertainty of permanence of cloud services, distaste for transmitting your data externally (e.g. government or corporate espionage), cultural and familial archivists, internet collapse preppers, and people who do it themselves so they’re sure it’s done right. Everyone has their reasons for curating the data they have decided to keep (either forever or For A Damn Long Time). Along the way we have sought out like-minded individuals to exchange strategies, war stories, and cautionary tales of failures.\n
\n
We are one. We are legion. And we’re trying really hard not to forget.\n
\n
– 5-4-3-2-1-bang from [this thread](https://web.archive.org/web/20221111153119/https://old.reddit.com/r/DataHoarder/comments/41tqt4/hi_guys_can_i_kindly_ask_for_an_eli5_of_this/cz53pi0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 58
+entryCommentCount: 311
+postCount: 1
+postCommentCount: 1
+isAdult: false
+customCss: null
+lastActive: DateTime @1729502222 {#313
date: 2024-10-21 11:17:02.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#293 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#289 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#278 …}
+entries: Doctrine\ORM\PersistentCollection {#236 …}
+posts: Doctrine\ORM\PersistentCollection {#194 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#256 …}
+bans: Doctrine\ORM\PersistentCollection {#173 …}
+reports: Doctrine\ORM\PersistentCollection {#159 …}
+badges: Doctrine\ORM\PersistentCollection {#137 …}
+logs: Doctrine\ORM\PersistentCollection {#127 …}
+awards: Doctrine\ORM\PersistentCollection {#116 …}
+categories: Doctrine\ORM\PersistentCollection {#103 …}
-id: 32
+apId: "datahoarder@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/datahoarder"
+apPublicUrl: "https://lemmy.ml/c/datahoarder"
+apFollowersUrl: "https://lemmy.ml/c/datahoarder/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "datahoarder"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729303437 {#314
date: 2024-10-19 04:03:57.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1695727192 {#308
date: 2023-09-26 13:19:52.0 +02:00
}
}
+image: null
+parent: App\Entity\EntryComment {#3230
+user: Proxies\__CG__\App\Entity\User {#3185 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2344 …}
+magazine: App\Entity\Magazine {#305}
+image: null
+parent: App\Entity\EntryComment {#2280
+user: App\Entity\User {#2217 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2344 …}
+magazine: App\Entity\Magazine {#305}
+image: null
+parent: null
+root: null
+body: """
It’s not an intentional noise, it’ll be a shitty bridge rectifier.\n
\n
It’s just a cheap shitty power supply.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 9
+score: 0
+lastActive: DateTime @1720527666 {#2290
date: 2024-07-09 14:21:06.0 +02:00
}
+ip: null
+tags: null
+mentions: [
"@otp@sh.itjust.works"
]
+children: Doctrine\ORM\PersistentCollection {#2282 …}
+nested: Doctrine\ORM\PersistentCollection {#2276 …}
+votes: Doctrine\ORM\PersistentCollection {#2275 …}
+reports: Doctrine\ORM\PersistentCollection {#2261 …}
+favourites: Doctrine\ORM\PersistentCollection {#2218 …}
+notifications: Doctrine\ORM\PersistentCollection {#2221 …}
-id: 295043
-bodyTs: "'bridg':12 'cheap':18 'intent':5 'll':8 'nois':6 'power':20 'rectifi':13 'shitti':11,19 'suppli':21"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.world/comment/6541172"
+editedAt: null
+createdAt: DateTimeImmutable @1704860971 {#2296
date: 2024-01-10 05:29:31.0 +01:00
}
}
+root: App\Entity\EntryComment {#2280}
+body: """
What’s a bridge rectifier?\n
\n
The power supply is “universal” (comes with different attachments for different regions’ outlets), so I could see it doing something weird like that.\n
\n
But it only happens when it’s plugged into the outlet, but the HDD is NOT plugged into the computer.\n
\n
Could it be expecting some extra power from the PC or something?
"""
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1704931457 {#3228
date: 2024-01-11 01:04:17.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@otp@sh.itjust.works"
"@ArbiterXero@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#3231 …}
+nested: Doctrine\ORM\PersistentCollection {#3233 …}
+votes: Doctrine\ORM\PersistentCollection {#3235 …}
+reports: Doctrine\ORM\PersistentCollection {#3237 …}
+favourites: Doctrine\ORM\PersistentCollection {#3239 …}
+notifications: Doctrine\ORM\PersistentCollection {#3241 …}
-id: 297782
-bodyTs: "'attach':14 'bridg':4 'come':11 'comput':48 'could':21,49 'differ':13,16 'expect':52 'extra':54 'happen':32 'hdd':42 'like':27 'outlet':18,39 'pc':58 'plug':36,45 'power':7,55 'rectifi':5 'region':17 'see':22 'someth':25,60 'suppli':8 'univers':10 'weird':26"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://sh.itjust.works/comment/7364003"
+editedAt: null
+createdAt: DateTimeImmutable @1704931457 {#3229
date: 2024-01-11 01:04:17.0 +01:00
}
}
+root: App\Entity\EntryComment {#2280}
+body: "No, it’s nothing to worry about, it’ll be just a handful of super cheap parts in the power supply. Essentially when the power supply converts ac to dc, it has a bunch of standard parts, and if you cheap out on them, sometimes they make high pitched noises. The noises can vary in pitch too."
+lang: "en"
+isAdult: false
+favouriteCount: 1
+score: 0
+lastActive: DateTime @1704941524 {#3357
date: 2024-01-11 03:52:04.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@otp@sh.itjust.works"
"@ArbiterXero@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#3360 …}
+nested: Doctrine\ORM\PersistentCollection {#3362 …}
+votes: Doctrine\ORM\PersistentCollection {#3364 …}
+reports: Doctrine\ORM\PersistentCollection {#3366 …}
+favourites: Doctrine\ORM\PersistentCollection {#3368 …}
+notifications: Doctrine\ORM\PersistentCollection {#3370 …}
-id: 298107
-bodyTs: "'ac':28 'bunch':34 'cheap':16,41 'convert':27 'dc':30 'essenti':22 'hand':13 'high':48 'll':9 'make':47 'nois':50,52 'noth':4 'part':17,37 'pitch':49,56 'power':20,25 'sometim':45 'standard':36 'super':15 'suppli':21,26 'vari':54 'worri':6"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.world/comment/6568876"
+editedAt: null
+createdAt: DateTimeImmutable @1704941524 {#3358
date: 2024-01-11 03:52:04.0 +01:00
}
} |
|
Show voter details
|
65 |
DENIED
|
ROLE_USER
|
null |
|
Show voter details
|
66 |
DENIED
|
moderate
|
App\Entity\EntryComment {#2284
+user: App\Entity\User {#2151 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2344 …}
+magazine: App\Entity\Magazine {#305
+icon: null
+name: "datahoarder@lemmy.ml"
+title: "datahoarder"
+description: """
**Who are we?**\n
\n
We are digital librarians. Among us are represented the various reasons to keep data – legal requirements, competitive requirements, uncertainty of permanence of cloud services, distaste for transmitting your data externally (e.g. government or corporate espionage), cultural and familial archivists, internet collapse preppers, and people who do it themselves so they’re sure it’s done right. Everyone has their reasons for curating the data they have decided to keep (either forever or For A Damn Long Time). Along the way we have sought out like-minded individuals to exchange strategies, war stories, and cautionary tales of failures.\n
\n
We are one. We are legion. And we’re trying really hard not to forget.\n
\n
– 5-4-3-2-1-bang from [this thread](https://web.archive.org/web/20221111153119/https://old.reddit.com/r/DataHoarder/comments/41tqt4/hi_guys_can_i_kindly_ask_for_an_eli5_of_this/cz53pi0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 58
+entryCommentCount: 311
+postCount: 1
+postCommentCount: 1
+isAdult: false
+customCss: null
+lastActive: DateTime @1729502222 {#313
date: 2024-10-21 11:17:02.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#293 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#289 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#278 …}
+entries: Doctrine\ORM\PersistentCollection {#236 …}
+posts: Doctrine\ORM\PersistentCollection {#194 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#256 …}
+bans: Doctrine\ORM\PersistentCollection {#173 …}
+reports: Doctrine\ORM\PersistentCollection {#159 …}
+badges: Doctrine\ORM\PersistentCollection {#137 …}
+logs: Doctrine\ORM\PersistentCollection {#127 …}
+awards: Doctrine\ORM\PersistentCollection {#116 …}
+categories: Doctrine\ORM\PersistentCollection {#103 …}
-id: 32
+apId: "datahoarder@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/datahoarder"
+apPublicUrl: "https://lemmy.ml/c/datahoarder"
+apFollowersUrl: "https://lemmy.ml/c/datahoarder/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "datahoarder"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729303437 {#314
date: 2024-10-19 04:03:57.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1695727192 {#308
date: 2023-09-26 13:19:52.0 +02:00
}
}
+image: null
+parent: null
+root: null
+body: "Can you record the sound? I’ve never heard of a power supply having any kind of noisemaker. It’s probably just electrical interference or coil whine or something, where the waveform happens to produce that periodic sound. (You might even look around and find a nearby device changing its power draw with the same periodicity.)"
+lang: "en"
+isAdult: false
+favouriteCount: 8
+score: 0
+lastActive: DateTime @1720444893 {#2243
date: 2024-07-08 15:21:33.0 +02:00
}
+ip: null
+tags: null
+mentions: [
"@otp@sh.itjust.works"
]
+children: Doctrine\ORM\PersistentCollection {#2285 …}
+nested: Doctrine\ORM\PersistentCollection {#2287 …}
+votes: Doctrine\ORM\PersistentCollection {#2142 …}
+reports: Doctrine\ORM\PersistentCollection {#2039 …}
+favourites: Doctrine\ORM\PersistentCollection {#2155 …}
+notifications: Doctrine\ORM\PersistentCollection {#2158 …}
-id: 295007
-bodyTs: "'around':43 'chang':49 'coil':26 'devic':48 'draw':52 'electr':23 'even':41 'find':45 'happen':33 'heard':9 'interfer':24 'kind':16 'look':42 'might':40 'nearbi':47 'never':8 'noisemak':18 'period':37,56 'power':12,51 'probabl':21 'produc':35 'record':3 'someth':29 'sound':5,38 'suppli':13 've':7 'waveform':32 'whine':27"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://programming.dev/comment/6289372"
+editedAt: null
+createdAt: DateTimeImmutable @1704858893 {#2247
date: 2024-01-10 04:54:53.0 +01:00
}
} |
|
Show voter details
|
67 |
DENIED
|
edit
|
App\Entity\EntryComment {#2284
+user: App\Entity\User {#2151 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2344 …}
+magazine: App\Entity\Magazine {#305
+icon: null
+name: "datahoarder@lemmy.ml"
+title: "datahoarder"
+description: """
**Who are we?**\n
\n
We are digital librarians. Among us are represented the various reasons to keep data – legal requirements, competitive requirements, uncertainty of permanence of cloud services, distaste for transmitting your data externally (e.g. government or corporate espionage), cultural and familial archivists, internet collapse preppers, and people who do it themselves so they’re sure it’s done right. Everyone has their reasons for curating the data they have decided to keep (either forever or For A Damn Long Time). Along the way we have sought out like-minded individuals to exchange strategies, war stories, and cautionary tales of failures.\n
\n
We are one. We are legion. And we’re trying really hard not to forget.\n
\n
– 5-4-3-2-1-bang from [this thread](https://web.archive.org/web/20221111153119/https://old.reddit.com/r/DataHoarder/comments/41tqt4/hi_guys_can_i_kindly_ask_for_an_eli5_of_this/cz53pi0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 58
+entryCommentCount: 311
+postCount: 1
+postCommentCount: 1
+isAdult: false
+customCss: null
+lastActive: DateTime @1729502222 {#313
date: 2024-10-21 11:17:02.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#293 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#289 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#278 …}
+entries: Doctrine\ORM\PersistentCollection {#236 …}
+posts: Doctrine\ORM\PersistentCollection {#194 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#256 …}
+bans: Doctrine\ORM\PersistentCollection {#173 …}
+reports: Doctrine\ORM\PersistentCollection {#159 …}
+badges: Doctrine\ORM\PersistentCollection {#137 …}
+logs: Doctrine\ORM\PersistentCollection {#127 …}
+awards: Doctrine\ORM\PersistentCollection {#116 …}
+categories: Doctrine\ORM\PersistentCollection {#103 …}
-id: 32
+apId: "datahoarder@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/datahoarder"
+apPublicUrl: "https://lemmy.ml/c/datahoarder"
+apFollowersUrl: "https://lemmy.ml/c/datahoarder/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "datahoarder"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729303437 {#314
date: 2024-10-19 04:03:57.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1695727192 {#308
date: 2023-09-26 13:19:52.0 +02:00
}
}
+image: null
+parent: null
+root: null
+body: "Can you record the sound? I’ve never heard of a power supply having any kind of noisemaker. It’s probably just electrical interference or coil whine or something, where the waveform happens to produce that periodic sound. (You might even look around and find a nearby device changing its power draw with the same periodicity.)"
+lang: "en"
+isAdult: false
+favouriteCount: 8
+score: 0
+lastActive: DateTime @1720444893 {#2243
date: 2024-07-08 15:21:33.0 +02:00
}
+ip: null
+tags: null
+mentions: [
"@otp@sh.itjust.works"
]
+children: Doctrine\ORM\PersistentCollection {#2285 …}
+nested: Doctrine\ORM\PersistentCollection {#2287 …}
+votes: Doctrine\ORM\PersistentCollection {#2142 …}
+reports: Doctrine\ORM\PersistentCollection {#2039 …}
+favourites: Doctrine\ORM\PersistentCollection {#2155 …}
+notifications: Doctrine\ORM\PersistentCollection {#2158 …}
-id: 295007
-bodyTs: "'around':43 'chang':49 'coil':26 'devic':48 'draw':52 'electr':23 'even':41 'find':45 'happen':33 'heard':9 'interfer':24 'kind':16 'look':42 'might':40 'nearbi':47 'never':8 'noisemak':18 'period':37,56 'power':12,51 'probabl':21 'produc':35 'record':3 'someth':29 'sound':5,38 'suppli':13 've':7 'waveform':32 'whine':27"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://programming.dev/comment/6289372"
+editedAt: null
+createdAt: DateTimeImmutable @1704858893 {#2247
date: 2024-01-10 04:54:53.0 +01:00
}
} |
|
Show voter details
|
68 |
DENIED
|
moderate
|
App\Entity\EntryComment {#2284
+user: App\Entity\User {#2151 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2344 …}
+magazine: App\Entity\Magazine {#305
+icon: null
+name: "datahoarder@lemmy.ml"
+title: "datahoarder"
+description: """
**Who are we?**\n
\n
We are digital librarians. Among us are represented the various reasons to keep data – legal requirements, competitive requirements, uncertainty of permanence of cloud services, distaste for transmitting your data externally (e.g. government or corporate espionage), cultural and familial archivists, internet collapse preppers, and people who do it themselves so they’re sure it’s done right. Everyone has their reasons for curating the data they have decided to keep (either forever or For A Damn Long Time). Along the way we have sought out like-minded individuals to exchange strategies, war stories, and cautionary tales of failures.\n
\n
We are one. We are legion. And we’re trying really hard not to forget.\n
\n
– 5-4-3-2-1-bang from [this thread](https://web.archive.org/web/20221111153119/https://old.reddit.com/r/DataHoarder/comments/41tqt4/hi_guys_can_i_kindly_ask_for_an_eli5_of_this/cz53pi0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 58
+entryCommentCount: 311
+postCount: 1
+postCommentCount: 1
+isAdult: false
+customCss: null
+lastActive: DateTime @1729502222 {#313
date: 2024-10-21 11:17:02.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#293 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#289 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#278 …}
+entries: Doctrine\ORM\PersistentCollection {#236 …}
+posts: Doctrine\ORM\PersistentCollection {#194 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#256 …}
+bans: Doctrine\ORM\PersistentCollection {#173 …}
+reports: Doctrine\ORM\PersistentCollection {#159 …}
+badges: Doctrine\ORM\PersistentCollection {#137 …}
+logs: Doctrine\ORM\PersistentCollection {#127 …}
+awards: Doctrine\ORM\PersistentCollection {#116 …}
+categories: Doctrine\ORM\PersistentCollection {#103 …}
-id: 32
+apId: "datahoarder@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/datahoarder"
+apPublicUrl: "https://lemmy.ml/c/datahoarder"
+apFollowersUrl: "https://lemmy.ml/c/datahoarder/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "datahoarder"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729303437 {#314
date: 2024-10-19 04:03:57.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1695727192 {#308
date: 2023-09-26 13:19:52.0 +02:00
}
}
+image: null
+parent: null
+root: null
+body: "Can you record the sound? I’ve never heard of a power supply having any kind of noisemaker. It’s probably just electrical interference or coil whine or something, where the waveform happens to produce that periodic sound. (You might even look around and find a nearby device changing its power draw with the same periodicity.)"
+lang: "en"
+isAdult: false
+favouriteCount: 8
+score: 0
+lastActive: DateTime @1720444893 {#2243
date: 2024-07-08 15:21:33.0 +02:00
}
+ip: null
+tags: null
+mentions: [
"@otp@sh.itjust.works"
]
+children: Doctrine\ORM\PersistentCollection {#2285 …}
+nested: Doctrine\ORM\PersistentCollection {#2287 …}
+votes: Doctrine\ORM\PersistentCollection {#2142 …}
+reports: Doctrine\ORM\PersistentCollection {#2039 …}
+favourites: Doctrine\ORM\PersistentCollection {#2155 …}
+notifications: Doctrine\ORM\PersistentCollection {#2158 …}
-id: 295007
-bodyTs: "'around':43 'chang':49 'coil':26 'devic':48 'draw':52 'electr':23 'even':41 'find':45 'happen':33 'heard':9 'interfer':24 'kind':16 'look':42 'might':40 'nearbi':47 'never':8 'noisemak':18 'period':37,56 'power':12,51 'probabl':21 'produc':35 'record':3 'someth':29 'sound':5,38 'suppli':13 've':7 'waveform':32 'whine':27"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://programming.dev/comment/6289372"
+editedAt: null
+createdAt: DateTimeImmutable @1704858893 {#2247
date: 2024-01-10 04:54:53.0 +01:00
}
} |
|
Show voter details
|
69 |
DENIED
|
ROLE_USER
|
null |
|
Show voter details
|
70 |
DENIED
|
moderate
|
App\Entity\EntryComment {#3200
+user: Proxies\__CG__\App\Entity\User {#3185 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2344 …}
+magazine: App\Entity\Magazine {#305
+icon: null
+name: "datahoarder@lemmy.ml"
+title: "datahoarder"
+description: """
**Who are we?**\n
\n
We are digital librarians. Among us are represented the various reasons to keep data – legal requirements, competitive requirements, uncertainty of permanence of cloud services, distaste for transmitting your data externally (e.g. government or corporate espionage), cultural and familial archivists, internet collapse preppers, and people who do it themselves so they’re sure it’s done right. Everyone has their reasons for curating the data they have decided to keep (either forever or For A Damn Long Time). Along the way we have sought out like-minded individuals to exchange strategies, war stories, and cautionary tales of failures.\n
\n
We are one. We are legion. And we’re trying really hard not to forget.\n
\n
– 5-4-3-2-1-bang from [this thread](https://web.archive.org/web/20221111153119/https://old.reddit.com/r/DataHoarder/comments/41tqt4/hi_guys_can_i_kindly_ask_for_an_eli5_of_this/cz53pi0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 58
+entryCommentCount: 311
+postCount: 1
+postCommentCount: 1
+isAdult: false
+customCss: null
+lastActive: DateTime @1729502222 {#313
date: 2024-10-21 11:17:02.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#293 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#289 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#278 …}
+entries: Doctrine\ORM\PersistentCollection {#236 …}
+posts: Doctrine\ORM\PersistentCollection {#194 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#256 …}
+bans: Doctrine\ORM\PersistentCollection {#173 …}
+reports: Doctrine\ORM\PersistentCollection {#159 …}
+badges: Doctrine\ORM\PersistentCollection {#137 …}
+logs: Doctrine\ORM\PersistentCollection {#127 …}
+awards: Doctrine\ORM\PersistentCollection {#116 …}
+categories: Doctrine\ORM\PersistentCollection {#103 …}
-id: 32
+apId: "datahoarder@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/datahoarder"
+apPublicUrl: "https://lemmy.ml/c/datahoarder"
+apFollowersUrl: "https://lemmy.ml/c/datahoarder/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "datahoarder"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729303437 {#314
date: 2024-10-19 04:03:57.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1695727192 {#308
date: 2023-09-26 13:19:52.0 +02:00
}
}
+image: null
+parent: App\Entity\EntryComment {#2284
+user: App\Entity\User {#2151 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2344 …}
+magazine: App\Entity\Magazine {#305}
+image: null
+parent: null
+root: null
+body: "Can you record the sound? I’ve never heard of a power supply having any kind of noisemaker. It’s probably just electrical interference or coil whine or something, where the waveform happens to produce that periodic sound. (You might even look around and find a nearby device changing its power draw with the same periodicity.)"
+lang: "en"
+isAdult: false
+favouriteCount: 8
+score: 0
+lastActive: DateTime @1720444893 {#2243
date: 2024-07-08 15:21:33.0 +02:00
}
+ip: null
+tags: null
+mentions: [
"@otp@sh.itjust.works"
]
+children: Doctrine\ORM\PersistentCollection {#2285 …}
+nested: Doctrine\ORM\PersistentCollection {#2287 …}
+votes: Doctrine\ORM\PersistentCollection {#2142 …}
+reports: Doctrine\ORM\PersistentCollection {#2039 …}
+favourites: Doctrine\ORM\PersistentCollection {#2155 …}
+notifications: Doctrine\ORM\PersistentCollection {#2158 …}
-id: 295007
-bodyTs: "'around':43 'chang':49 'coil':26 'devic':48 'draw':52 'electr':23 'even':41 'find':45 'happen':33 'heard':9 'interfer':24 'kind':16 'look':42 'might':40 'nearbi':47 'never':8 'noisemak':18 'period':37,56 'power':12,51 'probabl':21 'produc':35 'record':3 'someth':29 'sound':5,38 'suppli':13 've':7 'waveform':32 'whine':27"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://programming.dev/comment/6289372"
+editedAt: null
+createdAt: DateTimeImmutable @1704858893 {#2247
date: 2024-01-10 04:54:53.0 +01:00
}
}
+root: App\Entity\EntryComment {#2284}
+body: "Yeah, interesting. I’ll see if I can record it tomorrow!"
+lang: "en"
+isAdult: false
+favouriteCount: 1
+score: 0
+lastActive: DateTime @1704860723 {#3198
date: 2024-01-10 05:25:23.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@otp@sh.itjust.works"
"@SheeEttin@programming.dev"
]
+children: Doctrine\ORM\PersistentCollection {#3201 …}
+nested: Doctrine\ORM\PersistentCollection {#3203 …}
+votes: Doctrine\ORM\PersistentCollection {#3205 …}
+reports: Doctrine\ORM\PersistentCollection {#3207 …}
+favourites: Doctrine\ORM\PersistentCollection {#3209 …}
+notifications: Doctrine\ORM\PersistentCollection {#3211 …}
-id: 295039
-bodyTs: "'interest':2 'll':4 'record':9 'see':5 'tomorrow':11 'yeah':1"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://sh.itjust.works/comment/7321972"
+editedAt: null
+createdAt: DateTimeImmutable @1704860723 {#3199
date: 2024-01-10 05:25:23.0 +01:00
}
} |
|
Show voter details
|
71 |
DENIED
|
edit
|
App\Entity\EntryComment {#3200
+user: Proxies\__CG__\App\Entity\User {#3185 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2344 …}
+magazine: App\Entity\Magazine {#305
+icon: null
+name: "datahoarder@lemmy.ml"
+title: "datahoarder"
+description: """
**Who are we?**\n
\n
We are digital librarians. Among us are represented the various reasons to keep data – legal requirements, competitive requirements, uncertainty of permanence of cloud services, distaste for transmitting your data externally (e.g. government or corporate espionage), cultural and familial archivists, internet collapse preppers, and people who do it themselves so they’re sure it’s done right. Everyone has their reasons for curating the data they have decided to keep (either forever or For A Damn Long Time). Along the way we have sought out like-minded individuals to exchange strategies, war stories, and cautionary tales of failures.\n
\n
We are one. We are legion. And we’re trying really hard not to forget.\n
\n
– 5-4-3-2-1-bang from [this thread](https://web.archive.org/web/20221111153119/https://old.reddit.com/r/DataHoarder/comments/41tqt4/hi_guys_can_i_kindly_ask_for_an_eli5_of_this/cz53pi0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 58
+entryCommentCount: 311
+postCount: 1
+postCommentCount: 1
+isAdult: false
+customCss: null
+lastActive: DateTime @1729502222 {#313
date: 2024-10-21 11:17:02.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#293 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#289 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#278 …}
+entries: Doctrine\ORM\PersistentCollection {#236 …}
+posts: Doctrine\ORM\PersistentCollection {#194 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#256 …}
+bans: Doctrine\ORM\PersistentCollection {#173 …}
+reports: Doctrine\ORM\PersistentCollection {#159 …}
+badges: Doctrine\ORM\PersistentCollection {#137 …}
+logs: Doctrine\ORM\PersistentCollection {#127 …}
+awards: Doctrine\ORM\PersistentCollection {#116 …}
+categories: Doctrine\ORM\PersistentCollection {#103 …}
-id: 32
+apId: "datahoarder@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/datahoarder"
+apPublicUrl: "https://lemmy.ml/c/datahoarder"
+apFollowersUrl: "https://lemmy.ml/c/datahoarder/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "datahoarder"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729303437 {#314
date: 2024-10-19 04:03:57.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1695727192 {#308
date: 2023-09-26 13:19:52.0 +02:00
}
}
+image: null
+parent: App\Entity\EntryComment {#2284
+user: App\Entity\User {#2151 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2344 …}
+magazine: App\Entity\Magazine {#305}
+image: null
+parent: null
+root: null
+body: "Can you record the sound? I’ve never heard of a power supply having any kind of noisemaker. It’s probably just electrical interference or coil whine or something, where the waveform happens to produce that periodic sound. (You might even look around and find a nearby device changing its power draw with the same periodicity.)"
+lang: "en"
+isAdult: false
+favouriteCount: 8
+score: 0
+lastActive: DateTime @1720444893 {#2243
date: 2024-07-08 15:21:33.0 +02:00
}
+ip: null
+tags: null
+mentions: [
"@otp@sh.itjust.works"
]
+children: Doctrine\ORM\PersistentCollection {#2285 …}
+nested: Doctrine\ORM\PersistentCollection {#2287 …}
+votes: Doctrine\ORM\PersistentCollection {#2142 …}
+reports: Doctrine\ORM\PersistentCollection {#2039 …}
+favourites: Doctrine\ORM\PersistentCollection {#2155 …}
+notifications: Doctrine\ORM\PersistentCollection {#2158 …}
-id: 295007
-bodyTs: "'around':43 'chang':49 'coil':26 'devic':48 'draw':52 'electr':23 'even':41 'find':45 'happen':33 'heard':9 'interfer':24 'kind':16 'look':42 'might':40 'nearbi':47 'never':8 'noisemak':18 'period':37,56 'power':12,51 'probabl':21 'produc':35 'record':3 'someth':29 'sound':5,38 'suppli':13 've':7 'waveform':32 'whine':27"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://programming.dev/comment/6289372"
+editedAt: null
+createdAt: DateTimeImmutable @1704858893 {#2247
date: 2024-01-10 04:54:53.0 +01:00
}
}
+root: App\Entity\EntryComment {#2284}
+body: "Yeah, interesting. I’ll see if I can record it tomorrow!"
+lang: "en"
+isAdult: false
+favouriteCount: 1
+score: 0
+lastActive: DateTime @1704860723 {#3198
date: 2024-01-10 05:25:23.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@otp@sh.itjust.works"
"@SheeEttin@programming.dev"
]
+children: Doctrine\ORM\PersistentCollection {#3201 …}
+nested: Doctrine\ORM\PersistentCollection {#3203 …}
+votes: Doctrine\ORM\PersistentCollection {#3205 …}
+reports: Doctrine\ORM\PersistentCollection {#3207 …}
+favourites: Doctrine\ORM\PersistentCollection {#3209 …}
+notifications: Doctrine\ORM\PersistentCollection {#3211 …}
-id: 295039
-bodyTs: "'interest':2 'll':4 'record':9 'see':5 'tomorrow':11 'yeah':1"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://sh.itjust.works/comment/7321972"
+editedAt: null
+createdAt: DateTimeImmutable @1704860723 {#3199
date: 2024-01-10 05:25:23.0 +01:00
}
} |
|
Show voter details
|
72 |
DENIED
|
moderate
|
App\Entity\EntryComment {#3200
+user: Proxies\__CG__\App\Entity\User {#3185 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2344 …}
+magazine: App\Entity\Magazine {#305
+icon: null
+name: "datahoarder@lemmy.ml"
+title: "datahoarder"
+description: """
**Who are we?**\n
\n
We are digital librarians. Among us are represented the various reasons to keep data – legal requirements, competitive requirements, uncertainty of permanence of cloud services, distaste for transmitting your data externally (e.g. government or corporate espionage), cultural and familial archivists, internet collapse preppers, and people who do it themselves so they’re sure it’s done right. Everyone has their reasons for curating the data they have decided to keep (either forever or For A Damn Long Time). Along the way we have sought out like-minded individuals to exchange strategies, war stories, and cautionary tales of failures.\n
\n
We are one. We are legion. And we’re trying really hard not to forget.\n
\n
– 5-4-3-2-1-bang from [this thread](https://web.archive.org/web/20221111153119/https://old.reddit.com/r/DataHoarder/comments/41tqt4/hi_guys_can_i_kindly_ask_for_an_eli5_of_this/cz53pi0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 58
+entryCommentCount: 311
+postCount: 1
+postCommentCount: 1
+isAdult: false
+customCss: null
+lastActive: DateTime @1729502222 {#313
date: 2024-10-21 11:17:02.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#293 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#289 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#278 …}
+entries: Doctrine\ORM\PersistentCollection {#236 …}
+posts: Doctrine\ORM\PersistentCollection {#194 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#256 …}
+bans: Doctrine\ORM\PersistentCollection {#173 …}
+reports: Doctrine\ORM\PersistentCollection {#159 …}
+badges: Doctrine\ORM\PersistentCollection {#137 …}
+logs: Doctrine\ORM\PersistentCollection {#127 …}
+awards: Doctrine\ORM\PersistentCollection {#116 …}
+categories: Doctrine\ORM\PersistentCollection {#103 …}
-id: 32
+apId: "datahoarder@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/datahoarder"
+apPublicUrl: "https://lemmy.ml/c/datahoarder"
+apFollowersUrl: "https://lemmy.ml/c/datahoarder/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "datahoarder"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729303437 {#314
date: 2024-10-19 04:03:57.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1695727192 {#308
date: 2023-09-26 13:19:52.0 +02:00
}
}
+image: null
+parent: App\Entity\EntryComment {#2284
+user: App\Entity\User {#2151 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2344 …}
+magazine: App\Entity\Magazine {#305}
+image: null
+parent: null
+root: null
+body: "Can you record the sound? I’ve never heard of a power supply having any kind of noisemaker. It’s probably just electrical interference or coil whine or something, where the waveform happens to produce that periodic sound. (You might even look around and find a nearby device changing its power draw with the same periodicity.)"
+lang: "en"
+isAdult: false
+favouriteCount: 8
+score: 0
+lastActive: DateTime @1720444893 {#2243
date: 2024-07-08 15:21:33.0 +02:00
}
+ip: null
+tags: null
+mentions: [
"@otp@sh.itjust.works"
]
+children: Doctrine\ORM\PersistentCollection {#2285 …}
+nested: Doctrine\ORM\PersistentCollection {#2287 …}
+votes: Doctrine\ORM\PersistentCollection {#2142 …}
+reports: Doctrine\ORM\PersistentCollection {#2039 …}
+favourites: Doctrine\ORM\PersistentCollection {#2155 …}
+notifications: Doctrine\ORM\PersistentCollection {#2158 …}
-id: 295007
-bodyTs: "'around':43 'chang':49 'coil':26 'devic':48 'draw':52 'electr':23 'even':41 'find':45 'happen':33 'heard':9 'interfer':24 'kind':16 'look':42 'might':40 'nearbi':47 'never':8 'noisemak':18 'period':37,56 'power':12,51 'probabl':21 'produc':35 'record':3 'someth':29 'sound':5,38 'suppli':13 've':7 'waveform':32 'whine':27"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://programming.dev/comment/6289372"
+editedAt: null
+createdAt: DateTimeImmutable @1704858893 {#2247
date: 2024-01-10 04:54:53.0 +01:00
}
}
+root: App\Entity\EntryComment {#2284}
+body: "Yeah, interesting. I’ll see if I can record it tomorrow!"
+lang: "en"
+isAdult: false
+favouriteCount: 1
+score: 0
+lastActive: DateTime @1704860723 {#3198
date: 2024-01-10 05:25:23.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@otp@sh.itjust.works"
"@SheeEttin@programming.dev"
]
+children: Doctrine\ORM\PersistentCollection {#3201 …}
+nested: Doctrine\ORM\PersistentCollection {#3203 …}
+votes: Doctrine\ORM\PersistentCollection {#3205 …}
+reports: Doctrine\ORM\PersistentCollection {#3207 …}
+favourites: Doctrine\ORM\PersistentCollection {#3209 …}
+notifications: Doctrine\ORM\PersistentCollection {#3211 …}
-id: 295039
-bodyTs: "'interest':2 'll':4 'record':9 'see':5 'tomorrow':11 'yeah':1"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://sh.itjust.works/comment/7321972"
+editedAt: null
+createdAt: DateTimeImmutable @1704860723 {#3199
date: 2024-01-10 05:25:23.0 +01:00
}
} |
|
Show voter details
|
73 |
DENIED
|
ROLE_USER
|
null |
|
Show voter details
|
74 |
DENIED
|
moderate
|
App\Entity\EntryComment {#3215
+user: Proxies\__CG__\App\Entity\User {#3185 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2344 …}
+magazine: App\Entity\Magazine {#305
+icon: null
+name: "datahoarder@lemmy.ml"
+title: "datahoarder"
+description: """
**Who are we?**\n
\n
We are digital librarians. Among us are represented the various reasons to keep data – legal requirements, competitive requirements, uncertainty of permanence of cloud services, distaste for transmitting your data externally (e.g. government or corporate espionage), cultural and familial archivists, internet collapse preppers, and people who do it themselves so they’re sure it’s done right. Everyone has their reasons for curating the data they have decided to keep (either forever or For A Damn Long Time). Along the way we have sought out like-minded individuals to exchange strategies, war stories, and cautionary tales of failures.\n
\n
We are one. We are legion. And we’re trying really hard not to forget.\n
\n
– 5-4-3-2-1-bang from [this thread](https://web.archive.org/web/20221111153119/https://old.reddit.com/r/DataHoarder/comments/41tqt4/hi_guys_can_i_kindly_ask_for_an_eli5_of_this/cz53pi0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 58
+entryCommentCount: 311
+postCount: 1
+postCommentCount: 1
+isAdult: false
+customCss: null
+lastActive: DateTime @1729502222 {#313
date: 2024-10-21 11:17:02.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#293 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#289 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#278 …}
+entries: Doctrine\ORM\PersistentCollection {#236 …}
+posts: Doctrine\ORM\PersistentCollection {#194 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#256 …}
+bans: Doctrine\ORM\PersistentCollection {#173 …}
+reports: Doctrine\ORM\PersistentCollection {#159 …}
+badges: Doctrine\ORM\PersistentCollection {#137 …}
+logs: Doctrine\ORM\PersistentCollection {#127 …}
+awards: Doctrine\ORM\PersistentCollection {#116 …}
+categories: Doctrine\ORM\PersistentCollection {#103 …}
-id: 32
+apId: "datahoarder@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/datahoarder"
+apPublicUrl: "https://lemmy.ml/c/datahoarder"
+apFollowersUrl: "https://lemmy.ml/c/datahoarder/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "datahoarder"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729303437 {#314
date: 2024-10-19 04:03:57.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1695727192 {#308
date: 2023-09-26 13:19:52.0 +02:00
}
}
+image: null
+parent: App\Entity\EntryComment {#2284
+user: App\Entity\User {#2151 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2344 …}
+magazine: App\Entity\Magazine {#305}
+image: null
+parent: null
+root: null
+body: "Can you record the sound? I’ve never heard of a power supply having any kind of noisemaker. It’s probably just electrical interference or coil whine or something, where the waveform happens to produce that periodic sound. (You might even look around and find a nearby device changing its power draw with the same periodicity.)"
+lang: "en"
+isAdult: false
+favouriteCount: 8
+score: 0
+lastActive: DateTime @1720444893 {#2243
date: 2024-07-08 15:21:33.0 +02:00
}
+ip: null
+tags: null
+mentions: [
"@otp@sh.itjust.works"
]
+children: Doctrine\ORM\PersistentCollection {#2285 …}
+nested: Doctrine\ORM\PersistentCollection {#2287 …}
+votes: Doctrine\ORM\PersistentCollection {#2142 …}
+reports: Doctrine\ORM\PersistentCollection {#2039 …}
+favourites: Doctrine\ORM\PersistentCollection {#2155 …}
+notifications: Doctrine\ORM\PersistentCollection {#2158 …}
-id: 295007
-bodyTs: "'around':43 'chang':49 'coil':26 'devic':48 'draw':52 'electr':23 'even':41 'find':45 'happen':33 'heard':9 'interfer':24 'kind':16 'look':42 'might':40 'nearbi':47 'never':8 'noisemak':18 'period':37,56 'power':12,51 'probabl':21 'produc':35 'record':3 'someth':29 'sound':5,38 'suppli':13 've':7 'waveform':32 'whine':27"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://programming.dev/comment/6289372"
+editedAt: null
+createdAt: DateTimeImmutable @1704858893 {#2247
date: 2024-01-10 04:54:53.0 +01:00
}
}
+root: App\Entity\EntryComment {#2284}
+body: """
Haven’t been able to record it yet, but the sound only happens when the power supply is plugged into the HDD and the outlet (not one or the other), and the HDD is NOT plugged into the computer.\n
\n
Plugging the HDD into the computer stops the sound. I was unplugging it from the PC to keep it offline when I didn’t need it. (After safely ejecting and waiting etc. of course)\n
\n
I guess I’ll just need to unplug the power when I’m not using it, too.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1704931289 {#3213
date: 2024-01-11 01:01:29.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@otp@sh.itjust.works"
"@SheeEttin@programming.dev"
]
+children: Doctrine\ORM\PersistentCollection {#3216 …}
+nested: Doctrine\ORM\PersistentCollection {#3218 …}
+votes: Doctrine\ORM\PersistentCollection {#3220 …}
+reports: Doctrine\ORM\PersistentCollection {#3222 …}
+favourites: Doctrine\ORM\PersistentCollection {#3224 …}
+notifications: Doctrine\ORM\PersistentCollection {#3226 …}
-id: 297777
-bodyTs: "'abl':4 'comput':39,45 'cours':73 'didn':62 'eject':68 'etc':71 'guess':75 'happen':13 'haven':1 'hdd':22,33,42 'keep':57 'll':77 'm':86 'need':64,79 'offlin':59 'one':27 'outlet':25 'pc':55 'plug':19,36,40 'power':16,83 'record':6 'safe':67 'sound':11,48 'stop':46 'suppli':17 'unplug':51,81 'use':88 'wait':70 'yet':8"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://sh.itjust.works/comment/7363941"
+editedAt: null
+createdAt: DateTimeImmutable @1704931289 {#3214
date: 2024-01-11 01:01:29.0 +01:00
}
} |
|
Show voter details
|
75 |
DENIED
|
edit
|
App\Entity\EntryComment {#3215
+user: Proxies\__CG__\App\Entity\User {#3185 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2344 …}
+magazine: App\Entity\Magazine {#305
+icon: null
+name: "datahoarder@lemmy.ml"
+title: "datahoarder"
+description: """
**Who are we?**\n
\n
We are digital librarians. Among us are represented the various reasons to keep data – legal requirements, competitive requirements, uncertainty of permanence of cloud services, distaste for transmitting your data externally (e.g. government or corporate espionage), cultural and familial archivists, internet collapse preppers, and people who do it themselves so they’re sure it’s done right. Everyone has their reasons for curating the data they have decided to keep (either forever or For A Damn Long Time). Along the way we have sought out like-minded individuals to exchange strategies, war stories, and cautionary tales of failures.\n
\n
We are one. We are legion. And we’re trying really hard not to forget.\n
\n
– 5-4-3-2-1-bang from [this thread](https://web.archive.org/web/20221111153119/https://old.reddit.com/r/DataHoarder/comments/41tqt4/hi_guys_can_i_kindly_ask_for_an_eli5_of_this/cz53pi0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 58
+entryCommentCount: 311
+postCount: 1
+postCommentCount: 1
+isAdult: false
+customCss: null
+lastActive: DateTime @1729502222 {#313
date: 2024-10-21 11:17:02.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#293 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#289 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#278 …}
+entries: Doctrine\ORM\PersistentCollection {#236 …}
+posts: Doctrine\ORM\PersistentCollection {#194 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#256 …}
+bans: Doctrine\ORM\PersistentCollection {#173 …}
+reports: Doctrine\ORM\PersistentCollection {#159 …}
+badges: Doctrine\ORM\PersistentCollection {#137 …}
+logs: Doctrine\ORM\PersistentCollection {#127 …}
+awards: Doctrine\ORM\PersistentCollection {#116 …}
+categories: Doctrine\ORM\PersistentCollection {#103 …}
-id: 32
+apId: "datahoarder@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/datahoarder"
+apPublicUrl: "https://lemmy.ml/c/datahoarder"
+apFollowersUrl: "https://lemmy.ml/c/datahoarder/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "datahoarder"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729303437 {#314
date: 2024-10-19 04:03:57.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1695727192 {#308
date: 2023-09-26 13:19:52.0 +02:00
}
}
+image: null
+parent: App\Entity\EntryComment {#2284
+user: App\Entity\User {#2151 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2344 …}
+magazine: App\Entity\Magazine {#305}
+image: null
+parent: null
+root: null
+body: "Can you record the sound? I’ve never heard of a power supply having any kind of noisemaker. It’s probably just electrical interference or coil whine or something, where the waveform happens to produce that periodic sound. (You might even look around and find a nearby device changing its power draw with the same periodicity.)"
+lang: "en"
+isAdult: false
+favouriteCount: 8
+score: 0
+lastActive: DateTime @1720444893 {#2243
date: 2024-07-08 15:21:33.0 +02:00
}
+ip: null
+tags: null
+mentions: [
"@otp@sh.itjust.works"
]
+children: Doctrine\ORM\PersistentCollection {#2285 …}
+nested: Doctrine\ORM\PersistentCollection {#2287 …}
+votes: Doctrine\ORM\PersistentCollection {#2142 …}
+reports: Doctrine\ORM\PersistentCollection {#2039 …}
+favourites: Doctrine\ORM\PersistentCollection {#2155 …}
+notifications: Doctrine\ORM\PersistentCollection {#2158 …}
-id: 295007
-bodyTs: "'around':43 'chang':49 'coil':26 'devic':48 'draw':52 'electr':23 'even':41 'find':45 'happen':33 'heard':9 'interfer':24 'kind':16 'look':42 'might':40 'nearbi':47 'never':8 'noisemak':18 'period':37,56 'power':12,51 'probabl':21 'produc':35 'record':3 'someth':29 'sound':5,38 'suppli':13 've':7 'waveform':32 'whine':27"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://programming.dev/comment/6289372"
+editedAt: null
+createdAt: DateTimeImmutable @1704858893 {#2247
date: 2024-01-10 04:54:53.0 +01:00
}
}
+root: App\Entity\EntryComment {#2284}
+body: """
Haven’t been able to record it yet, but the sound only happens when the power supply is plugged into the HDD and the outlet (not one or the other), and the HDD is NOT plugged into the computer.\n
\n
Plugging the HDD into the computer stops the sound. I was unplugging it from the PC to keep it offline when I didn’t need it. (After safely ejecting and waiting etc. of course)\n
\n
I guess I’ll just need to unplug the power when I’m not using it, too.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1704931289 {#3213
date: 2024-01-11 01:01:29.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@otp@sh.itjust.works"
"@SheeEttin@programming.dev"
]
+children: Doctrine\ORM\PersistentCollection {#3216 …}
+nested: Doctrine\ORM\PersistentCollection {#3218 …}
+votes: Doctrine\ORM\PersistentCollection {#3220 …}
+reports: Doctrine\ORM\PersistentCollection {#3222 …}
+favourites: Doctrine\ORM\PersistentCollection {#3224 …}
+notifications: Doctrine\ORM\PersistentCollection {#3226 …}
-id: 297777
-bodyTs: "'abl':4 'comput':39,45 'cours':73 'didn':62 'eject':68 'etc':71 'guess':75 'happen':13 'haven':1 'hdd':22,33,42 'keep':57 'll':77 'm':86 'need':64,79 'offlin':59 'one':27 'outlet':25 'pc':55 'plug':19,36,40 'power':16,83 'record':6 'safe':67 'sound':11,48 'stop':46 'suppli':17 'unplug':51,81 'use':88 'wait':70 'yet':8"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://sh.itjust.works/comment/7363941"
+editedAt: null
+createdAt: DateTimeImmutable @1704931289 {#3214
date: 2024-01-11 01:01:29.0 +01:00
}
} |
|
Show voter details
|
76 |
DENIED
|
moderate
|
App\Entity\EntryComment {#3215
+user: Proxies\__CG__\App\Entity\User {#3185 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2344 …}
+magazine: App\Entity\Magazine {#305
+icon: null
+name: "datahoarder@lemmy.ml"
+title: "datahoarder"
+description: """
**Who are we?**\n
\n
We are digital librarians. Among us are represented the various reasons to keep data – legal requirements, competitive requirements, uncertainty of permanence of cloud services, distaste for transmitting your data externally (e.g. government or corporate espionage), cultural and familial archivists, internet collapse preppers, and people who do it themselves so they’re sure it’s done right. Everyone has their reasons for curating the data they have decided to keep (either forever or For A Damn Long Time). Along the way we have sought out like-minded individuals to exchange strategies, war stories, and cautionary tales of failures.\n
\n
We are one. We are legion. And we’re trying really hard not to forget.\n
\n
– 5-4-3-2-1-bang from [this thread](https://web.archive.org/web/20221111153119/https://old.reddit.com/r/DataHoarder/comments/41tqt4/hi_guys_can_i_kindly_ask_for_an_eli5_of_this/cz53pi0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 58
+entryCommentCount: 311
+postCount: 1
+postCommentCount: 1
+isAdult: false
+customCss: null
+lastActive: DateTime @1729502222 {#313
date: 2024-10-21 11:17:02.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#293 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#289 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#278 …}
+entries: Doctrine\ORM\PersistentCollection {#236 …}
+posts: Doctrine\ORM\PersistentCollection {#194 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#256 …}
+bans: Doctrine\ORM\PersistentCollection {#173 …}
+reports: Doctrine\ORM\PersistentCollection {#159 …}
+badges: Doctrine\ORM\PersistentCollection {#137 …}
+logs: Doctrine\ORM\PersistentCollection {#127 …}
+awards: Doctrine\ORM\PersistentCollection {#116 …}
+categories: Doctrine\ORM\PersistentCollection {#103 …}
-id: 32
+apId: "datahoarder@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/datahoarder"
+apPublicUrl: "https://lemmy.ml/c/datahoarder"
+apFollowersUrl: "https://lemmy.ml/c/datahoarder/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "datahoarder"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729303437 {#314
date: 2024-10-19 04:03:57.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1695727192 {#308
date: 2023-09-26 13:19:52.0 +02:00
}
}
+image: null
+parent: App\Entity\EntryComment {#2284
+user: App\Entity\User {#2151 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2344 …}
+magazine: App\Entity\Magazine {#305}
+image: null
+parent: null
+root: null
+body: "Can you record the sound? I’ve never heard of a power supply having any kind of noisemaker. It’s probably just electrical interference or coil whine or something, where the waveform happens to produce that periodic sound. (You might even look around and find a nearby device changing its power draw with the same periodicity.)"
+lang: "en"
+isAdult: false
+favouriteCount: 8
+score: 0
+lastActive: DateTime @1720444893 {#2243
date: 2024-07-08 15:21:33.0 +02:00
}
+ip: null
+tags: null
+mentions: [
"@otp@sh.itjust.works"
]
+children: Doctrine\ORM\PersistentCollection {#2285 …}
+nested: Doctrine\ORM\PersistentCollection {#2287 …}
+votes: Doctrine\ORM\PersistentCollection {#2142 …}
+reports: Doctrine\ORM\PersistentCollection {#2039 …}
+favourites: Doctrine\ORM\PersistentCollection {#2155 …}
+notifications: Doctrine\ORM\PersistentCollection {#2158 …}
-id: 295007
-bodyTs: "'around':43 'chang':49 'coil':26 'devic':48 'draw':52 'electr':23 'even':41 'find':45 'happen':33 'heard':9 'interfer':24 'kind':16 'look':42 'might':40 'nearbi':47 'never':8 'noisemak':18 'period':37,56 'power':12,51 'probabl':21 'produc':35 'record':3 'someth':29 'sound':5,38 'suppli':13 've':7 'waveform':32 'whine':27"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://programming.dev/comment/6289372"
+editedAt: null
+createdAt: DateTimeImmutable @1704858893 {#2247
date: 2024-01-10 04:54:53.0 +01:00
}
}
+root: App\Entity\EntryComment {#2284}
+body: """
Haven’t been able to record it yet, but the sound only happens when the power supply is plugged into the HDD and the outlet (not one or the other), and the HDD is NOT plugged into the computer.\n
\n
Plugging the HDD into the computer stops the sound. I was unplugging it from the PC to keep it offline when I didn’t need it. (After safely ejecting and waiting etc. of course)\n
\n
I guess I’ll just need to unplug the power when I’m not using it, too.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1704931289 {#3213
date: 2024-01-11 01:01:29.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@otp@sh.itjust.works"
"@SheeEttin@programming.dev"
]
+children: Doctrine\ORM\PersistentCollection {#3216 …}
+nested: Doctrine\ORM\PersistentCollection {#3218 …}
+votes: Doctrine\ORM\PersistentCollection {#3220 …}
+reports: Doctrine\ORM\PersistentCollection {#3222 …}
+favourites: Doctrine\ORM\PersistentCollection {#3224 …}
+notifications: Doctrine\ORM\PersistentCollection {#3226 …}
-id: 297777
-bodyTs: "'abl':4 'comput':39,45 'cours':73 'didn':62 'eject':68 'etc':71 'guess':75 'happen':13 'haven':1 'hdd':22,33,42 'keep':57 'll':77 'm':86 'need':64,79 'offlin':59 'one':27 'outlet':25 'pc':55 'plug':19,36,40 'power':16,83 'record':6 'safe':67 'sound':11,48 'stop':46 'suppli':17 'unplug':51,81 'use':88 'wait':70 'yet':8"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://sh.itjust.works/comment/7363941"
+editedAt: null
+createdAt: DateTimeImmutable @1704931289 {#3214
date: 2024-01-11 01:01:29.0 +01:00
}
} |
|
Show voter details
|
77 |
DENIED
|
ROLE_USER
|
null |
|
Show voter details
|
78 |
DENIED
|
moderate
|
App\Entity\EntryComment {#1984
+user: App\Entity\User {#2365 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2344 …}
+magazine: App\Entity\Magazine {#305
+icon: null
+name: "datahoarder@lemmy.ml"
+title: "datahoarder"
+description: """
**Who are we?**\n
\n
We are digital librarians. Among us are represented the various reasons to keep data – legal requirements, competitive requirements, uncertainty of permanence of cloud services, distaste for transmitting your data externally (e.g. government or corporate espionage), cultural and familial archivists, internet collapse preppers, and people who do it themselves so they’re sure it’s done right. Everyone has their reasons for curating the data they have decided to keep (either forever or For A Damn Long Time). Along the way we have sought out like-minded individuals to exchange strategies, war stories, and cautionary tales of failures.\n
\n
We are one. We are legion. And we’re trying really hard not to forget.\n
\n
– 5-4-3-2-1-bang from [this thread](https://web.archive.org/web/20221111153119/https://old.reddit.com/r/DataHoarder/comments/41tqt4/hi_guys_can_i_kindly_ask_for_an_eli5_of_this/cz53pi0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 58
+entryCommentCount: 311
+postCount: 1
+postCommentCount: 1
+isAdult: false
+customCss: null
+lastActive: DateTime @1729502222 {#313
date: 2024-10-21 11:17:02.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#293 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#289 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#278 …}
+entries: Doctrine\ORM\PersistentCollection {#236 …}
+posts: Doctrine\ORM\PersistentCollection {#194 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#256 …}
+bans: Doctrine\ORM\PersistentCollection {#173 …}
+reports: Doctrine\ORM\PersistentCollection {#159 …}
+badges: Doctrine\ORM\PersistentCollection {#137 …}
+logs: Doctrine\ORM\PersistentCollection {#127 …}
+awards: Doctrine\ORM\PersistentCollection {#116 …}
+categories: Doctrine\ORM\PersistentCollection {#103 …}
-id: 32
+apId: "datahoarder@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/datahoarder"
+apPublicUrl: "https://lemmy.ml/c/datahoarder"
+apFollowersUrl: "https://lemmy.ml/c/datahoarder/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "datahoarder"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729303437 {#314
date: 2024-10-19 04:03:57.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1695727192 {#308
date: 2023-09-26 13:19:52.0 +02:00
}
}
+image: null
+parent: null
+root: null
+body: "Check the SMART data with crystaldiskinfo"
+lang: "en"
+isAdult: false
+favouriteCount: 1
+score: 0
+lastActive: DateTime @1719752578 {#1991
date: 2024-06-30 15:02:58.0 +02:00
}
+ip: null
+tags: null
+mentions: [
"@otp@sh.itjust.works"
]
+children: Doctrine\ORM\PersistentCollection {#1987 …}
+nested: Doctrine\ORM\PersistentCollection {#1983 …}
+votes: Doctrine\ORM\PersistentCollection {#1979 …}
+reports: Doctrine\ORM\PersistentCollection {#2368 …}
+favourites: Doctrine\ORM\PersistentCollection {#2373 …}
+notifications: Doctrine\ORM\PersistentCollection {#2376 …}
-id: 294984
-bodyTs: "'check':1 'crystaldiskinfo':6 'data':4 'smart':3"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://sh.itjust.works/comment/7319362"
+editedAt: null
+createdAt: DateTimeImmutable @1704857585 {#2016
date: 2024-01-10 04:33:05.0 +01:00
}
} |
|
Show voter details
|
79 |
DENIED
|
edit
|
App\Entity\EntryComment {#1984
+user: App\Entity\User {#2365 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2344 …}
+magazine: App\Entity\Magazine {#305
+icon: null
+name: "datahoarder@lemmy.ml"
+title: "datahoarder"
+description: """
**Who are we?**\n
\n
We are digital librarians. Among us are represented the various reasons to keep data – legal requirements, competitive requirements, uncertainty of permanence of cloud services, distaste for transmitting your data externally (e.g. government or corporate espionage), cultural and familial archivists, internet collapse preppers, and people who do it themselves so they’re sure it’s done right. Everyone has their reasons for curating the data they have decided to keep (either forever or For A Damn Long Time). Along the way we have sought out like-minded individuals to exchange strategies, war stories, and cautionary tales of failures.\n
\n
We are one. We are legion. And we’re trying really hard not to forget.\n
\n
– 5-4-3-2-1-bang from [this thread](https://web.archive.org/web/20221111153119/https://old.reddit.com/r/DataHoarder/comments/41tqt4/hi_guys_can_i_kindly_ask_for_an_eli5_of_this/cz53pi0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 58
+entryCommentCount: 311
+postCount: 1
+postCommentCount: 1
+isAdult: false
+customCss: null
+lastActive: DateTime @1729502222 {#313
date: 2024-10-21 11:17:02.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#293 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#289 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#278 …}
+entries: Doctrine\ORM\PersistentCollection {#236 …}
+posts: Doctrine\ORM\PersistentCollection {#194 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#256 …}
+bans: Doctrine\ORM\PersistentCollection {#173 …}
+reports: Doctrine\ORM\PersistentCollection {#159 …}
+badges: Doctrine\ORM\PersistentCollection {#137 …}
+logs: Doctrine\ORM\PersistentCollection {#127 …}
+awards: Doctrine\ORM\PersistentCollection {#116 …}
+categories: Doctrine\ORM\PersistentCollection {#103 …}
-id: 32
+apId: "datahoarder@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/datahoarder"
+apPublicUrl: "https://lemmy.ml/c/datahoarder"
+apFollowersUrl: "https://lemmy.ml/c/datahoarder/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "datahoarder"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729303437 {#314
date: 2024-10-19 04:03:57.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1695727192 {#308
date: 2023-09-26 13:19:52.0 +02:00
}
}
+image: null
+parent: null
+root: null
+body: "Check the SMART data with crystaldiskinfo"
+lang: "en"
+isAdult: false
+favouriteCount: 1
+score: 0
+lastActive: DateTime @1719752578 {#1991
date: 2024-06-30 15:02:58.0 +02:00
}
+ip: null
+tags: null
+mentions: [
"@otp@sh.itjust.works"
]
+children: Doctrine\ORM\PersistentCollection {#1987 …}
+nested: Doctrine\ORM\PersistentCollection {#1983 …}
+votes: Doctrine\ORM\PersistentCollection {#1979 …}
+reports: Doctrine\ORM\PersistentCollection {#2368 …}
+favourites: Doctrine\ORM\PersistentCollection {#2373 …}
+notifications: Doctrine\ORM\PersistentCollection {#2376 …}
-id: 294984
-bodyTs: "'check':1 'crystaldiskinfo':6 'data':4 'smart':3"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://sh.itjust.works/comment/7319362"
+editedAt: null
+createdAt: DateTimeImmutable @1704857585 {#2016
date: 2024-01-10 04:33:05.0 +01:00
}
} |
|
Show voter details
|
80 |
DENIED
|
moderate
|
App\Entity\EntryComment {#1984
+user: App\Entity\User {#2365 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2344 …}
+magazine: App\Entity\Magazine {#305
+icon: null
+name: "datahoarder@lemmy.ml"
+title: "datahoarder"
+description: """
**Who are we?**\n
\n
We are digital librarians. Among us are represented the various reasons to keep data – legal requirements, competitive requirements, uncertainty of permanence of cloud services, distaste for transmitting your data externally (e.g. government or corporate espionage), cultural and familial archivists, internet collapse preppers, and people who do it themselves so they’re sure it’s done right. Everyone has their reasons for curating the data they have decided to keep (either forever or For A Damn Long Time). Along the way we have sought out like-minded individuals to exchange strategies, war stories, and cautionary tales of failures.\n
\n
We are one. We are legion. And we’re trying really hard not to forget.\n
\n
– 5-4-3-2-1-bang from [this thread](https://web.archive.org/web/20221111153119/https://old.reddit.com/r/DataHoarder/comments/41tqt4/hi_guys_can_i_kindly_ask_for_an_eli5_of_this/cz53pi0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 58
+entryCommentCount: 311
+postCount: 1
+postCommentCount: 1
+isAdult: false
+customCss: null
+lastActive: DateTime @1729502222 {#313
date: 2024-10-21 11:17:02.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#293 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#289 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#278 …}
+entries: Doctrine\ORM\PersistentCollection {#236 …}
+posts: Doctrine\ORM\PersistentCollection {#194 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#256 …}
+bans: Doctrine\ORM\PersistentCollection {#173 …}
+reports: Doctrine\ORM\PersistentCollection {#159 …}
+badges: Doctrine\ORM\PersistentCollection {#137 …}
+logs: Doctrine\ORM\PersistentCollection {#127 …}
+awards: Doctrine\ORM\PersistentCollection {#116 …}
+categories: Doctrine\ORM\PersistentCollection {#103 …}
-id: 32
+apId: "datahoarder@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/datahoarder"
+apPublicUrl: "https://lemmy.ml/c/datahoarder"
+apFollowersUrl: "https://lemmy.ml/c/datahoarder/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "datahoarder"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729303437 {#314
date: 2024-10-19 04:03:57.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1695727192 {#308
date: 2023-09-26 13:19:52.0 +02:00
}
}
+image: null
+parent: null
+root: null
+body: "Check the SMART data with crystaldiskinfo"
+lang: "en"
+isAdult: false
+favouriteCount: 1
+score: 0
+lastActive: DateTime @1719752578 {#1991
date: 2024-06-30 15:02:58.0 +02:00
}
+ip: null
+tags: null
+mentions: [
"@otp@sh.itjust.works"
]
+children: Doctrine\ORM\PersistentCollection {#1987 …}
+nested: Doctrine\ORM\PersistentCollection {#1983 …}
+votes: Doctrine\ORM\PersistentCollection {#1979 …}
+reports: Doctrine\ORM\PersistentCollection {#2368 …}
+favourites: Doctrine\ORM\PersistentCollection {#2373 …}
+notifications: Doctrine\ORM\PersistentCollection {#2376 …}
-id: 294984
-bodyTs: "'check':1 'crystaldiskinfo':6 'data':4 'smart':3"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://sh.itjust.works/comment/7319362"
+editedAt: null
+createdAt: DateTimeImmutable @1704857585 {#2016
date: 2024-01-10 04:33:05.0 +01:00
}
} |
|
Show voter details
|
81 |
DENIED
|
ROLE_USER
|
null |
|
Show voter details
|
82 |
DENIED
|
moderate
|
App\Entity\EntryComment {#3184
+user: Proxies\__CG__\App\Entity\User {#3185 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2344 …}
+magazine: App\Entity\Magazine {#305
+icon: null
+name: "datahoarder@lemmy.ml"
+title: "datahoarder"
+description: """
**Who are we?**\n
\n
We are digital librarians. Among us are represented the various reasons to keep data – legal requirements, competitive requirements, uncertainty of permanence of cloud services, distaste for transmitting your data externally (e.g. government or corporate espionage), cultural and familial archivists, internet collapse preppers, and people who do it themselves so they’re sure it’s done right. Everyone has their reasons for curating the data they have decided to keep (either forever or For A Damn Long Time). Along the way we have sought out like-minded individuals to exchange strategies, war stories, and cautionary tales of failures.\n
\n
We are one. We are legion. And we’re trying really hard not to forget.\n
\n
– 5-4-3-2-1-bang from [this thread](https://web.archive.org/web/20221111153119/https://old.reddit.com/r/DataHoarder/comments/41tqt4/hi_guys_can_i_kindly_ask_for_an_eli5_of_this/cz53pi0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 58
+entryCommentCount: 311
+postCount: 1
+postCommentCount: 1
+isAdult: false
+customCss: null
+lastActive: DateTime @1729502222 {#313
date: 2024-10-21 11:17:02.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#293 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#289 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#278 …}
+entries: Doctrine\ORM\PersistentCollection {#236 …}
+posts: Doctrine\ORM\PersistentCollection {#194 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#256 …}
+bans: Doctrine\ORM\PersistentCollection {#173 …}
+reports: Doctrine\ORM\PersistentCollection {#159 …}
+badges: Doctrine\ORM\PersistentCollection {#137 …}
+logs: Doctrine\ORM\PersistentCollection {#127 …}
+awards: Doctrine\ORM\PersistentCollection {#116 …}
+categories: Doctrine\ORM\PersistentCollection {#103 …}
-id: 32
+apId: "datahoarder@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/datahoarder"
+apPublicUrl: "https://lemmy.ml/c/datahoarder"
+apFollowersUrl: "https://lemmy.ml/c/datahoarder/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "datahoarder"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729303437 {#314
date: 2024-10-19 04:03:57.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1695727192 {#308
date: 2023-09-26 13:19:52.0 +02:00
}
}
+image: null
+parent: App\Entity\EntryComment {#1984
+user: App\Entity\User {#2365 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2344 …}
+magazine: App\Entity\Magazine {#305}
+image: null
+parent: null
+root: null
+body: "Check the SMART data with crystaldiskinfo"
+lang: "en"
+isAdult: false
+favouriteCount: 1
+score: 0
+lastActive: DateTime @1719752578 {#1991
date: 2024-06-30 15:02:58.0 +02:00
}
+ip: null
+tags: null
+mentions: [
"@otp@sh.itjust.works"
]
+children: Doctrine\ORM\PersistentCollection {#1987 …}
+nested: Doctrine\ORM\PersistentCollection {#1983 …}
+votes: Doctrine\ORM\PersistentCollection {#1979 …}
+reports: Doctrine\ORM\PersistentCollection {#2368 …}
+favourites: Doctrine\ORM\PersistentCollection {#2373 …}
+notifications: Doctrine\ORM\PersistentCollection {#2376 …}
-id: 294984
-bodyTs: "'check':1 'crystaldiskinfo':6 'data':4 'smart':3"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://sh.itjust.works/comment/7319362"
+editedAt: null
+createdAt: DateTimeImmutable @1704857585 {#2016
date: 2024-01-10 04:33:05.0 +01:00
}
}
+root: App\Entity\EntryComment {#1984}
+body: "Will do, thanks. Did lots of thorough checks when I got it, so I didn’t expect there to be any issues now."
+lang: "en"
+isAdult: false
+favouriteCount: 2
+score: 0
+lastActive: DateTime @1704860684 {#3182
date: 2024-01-10 05:24:44.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@otp@sh.itjust.works"
"@scottmeme@sh.itjust.works"
]
+children: Doctrine\ORM\PersistentCollection {#3186 …}
+nested: Doctrine\ORM\PersistentCollection {#3188 …}
+votes: Doctrine\ORM\PersistentCollection {#3190 …}
+reports: Doctrine\ORM\PersistentCollection {#3192 …}
+favourites: Doctrine\ORM\PersistentCollection {#3194 …}
+notifications: Doctrine\ORM\PersistentCollection {#3196 …}
-id: 295038
-bodyTs: "'check':8 'didn':15 'expect':17 'got':11 'issu':22 'lot':5 'thank':3 'thorough':7"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://sh.itjust.works/comment/7321934"
+editedAt: null
+createdAt: DateTimeImmutable @1704860684 {#3183
date: 2024-01-10 05:24:44.0 +01:00
}
} |
|
Show voter details
|
83 |
DENIED
|
edit
|
App\Entity\EntryComment {#3184
+user: Proxies\__CG__\App\Entity\User {#3185 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2344 …}
+magazine: App\Entity\Magazine {#305
+icon: null
+name: "datahoarder@lemmy.ml"
+title: "datahoarder"
+description: """
**Who are we?**\n
\n
We are digital librarians. Among us are represented the various reasons to keep data – legal requirements, competitive requirements, uncertainty of permanence of cloud services, distaste for transmitting your data externally (e.g. government or corporate espionage), cultural and familial archivists, internet collapse preppers, and people who do it themselves so they’re sure it’s done right. Everyone has their reasons for curating the data they have decided to keep (either forever or For A Damn Long Time). Along the way we have sought out like-minded individuals to exchange strategies, war stories, and cautionary tales of failures.\n
\n
We are one. We are legion. And we’re trying really hard not to forget.\n
\n
– 5-4-3-2-1-bang from [this thread](https://web.archive.org/web/20221111153119/https://old.reddit.com/r/DataHoarder/comments/41tqt4/hi_guys_can_i_kindly_ask_for_an_eli5_of_this/cz53pi0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 58
+entryCommentCount: 311
+postCount: 1
+postCommentCount: 1
+isAdult: false
+customCss: null
+lastActive: DateTime @1729502222 {#313
date: 2024-10-21 11:17:02.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#293 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#289 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#278 …}
+entries: Doctrine\ORM\PersistentCollection {#236 …}
+posts: Doctrine\ORM\PersistentCollection {#194 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#256 …}
+bans: Doctrine\ORM\PersistentCollection {#173 …}
+reports: Doctrine\ORM\PersistentCollection {#159 …}
+badges: Doctrine\ORM\PersistentCollection {#137 …}
+logs: Doctrine\ORM\PersistentCollection {#127 …}
+awards: Doctrine\ORM\PersistentCollection {#116 …}
+categories: Doctrine\ORM\PersistentCollection {#103 …}
-id: 32
+apId: "datahoarder@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/datahoarder"
+apPublicUrl: "https://lemmy.ml/c/datahoarder"
+apFollowersUrl: "https://lemmy.ml/c/datahoarder/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "datahoarder"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729303437 {#314
date: 2024-10-19 04:03:57.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1695727192 {#308
date: 2023-09-26 13:19:52.0 +02:00
}
}
+image: null
+parent: App\Entity\EntryComment {#1984
+user: App\Entity\User {#2365 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2344 …}
+magazine: App\Entity\Magazine {#305}
+image: null
+parent: null
+root: null
+body: "Check the SMART data with crystaldiskinfo"
+lang: "en"
+isAdult: false
+favouriteCount: 1
+score: 0
+lastActive: DateTime @1719752578 {#1991
date: 2024-06-30 15:02:58.0 +02:00
}
+ip: null
+tags: null
+mentions: [
"@otp@sh.itjust.works"
]
+children: Doctrine\ORM\PersistentCollection {#1987 …}
+nested: Doctrine\ORM\PersistentCollection {#1983 …}
+votes: Doctrine\ORM\PersistentCollection {#1979 …}
+reports: Doctrine\ORM\PersistentCollection {#2368 …}
+favourites: Doctrine\ORM\PersistentCollection {#2373 …}
+notifications: Doctrine\ORM\PersistentCollection {#2376 …}
-id: 294984
-bodyTs: "'check':1 'crystaldiskinfo':6 'data':4 'smart':3"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://sh.itjust.works/comment/7319362"
+editedAt: null
+createdAt: DateTimeImmutable @1704857585 {#2016
date: 2024-01-10 04:33:05.0 +01:00
}
}
+root: App\Entity\EntryComment {#1984}
+body: "Will do, thanks. Did lots of thorough checks when I got it, so I didn’t expect there to be any issues now."
+lang: "en"
+isAdult: false
+favouriteCount: 2
+score: 0
+lastActive: DateTime @1704860684 {#3182
date: 2024-01-10 05:24:44.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@otp@sh.itjust.works"
"@scottmeme@sh.itjust.works"
]
+children: Doctrine\ORM\PersistentCollection {#3186 …}
+nested: Doctrine\ORM\PersistentCollection {#3188 …}
+votes: Doctrine\ORM\PersistentCollection {#3190 …}
+reports: Doctrine\ORM\PersistentCollection {#3192 …}
+favourites: Doctrine\ORM\PersistentCollection {#3194 …}
+notifications: Doctrine\ORM\PersistentCollection {#3196 …}
-id: 295038
-bodyTs: "'check':8 'didn':15 'expect':17 'got':11 'issu':22 'lot':5 'thank':3 'thorough':7"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://sh.itjust.works/comment/7321934"
+editedAt: null
+createdAt: DateTimeImmutable @1704860684 {#3183
date: 2024-01-10 05:24:44.0 +01:00
}
} |
|
Show voter details
|
84 |
DENIED
|
moderate
|
App\Entity\EntryComment {#3184
+user: Proxies\__CG__\App\Entity\User {#3185 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2344 …}
+magazine: App\Entity\Magazine {#305
+icon: null
+name: "datahoarder@lemmy.ml"
+title: "datahoarder"
+description: """
**Who are we?**\n
\n
We are digital librarians. Among us are represented the various reasons to keep data – legal requirements, competitive requirements, uncertainty of permanence of cloud services, distaste for transmitting your data externally (e.g. government or corporate espionage), cultural and familial archivists, internet collapse preppers, and people who do it themselves so they’re sure it’s done right. Everyone has their reasons for curating the data they have decided to keep (either forever or For A Damn Long Time). Along the way we have sought out like-minded individuals to exchange strategies, war stories, and cautionary tales of failures.\n
\n
We are one. We are legion. And we’re trying really hard not to forget.\n
\n
– 5-4-3-2-1-bang from [this thread](https://web.archive.org/web/20221111153119/https://old.reddit.com/r/DataHoarder/comments/41tqt4/hi_guys_can_i_kindly_ask_for_an_eli5_of_this/cz53pi0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 58
+entryCommentCount: 311
+postCount: 1
+postCommentCount: 1
+isAdult: false
+customCss: null
+lastActive: DateTime @1729502222 {#313
date: 2024-10-21 11:17:02.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#293 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#289 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#278 …}
+entries: Doctrine\ORM\PersistentCollection {#236 …}
+posts: Doctrine\ORM\PersistentCollection {#194 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#256 …}
+bans: Doctrine\ORM\PersistentCollection {#173 …}
+reports: Doctrine\ORM\PersistentCollection {#159 …}
+badges: Doctrine\ORM\PersistentCollection {#137 …}
+logs: Doctrine\ORM\PersistentCollection {#127 …}
+awards: Doctrine\ORM\PersistentCollection {#116 …}
+categories: Doctrine\ORM\PersistentCollection {#103 …}
-id: 32
+apId: "datahoarder@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/datahoarder"
+apPublicUrl: "https://lemmy.ml/c/datahoarder"
+apFollowersUrl: "https://lemmy.ml/c/datahoarder/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "datahoarder"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729303437 {#314
date: 2024-10-19 04:03:57.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1695727192 {#308
date: 2023-09-26 13:19:52.0 +02:00
}
}
+image: null
+parent: App\Entity\EntryComment {#1984
+user: App\Entity\User {#2365 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2344 …}
+magazine: App\Entity\Magazine {#305}
+image: null
+parent: null
+root: null
+body: "Check the SMART data with crystaldiskinfo"
+lang: "en"
+isAdult: false
+favouriteCount: 1
+score: 0
+lastActive: DateTime @1719752578 {#1991
date: 2024-06-30 15:02:58.0 +02:00
}
+ip: null
+tags: null
+mentions: [
"@otp@sh.itjust.works"
]
+children: Doctrine\ORM\PersistentCollection {#1987 …}
+nested: Doctrine\ORM\PersistentCollection {#1983 …}
+votes: Doctrine\ORM\PersistentCollection {#1979 …}
+reports: Doctrine\ORM\PersistentCollection {#2368 …}
+favourites: Doctrine\ORM\PersistentCollection {#2373 …}
+notifications: Doctrine\ORM\PersistentCollection {#2376 …}
-id: 294984
-bodyTs: "'check':1 'crystaldiskinfo':6 'data':4 'smart':3"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://sh.itjust.works/comment/7319362"
+editedAt: null
+createdAt: DateTimeImmutable @1704857585 {#2016
date: 2024-01-10 04:33:05.0 +01:00
}
}
+root: App\Entity\EntryComment {#1984}
+body: "Will do, thanks. Did lots of thorough checks when I got it, so I didn’t expect there to be any issues now."
+lang: "en"
+isAdult: false
+favouriteCount: 2
+score: 0
+lastActive: DateTime @1704860684 {#3182
date: 2024-01-10 05:24:44.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@otp@sh.itjust.works"
"@scottmeme@sh.itjust.works"
]
+children: Doctrine\ORM\PersistentCollection {#3186 …}
+nested: Doctrine\ORM\PersistentCollection {#3188 …}
+votes: Doctrine\ORM\PersistentCollection {#3190 …}
+reports: Doctrine\ORM\PersistentCollection {#3192 …}
+favourites: Doctrine\ORM\PersistentCollection {#3194 …}
+notifications: Doctrine\ORM\PersistentCollection {#3196 …}
-id: 295038
-bodyTs: "'check':8 'didn':15 'expect':17 'got':11 'issu':22 'lot':5 'thank':3 'thorough':7"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://sh.itjust.works/comment/7321934"
+editedAt: null
+createdAt: DateTimeImmutable @1704860684 {#3183
date: 2024-01-10 05:24:44.0 +01:00
}
} |
|
Show voter details
|
85 |
DENIED
|
ROLE_USER
|
null |
|
Show voter details
|
86 |
DENIED
|
moderate
|
App\Entity\EntryComment {#2534
+user: App\Entity\User {#2548 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2535 …}
+magazine: App\Entity\Magazine {#305
+icon: null
+name: "datahoarder@lemmy.ml"
+title: "datahoarder"
+description: """
**Who are we?**\n
\n
We are digital librarians. Among us are represented the various reasons to keep data – legal requirements, competitive requirements, uncertainty of permanence of cloud services, distaste for transmitting your data externally (e.g. government or corporate espionage), cultural and familial archivists, internet collapse preppers, and people who do it themselves so they’re sure it’s done right. Everyone has their reasons for curating the data they have decided to keep (either forever or For A Damn Long Time). Along the way we have sought out like-minded individuals to exchange strategies, war stories, and cautionary tales of failures.\n
\n
We are one. We are legion. And we’re trying really hard not to forget.\n
\n
– 5-4-3-2-1-bang from [this thread](https://web.archive.org/web/20221111153119/https://old.reddit.com/r/DataHoarder/comments/41tqt4/hi_guys_can_i_kindly_ask_for_an_eli5_of_this/cz53pi0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 58
+entryCommentCount: 311
+postCount: 1
+postCommentCount: 1
+isAdult: false
+customCss: null
+lastActive: DateTime @1729502222 {#313
date: 2024-10-21 11:17:02.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#293 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#289 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#278 …}
+entries: Doctrine\ORM\PersistentCollection {#236 …}
+posts: Doctrine\ORM\PersistentCollection {#194 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#256 …}
+bans: Doctrine\ORM\PersistentCollection {#173 …}
+reports: Doctrine\ORM\PersistentCollection {#159 …}
+badges: Doctrine\ORM\PersistentCollection {#137 …}
+logs: Doctrine\ORM\PersistentCollection {#127 …}
+awards: Doctrine\ORM\PersistentCollection {#116 …}
+categories: Doctrine\ORM\PersistentCollection {#103 …}
-id: 32
+apId: "datahoarder@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/datahoarder"
+apPublicUrl: "https://lemmy.ml/c/datahoarder"
+apFollowersUrl: "https://lemmy.ml/c/datahoarder/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "datahoarder"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729303437 {#314
date: 2024-10-19 04:03:57.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1695727192 {#308
date: 2023-09-26 13:19:52.0 +02:00
}
}
+image: null
+parent: null
+root: null
+body: """
Im most excited about the potential for crystal based storage. Right now there is work being done to etch silica glass internally, allowing for incredibly long term preservation and durability. It can even be rewritten, though the tech is definetly best for achival purposes and is being pursued primarily by movie companies wanting high quality storage.\n
\n
Heres a video discussing it more in deapth: [m.youtube.com/watch?v=6CzHsibqpIs](https://m.youtube.com/watch?v=6CzHsibqpIs)\n
\n
DNA also sounds interesting, though it doesnt seem like a good way of preserving data long term. DNA is very fragile, and seems like an odd route to take for long term archiving.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 6
+score: 0
+lastActive: DateTime @1711477727 {#2529
date: 2024-03-26 19:28:47.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@BermudaHighball@lemmy.dbzer0.com"
]
+children: Doctrine\ORM\PersistentCollection {#2536 …}
+nested: Doctrine\ORM\PersistentCollection {#2538 …}
+votes: Doctrine\ORM\PersistentCollection {#2540 …}
+reports: Doctrine\ORM\PersistentCollection {#2542 …}
+favourites: Doctrine\ORM\PersistentCollection {#2544 …}
+notifications: Doctrine\ORM\PersistentCollection {#2546 …}
-id: 275788
-bodyTs: "'/watch?v=6czhsibqpis](https://m.youtube.com/watch?v=6czhsibqpis)':67 'achiv':43 'allow':23 'also':69 'archiv':100 'base':9 'best':41 'compani':52 'crystal':8 'data':82 'deapth':64 'definet':40 'discuss':60 'dna':68,85 'doesnt':74 'done':17 'durabl':30 'etch':19 'even':33 'excit':3 'fragil':88 'glass':21 'good':78 'here':57 'high':54 'im':1 'incred':25 'interest':71 'intern':22 'like':76,91 'long':26,83,98 'm.youtube.com':66 'm.youtube.com/watch?v=6czhsibqpis](https://m.youtube.com/watch?v=6czhsibqpis)':65 'movi':51 'odd':93 'potenti':6 'preserv':28,81 'primarili':49 'purpos':44 'pursu':48 'qualiti':55 'rewritten':35 'right':11 'rout':94 'seem':75,90 'silica':20 'sound':70 'storag':10,56 'take':96 'tech':38 'term':27,84,99 'though':36,72 'video':59 'want':53 'way':79 'work':15"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://slrpnk.net/comment/5042462"
+editedAt: null
+createdAt: DateTimeImmutable @1704263232 {#2530
date: 2024-01-03 07:27:12.0 +01:00
}
} |
|
Show voter details
|
87 |
DENIED
|
edit
|
App\Entity\EntryComment {#2534
+user: App\Entity\User {#2548 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2535 …}
+magazine: App\Entity\Magazine {#305
+icon: null
+name: "datahoarder@lemmy.ml"
+title: "datahoarder"
+description: """
**Who are we?**\n
\n
We are digital librarians. Among us are represented the various reasons to keep data – legal requirements, competitive requirements, uncertainty of permanence of cloud services, distaste for transmitting your data externally (e.g. government or corporate espionage), cultural and familial archivists, internet collapse preppers, and people who do it themselves so they’re sure it’s done right. Everyone has their reasons for curating the data they have decided to keep (either forever or For A Damn Long Time). Along the way we have sought out like-minded individuals to exchange strategies, war stories, and cautionary tales of failures.\n
\n
We are one. We are legion. And we’re trying really hard not to forget.\n
\n
– 5-4-3-2-1-bang from [this thread](https://web.archive.org/web/20221111153119/https://old.reddit.com/r/DataHoarder/comments/41tqt4/hi_guys_can_i_kindly_ask_for_an_eli5_of_this/cz53pi0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 58
+entryCommentCount: 311
+postCount: 1
+postCommentCount: 1
+isAdult: false
+customCss: null
+lastActive: DateTime @1729502222 {#313
date: 2024-10-21 11:17:02.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#293 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#289 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#278 …}
+entries: Doctrine\ORM\PersistentCollection {#236 …}
+posts: Doctrine\ORM\PersistentCollection {#194 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#256 …}
+bans: Doctrine\ORM\PersistentCollection {#173 …}
+reports: Doctrine\ORM\PersistentCollection {#159 …}
+badges: Doctrine\ORM\PersistentCollection {#137 …}
+logs: Doctrine\ORM\PersistentCollection {#127 …}
+awards: Doctrine\ORM\PersistentCollection {#116 …}
+categories: Doctrine\ORM\PersistentCollection {#103 …}
-id: 32
+apId: "datahoarder@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/datahoarder"
+apPublicUrl: "https://lemmy.ml/c/datahoarder"
+apFollowersUrl: "https://lemmy.ml/c/datahoarder/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "datahoarder"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729303437 {#314
date: 2024-10-19 04:03:57.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1695727192 {#308
date: 2023-09-26 13:19:52.0 +02:00
}
}
+image: null
+parent: null
+root: null
+body: """
Im most excited about the potential for crystal based storage. Right now there is work being done to etch silica glass internally, allowing for incredibly long term preservation and durability. It can even be rewritten, though the tech is definetly best for achival purposes and is being pursued primarily by movie companies wanting high quality storage.\n
\n
Heres a video discussing it more in deapth: [m.youtube.com/watch?v=6CzHsibqpIs](https://m.youtube.com/watch?v=6CzHsibqpIs)\n
\n
DNA also sounds interesting, though it doesnt seem like a good way of preserving data long term. DNA is very fragile, and seems like an odd route to take for long term archiving.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 6
+score: 0
+lastActive: DateTime @1711477727 {#2529
date: 2024-03-26 19:28:47.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@BermudaHighball@lemmy.dbzer0.com"
]
+children: Doctrine\ORM\PersistentCollection {#2536 …}
+nested: Doctrine\ORM\PersistentCollection {#2538 …}
+votes: Doctrine\ORM\PersistentCollection {#2540 …}
+reports: Doctrine\ORM\PersistentCollection {#2542 …}
+favourites: Doctrine\ORM\PersistentCollection {#2544 …}
+notifications: Doctrine\ORM\PersistentCollection {#2546 …}
-id: 275788
-bodyTs: "'/watch?v=6czhsibqpis](https://m.youtube.com/watch?v=6czhsibqpis)':67 'achiv':43 'allow':23 'also':69 'archiv':100 'base':9 'best':41 'compani':52 'crystal':8 'data':82 'deapth':64 'definet':40 'discuss':60 'dna':68,85 'doesnt':74 'done':17 'durabl':30 'etch':19 'even':33 'excit':3 'fragil':88 'glass':21 'good':78 'here':57 'high':54 'im':1 'incred':25 'interest':71 'intern':22 'like':76,91 'long':26,83,98 'm.youtube.com':66 'm.youtube.com/watch?v=6czhsibqpis](https://m.youtube.com/watch?v=6czhsibqpis)':65 'movi':51 'odd':93 'potenti':6 'preserv':28,81 'primarili':49 'purpos':44 'pursu':48 'qualiti':55 'rewritten':35 'right':11 'rout':94 'seem':75,90 'silica':20 'sound':70 'storag':10,56 'take':96 'tech':38 'term':27,84,99 'though':36,72 'video':59 'want':53 'way':79 'work':15"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://slrpnk.net/comment/5042462"
+editedAt: null
+createdAt: DateTimeImmutable @1704263232 {#2530
date: 2024-01-03 07:27:12.0 +01:00
}
} |
|
Show voter details
|
88 |
DENIED
|
moderate
|
App\Entity\EntryComment {#2534
+user: App\Entity\User {#2548 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2535 …}
+magazine: App\Entity\Magazine {#305
+icon: null
+name: "datahoarder@lemmy.ml"
+title: "datahoarder"
+description: """
**Who are we?**\n
\n
We are digital librarians. Among us are represented the various reasons to keep data – legal requirements, competitive requirements, uncertainty of permanence of cloud services, distaste for transmitting your data externally (e.g. government or corporate espionage), cultural and familial archivists, internet collapse preppers, and people who do it themselves so they’re sure it’s done right. Everyone has their reasons for curating the data they have decided to keep (either forever or For A Damn Long Time). Along the way we have sought out like-minded individuals to exchange strategies, war stories, and cautionary tales of failures.\n
\n
We are one. We are legion. And we’re trying really hard not to forget.\n
\n
– 5-4-3-2-1-bang from [this thread](https://web.archive.org/web/20221111153119/https://old.reddit.com/r/DataHoarder/comments/41tqt4/hi_guys_can_i_kindly_ask_for_an_eli5_of_this/cz53pi0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 58
+entryCommentCount: 311
+postCount: 1
+postCommentCount: 1
+isAdult: false
+customCss: null
+lastActive: DateTime @1729502222 {#313
date: 2024-10-21 11:17:02.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#293 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#289 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#278 …}
+entries: Doctrine\ORM\PersistentCollection {#236 …}
+posts: Doctrine\ORM\PersistentCollection {#194 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#256 …}
+bans: Doctrine\ORM\PersistentCollection {#173 …}
+reports: Doctrine\ORM\PersistentCollection {#159 …}
+badges: Doctrine\ORM\PersistentCollection {#137 …}
+logs: Doctrine\ORM\PersistentCollection {#127 …}
+awards: Doctrine\ORM\PersistentCollection {#116 …}
+categories: Doctrine\ORM\PersistentCollection {#103 …}
-id: 32
+apId: "datahoarder@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/datahoarder"
+apPublicUrl: "https://lemmy.ml/c/datahoarder"
+apFollowersUrl: "https://lemmy.ml/c/datahoarder/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "datahoarder"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729303437 {#314
date: 2024-10-19 04:03:57.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1695727192 {#308
date: 2023-09-26 13:19:52.0 +02:00
}
}
+image: null
+parent: null
+root: null
+body: """
Im most excited about the potential for crystal based storage. Right now there is work being done to etch silica glass internally, allowing for incredibly long term preservation and durability. It can even be rewritten, though the tech is definetly best for achival purposes and is being pursued primarily by movie companies wanting high quality storage.\n
\n
Heres a video discussing it more in deapth: [m.youtube.com/watch?v=6CzHsibqpIs](https://m.youtube.com/watch?v=6CzHsibqpIs)\n
\n
DNA also sounds interesting, though it doesnt seem like a good way of preserving data long term. DNA is very fragile, and seems like an odd route to take for long term archiving.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 6
+score: 0
+lastActive: DateTime @1711477727 {#2529
date: 2024-03-26 19:28:47.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@BermudaHighball@lemmy.dbzer0.com"
]
+children: Doctrine\ORM\PersistentCollection {#2536 …}
+nested: Doctrine\ORM\PersistentCollection {#2538 …}
+votes: Doctrine\ORM\PersistentCollection {#2540 …}
+reports: Doctrine\ORM\PersistentCollection {#2542 …}
+favourites: Doctrine\ORM\PersistentCollection {#2544 …}
+notifications: Doctrine\ORM\PersistentCollection {#2546 …}
-id: 275788
-bodyTs: "'/watch?v=6czhsibqpis](https://m.youtube.com/watch?v=6czhsibqpis)':67 'achiv':43 'allow':23 'also':69 'archiv':100 'base':9 'best':41 'compani':52 'crystal':8 'data':82 'deapth':64 'definet':40 'discuss':60 'dna':68,85 'doesnt':74 'done':17 'durabl':30 'etch':19 'even':33 'excit':3 'fragil':88 'glass':21 'good':78 'here':57 'high':54 'im':1 'incred':25 'interest':71 'intern':22 'like':76,91 'long':26,83,98 'm.youtube.com':66 'm.youtube.com/watch?v=6czhsibqpis](https://m.youtube.com/watch?v=6czhsibqpis)':65 'movi':51 'odd':93 'potenti':6 'preserv':28,81 'primarili':49 'purpos':44 'pursu':48 'qualiti':55 'rewritten':35 'right':11 'rout':94 'seem':75,90 'silica':20 'sound':70 'storag':10,56 'take':96 'tech':38 'term':27,84,99 'though':36,72 'video':59 'want':53 'way':79 'work':15"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://slrpnk.net/comment/5042462"
+editedAt: null
+createdAt: DateTimeImmutable @1704263232 {#2530
date: 2024-01-03 07:27:12.0 +01:00
}
} |
|
Show voter details
|
89 |
DENIED
|
ROLE_USER
|
null |
|
Show voter details
|
90 |
DENIED
|
moderate
|
App\Entity\EntryComment {#3168
+user: Proxies\__CG__\App\Entity\User {#3169 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2535 …}
+magazine: App\Entity\Magazine {#305
+icon: null
+name: "datahoarder@lemmy.ml"
+title: "datahoarder"
+description: """
**Who are we?**\n
\n
We are digital librarians. Among us are represented the various reasons to keep data – legal requirements, competitive requirements, uncertainty of permanence of cloud services, distaste for transmitting your data externally (e.g. government or corporate espionage), cultural and familial archivists, internet collapse preppers, and people who do it themselves so they’re sure it’s done right. Everyone has their reasons for curating the data they have decided to keep (either forever or For A Damn Long Time). Along the way we have sought out like-minded individuals to exchange strategies, war stories, and cautionary tales of failures.\n
\n
We are one. We are legion. And we’re trying really hard not to forget.\n
\n
– 5-4-3-2-1-bang from [this thread](https://web.archive.org/web/20221111153119/https://old.reddit.com/r/DataHoarder/comments/41tqt4/hi_guys_can_i_kindly_ask_for_an_eli5_of_this/cz53pi0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 58
+entryCommentCount: 311
+postCount: 1
+postCommentCount: 1
+isAdult: false
+customCss: null
+lastActive: DateTime @1729502222 {#313
date: 2024-10-21 11:17:02.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#293 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#289 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#278 …}
+entries: Doctrine\ORM\PersistentCollection {#236 …}
+posts: Doctrine\ORM\PersistentCollection {#194 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#256 …}
+bans: Doctrine\ORM\PersistentCollection {#173 …}
+reports: Doctrine\ORM\PersistentCollection {#159 …}
+badges: Doctrine\ORM\PersistentCollection {#137 …}
+logs: Doctrine\ORM\PersistentCollection {#127 …}
+awards: Doctrine\ORM\PersistentCollection {#116 …}
+categories: Doctrine\ORM\PersistentCollection {#103 …}
-id: 32
+apId: "datahoarder@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/datahoarder"
+apPublicUrl: "https://lemmy.ml/c/datahoarder"
+apFollowersUrl: "https://lemmy.ml/c/datahoarder/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "datahoarder"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729303437 {#314
date: 2024-10-19 04:03:57.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1695727192 {#308
date: 2023-09-26 13:19:52.0 +02:00
}
}
+image: null
+parent: App\Entity\EntryComment {#2534
+user: App\Entity\User {#2548 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2535 …}
+magazine: App\Entity\Magazine {#305}
+image: null
+parent: null
+root: null
+body: """
Im most excited about the potential for crystal based storage. Right now there is work being done to etch silica glass internally, allowing for incredibly long term preservation and durability. It can even be rewritten, though the tech is definetly best for achival purposes and is being pursued primarily by movie companies wanting high quality storage.\n
\n
Heres a video discussing it more in deapth: [m.youtube.com/watch?v=6CzHsibqpIs](https://m.youtube.com/watch?v=6CzHsibqpIs)\n
\n
DNA also sounds interesting, though it doesnt seem like a good way of preserving data long term. DNA is very fragile, and seems like an odd route to take for long term archiving.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 6
+score: 0
+lastActive: DateTime @1711477727 {#2529
date: 2024-03-26 19:28:47.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@BermudaHighball@lemmy.dbzer0.com"
]
+children: Doctrine\ORM\PersistentCollection {#2536 …}
+nested: Doctrine\ORM\PersistentCollection {#2538 …}
+votes: Doctrine\ORM\PersistentCollection {#2540 …}
+reports: Doctrine\ORM\PersistentCollection {#2542 …}
+favourites: Doctrine\ORM\PersistentCollection {#2544 …}
+notifications: Doctrine\ORM\PersistentCollection {#2546 …}
-id: 275788
-bodyTs: "'/watch?v=6czhsibqpis](https://m.youtube.com/watch?v=6czhsibqpis)':67 'achiv':43 'allow':23 'also':69 'archiv':100 'base':9 'best':41 'compani':52 'crystal':8 'data':82 'deapth':64 'definet':40 'discuss':60 'dna':68,85 'doesnt':74 'done':17 'durabl':30 'etch':19 'even':33 'excit':3 'fragil':88 'glass':21 'good':78 'here':57 'high':54 'im':1 'incred':25 'interest':71 'intern':22 'like':76,91 'long':26,83,98 'm.youtube.com':66 'm.youtube.com/watch?v=6czhsibqpis](https://m.youtube.com/watch?v=6czhsibqpis)':65 'movi':51 'odd':93 'potenti':6 'preserv':28,81 'primarili':49 'purpos':44 'pursu':48 'qualiti':55 'rewritten':35 'right':11 'rout':94 'seem':75,90 'silica':20 'sound':70 'storag':10,56 'take':96 'tech':38 'term':27,84,99 'though':36,72 'video':59 'want':53 'way':79 'work':15"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://slrpnk.net/comment/5042462"
+editedAt: null
+createdAt: DateTimeImmutable @1704263232 {#2530
date: 2024-01-03 07:27:12.0 +01:00
}
}
+root: App\Entity\EntryComment {#2534}
+body: """
> DNA also sounds interesting, though it doesnt seem like a good way of preserving data long term. DNA is very fragile, and seems like an odd route to take for long term archiving.\n
\n
Yeah the 5D quartz disk is very cool.\n
\n
Anyways if you think about storage density DNA isn’t that “odd”. With DNA you can store dozens of copies of the data and parity checks in a very small space so even if some gets corrupted you can still get it. I get that organic stuff has its limits but the density is just mind blowing.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 1
+score: 0
+lastActive: DateTime @1704286080 {#3166
date: 2024-01-03 13:48:00.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@BermudaHighball@lemmy.dbzer0.com"
"@hazeebabee@slrpnk.net"
]
+children: Doctrine\ORM\PersistentCollection {#3170 …}
+nested: Doctrine\ORM\PersistentCollection {#3172 …}
+votes: Doctrine\ORM\PersistentCollection {#3174 …}
+reports: Doctrine\ORM\PersistentCollection {#3176 …}
+favourites: Doctrine\ORM\PersistentCollection {#3178 …}
+notifications: Doctrine\ORM\PersistentCollection {#3180 …}
-id: 276265
-bodyTs: "'5d':36 'also':2 'anyway':42 'archiv':33 'blow':98 'check':67 'cool':41 'copi':61 'corrupt':78 'data':15,64 'densiti':48,94 'disk':38 'dna':1,18,49,55 'doesnt':7 'dozen':59 'even':74 'fragil':21 'get':77,82,85 'good':11 'interest':4 'isn':50 'like':9,24 'limit':91 'long':16,31 'mind':97 'odd':26,53 'organ':87 'pariti':66 'preserv':14 'quartz':37 'rout':27 'seem':8,23 'small':71 'sound':3 'space':72 'still':81 'storag':47 'store':58 'stuff':88 'take':29 'term':17,32 'think':45 'though':5 'way':12 'yeah':34"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.world/comment/6379777"
+editedAt: null
+createdAt: DateTimeImmutable @1704286080 {#3167
date: 2024-01-03 13:48:00.0 +01:00
}
} |
|
Show voter details
|
91 |
DENIED
|
edit
|
App\Entity\EntryComment {#3168
+user: Proxies\__CG__\App\Entity\User {#3169 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2535 …}
+magazine: App\Entity\Magazine {#305
+icon: null
+name: "datahoarder@lemmy.ml"
+title: "datahoarder"
+description: """
**Who are we?**\n
\n
We are digital librarians. Among us are represented the various reasons to keep data – legal requirements, competitive requirements, uncertainty of permanence of cloud services, distaste for transmitting your data externally (e.g. government or corporate espionage), cultural and familial archivists, internet collapse preppers, and people who do it themselves so they’re sure it’s done right. Everyone has their reasons for curating the data they have decided to keep (either forever or For A Damn Long Time). Along the way we have sought out like-minded individuals to exchange strategies, war stories, and cautionary tales of failures.\n
\n
We are one. We are legion. And we’re trying really hard not to forget.\n
\n
– 5-4-3-2-1-bang from [this thread](https://web.archive.org/web/20221111153119/https://old.reddit.com/r/DataHoarder/comments/41tqt4/hi_guys_can_i_kindly_ask_for_an_eli5_of_this/cz53pi0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 58
+entryCommentCount: 311
+postCount: 1
+postCommentCount: 1
+isAdult: false
+customCss: null
+lastActive: DateTime @1729502222 {#313
date: 2024-10-21 11:17:02.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#293 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#289 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#278 …}
+entries: Doctrine\ORM\PersistentCollection {#236 …}
+posts: Doctrine\ORM\PersistentCollection {#194 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#256 …}
+bans: Doctrine\ORM\PersistentCollection {#173 …}
+reports: Doctrine\ORM\PersistentCollection {#159 …}
+badges: Doctrine\ORM\PersistentCollection {#137 …}
+logs: Doctrine\ORM\PersistentCollection {#127 …}
+awards: Doctrine\ORM\PersistentCollection {#116 …}
+categories: Doctrine\ORM\PersistentCollection {#103 …}
-id: 32
+apId: "datahoarder@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/datahoarder"
+apPublicUrl: "https://lemmy.ml/c/datahoarder"
+apFollowersUrl: "https://lemmy.ml/c/datahoarder/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "datahoarder"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729303437 {#314
date: 2024-10-19 04:03:57.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1695727192 {#308
date: 2023-09-26 13:19:52.0 +02:00
}
}
+image: null
+parent: App\Entity\EntryComment {#2534
+user: App\Entity\User {#2548 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2535 …}
+magazine: App\Entity\Magazine {#305}
+image: null
+parent: null
+root: null
+body: """
Im most excited about the potential for crystal based storage. Right now there is work being done to etch silica glass internally, allowing for incredibly long term preservation and durability. It can even be rewritten, though the tech is definetly best for achival purposes and is being pursued primarily by movie companies wanting high quality storage.\n
\n
Heres a video discussing it more in deapth: [m.youtube.com/watch?v=6CzHsibqpIs](https://m.youtube.com/watch?v=6CzHsibqpIs)\n
\n
DNA also sounds interesting, though it doesnt seem like a good way of preserving data long term. DNA is very fragile, and seems like an odd route to take for long term archiving.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 6
+score: 0
+lastActive: DateTime @1711477727 {#2529
date: 2024-03-26 19:28:47.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@BermudaHighball@lemmy.dbzer0.com"
]
+children: Doctrine\ORM\PersistentCollection {#2536 …}
+nested: Doctrine\ORM\PersistentCollection {#2538 …}
+votes: Doctrine\ORM\PersistentCollection {#2540 …}
+reports: Doctrine\ORM\PersistentCollection {#2542 …}
+favourites: Doctrine\ORM\PersistentCollection {#2544 …}
+notifications: Doctrine\ORM\PersistentCollection {#2546 …}
-id: 275788
-bodyTs: "'/watch?v=6czhsibqpis](https://m.youtube.com/watch?v=6czhsibqpis)':67 'achiv':43 'allow':23 'also':69 'archiv':100 'base':9 'best':41 'compani':52 'crystal':8 'data':82 'deapth':64 'definet':40 'discuss':60 'dna':68,85 'doesnt':74 'done':17 'durabl':30 'etch':19 'even':33 'excit':3 'fragil':88 'glass':21 'good':78 'here':57 'high':54 'im':1 'incred':25 'interest':71 'intern':22 'like':76,91 'long':26,83,98 'm.youtube.com':66 'm.youtube.com/watch?v=6czhsibqpis](https://m.youtube.com/watch?v=6czhsibqpis)':65 'movi':51 'odd':93 'potenti':6 'preserv':28,81 'primarili':49 'purpos':44 'pursu':48 'qualiti':55 'rewritten':35 'right':11 'rout':94 'seem':75,90 'silica':20 'sound':70 'storag':10,56 'take':96 'tech':38 'term':27,84,99 'though':36,72 'video':59 'want':53 'way':79 'work':15"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://slrpnk.net/comment/5042462"
+editedAt: null
+createdAt: DateTimeImmutable @1704263232 {#2530
date: 2024-01-03 07:27:12.0 +01:00
}
}
+root: App\Entity\EntryComment {#2534}
+body: """
> DNA also sounds interesting, though it doesnt seem like a good way of preserving data long term. DNA is very fragile, and seems like an odd route to take for long term archiving.\n
\n
Yeah the 5D quartz disk is very cool.\n
\n
Anyways if you think about storage density DNA isn’t that “odd”. With DNA you can store dozens of copies of the data and parity checks in a very small space so even if some gets corrupted you can still get it. I get that organic stuff has its limits but the density is just mind blowing.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 1
+score: 0
+lastActive: DateTime @1704286080 {#3166
date: 2024-01-03 13:48:00.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@BermudaHighball@lemmy.dbzer0.com"
"@hazeebabee@slrpnk.net"
]
+children: Doctrine\ORM\PersistentCollection {#3170 …}
+nested: Doctrine\ORM\PersistentCollection {#3172 …}
+votes: Doctrine\ORM\PersistentCollection {#3174 …}
+reports: Doctrine\ORM\PersistentCollection {#3176 …}
+favourites: Doctrine\ORM\PersistentCollection {#3178 …}
+notifications: Doctrine\ORM\PersistentCollection {#3180 …}
-id: 276265
-bodyTs: "'5d':36 'also':2 'anyway':42 'archiv':33 'blow':98 'check':67 'cool':41 'copi':61 'corrupt':78 'data':15,64 'densiti':48,94 'disk':38 'dna':1,18,49,55 'doesnt':7 'dozen':59 'even':74 'fragil':21 'get':77,82,85 'good':11 'interest':4 'isn':50 'like':9,24 'limit':91 'long':16,31 'mind':97 'odd':26,53 'organ':87 'pariti':66 'preserv':14 'quartz':37 'rout':27 'seem':8,23 'small':71 'sound':3 'space':72 'still':81 'storag':47 'store':58 'stuff':88 'take':29 'term':17,32 'think':45 'though':5 'way':12 'yeah':34"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.world/comment/6379777"
+editedAt: null
+createdAt: DateTimeImmutable @1704286080 {#3167
date: 2024-01-03 13:48:00.0 +01:00
}
} |
|
Show voter details
|
92 |
DENIED
|
moderate
|
App\Entity\EntryComment {#3168
+user: Proxies\__CG__\App\Entity\User {#3169 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2535 …}
+magazine: App\Entity\Magazine {#305
+icon: null
+name: "datahoarder@lemmy.ml"
+title: "datahoarder"
+description: """
**Who are we?**\n
\n
We are digital librarians. Among us are represented the various reasons to keep data – legal requirements, competitive requirements, uncertainty of permanence of cloud services, distaste for transmitting your data externally (e.g. government or corporate espionage), cultural and familial archivists, internet collapse preppers, and people who do it themselves so they’re sure it’s done right. Everyone has their reasons for curating the data they have decided to keep (either forever or For A Damn Long Time). Along the way we have sought out like-minded individuals to exchange strategies, war stories, and cautionary tales of failures.\n
\n
We are one. We are legion. And we’re trying really hard not to forget.\n
\n
– 5-4-3-2-1-bang from [this thread](https://web.archive.org/web/20221111153119/https://old.reddit.com/r/DataHoarder/comments/41tqt4/hi_guys_can_i_kindly_ask_for_an_eli5_of_this/cz53pi0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 58
+entryCommentCount: 311
+postCount: 1
+postCommentCount: 1
+isAdult: false
+customCss: null
+lastActive: DateTime @1729502222 {#313
date: 2024-10-21 11:17:02.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#293 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#289 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#278 …}
+entries: Doctrine\ORM\PersistentCollection {#236 …}
+posts: Doctrine\ORM\PersistentCollection {#194 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#256 …}
+bans: Doctrine\ORM\PersistentCollection {#173 …}
+reports: Doctrine\ORM\PersistentCollection {#159 …}
+badges: Doctrine\ORM\PersistentCollection {#137 …}
+logs: Doctrine\ORM\PersistentCollection {#127 …}
+awards: Doctrine\ORM\PersistentCollection {#116 …}
+categories: Doctrine\ORM\PersistentCollection {#103 …}
-id: 32
+apId: "datahoarder@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/datahoarder"
+apPublicUrl: "https://lemmy.ml/c/datahoarder"
+apFollowersUrl: "https://lemmy.ml/c/datahoarder/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "datahoarder"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729303437 {#314
date: 2024-10-19 04:03:57.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1695727192 {#308
date: 2023-09-26 13:19:52.0 +02:00
}
}
+image: null
+parent: App\Entity\EntryComment {#2534
+user: App\Entity\User {#2548 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2535 …}
+magazine: App\Entity\Magazine {#305}
+image: null
+parent: null
+root: null
+body: """
Im most excited about the potential for crystal based storage. Right now there is work being done to etch silica glass internally, allowing for incredibly long term preservation and durability. It can even be rewritten, though the tech is definetly best for achival purposes and is being pursued primarily by movie companies wanting high quality storage.\n
\n
Heres a video discussing it more in deapth: [m.youtube.com/watch?v=6CzHsibqpIs](https://m.youtube.com/watch?v=6CzHsibqpIs)\n
\n
DNA also sounds interesting, though it doesnt seem like a good way of preserving data long term. DNA is very fragile, and seems like an odd route to take for long term archiving.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 6
+score: 0
+lastActive: DateTime @1711477727 {#2529
date: 2024-03-26 19:28:47.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@BermudaHighball@lemmy.dbzer0.com"
]
+children: Doctrine\ORM\PersistentCollection {#2536 …}
+nested: Doctrine\ORM\PersistentCollection {#2538 …}
+votes: Doctrine\ORM\PersistentCollection {#2540 …}
+reports: Doctrine\ORM\PersistentCollection {#2542 …}
+favourites: Doctrine\ORM\PersistentCollection {#2544 …}
+notifications: Doctrine\ORM\PersistentCollection {#2546 …}
-id: 275788
-bodyTs: "'/watch?v=6czhsibqpis](https://m.youtube.com/watch?v=6czhsibqpis)':67 'achiv':43 'allow':23 'also':69 'archiv':100 'base':9 'best':41 'compani':52 'crystal':8 'data':82 'deapth':64 'definet':40 'discuss':60 'dna':68,85 'doesnt':74 'done':17 'durabl':30 'etch':19 'even':33 'excit':3 'fragil':88 'glass':21 'good':78 'here':57 'high':54 'im':1 'incred':25 'interest':71 'intern':22 'like':76,91 'long':26,83,98 'm.youtube.com':66 'm.youtube.com/watch?v=6czhsibqpis](https://m.youtube.com/watch?v=6czhsibqpis)':65 'movi':51 'odd':93 'potenti':6 'preserv':28,81 'primarili':49 'purpos':44 'pursu':48 'qualiti':55 'rewritten':35 'right':11 'rout':94 'seem':75,90 'silica':20 'sound':70 'storag':10,56 'take':96 'tech':38 'term':27,84,99 'though':36,72 'video':59 'want':53 'way':79 'work':15"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://slrpnk.net/comment/5042462"
+editedAt: null
+createdAt: DateTimeImmutable @1704263232 {#2530
date: 2024-01-03 07:27:12.0 +01:00
}
}
+root: App\Entity\EntryComment {#2534}
+body: """
> DNA also sounds interesting, though it doesnt seem like a good way of preserving data long term. DNA is very fragile, and seems like an odd route to take for long term archiving.\n
\n
Yeah the 5D quartz disk is very cool.\n
\n
Anyways if you think about storage density DNA isn’t that “odd”. With DNA you can store dozens of copies of the data and parity checks in a very small space so even if some gets corrupted you can still get it. I get that organic stuff has its limits but the density is just mind blowing.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 1
+score: 0
+lastActive: DateTime @1704286080 {#3166
date: 2024-01-03 13:48:00.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@BermudaHighball@lemmy.dbzer0.com"
"@hazeebabee@slrpnk.net"
]
+children: Doctrine\ORM\PersistentCollection {#3170 …}
+nested: Doctrine\ORM\PersistentCollection {#3172 …}
+votes: Doctrine\ORM\PersistentCollection {#3174 …}
+reports: Doctrine\ORM\PersistentCollection {#3176 …}
+favourites: Doctrine\ORM\PersistentCollection {#3178 …}
+notifications: Doctrine\ORM\PersistentCollection {#3180 …}
-id: 276265
-bodyTs: "'5d':36 'also':2 'anyway':42 'archiv':33 'blow':98 'check':67 'cool':41 'copi':61 'corrupt':78 'data':15,64 'densiti':48,94 'disk':38 'dna':1,18,49,55 'doesnt':7 'dozen':59 'even':74 'fragil':21 'get':77,82,85 'good':11 'interest':4 'isn':50 'like':9,24 'limit':91 'long':16,31 'mind':97 'odd':26,53 'organ':87 'pariti':66 'preserv':14 'quartz':37 'rout':27 'seem':8,23 'small':71 'sound':3 'space':72 'still':81 'storag':47 'store':58 'stuff':88 'take':29 'term':17,32 'think':45 'though':5 'way':12 'yeah':34"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.world/comment/6379777"
+editedAt: null
+createdAt: DateTimeImmutable @1704286080 {#3167
date: 2024-01-03 13:48:00.0 +01:00
}
} |
|
Show voter details
|
93 |
DENIED
|
ROLE_USER
|
null |
|
Show voter details
|
94 |
DENIED
|
moderate
|
App\Entity\EntryComment {#3329
+user: App\Entity\User {#2548 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2535 …}
+magazine: App\Entity\Magazine {#305
+icon: null
+name: "datahoarder@lemmy.ml"
+title: "datahoarder"
+description: """
**Who are we?**\n
\n
We are digital librarians. Among us are represented the various reasons to keep data – legal requirements, competitive requirements, uncertainty of permanence of cloud services, distaste for transmitting your data externally (e.g. government or corporate espionage), cultural and familial archivists, internet collapse preppers, and people who do it themselves so they’re sure it’s done right. Everyone has their reasons for curating the data they have decided to keep (either forever or For A Damn Long Time). Along the way we have sought out like-minded individuals to exchange strategies, war stories, and cautionary tales of failures.\n
\n
We are one. We are legion. And we’re trying really hard not to forget.\n
\n
– 5-4-3-2-1-bang from [this thread](https://web.archive.org/web/20221111153119/https://old.reddit.com/r/DataHoarder/comments/41tqt4/hi_guys_can_i_kindly_ask_for_an_eli5_of_this/cz53pi0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 58
+entryCommentCount: 311
+postCount: 1
+postCommentCount: 1
+isAdult: false
+customCss: null
+lastActive: DateTime @1729502222 {#313
date: 2024-10-21 11:17:02.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#293 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#289 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#278 …}
+entries: Doctrine\ORM\PersistentCollection {#236 …}
+posts: Doctrine\ORM\PersistentCollection {#194 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#256 …}
+bans: Doctrine\ORM\PersistentCollection {#173 …}
+reports: Doctrine\ORM\PersistentCollection {#159 …}
+badges: Doctrine\ORM\PersistentCollection {#137 …}
+logs: Doctrine\ORM\PersistentCollection {#127 …}
+awards: Doctrine\ORM\PersistentCollection {#116 …}
+categories: Doctrine\ORM\PersistentCollection {#103 …}
-id: 32
+apId: "datahoarder@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/datahoarder"
+apPublicUrl: "https://lemmy.ml/c/datahoarder"
+apFollowersUrl: "https://lemmy.ml/c/datahoarder/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "datahoarder"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729303437 {#314
date: 2024-10-19 04:03:57.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1695727192 {#308
date: 2023-09-26 13:19:52.0 +02:00
}
}
+image: null
+parent: App\Entity\EntryComment {#3168
+user: Proxies\__CG__\App\Entity\User {#3169 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2535 …}
+magazine: App\Entity\Magazine {#305}
+image: null
+parent: App\Entity\EntryComment {#2534
+user: App\Entity\User {#2548 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2535 …}
+magazine: App\Entity\Magazine {#305}
+image: null
+parent: null
+root: null
+body: """
Im most excited about the potential for crystal based storage. Right now there is work being done to etch silica glass internally, allowing for incredibly long term preservation and durability. It can even be rewritten, though the tech is definetly best for achival purposes and is being pursued primarily by movie companies wanting high quality storage.\n
\n
Heres a video discussing it more in deapth: [m.youtube.com/watch?v=6CzHsibqpIs](https://m.youtube.com/watch?v=6CzHsibqpIs)\n
\n
DNA also sounds interesting, though it doesnt seem like a good way of preserving data long term. DNA is very fragile, and seems like an odd route to take for long term archiving.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 6
+score: 0
+lastActive: DateTime @1711477727 {#2529
date: 2024-03-26 19:28:47.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@BermudaHighball@lemmy.dbzer0.com"
]
+children: Doctrine\ORM\PersistentCollection {#2536 …}
+nested: Doctrine\ORM\PersistentCollection {#2538 …}
+votes: Doctrine\ORM\PersistentCollection {#2540 …}
+reports: Doctrine\ORM\PersistentCollection {#2542 …}
+favourites: Doctrine\ORM\PersistentCollection {#2544 …}
+notifications: Doctrine\ORM\PersistentCollection {#2546 …}
-id: 275788
-bodyTs: "'/watch?v=6czhsibqpis](https://m.youtube.com/watch?v=6czhsibqpis)':67 'achiv':43 'allow':23 'also':69 'archiv':100 'base':9 'best':41 'compani':52 'crystal':8 'data':82 'deapth':64 'definet':40 'discuss':60 'dna':68,85 'doesnt':74 'done':17 'durabl':30 'etch':19 'even':33 'excit':3 'fragil':88 'glass':21 'good':78 'here':57 'high':54 'im':1 'incred':25 'interest':71 'intern':22 'like':76,91 'long':26,83,98 'm.youtube.com':66 'm.youtube.com/watch?v=6czhsibqpis](https://m.youtube.com/watch?v=6czhsibqpis)':65 'movi':51 'odd':93 'potenti':6 'preserv':28,81 'primarili':49 'purpos':44 'pursu':48 'qualiti':55 'rewritten':35 'right':11 'rout':94 'seem':75,90 'silica':20 'sound':70 'storag':10,56 'take':96 'tech':38 'term':27,84,99 'though':36,72 'video':59 'want':53 'way':79 'work':15"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://slrpnk.net/comment/5042462"
+editedAt: null
+createdAt: DateTimeImmutable @1704263232 {#2530
date: 2024-01-03 07:27:12.0 +01:00
}
}
+root: App\Entity\EntryComment {#2534}
+body: """
> DNA also sounds interesting, though it doesnt seem like a good way of preserving data long term. DNA is very fragile, and seems like an odd route to take for long term archiving.\n
\n
Yeah the 5D quartz disk is very cool.\n
\n
Anyways if you think about storage density DNA isn’t that “odd”. With DNA you can store dozens of copies of the data and parity checks in a very small space so even if some gets corrupted you can still get it. I get that organic stuff has its limits but the density is just mind blowing.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 1
+score: 0
+lastActive: DateTime @1704286080 {#3166
date: 2024-01-03 13:48:00.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@BermudaHighball@lemmy.dbzer0.com"
"@hazeebabee@slrpnk.net"
]
+children: Doctrine\ORM\PersistentCollection {#3170 …}
+nested: Doctrine\ORM\PersistentCollection {#3172 …}
+votes: Doctrine\ORM\PersistentCollection {#3174 …}
+reports: Doctrine\ORM\PersistentCollection {#3176 …}
+favourites: Doctrine\ORM\PersistentCollection {#3178 …}
+notifications: Doctrine\ORM\PersistentCollection {#3180 …}
-id: 276265
-bodyTs: "'5d':36 'also':2 'anyway':42 'archiv':33 'blow':98 'check':67 'cool':41 'copi':61 'corrupt':78 'data':15,64 'densiti':48,94 'disk':38 'dna':1,18,49,55 'doesnt':7 'dozen':59 'even':74 'fragil':21 'get':77,82,85 'good':11 'interest':4 'isn':50 'like':9,24 'limit':91 'long':16,31 'mind':97 'odd':26,53 'organ':87 'pariti':66 'preserv':14 'quartz':37 'rout':27 'seem':8,23 'small':71 'sound':3 'space':72 'still':81 'storag':47 'store':58 'stuff':88 'take':29 'term':17,32 'think':45 'though':5 'way':12 'yeah':34"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.world/comment/6379777"
+editedAt: null
+createdAt: DateTimeImmutable @1704286080 {#3167
date: 2024-01-03 13:48:00.0 +01:00
}
}
+root: App\Entity\EntryComment {#2534}
+body: """
Density is defintly amazing in DNA, its just so fragile. Even our own bodies have a constant degridation of our DNA… I wonder if they could take that concept and make something sturdier by using slightly different molecules to make up the chains.\n
\n
Maybe shorter chains with stronger cross bonding & a gentle method of reading the chain could also help?\n
\n
Its definetly an interesting route & itll be cool to see what happens with it over the next 10-15 years.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 1
+score: 0
+lastActive: DateTime @1704344964 {#3327
date: 2024-01-04 06:09:24.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@BermudaHighball@lemmy.dbzer0.com"
"@hazeebabee@slrpnk.net"
"@TCB13@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#3330 …}
+nested: Doctrine\ORM\PersistentCollection {#3332 …}
+votes: Doctrine\ORM\PersistentCollection {#3334 …}
+reports: Doctrine\ORM\PersistentCollection {#3336 …}
+favourites: Doctrine\ORM\PersistentCollection {#3338 …}
+notifications: Doctrine\ORM\PersistentCollection {#3340 …}
-id: 278701
-bodyTs: "'-15':79 '10':78 'also':59 'amaz':4 'bodi':14 'bond':50 'chain':43,46,57 'concept':29 'constant':17 'cool':68 'could':26,58 'cross':49 'definet':62 'defint':3 'degrid':18 'densiti':1 'differ':37 'dna':6,21 'even':11 'fragil':10 'gentl':52 'happen':72 'help':60 'interest':64 'itll':66 'make':31,40 'mayb':44 'method':53 'molecul':38 'next':77 'read':55 'rout':65 'see':70 'shorter':45 'slight':36 'someth':32 'stronger':48 'sturdier':33 'take':27 'use':35 'wonder':23 'year':80"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://slrpnk.net/comment/5066792"
+editedAt: null
+createdAt: DateTimeImmutable @1704344964 {#3328
date: 2024-01-04 06:09:24.0 +01:00
}
} |
|
Show voter details
|
95 |
DENIED
|
edit
|
App\Entity\EntryComment {#3329
+user: App\Entity\User {#2548 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2535 …}
+magazine: App\Entity\Magazine {#305
+icon: null
+name: "datahoarder@lemmy.ml"
+title: "datahoarder"
+description: """
**Who are we?**\n
\n
We are digital librarians. Among us are represented the various reasons to keep data – legal requirements, competitive requirements, uncertainty of permanence of cloud services, distaste for transmitting your data externally (e.g. government or corporate espionage), cultural and familial archivists, internet collapse preppers, and people who do it themselves so they’re sure it’s done right. Everyone has their reasons for curating the data they have decided to keep (either forever or For A Damn Long Time). Along the way we have sought out like-minded individuals to exchange strategies, war stories, and cautionary tales of failures.\n
\n
We are one. We are legion. And we’re trying really hard not to forget.\n
\n
– 5-4-3-2-1-bang from [this thread](https://web.archive.org/web/20221111153119/https://old.reddit.com/r/DataHoarder/comments/41tqt4/hi_guys_can_i_kindly_ask_for_an_eli5_of_this/cz53pi0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 58
+entryCommentCount: 311
+postCount: 1
+postCommentCount: 1
+isAdult: false
+customCss: null
+lastActive: DateTime @1729502222 {#313
date: 2024-10-21 11:17:02.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#293 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#289 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#278 …}
+entries: Doctrine\ORM\PersistentCollection {#236 …}
+posts: Doctrine\ORM\PersistentCollection {#194 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#256 …}
+bans: Doctrine\ORM\PersistentCollection {#173 …}
+reports: Doctrine\ORM\PersistentCollection {#159 …}
+badges: Doctrine\ORM\PersistentCollection {#137 …}
+logs: Doctrine\ORM\PersistentCollection {#127 …}
+awards: Doctrine\ORM\PersistentCollection {#116 …}
+categories: Doctrine\ORM\PersistentCollection {#103 …}
-id: 32
+apId: "datahoarder@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/datahoarder"
+apPublicUrl: "https://lemmy.ml/c/datahoarder"
+apFollowersUrl: "https://lemmy.ml/c/datahoarder/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "datahoarder"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729303437 {#314
date: 2024-10-19 04:03:57.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1695727192 {#308
date: 2023-09-26 13:19:52.0 +02:00
}
}
+image: null
+parent: App\Entity\EntryComment {#3168
+user: Proxies\__CG__\App\Entity\User {#3169 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2535 …}
+magazine: App\Entity\Magazine {#305}
+image: null
+parent: App\Entity\EntryComment {#2534
+user: App\Entity\User {#2548 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2535 …}
+magazine: App\Entity\Magazine {#305}
+image: null
+parent: null
+root: null
+body: """
Im most excited about the potential for crystal based storage. Right now there is work being done to etch silica glass internally, allowing for incredibly long term preservation and durability. It can even be rewritten, though the tech is definetly best for achival purposes and is being pursued primarily by movie companies wanting high quality storage.\n
\n
Heres a video discussing it more in deapth: [m.youtube.com/watch?v=6CzHsibqpIs](https://m.youtube.com/watch?v=6CzHsibqpIs)\n
\n
DNA also sounds interesting, though it doesnt seem like a good way of preserving data long term. DNA is very fragile, and seems like an odd route to take for long term archiving.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 6
+score: 0
+lastActive: DateTime @1711477727 {#2529
date: 2024-03-26 19:28:47.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@BermudaHighball@lemmy.dbzer0.com"
]
+children: Doctrine\ORM\PersistentCollection {#2536 …}
+nested: Doctrine\ORM\PersistentCollection {#2538 …}
+votes: Doctrine\ORM\PersistentCollection {#2540 …}
+reports: Doctrine\ORM\PersistentCollection {#2542 …}
+favourites: Doctrine\ORM\PersistentCollection {#2544 …}
+notifications: Doctrine\ORM\PersistentCollection {#2546 …}
-id: 275788
-bodyTs: "'/watch?v=6czhsibqpis](https://m.youtube.com/watch?v=6czhsibqpis)':67 'achiv':43 'allow':23 'also':69 'archiv':100 'base':9 'best':41 'compani':52 'crystal':8 'data':82 'deapth':64 'definet':40 'discuss':60 'dna':68,85 'doesnt':74 'done':17 'durabl':30 'etch':19 'even':33 'excit':3 'fragil':88 'glass':21 'good':78 'here':57 'high':54 'im':1 'incred':25 'interest':71 'intern':22 'like':76,91 'long':26,83,98 'm.youtube.com':66 'm.youtube.com/watch?v=6czhsibqpis](https://m.youtube.com/watch?v=6czhsibqpis)':65 'movi':51 'odd':93 'potenti':6 'preserv':28,81 'primarili':49 'purpos':44 'pursu':48 'qualiti':55 'rewritten':35 'right':11 'rout':94 'seem':75,90 'silica':20 'sound':70 'storag':10,56 'take':96 'tech':38 'term':27,84,99 'though':36,72 'video':59 'want':53 'way':79 'work':15"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://slrpnk.net/comment/5042462"
+editedAt: null
+createdAt: DateTimeImmutable @1704263232 {#2530
date: 2024-01-03 07:27:12.0 +01:00
}
}
+root: App\Entity\EntryComment {#2534}
+body: """
> DNA also sounds interesting, though it doesnt seem like a good way of preserving data long term. DNA is very fragile, and seems like an odd route to take for long term archiving.\n
\n
Yeah the 5D quartz disk is very cool.\n
\n
Anyways if you think about storage density DNA isn’t that “odd”. With DNA you can store dozens of copies of the data and parity checks in a very small space so even if some gets corrupted you can still get it. I get that organic stuff has its limits but the density is just mind blowing.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 1
+score: 0
+lastActive: DateTime @1704286080 {#3166
date: 2024-01-03 13:48:00.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@BermudaHighball@lemmy.dbzer0.com"
"@hazeebabee@slrpnk.net"
]
+children: Doctrine\ORM\PersistentCollection {#3170 …}
+nested: Doctrine\ORM\PersistentCollection {#3172 …}
+votes: Doctrine\ORM\PersistentCollection {#3174 …}
+reports: Doctrine\ORM\PersistentCollection {#3176 …}
+favourites: Doctrine\ORM\PersistentCollection {#3178 …}
+notifications: Doctrine\ORM\PersistentCollection {#3180 …}
-id: 276265
-bodyTs: "'5d':36 'also':2 'anyway':42 'archiv':33 'blow':98 'check':67 'cool':41 'copi':61 'corrupt':78 'data':15,64 'densiti':48,94 'disk':38 'dna':1,18,49,55 'doesnt':7 'dozen':59 'even':74 'fragil':21 'get':77,82,85 'good':11 'interest':4 'isn':50 'like':9,24 'limit':91 'long':16,31 'mind':97 'odd':26,53 'organ':87 'pariti':66 'preserv':14 'quartz':37 'rout':27 'seem':8,23 'small':71 'sound':3 'space':72 'still':81 'storag':47 'store':58 'stuff':88 'take':29 'term':17,32 'think':45 'though':5 'way':12 'yeah':34"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.world/comment/6379777"
+editedAt: null
+createdAt: DateTimeImmutable @1704286080 {#3167
date: 2024-01-03 13:48:00.0 +01:00
}
}
+root: App\Entity\EntryComment {#2534}
+body: """
Density is defintly amazing in DNA, its just so fragile. Even our own bodies have a constant degridation of our DNA… I wonder if they could take that concept and make something sturdier by using slightly different molecules to make up the chains.\n
\n
Maybe shorter chains with stronger cross bonding & a gentle method of reading the chain could also help?\n
\n
Its definetly an interesting route & itll be cool to see what happens with it over the next 10-15 years.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 1
+score: 0
+lastActive: DateTime @1704344964 {#3327
date: 2024-01-04 06:09:24.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@BermudaHighball@lemmy.dbzer0.com"
"@hazeebabee@slrpnk.net"
"@TCB13@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#3330 …}
+nested: Doctrine\ORM\PersistentCollection {#3332 …}
+votes: Doctrine\ORM\PersistentCollection {#3334 …}
+reports: Doctrine\ORM\PersistentCollection {#3336 …}
+favourites: Doctrine\ORM\PersistentCollection {#3338 …}
+notifications: Doctrine\ORM\PersistentCollection {#3340 …}
-id: 278701
-bodyTs: "'-15':79 '10':78 'also':59 'amaz':4 'bodi':14 'bond':50 'chain':43,46,57 'concept':29 'constant':17 'cool':68 'could':26,58 'cross':49 'definet':62 'defint':3 'degrid':18 'densiti':1 'differ':37 'dna':6,21 'even':11 'fragil':10 'gentl':52 'happen':72 'help':60 'interest':64 'itll':66 'make':31,40 'mayb':44 'method':53 'molecul':38 'next':77 'read':55 'rout':65 'see':70 'shorter':45 'slight':36 'someth':32 'stronger':48 'sturdier':33 'take':27 'use':35 'wonder':23 'year':80"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://slrpnk.net/comment/5066792"
+editedAt: null
+createdAt: DateTimeImmutable @1704344964 {#3328
date: 2024-01-04 06:09:24.0 +01:00
}
} |
|
Show voter details
|
96 |
DENIED
|
moderate
|
App\Entity\EntryComment {#3329
+user: App\Entity\User {#2548 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2535 …}
+magazine: App\Entity\Magazine {#305
+icon: null
+name: "datahoarder@lemmy.ml"
+title: "datahoarder"
+description: """
**Who are we?**\n
\n
We are digital librarians. Among us are represented the various reasons to keep data – legal requirements, competitive requirements, uncertainty of permanence of cloud services, distaste for transmitting your data externally (e.g. government or corporate espionage), cultural and familial archivists, internet collapse preppers, and people who do it themselves so they’re sure it’s done right. Everyone has their reasons for curating the data they have decided to keep (either forever or For A Damn Long Time). Along the way we have sought out like-minded individuals to exchange strategies, war stories, and cautionary tales of failures.\n
\n
We are one. We are legion. And we’re trying really hard not to forget.\n
\n
– 5-4-3-2-1-bang from [this thread](https://web.archive.org/web/20221111153119/https://old.reddit.com/r/DataHoarder/comments/41tqt4/hi_guys_can_i_kindly_ask_for_an_eli5_of_this/cz53pi0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 58
+entryCommentCount: 311
+postCount: 1
+postCommentCount: 1
+isAdult: false
+customCss: null
+lastActive: DateTime @1729502222 {#313
date: 2024-10-21 11:17:02.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#293 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#289 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#278 …}
+entries: Doctrine\ORM\PersistentCollection {#236 …}
+posts: Doctrine\ORM\PersistentCollection {#194 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#256 …}
+bans: Doctrine\ORM\PersistentCollection {#173 …}
+reports: Doctrine\ORM\PersistentCollection {#159 …}
+badges: Doctrine\ORM\PersistentCollection {#137 …}
+logs: Doctrine\ORM\PersistentCollection {#127 …}
+awards: Doctrine\ORM\PersistentCollection {#116 …}
+categories: Doctrine\ORM\PersistentCollection {#103 …}
-id: 32
+apId: "datahoarder@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/datahoarder"
+apPublicUrl: "https://lemmy.ml/c/datahoarder"
+apFollowersUrl: "https://lemmy.ml/c/datahoarder/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "datahoarder"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729303437 {#314
date: 2024-10-19 04:03:57.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1695727192 {#308
date: 2023-09-26 13:19:52.0 +02:00
}
}
+image: null
+parent: App\Entity\EntryComment {#3168
+user: Proxies\__CG__\App\Entity\User {#3169 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2535 …}
+magazine: App\Entity\Magazine {#305}
+image: null
+parent: App\Entity\EntryComment {#2534
+user: App\Entity\User {#2548 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2535 …}
+magazine: App\Entity\Magazine {#305}
+image: null
+parent: null
+root: null
+body: """
Im most excited about the potential for crystal based storage. Right now there is work being done to etch silica glass internally, allowing for incredibly long term preservation and durability. It can even be rewritten, though the tech is definetly best for achival purposes and is being pursued primarily by movie companies wanting high quality storage.\n
\n
Heres a video discussing it more in deapth: [m.youtube.com/watch?v=6CzHsibqpIs](https://m.youtube.com/watch?v=6CzHsibqpIs)\n
\n
DNA also sounds interesting, though it doesnt seem like a good way of preserving data long term. DNA is very fragile, and seems like an odd route to take for long term archiving.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 6
+score: 0
+lastActive: DateTime @1711477727 {#2529
date: 2024-03-26 19:28:47.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@BermudaHighball@lemmy.dbzer0.com"
]
+children: Doctrine\ORM\PersistentCollection {#2536 …}
+nested: Doctrine\ORM\PersistentCollection {#2538 …}
+votes: Doctrine\ORM\PersistentCollection {#2540 …}
+reports: Doctrine\ORM\PersistentCollection {#2542 …}
+favourites: Doctrine\ORM\PersistentCollection {#2544 …}
+notifications: Doctrine\ORM\PersistentCollection {#2546 …}
-id: 275788
-bodyTs: "'/watch?v=6czhsibqpis](https://m.youtube.com/watch?v=6czhsibqpis)':67 'achiv':43 'allow':23 'also':69 'archiv':100 'base':9 'best':41 'compani':52 'crystal':8 'data':82 'deapth':64 'definet':40 'discuss':60 'dna':68,85 'doesnt':74 'done':17 'durabl':30 'etch':19 'even':33 'excit':3 'fragil':88 'glass':21 'good':78 'here':57 'high':54 'im':1 'incred':25 'interest':71 'intern':22 'like':76,91 'long':26,83,98 'm.youtube.com':66 'm.youtube.com/watch?v=6czhsibqpis](https://m.youtube.com/watch?v=6czhsibqpis)':65 'movi':51 'odd':93 'potenti':6 'preserv':28,81 'primarili':49 'purpos':44 'pursu':48 'qualiti':55 'rewritten':35 'right':11 'rout':94 'seem':75,90 'silica':20 'sound':70 'storag':10,56 'take':96 'tech':38 'term':27,84,99 'though':36,72 'video':59 'want':53 'way':79 'work':15"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://slrpnk.net/comment/5042462"
+editedAt: null
+createdAt: DateTimeImmutable @1704263232 {#2530
date: 2024-01-03 07:27:12.0 +01:00
}
}
+root: App\Entity\EntryComment {#2534}
+body: """
> DNA also sounds interesting, though it doesnt seem like a good way of preserving data long term. DNA is very fragile, and seems like an odd route to take for long term archiving.\n
\n
Yeah the 5D quartz disk is very cool.\n
\n
Anyways if you think about storage density DNA isn’t that “odd”. With DNA you can store dozens of copies of the data and parity checks in a very small space so even if some gets corrupted you can still get it. I get that organic stuff has its limits but the density is just mind blowing.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 1
+score: 0
+lastActive: DateTime @1704286080 {#3166
date: 2024-01-03 13:48:00.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@BermudaHighball@lemmy.dbzer0.com"
"@hazeebabee@slrpnk.net"
]
+children: Doctrine\ORM\PersistentCollection {#3170 …}
+nested: Doctrine\ORM\PersistentCollection {#3172 …}
+votes: Doctrine\ORM\PersistentCollection {#3174 …}
+reports: Doctrine\ORM\PersistentCollection {#3176 …}
+favourites: Doctrine\ORM\PersistentCollection {#3178 …}
+notifications: Doctrine\ORM\PersistentCollection {#3180 …}
-id: 276265
-bodyTs: "'5d':36 'also':2 'anyway':42 'archiv':33 'blow':98 'check':67 'cool':41 'copi':61 'corrupt':78 'data':15,64 'densiti':48,94 'disk':38 'dna':1,18,49,55 'doesnt':7 'dozen':59 'even':74 'fragil':21 'get':77,82,85 'good':11 'interest':4 'isn':50 'like':9,24 'limit':91 'long':16,31 'mind':97 'odd':26,53 'organ':87 'pariti':66 'preserv':14 'quartz':37 'rout':27 'seem':8,23 'small':71 'sound':3 'space':72 'still':81 'storag':47 'store':58 'stuff':88 'take':29 'term':17,32 'think':45 'though':5 'way':12 'yeah':34"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.world/comment/6379777"
+editedAt: null
+createdAt: DateTimeImmutable @1704286080 {#3167
date: 2024-01-03 13:48:00.0 +01:00
}
}
+root: App\Entity\EntryComment {#2534}
+body: """
Density is defintly amazing in DNA, its just so fragile. Even our own bodies have a constant degridation of our DNA… I wonder if they could take that concept and make something sturdier by using slightly different molecules to make up the chains.\n
\n
Maybe shorter chains with stronger cross bonding & a gentle method of reading the chain could also help?\n
\n
Its definetly an interesting route & itll be cool to see what happens with it over the next 10-15 years.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 1
+score: 0
+lastActive: DateTime @1704344964 {#3327
date: 2024-01-04 06:09:24.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@BermudaHighball@lemmy.dbzer0.com"
"@hazeebabee@slrpnk.net"
"@TCB13@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#3330 …}
+nested: Doctrine\ORM\PersistentCollection {#3332 …}
+votes: Doctrine\ORM\PersistentCollection {#3334 …}
+reports: Doctrine\ORM\PersistentCollection {#3336 …}
+favourites: Doctrine\ORM\PersistentCollection {#3338 …}
+notifications: Doctrine\ORM\PersistentCollection {#3340 …}
-id: 278701
-bodyTs: "'-15':79 '10':78 'also':59 'amaz':4 'bodi':14 'bond':50 'chain':43,46,57 'concept':29 'constant':17 'cool':68 'could':26,58 'cross':49 'definet':62 'defint':3 'degrid':18 'densiti':1 'differ':37 'dna':6,21 'even':11 'fragil':10 'gentl':52 'happen':72 'help':60 'interest':64 'itll':66 'make':31,40 'mayb':44 'method':53 'molecul':38 'next':77 'read':55 'rout':65 'see':70 'shorter':45 'slight':36 'someth':32 'stronger':48 'sturdier':33 'take':27 'use':35 'wonder':23 'year':80"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://slrpnk.net/comment/5066792"
+editedAt: null
+createdAt: DateTimeImmutable @1704344964 {#3328
date: 2024-01-04 06:09:24.0 +01:00
}
} |
|
Show voter details
|
97 |
DENIED
|
ROLE_USER
|
null |
|
Show voter details
|
98 |
DENIED
|
moderate
|
App\Entity\EntryComment {#2608
+user: App\Entity\User {#2622 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2609 …}
+magazine: App\Entity\Magazine {#305
+icon: null
+name: "datahoarder@lemmy.ml"
+title: "datahoarder"
+description: """
**Who are we?**\n
\n
We are digital librarians. Among us are represented the various reasons to keep data – legal requirements, competitive requirements, uncertainty of permanence of cloud services, distaste for transmitting your data externally (e.g. government or corporate espionage), cultural and familial archivists, internet collapse preppers, and people who do it themselves so they’re sure it’s done right. Everyone has their reasons for curating the data they have decided to keep (either forever or For A Damn Long Time). Along the way we have sought out like-minded individuals to exchange strategies, war stories, and cautionary tales of failures.\n
\n
We are one. We are legion. And we’re trying really hard not to forget.\n
\n
– 5-4-3-2-1-bang from [this thread](https://web.archive.org/web/20221111153119/https://old.reddit.com/r/DataHoarder/comments/41tqt4/hi_guys_can_i_kindly_ask_for_an_eli5_of_this/cz53pi0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 58
+entryCommentCount: 311
+postCount: 1
+postCommentCount: 1
+isAdult: false
+customCss: null
+lastActive: DateTime @1729502222 {#313
date: 2024-10-21 11:17:02.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#293 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#289 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#278 …}
+entries: Doctrine\ORM\PersistentCollection {#236 …}
+posts: Doctrine\ORM\PersistentCollection {#194 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#256 …}
+bans: Doctrine\ORM\PersistentCollection {#173 …}
+reports: Doctrine\ORM\PersistentCollection {#159 …}
+badges: Doctrine\ORM\PersistentCollection {#137 …}
+logs: Doctrine\ORM\PersistentCollection {#127 …}
+awards: Doctrine\ORM\PersistentCollection {#116 …}
+categories: Doctrine\ORM\PersistentCollection {#103 …}
-id: 32
+apId: "datahoarder@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/datahoarder"
+apPublicUrl: "https://lemmy.ml/c/datahoarder"
+apFollowersUrl: "https://lemmy.ml/c/datahoarder/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "datahoarder"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729303437 {#314
date: 2024-10-19 04:03:57.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1695727192 {#308
date: 2023-09-26 13:19:52.0 +02:00
}
}
+image: null
+parent: null
+root: null
+body: "Why? It sounds like you need it for a project. Why not get it from the source? Like from source audio."
+lang: "en"
+isAdult: false
+favouriteCount: 3
+score: 0
+lastActive: DateTime @1710726233 {#2603
date: 2024-03-18 02:43:53.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Cartoondude135@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#2610 …}
+nested: Doctrine\ORM\PersistentCollection {#2612 …}
+votes: Doctrine\ORM\PersistentCollection {#2614 …}
+reports: Doctrine\ORM\PersistentCollection {#2616 …}
+favourites: Doctrine\ORM\PersistentCollection {#2618 …}
+notifications: Doctrine\ORM\PersistentCollection {#2620 …}
-id: 272384
-bodyTs: "'audio':21 'get':13 'like':4,18 'need':6 'project':10 'sound':3 'sourc':17,20"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.ca/comment/5997211"
+editedAt: null
+createdAt: DateTimeImmutable @1704174443 {#2604
date: 2024-01-02 06:47:23.0 +01:00
}
} |
|
Show voter details
|
99 |
DENIED
|
edit
|
App\Entity\EntryComment {#2608
+user: App\Entity\User {#2622 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2609 …}
+magazine: App\Entity\Magazine {#305
+icon: null
+name: "datahoarder@lemmy.ml"
+title: "datahoarder"
+description: """
**Who are we?**\n
\n
We are digital librarians. Among us are represented the various reasons to keep data – legal requirements, competitive requirements, uncertainty of permanence of cloud services, distaste for transmitting your data externally (e.g. government or corporate espionage), cultural and familial archivists, internet collapse preppers, and people who do it themselves so they’re sure it’s done right. Everyone has their reasons for curating the data they have decided to keep (either forever or For A Damn Long Time). Along the way we have sought out like-minded individuals to exchange strategies, war stories, and cautionary tales of failures.\n
\n
We are one. We are legion. And we’re trying really hard not to forget.\n
\n
– 5-4-3-2-1-bang from [this thread](https://web.archive.org/web/20221111153119/https://old.reddit.com/r/DataHoarder/comments/41tqt4/hi_guys_can_i_kindly_ask_for_an_eli5_of_this/cz53pi0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 58
+entryCommentCount: 311
+postCount: 1
+postCommentCount: 1
+isAdult: false
+customCss: null
+lastActive: DateTime @1729502222 {#313
date: 2024-10-21 11:17:02.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#293 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#289 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#278 …}
+entries: Doctrine\ORM\PersistentCollection {#236 …}
+posts: Doctrine\ORM\PersistentCollection {#194 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#256 …}
+bans: Doctrine\ORM\PersistentCollection {#173 …}
+reports: Doctrine\ORM\PersistentCollection {#159 …}
+badges: Doctrine\ORM\PersistentCollection {#137 …}
+logs: Doctrine\ORM\PersistentCollection {#127 …}
+awards: Doctrine\ORM\PersistentCollection {#116 …}
+categories: Doctrine\ORM\PersistentCollection {#103 …}
-id: 32
+apId: "datahoarder@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/datahoarder"
+apPublicUrl: "https://lemmy.ml/c/datahoarder"
+apFollowersUrl: "https://lemmy.ml/c/datahoarder/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "datahoarder"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729303437 {#314
date: 2024-10-19 04:03:57.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1695727192 {#308
date: 2023-09-26 13:19:52.0 +02:00
}
}
+image: null
+parent: null
+root: null
+body: "Why? It sounds like you need it for a project. Why not get it from the source? Like from source audio."
+lang: "en"
+isAdult: false
+favouriteCount: 3
+score: 0
+lastActive: DateTime @1710726233 {#2603
date: 2024-03-18 02:43:53.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Cartoondude135@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#2610 …}
+nested: Doctrine\ORM\PersistentCollection {#2612 …}
+votes: Doctrine\ORM\PersistentCollection {#2614 …}
+reports: Doctrine\ORM\PersistentCollection {#2616 …}
+favourites: Doctrine\ORM\PersistentCollection {#2618 …}
+notifications: Doctrine\ORM\PersistentCollection {#2620 …}
-id: 272384
-bodyTs: "'audio':21 'get':13 'like':4,18 'need':6 'project':10 'sound':3 'sourc':17,20"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.ca/comment/5997211"
+editedAt: null
+createdAt: DateTimeImmutable @1704174443 {#2604
date: 2024-01-02 06:47:23.0 +01:00
}
} |
|
Show voter details
|
100 |
DENIED
|
moderate
|
App\Entity\EntryComment {#2608
+user: App\Entity\User {#2622 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2609 …}
+magazine: App\Entity\Magazine {#305
+icon: null
+name: "datahoarder@lemmy.ml"
+title: "datahoarder"
+description: """
**Who are we?**\n
\n
We are digital librarians. Among us are represented the various reasons to keep data – legal requirements, competitive requirements, uncertainty of permanence of cloud services, distaste for transmitting your data externally (e.g. government or corporate espionage), cultural and familial archivists, internet collapse preppers, and people who do it themselves so they’re sure it’s done right. Everyone has their reasons for curating the data they have decided to keep (either forever or For A Damn Long Time). Along the way we have sought out like-minded individuals to exchange strategies, war stories, and cautionary tales of failures.\n
\n
We are one. We are legion. And we’re trying really hard not to forget.\n
\n
– 5-4-3-2-1-bang from [this thread](https://web.archive.org/web/20221111153119/https://old.reddit.com/r/DataHoarder/comments/41tqt4/hi_guys_can_i_kindly_ask_for_an_eli5_of_this/cz53pi0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 58
+entryCommentCount: 311
+postCount: 1
+postCommentCount: 1
+isAdult: false
+customCss: null
+lastActive: DateTime @1729502222 {#313
date: 2024-10-21 11:17:02.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#293 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#289 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#278 …}
+entries: Doctrine\ORM\PersistentCollection {#236 …}
+posts: Doctrine\ORM\PersistentCollection {#194 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#256 …}
+bans: Doctrine\ORM\PersistentCollection {#173 …}
+reports: Doctrine\ORM\PersistentCollection {#159 …}
+badges: Doctrine\ORM\PersistentCollection {#137 …}
+logs: Doctrine\ORM\PersistentCollection {#127 …}
+awards: Doctrine\ORM\PersistentCollection {#116 …}
+categories: Doctrine\ORM\PersistentCollection {#103 …}
-id: 32
+apId: "datahoarder@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/datahoarder"
+apPublicUrl: "https://lemmy.ml/c/datahoarder"
+apFollowersUrl: "https://lemmy.ml/c/datahoarder/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "datahoarder"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729303437 {#314
date: 2024-10-19 04:03:57.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1695727192 {#308
date: 2023-09-26 13:19:52.0 +02:00
}
}
+image: null
+parent: null
+root: null
+body: "Why? It sounds like you need it for a project. Why not get it from the source? Like from source audio."
+lang: "en"
+isAdult: false
+favouriteCount: 3
+score: 0
+lastActive: DateTime @1710726233 {#2603
date: 2024-03-18 02:43:53.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Cartoondude135@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#2610 …}
+nested: Doctrine\ORM\PersistentCollection {#2612 …}
+votes: Doctrine\ORM\PersistentCollection {#2614 …}
+reports: Doctrine\ORM\PersistentCollection {#2616 …}
+favourites: Doctrine\ORM\PersistentCollection {#2618 …}
+notifications: Doctrine\ORM\PersistentCollection {#2620 …}
-id: 272384
-bodyTs: "'audio':21 'get':13 'like':4,18 'need':6 'project':10 'sound':3 'sourc':17,20"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.ca/comment/5997211"
+editedAt: null
+createdAt: DateTimeImmutable @1704174443 {#2604
date: 2024-01-02 06:47:23.0 +01:00
}
} |
|
Show voter details
|
101 |
DENIED
|
ROLE_USER
|
null |
|
Show voter details
|
102 |
DENIED
|
moderate
|
App\Entity\EntryComment {#3152
+user: Proxies\__CG__\App\Entity\User {#3153 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2609 …}
+magazine: App\Entity\Magazine {#305
+icon: null
+name: "datahoarder@lemmy.ml"
+title: "datahoarder"
+description: """
**Who are we?**\n
\n
We are digital librarians. Among us are represented the various reasons to keep data – legal requirements, competitive requirements, uncertainty of permanence of cloud services, distaste for transmitting your data externally (e.g. government or corporate espionage), cultural and familial archivists, internet collapse preppers, and people who do it themselves so they’re sure it’s done right. Everyone has their reasons for curating the data they have decided to keep (either forever or For A Damn Long Time). Along the way we have sought out like-minded individuals to exchange strategies, war stories, and cautionary tales of failures.\n
\n
We are one. We are legion. And we’re trying really hard not to forget.\n
\n
– 5-4-3-2-1-bang from [this thread](https://web.archive.org/web/20221111153119/https://old.reddit.com/r/DataHoarder/comments/41tqt4/hi_guys_can_i_kindly_ask_for_an_eli5_of_this/cz53pi0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 58
+entryCommentCount: 311
+postCount: 1
+postCommentCount: 1
+isAdult: false
+customCss: null
+lastActive: DateTime @1729502222 {#313
date: 2024-10-21 11:17:02.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#293 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#289 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#278 …}
+entries: Doctrine\ORM\PersistentCollection {#236 …}
+posts: Doctrine\ORM\PersistentCollection {#194 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#256 …}
+bans: Doctrine\ORM\PersistentCollection {#173 …}
+reports: Doctrine\ORM\PersistentCollection {#159 …}
+badges: Doctrine\ORM\PersistentCollection {#137 …}
+logs: Doctrine\ORM\PersistentCollection {#127 …}
+awards: Doctrine\ORM\PersistentCollection {#116 …}
+categories: Doctrine\ORM\PersistentCollection {#103 …}
-id: 32
+apId: "datahoarder@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/datahoarder"
+apPublicUrl: "https://lemmy.ml/c/datahoarder"
+apFollowersUrl: "https://lemmy.ml/c/datahoarder/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "datahoarder"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729303437 {#314
date: 2024-10-19 04:03:57.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1695727192 {#308
date: 2023-09-26 13:19:52.0 +02:00
}
}
+image: null
+parent: App\Entity\EntryComment {#2608
+user: App\Entity\User {#2622 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2609 …}
+magazine: App\Entity\Magazine {#305}
+image: null
+parent: null
+root: null
+body: "Why? It sounds like you need it for a project. Why not get it from the source? Like from source audio."
+lang: "en"
+isAdult: false
+favouriteCount: 3
+score: 0
+lastActive: DateTime @1710726233 {#2603
date: 2024-03-18 02:43:53.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Cartoondude135@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#2610 …}
+nested: Doctrine\ORM\PersistentCollection {#2612 …}
+votes: Doctrine\ORM\PersistentCollection {#2614 …}
+reports: Doctrine\ORM\PersistentCollection {#2616 …}
+favourites: Doctrine\ORM\PersistentCollection {#2618 …}
+notifications: Doctrine\ORM\PersistentCollection {#2620 …}
-id: 272384
-bodyTs: "'audio':21 'get':13 'like':4,18 'need':6 'project':10 'sound':3 'sourc':17,20"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.ca/comment/5997211"
+editedAt: null
+createdAt: DateTimeImmutable @1704174443 {#2604
date: 2024-01-02 06:47:23.0 +01:00
}
}
+root: App\Entity\EntryComment {#2608}
+body: "OP said that a lot of those are not on source audio"
+lang: "en"
+isAdult: false
+favouriteCount: 4
+score: 0
+lastActive: DateTime @1704179968 {#3150
date: 2024-01-02 08:19:28.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Cartoondude135@lemmy.world"
"@Vex_Detrause@lemmy.ca"
]
+children: Doctrine\ORM\PersistentCollection {#3154 …}
+nested: Doctrine\ORM\PersistentCollection {#3156 …}
+votes: Doctrine\ORM\PersistentCollection {#3158 …}
+reports: Doctrine\ORM\PersistentCollection {#3160 …}
+favourites: Doctrine\ORM\PersistentCollection {#3162 …}
+notifications: Doctrine\ORM\PersistentCollection {#3164 …}
-id: 272549
-bodyTs: "'audio':12 'lot':5 'op':1 'said':2 'sourc':11"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.world/comment/6346076"
+editedAt: null
+createdAt: DateTimeImmutable @1704179968 {#3151
date: 2024-01-02 08:19:28.0 +01:00
}
} |
|
Show voter details
|
103 |
DENIED
|
edit
|
App\Entity\EntryComment {#3152
+user: Proxies\__CG__\App\Entity\User {#3153 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2609 …}
+magazine: App\Entity\Magazine {#305
+icon: null
+name: "datahoarder@lemmy.ml"
+title: "datahoarder"
+description: """
**Who are we?**\n
\n
We are digital librarians. Among us are represented the various reasons to keep data – legal requirements, competitive requirements, uncertainty of permanence of cloud services, distaste for transmitting your data externally (e.g. government or corporate espionage), cultural and familial archivists, internet collapse preppers, and people who do it themselves so they’re sure it’s done right. Everyone has their reasons for curating the data they have decided to keep (either forever or For A Damn Long Time). Along the way we have sought out like-minded individuals to exchange strategies, war stories, and cautionary tales of failures.\n
\n
We are one. We are legion. And we’re trying really hard not to forget.\n
\n
– 5-4-3-2-1-bang from [this thread](https://web.archive.org/web/20221111153119/https://old.reddit.com/r/DataHoarder/comments/41tqt4/hi_guys_can_i_kindly_ask_for_an_eli5_of_this/cz53pi0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 58
+entryCommentCount: 311
+postCount: 1
+postCommentCount: 1
+isAdult: false
+customCss: null
+lastActive: DateTime @1729502222 {#313
date: 2024-10-21 11:17:02.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#293 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#289 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#278 …}
+entries: Doctrine\ORM\PersistentCollection {#236 …}
+posts: Doctrine\ORM\PersistentCollection {#194 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#256 …}
+bans: Doctrine\ORM\PersistentCollection {#173 …}
+reports: Doctrine\ORM\PersistentCollection {#159 …}
+badges: Doctrine\ORM\PersistentCollection {#137 …}
+logs: Doctrine\ORM\PersistentCollection {#127 …}
+awards: Doctrine\ORM\PersistentCollection {#116 …}
+categories: Doctrine\ORM\PersistentCollection {#103 …}
-id: 32
+apId: "datahoarder@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/datahoarder"
+apPublicUrl: "https://lemmy.ml/c/datahoarder"
+apFollowersUrl: "https://lemmy.ml/c/datahoarder/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "datahoarder"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729303437 {#314
date: 2024-10-19 04:03:57.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1695727192 {#308
date: 2023-09-26 13:19:52.0 +02:00
}
}
+image: null
+parent: App\Entity\EntryComment {#2608
+user: App\Entity\User {#2622 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2609 …}
+magazine: App\Entity\Magazine {#305}
+image: null
+parent: null
+root: null
+body: "Why? It sounds like you need it for a project. Why not get it from the source? Like from source audio."
+lang: "en"
+isAdult: false
+favouriteCount: 3
+score: 0
+lastActive: DateTime @1710726233 {#2603
date: 2024-03-18 02:43:53.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Cartoondude135@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#2610 …}
+nested: Doctrine\ORM\PersistentCollection {#2612 …}
+votes: Doctrine\ORM\PersistentCollection {#2614 …}
+reports: Doctrine\ORM\PersistentCollection {#2616 …}
+favourites: Doctrine\ORM\PersistentCollection {#2618 …}
+notifications: Doctrine\ORM\PersistentCollection {#2620 …}
-id: 272384
-bodyTs: "'audio':21 'get':13 'like':4,18 'need':6 'project':10 'sound':3 'sourc':17,20"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.ca/comment/5997211"
+editedAt: null
+createdAt: DateTimeImmutable @1704174443 {#2604
date: 2024-01-02 06:47:23.0 +01:00
}
}
+root: App\Entity\EntryComment {#2608}
+body: "OP said that a lot of those are not on source audio"
+lang: "en"
+isAdult: false
+favouriteCount: 4
+score: 0
+lastActive: DateTime @1704179968 {#3150
date: 2024-01-02 08:19:28.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Cartoondude135@lemmy.world"
"@Vex_Detrause@lemmy.ca"
]
+children: Doctrine\ORM\PersistentCollection {#3154 …}
+nested: Doctrine\ORM\PersistentCollection {#3156 …}
+votes: Doctrine\ORM\PersistentCollection {#3158 …}
+reports: Doctrine\ORM\PersistentCollection {#3160 …}
+favourites: Doctrine\ORM\PersistentCollection {#3162 …}
+notifications: Doctrine\ORM\PersistentCollection {#3164 …}
-id: 272549
-bodyTs: "'audio':12 'lot':5 'op':1 'said':2 'sourc':11"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.world/comment/6346076"
+editedAt: null
+createdAt: DateTimeImmutable @1704179968 {#3151
date: 2024-01-02 08:19:28.0 +01:00
}
} |
|
Show voter details
|
104 |
DENIED
|
moderate
|
App\Entity\EntryComment {#3152
+user: Proxies\__CG__\App\Entity\User {#3153 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2609 …}
+magazine: App\Entity\Magazine {#305
+icon: null
+name: "datahoarder@lemmy.ml"
+title: "datahoarder"
+description: """
**Who are we?**\n
\n
We are digital librarians. Among us are represented the various reasons to keep data – legal requirements, competitive requirements, uncertainty of permanence of cloud services, distaste for transmitting your data externally (e.g. government or corporate espionage), cultural and familial archivists, internet collapse preppers, and people who do it themselves so they’re sure it’s done right. Everyone has their reasons for curating the data they have decided to keep (either forever or For A Damn Long Time). Along the way we have sought out like-minded individuals to exchange strategies, war stories, and cautionary tales of failures.\n
\n
We are one. We are legion. And we’re trying really hard not to forget.\n
\n
– 5-4-3-2-1-bang from [this thread](https://web.archive.org/web/20221111153119/https://old.reddit.com/r/DataHoarder/comments/41tqt4/hi_guys_can_i_kindly_ask_for_an_eli5_of_this/cz53pi0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 58
+entryCommentCount: 311
+postCount: 1
+postCommentCount: 1
+isAdult: false
+customCss: null
+lastActive: DateTime @1729502222 {#313
date: 2024-10-21 11:17:02.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#293 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#289 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#278 …}
+entries: Doctrine\ORM\PersistentCollection {#236 …}
+posts: Doctrine\ORM\PersistentCollection {#194 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#256 …}
+bans: Doctrine\ORM\PersistentCollection {#173 …}
+reports: Doctrine\ORM\PersistentCollection {#159 …}
+badges: Doctrine\ORM\PersistentCollection {#137 …}
+logs: Doctrine\ORM\PersistentCollection {#127 …}
+awards: Doctrine\ORM\PersistentCollection {#116 …}
+categories: Doctrine\ORM\PersistentCollection {#103 …}
-id: 32
+apId: "datahoarder@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/datahoarder"
+apPublicUrl: "https://lemmy.ml/c/datahoarder"
+apFollowersUrl: "https://lemmy.ml/c/datahoarder/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "datahoarder"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729303437 {#314
date: 2024-10-19 04:03:57.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1695727192 {#308
date: 2023-09-26 13:19:52.0 +02:00
}
}
+image: null
+parent: App\Entity\EntryComment {#2608
+user: App\Entity\User {#2622 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2609 …}
+magazine: App\Entity\Magazine {#305}
+image: null
+parent: null
+root: null
+body: "Why? It sounds like you need it for a project. Why not get it from the source? Like from source audio."
+lang: "en"
+isAdult: false
+favouriteCount: 3
+score: 0
+lastActive: DateTime @1710726233 {#2603
date: 2024-03-18 02:43:53.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Cartoondude135@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#2610 …}
+nested: Doctrine\ORM\PersistentCollection {#2612 …}
+votes: Doctrine\ORM\PersistentCollection {#2614 …}
+reports: Doctrine\ORM\PersistentCollection {#2616 …}
+favourites: Doctrine\ORM\PersistentCollection {#2618 …}
+notifications: Doctrine\ORM\PersistentCollection {#2620 …}
-id: 272384
-bodyTs: "'audio':21 'get':13 'like':4,18 'need':6 'project':10 'sound':3 'sourc':17,20"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.ca/comment/5997211"
+editedAt: null
+createdAt: DateTimeImmutable @1704174443 {#2604
date: 2024-01-02 06:47:23.0 +01:00
}
}
+root: App\Entity\EntryComment {#2608}
+body: "OP said that a lot of those are not on source audio"
+lang: "en"
+isAdult: false
+favouriteCount: 4
+score: 0
+lastActive: DateTime @1704179968 {#3150
date: 2024-01-02 08:19:28.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Cartoondude135@lemmy.world"
"@Vex_Detrause@lemmy.ca"
]
+children: Doctrine\ORM\PersistentCollection {#3154 …}
+nested: Doctrine\ORM\PersistentCollection {#3156 …}
+votes: Doctrine\ORM\PersistentCollection {#3158 …}
+reports: Doctrine\ORM\PersistentCollection {#3160 …}
+favourites: Doctrine\ORM\PersistentCollection {#3162 …}
+notifications: Doctrine\ORM\PersistentCollection {#3164 …}
-id: 272549
-bodyTs: "'audio':12 'lot':5 'op':1 'said':2 'sourc':11"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.world/comment/6346076"
+editedAt: null
+createdAt: DateTimeImmutable @1704179968 {#3151
date: 2024-01-02 08:19:28.0 +01:00
}
} |
|
Show voter details
|
105 |
DENIED
|
ROLE_USER
|
null |
|
Show voter details
|
106 |
DENIED
|
moderate
|
App\Entity\EntryComment {#2682
+user: App\Entity\User {#2696 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2683 …}
+magazine: App\Entity\Magazine {#305
+icon: null
+name: "datahoarder@lemmy.ml"
+title: "datahoarder"
+description: """
**Who are we?**\n
\n
We are digital librarians. Among us are represented the various reasons to keep data – legal requirements, competitive requirements, uncertainty of permanence of cloud services, distaste for transmitting your data externally (e.g. government or corporate espionage), cultural and familial archivists, internet collapse preppers, and people who do it themselves so they’re sure it’s done right. Everyone has their reasons for curating the data they have decided to keep (either forever or For A Damn Long Time). Along the way we have sought out like-minded individuals to exchange strategies, war stories, and cautionary tales of failures.\n
\n
We are one. We are legion. And we’re trying really hard not to forget.\n
\n
– 5-4-3-2-1-bang from [this thread](https://web.archive.org/web/20221111153119/https://old.reddit.com/r/DataHoarder/comments/41tqt4/hi_guys_can_i_kindly_ask_for_an_eli5_of_this/cz53pi0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 58
+entryCommentCount: 311
+postCount: 1
+postCommentCount: 1
+isAdult: false
+customCss: null
+lastActive: DateTime @1729502222 {#313
date: 2024-10-21 11:17:02.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#293 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#289 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#278 …}
+entries: Doctrine\ORM\PersistentCollection {#236 …}
+posts: Doctrine\ORM\PersistentCollection {#194 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#256 …}
+bans: Doctrine\ORM\PersistentCollection {#173 …}
+reports: Doctrine\ORM\PersistentCollection {#159 …}
+badges: Doctrine\ORM\PersistentCollection {#137 …}
+logs: Doctrine\ORM\PersistentCollection {#127 …}
+awards: Doctrine\ORM\PersistentCollection {#116 …}
+categories: Doctrine\ORM\PersistentCollection {#103 …}
-id: 32
+apId: "datahoarder@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/datahoarder"
+apPublicUrl: "https://lemmy.ml/c/datahoarder"
+apFollowersUrl: "https://lemmy.ml/c/datahoarder/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "datahoarder"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729303437 {#314
date: 2024-10-19 04:03:57.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1695727192 {#308
date: 2023-09-26 13:19:52.0 +02:00
}
}
+image: null
+parent: null
+root: null
+body: "Run your own instance, subscribe to every community, then backup the db."
+lang: "en"
+isAdult: false
+favouriteCount: 21
+score: 0
+lastActive: DateTime @1707090588 {#2677
date: 2024-02-05 00:49:48.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Deckweiss@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#2684 …}
+nested: Doctrine\ORM\PersistentCollection {#2686 …}
+votes: Doctrine\ORM\PersistentCollection {#2688 …}
+reports: Doctrine\ORM\PersistentCollection {#2690 …}
+favourites: Doctrine\ORM\PersistentCollection {#2692 …}
+notifications: Doctrine\ORM\PersistentCollection {#2694 …}
-id: 246519
-bodyTs: "'backup':10 'communiti':8 'db':12 'everi':7 'instanc':4 'run':1 'subscrib':5"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.ca/comment/5850599"
+editedAt: null
+createdAt: DateTimeImmutable @1703356568 {#2678
date: 2023-12-23 19:36:08.0 +01:00
}
} |
|
Show voter details
|
107 |
DENIED
|
edit
|
App\Entity\EntryComment {#2682
+user: App\Entity\User {#2696 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2683 …}
+magazine: App\Entity\Magazine {#305
+icon: null
+name: "datahoarder@lemmy.ml"
+title: "datahoarder"
+description: """
**Who are we?**\n
\n
We are digital librarians. Among us are represented the various reasons to keep data – legal requirements, competitive requirements, uncertainty of permanence of cloud services, distaste for transmitting your data externally (e.g. government or corporate espionage), cultural and familial archivists, internet collapse preppers, and people who do it themselves so they’re sure it’s done right. Everyone has their reasons for curating the data they have decided to keep (either forever or For A Damn Long Time). Along the way we have sought out like-minded individuals to exchange strategies, war stories, and cautionary tales of failures.\n
\n
We are one. We are legion. And we’re trying really hard not to forget.\n
\n
– 5-4-3-2-1-bang from [this thread](https://web.archive.org/web/20221111153119/https://old.reddit.com/r/DataHoarder/comments/41tqt4/hi_guys_can_i_kindly_ask_for_an_eli5_of_this/cz53pi0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 58
+entryCommentCount: 311
+postCount: 1
+postCommentCount: 1
+isAdult: false
+customCss: null
+lastActive: DateTime @1729502222 {#313
date: 2024-10-21 11:17:02.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#293 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#289 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#278 …}
+entries: Doctrine\ORM\PersistentCollection {#236 …}
+posts: Doctrine\ORM\PersistentCollection {#194 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#256 …}
+bans: Doctrine\ORM\PersistentCollection {#173 …}
+reports: Doctrine\ORM\PersistentCollection {#159 …}
+badges: Doctrine\ORM\PersistentCollection {#137 …}
+logs: Doctrine\ORM\PersistentCollection {#127 …}
+awards: Doctrine\ORM\PersistentCollection {#116 …}
+categories: Doctrine\ORM\PersistentCollection {#103 …}
-id: 32
+apId: "datahoarder@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/datahoarder"
+apPublicUrl: "https://lemmy.ml/c/datahoarder"
+apFollowersUrl: "https://lemmy.ml/c/datahoarder/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "datahoarder"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729303437 {#314
date: 2024-10-19 04:03:57.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1695727192 {#308
date: 2023-09-26 13:19:52.0 +02:00
}
}
+image: null
+parent: null
+root: null
+body: "Run your own instance, subscribe to every community, then backup the db."
+lang: "en"
+isAdult: false
+favouriteCount: 21
+score: 0
+lastActive: DateTime @1707090588 {#2677
date: 2024-02-05 00:49:48.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Deckweiss@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#2684 …}
+nested: Doctrine\ORM\PersistentCollection {#2686 …}
+votes: Doctrine\ORM\PersistentCollection {#2688 …}
+reports: Doctrine\ORM\PersistentCollection {#2690 …}
+favourites: Doctrine\ORM\PersistentCollection {#2692 …}
+notifications: Doctrine\ORM\PersistentCollection {#2694 …}
-id: 246519
-bodyTs: "'backup':10 'communiti':8 'db':12 'everi':7 'instanc':4 'run':1 'subscrib':5"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.ca/comment/5850599"
+editedAt: null
+createdAt: DateTimeImmutable @1703356568 {#2678
date: 2023-12-23 19:36:08.0 +01:00
}
} |
|
Show voter details
|
108 |
DENIED
|
moderate
|
App\Entity\EntryComment {#2682
+user: App\Entity\User {#2696 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2683 …}
+magazine: App\Entity\Magazine {#305
+icon: null
+name: "datahoarder@lemmy.ml"
+title: "datahoarder"
+description: """
**Who are we?**\n
\n
We are digital librarians. Among us are represented the various reasons to keep data – legal requirements, competitive requirements, uncertainty of permanence of cloud services, distaste for transmitting your data externally (e.g. government or corporate espionage), cultural and familial archivists, internet collapse preppers, and people who do it themselves so they’re sure it’s done right. Everyone has their reasons for curating the data they have decided to keep (either forever or For A Damn Long Time). Along the way we have sought out like-minded individuals to exchange strategies, war stories, and cautionary tales of failures.\n
\n
We are one. We are legion. And we’re trying really hard not to forget.\n
\n
– 5-4-3-2-1-bang from [this thread](https://web.archive.org/web/20221111153119/https://old.reddit.com/r/DataHoarder/comments/41tqt4/hi_guys_can_i_kindly_ask_for_an_eli5_of_this/cz53pi0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 58
+entryCommentCount: 311
+postCount: 1
+postCommentCount: 1
+isAdult: false
+customCss: null
+lastActive: DateTime @1729502222 {#313
date: 2024-10-21 11:17:02.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#293 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#289 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#278 …}
+entries: Doctrine\ORM\PersistentCollection {#236 …}
+posts: Doctrine\ORM\PersistentCollection {#194 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#256 …}
+bans: Doctrine\ORM\PersistentCollection {#173 …}
+reports: Doctrine\ORM\PersistentCollection {#159 …}
+badges: Doctrine\ORM\PersistentCollection {#137 …}
+logs: Doctrine\ORM\PersistentCollection {#127 …}
+awards: Doctrine\ORM\PersistentCollection {#116 …}
+categories: Doctrine\ORM\PersistentCollection {#103 …}
-id: 32
+apId: "datahoarder@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/datahoarder"
+apPublicUrl: "https://lemmy.ml/c/datahoarder"
+apFollowersUrl: "https://lemmy.ml/c/datahoarder/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "datahoarder"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729303437 {#314
date: 2024-10-19 04:03:57.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1695727192 {#308
date: 2023-09-26 13:19:52.0 +02:00
}
}
+image: null
+parent: null
+root: null
+body: "Run your own instance, subscribe to every community, then backup the db."
+lang: "en"
+isAdult: false
+favouriteCount: 21
+score: 0
+lastActive: DateTime @1707090588 {#2677
date: 2024-02-05 00:49:48.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Deckweiss@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#2684 …}
+nested: Doctrine\ORM\PersistentCollection {#2686 …}
+votes: Doctrine\ORM\PersistentCollection {#2688 …}
+reports: Doctrine\ORM\PersistentCollection {#2690 …}
+favourites: Doctrine\ORM\PersistentCollection {#2692 …}
+notifications: Doctrine\ORM\PersistentCollection {#2694 …}
-id: 246519
-bodyTs: "'backup':10 'communiti':8 'db':12 'everi':7 'instanc':4 'run':1 'subscrib':5"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.ca/comment/5850599"
+editedAt: null
+createdAt: DateTimeImmutable @1703356568 {#2678
date: 2023-12-23 19:36:08.0 +01:00
}
} |
|
Show voter details
|
109 |
DENIED
|
ROLE_USER
|
null |
|
Show voter details
|
110 |
DENIED
|
moderate
|
App\Entity\EntryComment {#3119
+user: Proxies\__CG__\App\Entity\User {#3120 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2683 …}
+magazine: App\Entity\Magazine {#305
+icon: null
+name: "datahoarder@lemmy.ml"
+title: "datahoarder"
+description: """
**Who are we?**\n
\n
We are digital librarians. Among us are represented the various reasons to keep data – legal requirements, competitive requirements, uncertainty of permanence of cloud services, distaste for transmitting your data externally (e.g. government or corporate espionage), cultural and familial archivists, internet collapse preppers, and people who do it themselves so they’re sure it’s done right. Everyone has their reasons for curating the data they have decided to keep (either forever or For A Damn Long Time). Along the way we have sought out like-minded individuals to exchange strategies, war stories, and cautionary tales of failures.\n
\n
We are one. We are legion. And we’re trying really hard not to forget.\n
\n
– 5-4-3-2-1-bang from [this thread](https://web.archive.org/web/20221111153119/https://old.reddit.com/r/DataHoarder/comments/41tqt4/hi_guys_can_i_kindly_ask_for_an_eli5_of_this/cz53pi0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 58
+entryCommentCount: 311
+postCount: 1
+postCommentCount: 1
+isAdult: false
+customCss: null
+lastActive: DateTime @1729502222 {#313
date: 2024-10-21 11:17:02.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#293 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#289 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#278 …}
+entries: Doctrine\ORM\PersistentCollection {#236 …}
+posts: Doctrine\ORM\PersistentCollection {#194 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#256 …}
+bans: Doctrine\ORM\PersistentCollection {#173 …}
+reports: Doctrine\ORM\PersistentCollection {#159 …}
+badges: Doctrine\ORM\PersistentCollection {#137 …}
+logs: Doctrine\ORM\PersistentCollection {#127 …}
+awards: Doctrine\ORM\PersistentCollection {#116 …}
+categories: Doctrine\ORM\PersistentCollection {#103 …}
-id: 32
+apId: "datahoarder@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/datahoarder"
+apPublicUrl: "https://lemmy.ml/c/datahoarder"
+apFollowersUrl: "https://lemmy.ml/c/datahoarder/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "datahoarder"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729303437 {#314
date: 2024-10-19 04:03:57.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1695727192 {#308
date: 2023-09-26 13:19:52.0 +02:00
}
}
+image: null
+parent: App\Entity\EntryComment {#2682
+user: App\Entity\User {#2696 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2683 …}
+magazine: App\Entity\Magazine {#305}
+image: null
+parent: null
+root: null
+body: "Run your own instance, subscribe to every community, then backup the db."
+lang: "en"
+isAdult: false
+favouriteCount: 21
+score: 0
+lastActive: DateTime @1707090588 {#2677
date: 2024-02-05 00:49:48.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Deckweiss@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#2684 …}
+nested: Doctrine\ORM\PersistentCollection {#2686 …}
+votes: Doctrine\ORM\PersistentCollection {#2688 …}
+reports: Doctrine\ORM\PersistentCollection {#2690 …}
+favourites: Doctrine\ORM\PersistentCollection {#2692 …}
+notifications: Doctrine\ORM\PersistentCollection {#2694 …}
-id: 246519
-bodyTs: "'backup':10 'communiti':8 'db':12 'everi':7 'instanc':4 'run':1 'subscrib':5"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.ca/comment/5850599"
+editedAt: null
+createdAt: DateTimeImmutable @1703356568 {#2678
date: 2023-12-23 19:36:08.0 +01:00
}
}
+root: App\Entity\EntryComment {#2682}
+body: "My Canadian king 😍"
+lang: "en"
+isAdult: false
+favouriteCount: 2
+score: 0
+lastActive: DateTime @1703357035 {#3117
date: 2023-12-23 19:43:55.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Deckweiss@lemmy.world"
"@Shadow@lemmy.ca"
]
+children: Doctrine\ORM\PersistentCollection {#3121 …}
+nested: Doctrine\ORM\PersistentCollection {#3123 …}
+votes: Doctrine\ORM\PersistentCollection {#3125 …}
+reports: Doctrine\ORM\PersistentCollection {#3127 …}
+favourites: Doctrine\ORM\PersistentCollection {#3129 …}
+notifications: Doctrine\ORM\PersistentCollection {#3131 …}
-id: 246531
-bodyTs: "'canadian':2 'king':3"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.ca/comment/5850678"
+editedAt: null
+createdAt: DateTimeImmutable @1703357035 {#3118
date: 2023-12-23 19:43:55.0 +01:00
}
} |
|
Show voter details
|
111 |
DENIED
|
edit
|
App\Entity\EntryComment {#3119
+user: Proxies\__CG__\App\Entity\User {#3120 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2683 …}
+magazine: App\Entity\Magazine {#305
+icon: null
+name: "datahoarder@lemmy.ml"
+title: "datahoarder"
+description: """
**Who are we?**\n
\n
We are digital librarians. Among us are represented the various reasons to keep data – legal requirements, competitive requirements, uncertainty of permanence of cloud services, distaste for transmitting your data externally (e.g. government or corporate espionage), cultural and familial archivists, internet collapse preppers, and people who do it themselves so they’re sure it’s done right. Everyone has their reasons for curating the data they have decided to keep (either forever or For A Damn Long Time). Along the way we have sought out like-minded individuals to exchange strategies, war stories, and cautionary tales of failures.\n
\n
We are one. We are legion. And we’re trying really hard not to forget.\n
\n
– 5-4-3-2-1-bang from [this thread](https://web.archive.org/web/20221111153119/https://old.reddit.com/r/DataHoarder/comments/41tqt4/hi_guys_can_i_kindly_ask_for_an_eli5_of_this/cz53pi0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 58
+entryCommentCount: 311
+postCount: 1
+postCommentCount: 1
+isAdult: false
+customCss: null
+lastActive: DateTime @1729502222 {#313
date: 2024-10-21 11:17:02.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#293 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#289 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#278 …}
+entries: Doctrine\ORM\PersistentCollection {#236 …}
+posts: Doctrine\ORM\PersistentCollection {#194 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#256 …}
+bans: Doctrine\ORM\PersistentCollection {#173 …}
+reports: Doctrine\ORM\PersistentCollection {#159 …}
+badges: Doctrine\ORM\PersistentCollection {#137 …}
+logs: Doctrine\ORM\PersistentCollection {#127 …}
+awards: Doctrine\ORM\PersistentCollection {#116 …}
+categories: Doctrine\ORM\PersistentCollection {#103 …}
-id: 32
+apId: "datahoarder@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/datahoarder"
+apPublicUrl: "https://lemmy.ml/c/datahoarder"
+apFollowersUrl: "https://lemmy.ml/c/datahoarder/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "datahoarder"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729303437 {#314
date: 2024-10-19 04:03:57.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1695727192 {#308
date: 2023-09-26 13:19:52.0 +02:00
}
}
+image: null
+parent: App\Entity\EntryComment {#2682
+user: App\Entity\User {#2696 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2683 …}
+magazine: App\Entity\Magazine {#305}
+image: null
+parent: null
+root: null
+body: "Run your own instance, subscribe to every community, then backup the db."
+lang: "en"
+isAdult: false
+favouriteCount: 21
+score: 0
+lastActive: DateTime @1707090588 {#2677
date: 2024-02-05 00:49:48.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Deckweiss@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#2684 …}
+nested: Doctrine\ORM\PersistentCollection {#2686 …}
+votes: Doctrine\ORM\PersistentCollection {#2688 …}
+reports: Doctrine\ORM\PersistentCollection {#2690 …}
+favourites: Doctrine\ORM\PersistentCollection {#2692 …}
+notifications: Doctrine\ORM\PersistentCollection {#2694 …}
-id: 246519
-bodyTs: "'backup':10 'communiti':8 'db':12 'everi':7 'instanc':4 'run':1 'subscrib':5"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.ca/comment/5850599"
+editedAt: null
+createdAt: DateTimeImmutable @1703356568 {#2678
date: 2023-12-23 19:36:08.0 +01:00
}
}
+root: App\Entity\EntryComment {#2682}
+body: "My Canadian king 😍"
+lang: "en"
+isAdult: false
+favouriteCount: 2
+score: 0
+lastActive: DateTime @1703357035 {#3117
date: 2023-12-23 19:43:55.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Deckweiss@lemmy.world"
"@Shadow@lemmy.ca"
]
+children: Doctrine\ORM\PersistentCollection {#3121 …}
+nested: Doctrine\ORM\PersistentCollection {#3123 …}
+votes: Doctrine\ORM\PersistentCollection {#3125 …}
+reports: Doctrine\ORM\PersistentCollection {#3127 …}
+favourites: Doctrine\ORM\PersistentCollection {#3129 …}
+notifications: Doctrine\ORM\PersistentCollection {#3131 …}
-id: 246531
-bodyTs: "'canadian':2 'king':3"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.ca/comment/5850678"
+editedAt: null
+createdAt: DateTimeImmutable @1703357035 {#3118
date: 2023-12-23 19:43:55.0 +01:00
}
} |
|
Show voter details
|
112 |
DENIED
|
moderate
|
App\Entity\EntryComment {#3119
+user: Proxies\__CG__\App\Entity\User {#3120 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2683 …}
+magazine: App\Entity\Magazine {#305
+icon: null
+name: "datahoarder@lemmy.ml"
+title: "datahoarder"
+description: """
**Who are we?**\n
\n
We are digital librarians. Among us are represented the various reasons to keep data – legal requirements, competitive requirements, uncertainty of permanence of cloud services, distaste for transmitting your data externally (e.g. government or corporate espionage), cultural and familial archivists, internet collapse preppers, and people who do it themselves so they’re sure it’s done right. Everyone has their reasons for curating the data they have decided to keep (either forever or For A Damn Long Time). Along the way we have sought out like-minded individuals to exchange strategies, war stories, and cautionary tales of failures.\n
\n
We are one. We are legion. And we’re trying really hard not to forget.\n
\n
– 5-4-3-2-1-bang from [this thread](https://web.archive.org/web/20221111153119/https://old.reddit.com/r/DataHoarder/comments/41tqt4/hi_guys_can_i_kindly_ask_for_an_eli5_of_this/cz53pi0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 58
+entryCommentCount: 311
+postCount: 1
+postCommentCount: 1
+isAdult: false
+customCss: null
+lastActive: DateTime @1729502222 {#313
date: 2024-10-21 11:17:02.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#293 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#289 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#278 …}
+entries: Doctrine\ORM\PersistentCollection {#236 …}
+posts: Doctrine\ORM\PersistentCollection {#194 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#256 …}
+bans: Doctrine\ORM\PersistentCollection {#173 …}
+reports: Doctrine\ORM\PersistentCollection {#159 …}
+badges: Doctrine\ORM\PersistentCollection {#137 …}
+logs: Doctrine\ORM\PersistentCollection {#127 …}
+awards: Doctrine\ORM\PersistentCollection {#116 …}
+categories: Doctrine\ORM\PersistentCollection {#103 …}
-id: 32
+apId: "datahoarder@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/datahoarder"
+apPublicUrl: "https://lemmy.ml/c/datahoarder"
+apFollowersUrl: "https://lemmy.ml/c/datahoarder/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "datahoarder"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729303437 {#314
date: 2024-10-19 04:03:57.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1695727192 {#308
date: 2023-09-26 13:19:52.0 +02:00
}
}
+image: null
+parent: App\Entity\EntryComment {#2682
+user: App\Entity\User {#2696 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2683 …}
+magazine: App\Entity\Magazine {#305}
+image: null
+parent: null
+root: null
+body: "Run your own instance, subscribe to every community, then backup the db."
+lang: "en"
+isAdult: false
+favouriteCount: 21
+score: 0
+lastActive: DateTime @1707090588 {#2677
date: 2024-02-05 00:49:48.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Deckweiss@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#2684 …}
+nested: Doctrine\ORM\PersistentCollection {#2686 …}
+votes: Doctrine\ORM\PersistentCollection {#2688 …}
+reports: Doctrine\ORM\PersistentCollection {#2690 …}
+favourites: Doctrine\ORM\PersistentCollection {#2692 …}
+notifications: Doctrine\ORM\PersistentCollection {#2694 …}
-id: 246519
-bodyTs: "'backup':10 'communiti':8 'db':12 'everi':7 'instanc':4 'run':1 'subscrib':5"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.ca/comment/5850599"
+editedAt: null
+createdAt: DateTimeImmutable @1703356568 {#2678
date: 2023-12-23 19:36:08.0 +01:00
}
}
+root: App\Entity\EntryComment {#2682}
+body: "My Canadian king 😍"
+lang: "en"
+isAdult: false
+favouriteCount: 2
+score: 0
+lastActive: DateTime @1703357035 {#3117
date: 2023-12-23 19:43:55.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Deckweiss@lemmy.world"
"@Shadow@lemmy.ca"
]
+children: Doctrine\ORM\PersistentCollection {#3121 …}
+nested: Doctrine\ORM\PersistentCollection {#3123 …}
+votes: Doctrine\ORM\PersistentCollection {#3125 …}
+reports: Doctrine\ORM\PersistentCollection {#3127 …}
+favourites: Doctrine\ORM\PersistentCollection {#3129 …}
+notifications: Doctrine\ORM\PersistentCollection {#3131 …}
-id: 246531
-bodyTs: "'canadian':2 'king':3"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.ca/comment/5850678"
+editedAt: null
+createdAt: DateTimeImmutable @1703357035 {#3118
date: 2023-12-23 19:43:55.0 +01:00
}
} |
|
Show voter details
|
113 |
DENIED
|
ROLE_USER
|
null |
|
Show voter details
|
114 |
DENIED
|
moderate
|
App\Entity\EntryComment {#3136
+user: Proxies\__CG__\App\Entity\User {#3137 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2683 …}
+magazine: App\Entity\Magazine {#305
+icon: null
+name: "datahoarder@lemmy.ml"
+title: "datahoarder"
+description: """
**Who are we?**\n
\n
We are digital librarians. Among us are represented the various reasons to keep data – legal requirements, competitive requirements, uncertainty of permanence of cloud services, distaste for transmitting your data externally (e.g. government or corporate espionage), cultural and familial archivists, internet collapse preppers, and people who do it themselves so they’re sure it’s done right. Everyone has their reasons for curating the data they have decided to keep (either forever or For A Damn Long Time). Along the way we have sought out like-minded individuals to exchange strategies, war stories, and cautionary tales of failures.\n
\n
We are one. We are legion. And we’re trying really hard not to forget.\n
\n
– 5-4-3-2-1-bang from [this thread](https://web.archive.org/web/20221111153119/https://old.reddit.com/r/DataHoarder/comments/41tqt4/hi_guys_can_i_kindly_ask_for_an_eli5_of_this/cz53pi0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 58
+entryCommentCount: 311
+postCount: 1
+postCommentCount: 1
+isAdult: false
+customCss: null
+lastActive: DateTime @1729502222 {#313
date: 2024-10-21 11:17:02.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#293 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#289 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#278 …}
+entries: Doctrine\ORM\PersistentCollection {#236 …}
+posts: Doctrine\ORM\PersistentCollection {#194 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#256 …}
+bans: Doctrine\ORM\PersistentCollection {#173 …}
+reports: Doctrine\ORM\PersistentCollection {#159 …}
+badges: Doctrine\ORM\PersistentCollection {#137 …}
+logs: Doctrine\ORM\PersistentCollection {#127 …}
+awards: Doctrine\ORM\PersistentCollection {#116 …}
+categories: Doctrine\ORM\PersistentCollection {#103 …}
-id: 32
+apId: "datahoarder@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/datahoarder"
+apPublicUrl: "https://lemmy.ml/c/datahoarder"
+apFollowersUrl: "https://lemmy.ml/c/datahoarder/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "datahoarder"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729303437 {#314
date: 2024-10-19 04:03:57.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1695727192 {#308
date: 2023-09-26 13:19:52.0 +02:00
}
}
+image: null
+parent: App\Entity\EntryComment {#2682
+user: App\Entity\User {#2696 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2683 …}
+magazine: App\Entity\Magazine {#305}
+image: null
+parent: null
+root: null
+body: "Run your own instance, subscribe to every community, then backup the db."
+lang: "en"
+isAdult: false
+favouriteCount: 21
+score: 0
+lastActive: DateTime @1707090588 {#2677
date: 2024-02-05 00:49:48.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Deckweiss@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#2684 …}
+nested: Doctrine\ORM\PersistentCollection {#2686 …}
+votes: Doctrine\ORM\PersistentCollection {#2688 …}
+reports: Doctrine\ORM\PersistentCollection {#2690 …}
+favourites: Doctrine\ORM\PersistentCollection {#2692 …}
+notifications: Doctrine\ORM\PersistentCollection {#2694 …}
-id: 246519
-bodyTs: "'backup':10 'communiti':8 'db':12 'everi':7 'instanc':4 'run':1 'subscrib':5"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.ca/comment/5850599"
+editedAt: null
+createdAt: DateTimeImmutable @1703356568 {#2678
date: 2023-12-23 19:36:08.0 +01:00
}
}
+root: App\Entity\EntryComment {#2682}
+body: """
As far as I have searched, I didn’t find a way to find “every” instance. Most of the popular ones - yes, but far from all.\n
\n
Also I did not know that each instance copies all pf the data of all other instances into their own db.\n
\n
But thanks, I will try it out next year.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 6
+score: 0
+lastActive: DateTime @1703361022 {#3133
date: 2023-12-23 20:50:22.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Deckweiss@lemmy.world"
"@Shadow@lemmy.ca"
]
+children: Doctrine\ORM\PersistentCollection {#3138 …}
+nested: Doctrine\ORM\PersistentCollection {#3140 …}
+votes: Doctrine\ORM\PersistentCollection {#3142 …}
+reports: Doctrine\ORM\PersistentCollection {#3144 …}
+favourites: Doctrine\ORM\PersistentCollection {#3146 …}
+notifications: Doctrine\ORM\PersistentCollection {#3148 …}
-id: 246751
-bodyTs: "'also':27 'copi':35 'data':39 'db':47 'didn':8 'everi':15 'far':2,24 'find':10,14 'instanc':16,34,43 'know':31 'next':55 'one':21 'pf':37 'popular':20 'search':6 'thank':49 'tri':52 'way':12 'year':56 'yes':22"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.world/comment/6210988"
+editedAt: DateTimeImmutable @1707059396 {#3134
date: 2024-02-04 16:09:56.0 +01:00
}
+createdAt: DateTimeImmutable @1703361022 {#3135
date: 2023-12-23 20:50:22.0 +01:00
}
} |
|
Show voter details
|
115 |
DENIED
|
edit
|
App\Entity\EntryComment {#3136
+user: Proxies\__CG__\App\Entity\User {#3137 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2683 …}
+magazine: App\Entity\Magazine {#305
+icon: null
+name: "datahoarder@lemmy.ml"
+title: "datahoarder"
+description: """
**Who are we?**\n
\n
We are digital librarians. Among us are represented the various reasons to keep data – legal requirements, competitive requirements, uncertainty of permanence of cloud services, distaste for transmitting your data externally (e.g. government or corporate espionage), cultural and familial archivists, internet collapse preppers, and people who do it themselves so they’re sure it’s done right. Everyone has their reasons for curating the data they have decided to keep (either forever or For A Damn Long Time). Along the way we have sought out like-minded individuals to exchange strategies, war stories, and cautionary tales of failures.\n
\n
We are one. We are legion. And we’re trying really hard not to forget.\n
\n
– 5-4-3-2-1-bang from [this thread](https://web.archive.org/web/20221111153119/https://old.reddit.com/r/DataHoarder/comments/41tqt4/hi_guys_can_i_kindly_ask_for_an_eli5_of_this/cz53pi0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 58
+entryCommentCount: 311
+postCount: 1
+postCommentCount: 1
+isAdult: false
+customCss: null
+lastActive: DateTime @1729502222 {#313
date: 2024-10-21 11:17:02.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#293 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#289 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#278 …}
+entries: Doctrine\ORM\PersistentCollection {#236 …}
+posts: Doctrine\ORM\PersistentCollection {#194 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#256 …}
+bans: Doctrine\ORM\PersistentCollection {#173 …}
+reports: Doctrine\ORM\PersistentCollection {#159 …}
+badges: Doctrine\ORM\PersistentCollection {#137 …}
+logs: Doctrine\ORM\PersistentCollection {#127 …}
+awards: Doctrine\ORM\PersistentCollection {#116 …}
+categories: Doctrine\ORM\PersistentCollection {#103 …}
-id: 32
+apId: "datahoarder@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/datahoarder"
+apPublicUrl: "https://lemmy.ml/c/datahoarder"
+apFollowersUrl: "https://lemmy.ml/c/datahoarder/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "datahoarder"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729303437 {#314
date: 2024-10-19 04:03:57.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1695727192 {#308
date: 2023-09-26 13:19:52.0 +02:00
}
}
+image: null
+parent: App\Entity\EntryComment {#2682
+user: App\Entity\User {#2696 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2683 …}
+magazine: App\Entity\Magazine {#305}
+image: null
+parent: null
+root: null
+body: "Run your own instance, subscribe to every community, then backup the db."
+lang: "en"
+isAdult: false
+favouriteCount: 21
+score: 0
+lastActive: DateTime @1707090588 {#2677
date: 2024-02-05 00:49:48.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Deckweiss@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#2684 …}
+nested: Doctrine\ORM\PersistentCollection {#2686 …}
+votes: Doctrine\ORM\PersistentCollection {#2688 …}
+reports: Doctrine\ORM\PersistentCollection {#2690 …}
+favourites: Doctrine\ORM\PersistentCollection {#2692 …}
+notifications: Doctrine\ORM\PersistentCollection {#2694 …}
-id: 246519
-bodyTs: "'backup':10 'communiti':8 'db':12 'everi':7 'instanc':4 'run':1 'subscrib':5"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.ca/comment/5850599"
+editedAt: null
+createdAt: DateTimeImmutable @1703356568 {#2678
date: 2023-12-23 19:36:08.0 +01:00
}
}
+root: App\Entity\EntryComment {#2682}
+body: """
As far as I have searched, I didn’t find a way to find “every” instance. Most of the popular ones - yes, but far from all.\n
\n
Also I did not know that each instance copies all pf the data of all other instances into their own db.\n
\n
But thanks, I will try it out next year.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 6
+score: 0
+lastActive: DateTime @1703361022 {#3133
date: 2023-12-23 20:50:22.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Deckweiss@lemmy.world"
"@Shadow@lemmy.ca"
]
+children: Doctrine\ORM\PersistentCollection {#3138 …}
+nested: Doctrine\ORM\PersistentCollection {#3140 …}
+votes: Doctrine\ORM\PersistentCollection {#3142 …}
+reports: Doctrine\ORM\PersistentCollection {#3144 …}
+favourites: Doctrine\ORM\PersistentCollection {#3146 …}
+notifications: Doctrine\ORM\PersistentCollection {#3148 …}
-id: 246751
-bodyTs: "'also':27 'copi':35 'data':39 'db':47 'didn':8 'everi':15 'far':2,24 'find':10,14 'instanc':16,34,43 'know':31 'next':55 'one':21 'pf':37 'popular':20 'search':6 'thank':49 'tri':52 'way':12 'year':56 'yes':22"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.world/comment/6210988"
+editedAt: DateTimeImmutable @1707059396 {#3134
date: 2024-02-04 16:09:56.0 +01:00
}
+createdAt: DateTimeImmutable @1703361022 {#3135
date: 2023-12-23 20:50:22.0 +01:00
}
} |
|
Show voter details
|
116 |
DENIED
|
moderate
|
App\Entity\EntryComment {#3136
+user: Proxies\__CG__\App\Entity\User {#3137 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2683 …}
+magazine: App\Entity\Magazine {#305
+icon: null
+name: "datahoarder@lemmy.ml"
+title: "datahoarder"
+description: """
**Who are we?**\n
\n
We are digital librarians. Among us are represented the various reasons to keep data – legal requirements, competitive requirements, uncertainty of permanence of cloud services, distaste for transmitting your data externally (e.g. government or corporate espionage), cultural and familial archivists, internet collapse preppers, and people who do it themselves so they’re sure it’s done right. Everyone has their reasons for curating the data they have decided to keep (either forever or For A Damn Long Time). Along the way we have sought out like-minded individuals to exchange strategies, war stories, and cautionary tales of failures.\n
\n
We are one. We are legion. And we’re trying really hard not to forget.\n
\n
– 5-4-3-2-1-bang from [this thread](https://web.archive.org/web/20221111153119/https://old.reddit.com/r/DataHoarder/comments/41tqt4/hi_guys_can_i_kindly_ask_for_an_eli5_of_this/cz53pi0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 58
+entryCommentCount: 311
+postCount: 1
+postCommentCount: 1
+isAdult: false
+customCss: null
+lastActive: DateTime @1729502222 {#313
date: 2024-10-21 11:17:02.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#293 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#289 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#278 …}
+entries: Doctrine\ORM\PersistentCollection {#236 …}
+posts: Doctrine\ORM\PersistentCollection {#194 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#256 …}
+bans: Doctrine\ORM\PersistentCollection {#173 …}
+reports: Doctrine\ORM\PersistentCollection {#159 …}
+badges: Doctrine\ORM\PersistentCollection {#137 …}
+logs: Doctrine\ORM\PersistentCollection {#127 …}
+awards: Doctrine\ORM\PersistentCollection {#116 …}
+categories: Doctrine\ORM\PersistentCollection {#103 …}
-id: 32
+apId: "datahoarder@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/datahoarder"
+apPublicUrl: "https://lemmy.ml/c/datahoarder"
+apFollowersUrl: "https://lemmy.ml/c/datahoarder/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "datahoarder"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729303437 {#314
date: 2024-10-19 04:03:57.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1695727192 {#308
date: 2023-09-26 13:19:52.0 +02:00
}
}
+image: null
+parent: App\Entity\EntryComment {#2682
+user: App\Entity\User {#2696 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2683 …}
+magazine: App\Entity\Magazine {#305}
+image: null
+parent: null
+root: null
+body: "Run your own instance, subscribe to every community, then backup the db."
+lang: "en"
+isAdult: false
+favouriteCount: 21
+score: 0
+lastActive: DateTime @1707090588 {#2677
date: 2024-02-05 00:49:48.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Deckweiss@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#2684 …}
+nested: Doctrine\ORM\PersistentCollection {#2686 …}
+votes: Doctrine\ORM\PersistentCollection {#2688 …}
+reports: Doctrine\ORM\PersistentCollection {#2690 …}
+favourites: Doctrine\ORM\PersistentCollection {#2692 …}
+notifications: Doctrine\ORM\PersistentCollection {#2694 …}
-id: 246519
-bodyTs: "'backup':10 'communiti':8 'db':12 'everi':7 'instanc':4 'run':1 'subscrib':5"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.ca/comment/5850599"
+editedAt: null
+createdAt: DateTimeImmutable @1703356568 {#2678
date: 2023-12-23 19:36:08.0 +01:00
}
}
+root: App\Entity\EntryComment {#2682}
+body: """
As far as I have searched, I didn’t find a way to find “every” instance. Most of the popular ones - yes, but far from all.\n
\n
Also I did not know that each instance copies all pf the data of all other instances into their own db.\n
\n
But thanks, I will try it out next year.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 6
+score: 0
+lastActive: DateTime @1703361022 {#3133
date: 2023-12-23 20:50:22.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Deckweiss@lemmy.world"
"@Shadow@lemmy.ca"
]
+children: Doctrine\ORM\PersistentCollection {#3138 …}
+nested: Doctrine\ORM\PersistentCollection {#3140 …}
+votes: Doctrine\ORM\PersistentCollection {#3142 …}
+reports: Doctrine\ORM\PersistentCollection {#3144 …}
+favourites: Doctrine\ORM\PersistentCollection {#3146 …}
+notifications: Doctrine\ORM\PersistentCollection {#3148 …}
-id: 246751
-bodyTs: "'also':27 'copi':35 'data':39 'db':47 'didn':8 'everi':15 'far':2,24 'find':10,14 'instanc':16,34,43 'know':31 'next':55 'one':21 'pf':37 'popular':20 'search':6 'thank':49 'tri':52 'way':12 'year':56 'yes':22"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.world/comment/6210988"
+editedAt: DateTimeImmutable @1707059396 {#3134
date: 2024-02-04 16:09:56.0 +01:00
}
+createdAt: DateTimeImmutable @1703361022 {#3135
date: 2023-12-23 20:50:22.0 +01:00
}
} |
|
Show voter details
|
117 |
DENIED
|
ROLE_USER
|
null |
|
Show voter details
|
118 |
DENIED
|
moderate
|
App\Entity\EntryComment {#3313
+user: Proxies\__CG__\App\Entity\User {#3314 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2683 …}
+magazine: App\Entity\Magazine {#305
+icon: null
+name: "datahoarder@lemmy.ml"
+title: "datahoarder"
+description: """
**Who are we?**\n
\n
We are digital librarians. Among us are represented the various reasons to keep data – legal requirements, competitive requirements, uncertainty of permanence of cloud services, distaste for transmitting your data externally (e.g. government or corporate espionage), cultural and familial archivists, internet collapse preppers, and people who do it themselves so they’re sure it’s done right. Everyone has their reasons for curating the data they have decided to keep (either forever or For A Damn Long Time). Along the way we have sought out like-minded individuals to exchange strategies, war stories, and cautionary tales of failures.\n
\n
We are one. We are legion. And we’re trying really hard not to forget.\n
\n
– 5-4-3-2-1-bang from [this thread](https://web.archive.org/web/20221111153119/https://old.reddit.com/r/DataHoarder/comments/41tqt4/hi_guys_can_i_kindly_ask_for_an_eli5_of_this/cz53pi0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 58
+entryCommentCount: 311
+postCount: 1
+postCommentCount: 1
+isAdult: false
+customCss: null
+lastActive: DateTime @1729502222 {#313
date: 2024-10-21 11:17:02.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#293 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#289 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#278 …}
+entries: Doctrine\ORM\PersistentCollection {#236 …}
+posts: Doctrine\ORM\PersistentCollection {#194 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#256 …}
+bans: Doctrine\ORM\PersistentCollection {#173 …}
+reports: Doctrine\ORM\PersistentCollection {#159 …}
+badges: Doctrine\ORM\PersistentCollection {#137 …}
+logs: Doctrine\ORM\PersistentCollection {#127 …}
+awards: Doctrine\ORM\PersistentCollection {#116 …}
+categories: Doctrine\ORM\PersistentCollection {#103 …}
-id: 32
+apId: "datahoarder@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/datahoarder"
+apPublicUrl: "https://lemmy.ml/c/datahoarder"
+apFollowersUrl: "https://lemmy.ml/c/datahoarder/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "datahoarder"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729303437 {#314
date: 2024-10-19 04:03:57.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1695727192 {#308
date: 2023-09-26 13:19:52.0 +02:00
}
}
+image: null
+parent: App\Entity\EntryComment {#3136
+user: Proxies\__CG__\App\Entity\User {#3137 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2683 …}
+magazine: App\Entity\Magazine {#305}
+image: null
+parent: App\Entity\EntryComment {#2682
+user: App\Entity\User {#2696 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2683 …}
+magazine: App\Entity\Magazine {#305}
+image: null
+parent: null
+root: null
+body: "Run your own instance, subscribe to every community, then backup the db."
+lang: "en"
+isAdult: false
+favouriteCount: 21
+score: 0
+lastActive: DateTime @1707090588 {#2677
date: 2024-02-05 00:49:48.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Deckweiss@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#2684 …}
+nested: Doctrine\ORM\PersistentCollection {#2686 …}
+votes: Doctrine\ORM\PersistentCollection {#2688 …}
+reports: Doctrine\ORM\PersistentCollection {#2690 …}
+favourites: Doctrine\ORM\PersistentCollection {#2692 …}
+notifications: Doctrine\ORM\PersistentCollection {#2694 …}
-id: 246519
-bodyTs: "'backup':10 'communiti':8 'db':12 'everi':7 'instanc':4 'run':1 'subscrib':5"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.ca/comment/5850599"
+editedAt: null
+createdAt: DateTimeImmutable @1703356568 {#2678
date: 2023-12-23 19:36:08.0 +01:00
}
}
+root: App\Entity\EntryComment {#2682}
+body: """
As far as I have searched, I didn’t find a way to find “every” instance. Most of the popular ones - yes, but far from all.\n
\n
Also I did not know that each instance copies all pf the data of all other instances into their own db.\n
\n
But thanks, I will try it out next year.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 6
+score: 0
+lastActive: DateTime @1703361022 {#3133
date: 2023-12-23 20:50:22.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Deckweiss@lemmy.world"
"@Shadow@lemmy.ca"
]
+children: Doctrine\ORM\PersistentCollection {#3138 …}
+nested: Doctrine\ORM\PersistentCollection {#3140 …}
+votes: Doctrine\ORM\PersistentCollection {#3142 …}
+reports: Doctrine\ORM\PersistentCollection {#3144 …}
+favourites: Doctrine\ORM\PersistentCollection {#3146 …}
+notifications: Doctrine\ORM\PersistentCollection {#3148 …}
-id: 246751
-bodyTs: "'also':27 'copi':35 'data':39 'db':47 'didn':8 'everi':15 'far':2,24 'find':10,14 'instanc':16,34,43 'know':31 'next':55 'one':21 'pf':37 'popular':20 'search':6 'thank':49 'tri':52 'way':12 'year':56 'yes':22"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.world/comment/6210988"
+editedAt: DateTimeImmutable @1707059396 {#3134
date: 2024-02-04 16:09:56.0 +01:00
}
+createdAt: DateTimeImmutable @1703361022 {#3135
date: 2023-12-23 20:50:22.0 +01:00
}
}
+root: App\Entity\EntryComment {#2682}
+body: "There’s no authoritative list of instances since federation isn’t required, but tools like lemmyverse.net will give you a solid list of the ones discoverable from the most well known federations."
+lang: "en"
+isAdult: false
+favouriteCount: 9
+score: 0
+lastActive: DateTime @1703364438 {#3311
date: 2023-12-23 21:47:18.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Deckweiss@lemmy.world"
"@Shadow@lemmy.ca"
]
+children: Doctrine\ORM\PersistentCollection {#3315 …}
+nested: Doctrine\ORM\PersistentCollection {#3317 …}
+votes: Doctrine\ORM\PersistentCollection {#3319 …}
+reports: Doctrine\ORM\PersistentCollection {#3321 …}
+favourites: Doctrine\ORM\PersistentCollection {#3323 …}
+notifications: Doctrine\ORM\PersistentCollection {#3325 …}
-id: 246863
-bodyTs: "'authorit':4 'discover':26 'feder':9,32 'give':18 'instanc':7 'isn':10 'known':31 'lemmyverse.net':16 'like':15 'list':5,22 'one':25 'requir':12 'sinc':8 'solid':21 'tool':14 'well':30"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.stuart.fun/comment/2994776"
+editedAt: null
+createdAt: DateTimeImmutable @1703364438 {#3312
date: 2023-12-23 21:47:18.0 +01:00
}
} |
|
Show voter details
|
119 |
DENIED
|
edit
|
App\Entity\EntryComment {#3313
+user: Proxies\__CG__\App\Entity\User {#3314 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2683 …}
+magazine: App\Entity\Magazine {#305
+icon: null
+name: "datahoarder@lemmy.ml"
+title: "datahoarder"
+description: """
**Who are we?**\n
\n
We are digital librarians. Among us are represented the various reasons to keep data – legal requirements, competitive requirements, uncertainty of permanence of cloud services, distaste for transmitting your data externally (e.g. government or corporate espionage), cultural and familial archivists, internet collapse preppers, and people who do it themselves so they’re sure it’s done right. Everyone has their reasons for curating the data they have decided to keep (either forever or For A Damn Long Time). Along the way we have sought out like-minded individuals to exchange strategies, war stories, and cautionary tales of failures.\n
\n
We are one. We are legion. And we’re trying really hard not to forget.\n
\n
– 5-4-3-2-1-bang from [this thread](https://web.archive.org/web/20221111153119/https://old.reddit.com/r/DataHoarder/comments/41tqt4/hi_guys_can_i_kindly_ask_for_an_eli5_of_this/cz53pi0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 58
+entryCommentCount: 311
+postCount: 1
+postCommentCount: 1
+isAdult: false
+customCss: null
+lastActive: DateTime @1729502222 {#313
date: 2024-10-21 11:17:02.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#293 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#289 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#278 …}
+entries: Doctrine\ORM\PersistentCollection {#236 …}
+posts: Doctrine\ORM\PersistentCollection {#194 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#256 …}
+bans: Doctrine\ORM\PersistentCollection {#173 …}
+reports: Doctrine\ORM\PersistentCollection {#159 …}
+badges: Doctrine\ORM\PersistentCollection {#137 …}
+logs: Doctrine\ORM\PersistentCollection {#127 …}
+awards: Doctrine\ORM\PersistentCollection {#116 …}
+categories: Doctrine\ORM\PersistentCollection {#103 …}
-id: 32
+apId: "datahoarder@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/datahoarder"
+apPublicUrl: "https://lemmy.ml/c/datahoarder"
+apFollowersUrl: "https://lemmy.ml/c/datahoarder/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "datahoarder"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729303437 {#314
date: 2024-10-19 04:03:57.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1695727192 {#308
date: 2023-09-26 13:19:52.0 +02:00
}
}
+image: null
+parent: App\Entity\EntryComment {#3136
+user: Proxies\__CG__\App\Entity\User {#3137 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2683 …}
+magazine: App\Entity\Magazine {#305}
+image: null
+parent: App\Entity\EntryComment {#2682
+user: App\Entity\User {#2696 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2683 …}
+magazine: App\Entity\Magazine {#305}
+image: null
+parent: null
+root: null
+body: "Run your own instance, subscribe to every community, then backup the db."
+lang: "en"
+isAdult: false
+favouriteCount: 21
+score: 0
+lastActive: DateTime @1707090588 {#2677
date: 2024-02-05 00:49:48.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Deckweiss@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#2684 …}
+nested: Doctrine\ORM\PersistentCollection {#2686 …}
+votes: Doctrine\ORM\PersistentCollection {#2688 …}
+reports: Doctrine\ORM\PersistentCollection {#2690 …}
+favourites: Doctrine\ORM\PersistentCollection {#2692 …}
+notifications: Doctrine\ORM\PersistentCollection {#2694 …}
-id: 246519
-bodyTs: "'backup':10 'communiti':8 'db':12 'everi':7 'instanc':4 'run':1 'subscrib':5"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.ca/comment/5850599"
+editedAt: null
+createdAt: DateTimeImmutable @1703356568 {#2678
date: 2023-12-23 19:36:08.0 +01:00
}
}
+root: App\Entity\EntryComment {#2682}
+body: """
As far as I have searched, I didn’t find a way to find “every” instance. Most of the popular ones - yes, but far from all.\n
\n
Also I did not know that each instance copies all pf the data of all other instances into their own db.\n
\n
But thanks, I will try it out next year.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 6
+score: 0
+lastActive: DateTime @1703361022 {#3133
date: 2023-12-23 20:50:22.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Deckweiss@lemmy.world"
"@Shadow@lemmy.ca"
]
+children: Doctrine\ORM\PersistentCollection {#3138 …}
+nested: Doctrine\ORM\PersistentCollection {#3140 …}
+votes: Doctrine\ORM\PersistentCollection {#3142 …}
+reports: Doctrine\ORM\PersistentCollection {#3144 …}
+favourites: Doctrine\ORM\PersistentCollection {#3146 …}
+notifications: Doctrine\ORM\PersistentCollection {#3148 …}
-id: 246751
-bodyTs: "'also':27 'copi':35 'data':39 'db':47 'didn':8 'everi':15 'far':2,24 'find':10,14 'instanc':16,34,43 'know':31 'next':55 'one':21 'pf':37 'popular':20 'search':6 'thank':49 'tri':52 'way':12 'year':56 'yes':22"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.world/comment/6210988"
+editedAt: DateTimeImmutable @1707059396 {#3134
date: 2024-02-04 16:09:56.0 +01:00
}
+createdAt: DateTimeImmutable @1703361022 {#3135
date: 2023-12-23 20:50:22.0 +01:00
}
}
+root: App\Entity\EntryComment {#2682}
+body: "There’s no authoritative list of instances since federation isn’t required, but tools like lemmyverse.net will give you a solid list of the ones discoverable from the most well known federations."
+lang: "en"
+isAdult: false
+favouriteCount: 9
+score: 0
+lastActive: DateTime @1703364438 {#3311
date: 2023-12-23 21:47:18.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Deckweiss@lemmy.world"
"@Shadow@lemmy.ca"
]
+children: Doctrine\ORM\PersistentCollection {#3315 …}
+nested: Doctrine\ORM\PersistentCollection {#3317 …}
+votes: Doctrine\ORM\PersistentCollection {#3319 …}
+reports: Doctrine\ORM\PersistentCollection {#3321 …}
+favourites: Doctrine\ORM\PersistentCollection {#3323 …}
+notifications: Doctrine\ORM\PersistentCollection {#3325 …}
-id: 246863
-bodyTs: "'authorit':4 'discover':26 'feder':9,32 'give':18 'instanc':7 'isn':10 'known':31 'lemmyverse.net':16 'like':15 'list':5,22 'one':25 'requir':12 'sinc':8 'solid':21 'tool':14 'well':30"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.stuart.fun/comment/2994776"
+editedAt: null
+createdAt: DateTimeImmutable @1703364438 {#3312
date: 2023-12-23 21:47:18.0 +01:00
}
} |
|
Show voter details
|
120 |
DENIED
|
moderate
|
App\Entity\EntryComment {#3313
+user: Proxies\__CG__\App\Entity\User {#3314 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2683 …}
+magazine: App\Entity\Magazine {#305
+icon: null
+name: "datahoarder@lemmy.ml"
+title: "datahoarder"
+description: """
**Who are we?**\n
\n
We are digital librarians. Among us are represented the various reasons to keep data – legal requirements, competitive requirements, uncertainty of permanence of cloud services, distaste for transmitting your data externally (e.g. government or corporate espionage), cultural and familial archivists, internet collapse preppers, and people who do it themselves so they’re sure it’s done right. Everyone has their reasons for curating the data they have decided to keep (either forever or For A Damn Long Time). Along the way we have sought out like-minded individuals to exchange strategies, war stories, and cautionary tales of failures.\n
\n
We are one. We are legion. And we’re trying really hard not to forget.\n
\n
– 5-4-3-2-1-bang from [this thread](https://web.archive.org/web/20221111153119/https://old.reddit.com/r/DataHoarder/comments/41tqt4/hi_guys_can_i_kindly_ask_for_an_eli5_of_this/cz53pi0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 58
+entryCommentCount: 311
+postCount: 1
+postCommentCount: 1
+isAdult: false
+customCss: null
+lastActive: DateTime @1729502222 {#313
date: 2024-10-21 11:17:02.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#293 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#289 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#278 …}
+entries: Doctrine\ORM\PersistentCollection {#236 …}
+posts: Doctrine\ORM\PersistentCollection {#194 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#256 …}
+bans: Doctrine\ORM\PersistentCollection {#173 …}
+reports: Doctrine\ORM\PersistentCollection {#159 …}
+badges: Doctrine\ORM\PersistentCollection {#137 …}
+logs: Doctrine\ORM\PersistentCollection {#127 …}
+awards: Doctrine\ORM\PersistentCollection {#116 …}
+categories: Doctrine\ORM\PersistentCollection {#103 …}
-id: 32
+apId: "datahoarder@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/datahoarder"
+apPublicUrl: "https://lemmy.ml/c/datahoarder"
+apFollowersUrl: "https://lemmy.ml/c/datahoarder/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "datahoarder"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729303437 {#314
date: 2024-10-19 04:03:57.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1695727192 {#308
date: 2023-09-26 13:19:52.0 +02:00
}
}
+image: null
+parent: App\Entity\EntryComment {#3136
+user: Proxies\__CG__\App\Entity\User {#3137 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2683 …}
+magazine: App\Entity\Magazine {#305}
+image: null
+parent: App\Entity\EntryComment {#2682
+user: App\Entity\User {#2696 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2683 …}
+magazine: App\Entity\Magazine {#305}
+image: null
+parent: null
+root: null
+body: "Run your own instance, subscribe to every community, then backup the db."
+lang: "en"
+isAdult: false
+favouriteCount: 21
+score: 0
+lastActive: DateTime @1707090588 {#2677
date: 2024-02-05 00:49:48.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Deckweiss@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#2684 …}
+nested: Doctrine\ORM\PersistentCollection {#2686 …}
+votes: Doctrine\ORM\PersistentCollection {#2688 …}
+reports: Doctrine\ORM\PersistentCollection {#2690 …}
+favourites: Doctrine\ORM\PersistentCollection {#2692 …}
+notifications: Doctrine\ORM\PersistentCollection {#2694 …}
-id: 246519
-bodyTs: "'backup':10 'communiti':8 'db':12 'everi':7 'instanc':4 'run':1 'subscrib':5"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.ca/comment/5850599"
+editedAt: null
+createdAt: DateTimeImmutable @1703356568 {#2678
date: 2023-12-23 19:36:08.0 +01:00
}
}
+root: App\Entity\EntryComment {#2682}
+body: """
As far as I have searched, I didn’t find a way to find “every” instance. Most of the popular ones - yes, but far from all.\n
\n
Also I did not know that each instance copies all pf the data of all other instances into their own db.\n
\n
But thanks, I will try it out next year.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 6
+score: 0
+lastActive: DateTime @1703361022 {#3133
date: 2023-12-23 20:50:22.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Deckweiss@lemmy.world"
"@Shadow@lemmy.ca"
]
+children: Doctrine\ORM\PersistentCollection {#3138 …}
+nested: Doctrine\ORM\PersistentCollection {#3140 …}
+votes: Doctrine\ORM\PersistentCollection {#3142 …}
+reports: Doctrine\ORM\PersistentCollection {#3144 …}
+favourites: Doctrine\ORM\PersistentCollection {#3146 …}
+notifications: Doctrine\ORM\PersistentCollection {#3148 …}
-id: 246751
-bodyTs: "'also':27 'copi':35 'data':39 'db':47 'didn':8 'everi':15 'far':2,24 'find':10,14 'instanc':16,34,43 'know':31 'next':55 'one':21 'pf':37 'popular':20 'search':6 'thank':49 'tri':52 'way':12 'year':56 'yes':22"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.world/comment/6210988"
+editedAt: DateTimeImmutable @1707059396 {#3134
date: 2024-02-04 16:09:56.0 +01:00
}
+createdAt: DateTimeImmutable @1703361022 {#3135
date: 2023-12-23 20:50:22.0 +01:00
}
}
+root: App\Entity\EntryComment {#2682}
+body: "There’s no authoritative list of instances since federation isn’t required, but tools like lemmyverse.net will give you a solid list of the ones discoverable from the most well known federations."
+lang: "en"
+isAdult: false
+favouriteCount: 9
+score: 0
+lastActive: DateTime @1703364438 {#3311
date: 2023-12-23 21:47:18.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Deckweiss@lemmy.world"
"@Shadow@lemmy.ca"
]
+children: Doctrine\ORM\PersistentCollection {#3315 …}
+nested: Doctrine\ORM\PersistentCollection {#3317 …}
+votes: Doctrine\ORM\PersistentCollection {#3319 …}
+reports: Doctrine\ORM\PersistentCollection {#3321 …}
+favourites: Doctrine\ORM\PersistentCollection {#3323 …}
+notifications: Doctrine\ORM\PersistentCollection {#3325 …}
-id: 246863
-bodyTs: "'authorit':4 'discover':26 'feder':9,32 'give':18 'instanc':7 'isn':10 'known':31 'lemmyverse.net':16 'like':15 'list':5,22 'one':25 'requir':12 'sinc':8 'solid':21 'tool':14 'well':30"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.stuart.fun/comment/2994776"
+editedAt: null
+createdAt: DateTimeImmutable @1703364438 {#3312
date: 2023-12-23 21:47:18.0 +01:00
}
} |
|
Show voter details
|
121 |
DENIED
|
ROLE_USER
|
null |
|
Show voter details
|
122 |
DENIED
|
moderate
|
App\Entity\EntryComment {#2758
+user: App\Entity\User {#2772 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2759 …}
+magazine: App\Entity\Magazine {#305
+icon: null
+name: "datahoarder@lemmy.ml"
+title: "datahoarder"
+description: """
**Who are we?**\n
\n
We are digital librarians. Among us are represented the various reasons to keep data – legal requirements, competitive requirements, uncertainty of permanence of cloud services, distaste for transmitting your data externally (e.g. government or corporate espionage), cultural and familial archivists, internet collapse preppers, and people who do it themselves so they’re sure it’s done right. Everyone has their reasons for curating the data they have decided to keep (either forever or For A Damn Long Time). Along the way we have sought out like-minded individuals to exchange strategies, war stories, and cautionary tales of failures.\n
\n
We are one. We are legion. And we’re trying really hard not to forget.\n
\n
– 5-4-3-2-1-bang from [this thread](https://web.archive.org/web/20221111153119/https://old.reddit.com/r/DataHoarder/comments/41tqt4/hi_guys_can_i_kindly_ask_for_an_eli5_of_this/cz53pi0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 58
+entryCommentCount: 311
+postCount: 1
+postCommentCount: 1
+isAdult: false
+customCss: null
+lastActive: DateTime @1729502222 {#313
date: 2024-10-21 11:17:02.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#293 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#289 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#278 …}
+entries: Doctrine\ORM\PersistentCollection {#236 …}
+posts: Doctrine\ORM\PersistentCollection {#194 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#256 …}
+bans: Doctrine\ORM\PersistentCollection {#173 …}
+reports: Doctrine\ORM\PersistentCollection {#159 …}
+badges: Doctrine\ORM\PersistentCollection {#137 …}
+logs: Doctrine\ORM\PersistentCollection {#127 …}
+awards: Doctrine\ORM\PersistentCollection {#116 …}
+categories: Doctrine\ORM\PersistentCollection {#103 …}
-id: 32
+apId: "datahoarder@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/datahoarder"
+apPublicUrl: "https://lemmy.ml/c/datahoarder"
+apFollowersUrl: "https://lemmy.ml/c/datahoarder/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "datahoarder"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729303437 {#314
date: 2024-10-19 04:03:57.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1695727192 {#308
date: 2023-09-26 13:19:52.0 +02:00
}
}
+image: null
+parent: null
+root: null
+body: """
What is your goal with this?\n
\n
I know, stupid question to a datahoarder. My point is that archiving all of instagram or threads would be impossible even for ArchiveTeam, much less a single person. Are these random posts, or ones you care about?
"""
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1706368573 {#2753
date: 2024-01-27 16:16:13.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@kionite231@lemmy.ca"
]
+children: Doctrine\ORM\PersistentCollection {#2760 …}
+nested: Doctrine\ORM\PersistentCollection {#2762 …}
+votes: Doctrine\ORM\PersistentCollection {#2764 …}
+reports: Doctrine\ORM\PersistentCollection {#2766 …}
+favourites: Doctrine\ORM\PersistentCollection {#2768 …}
+notifications: Doctrine\ORM\PersistentCollection {#2770 …}
-id: 344809
-bodyTs: "'archiv':18 'archiveteam':29 'care':42 'datahoard':13 'even':27 'goal':4 'imposs':26 'instagram':21 'know':8 'less':31 'much':30 'one':40 'person':34 'point':15 'post':38 'question':10 'random':37 'singl':33 'stupid':9 'thread':23 'would':24"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemm.ee/comment/8716912"
+editedAt: null
+createdAt: DateTimeImmutable @1706368573 {#2754
date: 2024-01-27 16:16:13.0 +01:00
}
} |
|
Show voter details
|
123 |
DENIED
|
edit
|
App\Entity\EntryComment {#2758
+user: App\Entity\User {#2772 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2759 …}
+magazine: App\Entity\Magazine {#305
+icon: null
+name: "datahoarder@lemmy.ml"
+title: "datahoarder"
+description: """
**Who are we?**\n
\n
We are digital librarians. Among us are represented the various reasons to keep data – legal requirements, competitive requirements, uncertainty of permanence of cloud services, distaste for transmitting your data externally (e.g. government or corporate espionage), cultural and familial archivists, internet collapse preppers, and people who do it themselves so they’re sure it’s done right. Everyone has their reasons for curating the data they have decided to keep (either forever or For A Damn Long Time). Along the way we have sought out like-minded individuals to exchange strategies, war stories, and cautionary tales of failures.\n
\n
We are one. We are legion. And we’re trying really hard not to forget.\n
\n
– 5-4-3-2-1-bang from [this thread](https://web.archive.org/web/20221111153119/https://old.reddit.com/r/DataHoarder/comments/41tqt4/hi_guys_can_i_kindly_ask_for_an_eli5_of_this/cz53pi0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 58
+entryCommentCount: 311
+postCount: 1
+postCommentCount: 1
+isAdult: false
+customCss: null
+lastActive: DateTime @1729502222 {#313
date: 2024-10-21 11:17:02.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#293 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#289 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#278 …}
+entries: Doctrine\ORM\PersistentCollection {#236 …}
+posts: Doctrine\ORM\PersistentCollection {#194 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#256 …}
+bans: Doctrine\ORM\PersistentCollection {#173 …}
+reports: Doctrine\ORM\PersistentCollection {#159 …}
+badges: Doctrine\ORM\PersistentCollection {#137 …}
+logs: Doctrine\ORM\PersistentCollection {#127 …}
+awards: Doctrine\ORM\PersistentCollection {#116 …}
+categories: Doctrine\ORM\PersistentCollection {#103 …}
-id: 32
+apId: "datahoarder@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/datahoarder"
+apPublicUrl: "https://lemmy.ml/c/datahoarder"
+apFollowersUrl: "https://lemmy.ml/c/datahoarder/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "datahoarder"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729303437 {#314
date: 2024-10-19 04:03:57.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1695727192 {#308
date: 2023-09-26 13:19:52.0 +02:00
}
}
+image: null
+parent: null
+root: null
+body: """
What is your goal with this?\n
\n
I know, stupid question to a datahoarder. My point is that archiving all of instagram or threads would be impossible even for ArchiveTeam, much less a single person. Are these random posts, or ones you care about?
"""
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1706368573 {#2753
date: 2024-01-27 16:16:13.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@kionite231@lemmy.ca"
]
+children: Doctrine\ORM\PersistentCollection {#2760 …}
+nested: Doctrine\ORM\PersistentCollection {#2762 …}
+votes: Doctrine\ORM\PersistentCollection {#2764 …}
+reports: Doctrine\ORM\PersistentCollection {#2766 …}
+favourites: Doctrine\ORM\PersistentCollection {#2768 …}
+notifications: Doctrine\ORM\PersistentCollection {#2770 …}
-id: 344809
-bodyTs: "'archiv':18 'archiveteam':29 'care':42 'datahoard':13 'even':27 'goal':4 'imposs':26 'instagram':21 'know':8 'less':31 'much':30 'one':40 'person':34 'point':15 'post':38 'question':10 'random':37 'singl':33 'stupid':9 'thread':23 'would':24"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemm.ee/comment/8716912"
+editedAt: null
+createdAt: DateTimeImmutable @1706368573 {#2754
date: 2024-01-27 16:16:13.0 +01:00
}
} |
|
Show voter details
|
124 |
DENIED
|
moderate
|
App\Entity\EntryComment {#2758
+user: App\Entity\User {#2772 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2759 …}
+magazine: App\Entity\Magazine {#305
+icon: null
+name: "datahoarder@lemmy.ml"
+title: "datahoarder"
+description: """
**Who are we?**\n
\n
We are digital librarians. Among us are represented the various reasons to keep data – legal requirements, competitive requirements, uncertainty of permanence of cloud services, distaste for transmitting your data externally (e.g. government or corporate espionage), cultural and familial archivists, internet collapse preppers, and people who do it themselves so they’re sure it’s done right. Everyone has their reasons for curating the data they have decided to keep (either forever or For A Damn Long Time). Along the way we have sought out like-minded individuals to exchange strategies, war stories, and cautionary tales of failures.\n
\n
We are one. We are legion. And we’re trying really hard not to forget.\n
\n
– 5-4-3-2-1-bang from [this thread](https://web.archive.org/web/20221111153119/https://old.reddit.com/r/DataHoarder/comments/41tqt4/hi_guys_can_i_kindly_ask_for_an_eli5_of_this/cz53pi0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 58
+entryCommentCount: 311
+postCount: 1
+postCommentCount: 1
+isAdult: false
+customCss: null
+lastActive: DateTime @1729502222 {#313
date: 2024-10-21 11:17:02.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#293 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#289 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#278 …}
+entries: Doctrine\ORM\PersistentCollection {#236 …}
+posts: Doctrine\ORM\PersistentCollection {#194 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#256 …}
+bans: Doctrine\ORM\PersistentCollection {#173 …}
+reports: Doctrine\ORM\PersistentCollection {#159 …}
+badges: Doctrine\ORM\PersistentCollection {#137 …}
+logs: Doctrine\ORM\PersistentCollection {#127 …}
+awards: Doctrine\ORM\PersistentCollection {#116 …}
+categories: Doctrine\ORM\PersistentCollection {#103 …}
-id: 32
+apId: "datahoarder@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/datahoarder"
+apPublicUrl: "https://lemmy.ml/c/datahoarder"
+apFollowersUrl: "https://lemmy.ml/c/datahoarder/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "datahoarder"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729303437 {#314
date: 2024-10-19 04:03:57.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1695727192 {#308
date: 2023-09-26 13:19:52.0 +02:00
}
}
+image: null
+parent: null
+root: null
+body: """
What is your goal with this?\n
\n
I know, stupid question to a datahoarder. My point is that archiving all of instagram or threads would be impossible even for ArchiveTeam, much less a single person. Are these random posts, or ones you care about?
"""
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1706368573 {#2753
date: 2024-01-27 16:16:13.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@kionite231@lemmy.ca"
]
+children: Doctrine\ORM\PersistentCollection {#2760 …}
+nested: Doctrine\ORM\PersistentCollection {#2762 …}
+votes: Doctrine\ORM\PersistentCollection {#2764 …}
+reports: Doctrine\ORM\PersistentCollection {#2766 …}
+favourites: Doctrine\ORM\PersistentCollection {#2768 …}
+notifications: Doctrine\ORM\PersistentCollection {#2770 …}
-id: 344809
-bodyTs: "'archiv':18 'archiveteam':29 'care':42 'datahoard':13 'even':27 'goal':4 'imposs':26 'instagram':21 'know':8 'less':31 'much':30 'one':40 'person':34 'point':15 'post':38 'question':10 'random':37 'singl':33 'stupid':9 'thread':23 'would':24"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemm.ee/comment/8716912"
+editedAt: null
+createdAt: DateTimeImmutable @1706368573 {#2754
date: 2024-01-27 16:16:13.0 +01:00
}
} |
|
Show voter details
|
125 |
DENIED
|
ROLE_USER
|
null |
|
Show voter details
|
126 |
DENIED
|
moderate
|
App\Entity\EntryComment {#2832
+user: App\Entity\User {#2846 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2833 …}
+magazine: App\Entity\Magazine {#305
+icon: null
+name: "datahoarder@lemmy.ml"
+title: "datahoarder"
+description: """
**Who are we?**\n
\n
We are digital librarians. Among us are represented the various reasons to keep data – legal requirements, competitive requirements, uncertainty of permanence of cloud services, distaste for transmitting your data externally (e.g. government or corporate espionage), cultural and familial archivists, internet collapse preppers, and people who do it themselves so they’re sure it’s done right. Everyone has their reasons for curating the data they have decided to keep (either forever or For A Damn Long Time). Along the way we have sought out like-minded individuals to exchange strategies, war stories, and cautionary tales of failures.\n
\n
We are one. We are legion. And we’re trying really hard not to forget.\n
\n
– 5-4-3-2-1-bang from [this thread](https://web.archive.org/web/20221111153119/https://old.reddit.com/r/DataHoarder/comments/41tqt4/hi_guys_can_i_kindly_ask_for_an_eli5_of_this/cz53pi0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 58
+entryCommentCount: 311
+postCount: 1
+postCommentCount: 1
+isAdult: false
+customCss: null
+lastActive: DateTime @1729502222 {#313
date: 2024-10-21 11:17:02.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#293 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#289 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#278 …}
+entries: Doctrine\ORM\PersistentCollection {#236 …}
+posts: Doctrine\ORM\PersistentCollection {#194 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#256 …}
+bans: Doctrine\ORM\PersistentCollection {#173 …}
+reports: Doctrine\ORM\PersistentCollection {#159 …}
+badges: Doctrine\ORM\PersistentCollection {#137 …}
+logs: Doctrine\ORM\PersistentCollection {#127 …}
+awards: Doctrine\ORM\PersistentCollection {#116 …}
+categories: Doctrine\ORM\PersistentCollection {#103 …}
-id: 32
+apId: "datahoarder@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/datahoarder"
+apPublicUrl: "https://lemmy.ml/c/datahoarder"
+apFollowersUrl: "https://lemmy.ml/c/datahoarder/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "datahoarder"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729303437 {#314
date: 2024-10-19 04:03:57.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1695727192 {#308
date: 2023-09-26 13:19:52.0 +02:00
}
}
+image: null
+parent: null
+root: null
+body: """
sounds like your main limitation is attaching the drives – if you can attach them all to a single system (ex. a separate computer or a NAS case) then at least it becomes somewhat easier to access them all at once\n
\n
I was thinking [JBOD](https://en.wikipedia.org/wiki/Non-RAID_drive_architectures#JBOD) but Wikipedia points out the same issue you mention with RAID 0, failure of one drive can mess up the logical volume which leads to a whole host of new issues to deal with during recovery
"""
+lang: "en"
+isAdult: false
+favouriteCount: 1
+score: 0
+lastActive: DateTime @1706264457 {#2827
date: 2024-01-26 11:20:57.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@HiddenLayer5@lemmy.ml"
]
+children: Doctrine\ORM\PersistentCollection {#2834 …}
+nested: Doctrine\ORM\PersistentCollection {#2836 …}
+votes: Doctrine\ORM\PersistentCollection {#2838 …}
+reports: Doctrine\ORM\PersistentCollection {#2840 …}
+favourites: Doctrine\ORM\PersistentCollection {#2842 …}
+notifications: Doctrine\ORM\PersistentCollection {#2844 …}
-id: 241782
-bodyTs: "'/wiki/non-raid_drive_architectures#jbod)':47 '0':59 'access':36 'attach':7,13 'becom':32 'case':27 'comput':23 'deal':80 'drive':9,63 'easier':34 'en.wikipedia.org':46 'en.wikipedia.org/wiki/non-raid_drive_architectures#jbod)':45 'ex':20 'failur':60 'host':75 'issu':54,78 'jbod':44 'lead':71 'least':30 'like':2 'limit':5 'logic':68 'main':4 'mention':56 'mess':65 'nas':26 'new':77 'one':62 'point':50 'raid':58 'recoveri':83 'separ':22 'singl':18 'somewhat':33 'sound':1 'system':19 'think':43 'volum':69 'whole':74 'wikipedia':49"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://slrpnk.net/comment/4854547"
+editedAt: null
+createdAt: DateTimeImmutable @1703200848 {#2828
date: 2023-12-22 00:20:48.0 +01:00
}
} |
|
Show voter details
|
127 |
DENIED
|
edit
|
App\Entity\EntryComment {#2832
+user: App\Entity\User {#2846 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2833 …}
+magazine: App\Entity\Magazine {#305
+icon: null
+name: "datahoarder@lemmy.ml"
+title: "datahoarder"
+description: """
**Who are we?**\n
\n
We are digital librarians. Among us are represented the various reasons to keep data – legal requirements, competitive requirements, uncertainty of permanence of cloud services, distaste for transmitting your data externally (e.g. government or corporate espionage), cultural and familial archivists, internet collapse preppers, and people who do it themselves so they’re sure it’s done right. Everyone has their reasons for curating the data they have decided to keep (either forever or For A Damn Long Time). Along the way we have sought out like-minded individuals to exchange strategies, war stories, and cautionary tales of failures.\n
\n
We are one. We are legion. And we’re trying really hard not to forget.\n
\n
– 5-4-3-2-1-bang from [this thread](https://web.archive.org/web/20221111153119/https://old.reddit.com/r/DataHoarder/comments/41tqt4/hi_guys_can_i_kindly_ask_for_an_eli5_of_this/cz53pi0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 58
+entryCommentCount: 311
+postCount: 1
+postCommentCount: 1
+isAdult: false
+customCss: null
+lastActive: DateTime @1729502222 {#313
date: 2024-10-21 11:17:02.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#293 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#289 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#278 …}
+entries: Doctrine\ORM\PersistentCollection {#236 …}
+posts: Doctrine\ORM\PersistentCollection {#194 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#256 …}
+bans: Doctrine\ORM\PersistentCollection {#173 …}
+reports: Doctrine\ORM\PersistentCollection {#159 …}
+badges: Doctrine\ORM\PersistentCollection {#137 …}
+logs: Doctrine\ORM\PersistentCollection {#127 …}
+awards: Doctrine\ORM\PersistentCollection {#116 …}
+categories: Doctrine\ORM\PersistentCollection {#103 …}
-id: 32
+apId: "datahoarder@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/datahoarder"
+apPublicUrl: "https://lemmy.ml/c/datahoarder"
+apFollowersUrl: "https://lemmy.ml/c/datahoarder/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "datahoarder"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729303437 {#314
date: 2024-10-19 04:03:57.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1695727192 {#308
date: 2023-09-26 13:19:52.0 +02:00
}
}
+image: null
+parent: null
+root: null
+body: """
sounds like your main limitation is attaching the drives – if you can attach them all to a single system (ex. a separate computer or a NAS case) then at least it becomes somewhat easier to access them all at once\n
\n
I was thinking [JBOD](https://en.wikipedia.org/wiki/Non-RAID_drive_architectures#JBOD) but Wikipedia points out the same issue you mention with RAID 0, failure of one drive can mess up the logical volume which leads to a whole host of new issues to deal with during recovery
"""
+lang: "en"
+isAdult: false
+favouriteCount: 1
+score: 0
+lastActive: DateTime @1706264457 {#2827
date: 2024-01-26 11:20:57.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@HiddenLayer5@lemmy.ml"
]
+children: Doctrine\ORM\PersistentCollection {#2834 …}
+nested: Doctrine\ORM\PersistentCollection {#2836 …}
+votes: Doctrine\ORM\PersistentCollection {#2838 …}
+reports: Doctrine\ORM\PersistentCollection {#2840 …}
+favourites: Doctrine\ORM\PersistentCollection {#2842 …}
+notifications: Doctrine\ORM\PersistentCollection {#2844 …}
-id: 241782
-bodyTs: "'/wiki/non-raid_drive_architectures#jbod)':47 '0':59 'access':36 'attach':7,13 'becom':32 'case':27 'comput':23 'deal':80 'drive':9,63 'easier':34 'en.wikipedia.org':46 'en.wikipedia.org/wiki/non-raid_drive_architectures#jbod)':45 'ex':20 'failur':60 'host':75 'issu':54,78 'jbod':44 'lead':71 'least':30 'like':2 'limit':5 'logic':68 'main':4 'mention':56 'mess':65 'nas':26 'new':77 'one':62 'point':50 'raid':58 'recoveri':83 'separ':22 'singl':18 'somewhat':33 'sound':1 'system':19 'think':43 'volum':69 'whole':74 'wikipedia':49"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://slrpnk.net/comment/4854547"
+editedAt: null
+createdAt: DateTimeImmutable @1703200848 {#2828
date: 2023-12-22 00:20:48.0 +01:00
}
} |
|
Show voter details
|
128 |
DENIED
|
moderate
|
App\Entity\EntryComment {#2832
+user: App\Entity\User {#2846 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2833 …}
+magazine: App\Entity\Magazine {#305
+icon: null
+name: "datahoarder@lemmy.ml"
+title: "datahoarder"
+description: """
**Who are we?**\n
\n
We are digital librarians. Among us are represented the various reasons to keep data – legal requirements, competitive requirements, uncertainty of permanence of cloud services, distaste for transmitting your data externally (e.g. government or corporate espionage), cultural and familial archivists, internet collapse preppers, and people who do it themselves so they’re sure it’s done right. Everyone has their reasons for curating the data they have decided to keep (either forever or For A Damn Long Time). Along the way we have sought out like-minded individuals to exchange strategies, war stories, and cautionary tales of failures.\n
\n
We are one. We are legion. And we’re trying really hard not to forget.\n
\n
– 5-4-3-2-1-bang from [this thread](https://web.archive.org/web/20221111153119/https://old.reddit.com/r/DataHoarder/comments/41tqt4/hi_guys_can_i_kindly_ask_for_an_eli5_of_this/cz53pi0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 58
+entryCommentCount: 311
+postCount: 1
+postCommentCount: 1
+isAdult: false
+customCss: null
+lastActive: DateTime @1729502222 {#313
date: 2024-10-21 11:17:02.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#293 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#289 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#278 …}
+entries: Doctrine\ORM\PersistentCollection {#236 …}
+posts: Doctrine\ORM\PersistentCollection {#194 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#256 …}
+bans: Doctrine\ORM\PersistentCollection {#173 …}
+reports: Doctrine\ORM\PersistentCollection {#159 …}
+badges: Doctrine\ORM\PersistentCollection {#137 …}
+logs: Doctrine\ORM\PersistentCollection {#127 …}
+awards: Doctrine\ORM\PersistentCollection {#116 …}
+categories: Doctrine\ORM\PersistentCollection {#103 …}
-id: 32
+apId: "datahoarder@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/datahoarder"
+apPublicUrl: "https://lemmy.ml/c/datahoarder"
+apFollowersUrl: "https://lemmy.ml/c/datahoarder/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "datahoarder"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729303437 {#314
date: 2024-10-19 04:03:57.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1695727192 {#308
date: 2023-09-26 13:19:52.0 +02:00
}
}
+image: null
+parent: null
+root: null
+body: """
sounds like your main limitation is attaching the drives – if you can attach them all to a single system (ex. a separate computer or a NAS case) then at least it becomes somewhat easier to access them all at once\n
\n
I was thinking [JBOD](https://en.wikipedia.org/wiki/Non-RAID_drive_architectures#JBOD) but Wikipedia points out the same issue you mention with RAID 0, failure of one drive can mess up the logical volume which leads to a whole host of new issues to deal with during recovery
"""
+lang: "en"
+isAdult: false
+favouriteCount: 1
+score: 0
+lastActive: DateTime @1706264457 {#2827
date: 2024-01-26 11:20:57.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@HiddenLayer5@lemmy.ml"
]
+children: Doctrine\ORM\PersistentCollection {#2834 …}
+nested: Doctrine\ORM\PersistentCollection {#2836 …}
+votes: Doctrine\ORM\PersistentCollection {#2838 …}
+reports: Doctrine\ORM\PersistentCollection {#2840 …}
+favourites: Doctrine\ORM\PersistentCollection {#2842 …}
+notifications: Doctrine\ORM\PersistentCollection {#2844 …}
-id: 241782
-bodyTs: "'/wiki/non-raid_drive_architectures#jbod)':47 '0':59 'access':36 'attach':7,13 'becom':32 'case':27 'comput':23 'deal':80 'drive':9,63 'easier':34 'en.wikipedia.org':46 'en.wikipedia.org/wiki/non-raid_drive_architectures#jbod)':45 'ex':20 'failur':60 'host':75 'issu':54,78 'jbod':44 'lead':71 'least':30 'like':2 'limit':5 'logic':68 'main':4 'mention':56 'mess':65 'nas':26 'new':77 'one':62 'point':50 'raid':58 'recoveri':83 'separ':22 'singl':18 'somewhat':33 'sound':1 'system':19 'think':43 'volum':69 'whole':74 'wikipedia':49"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://slrpnk.net/comment/4854547"
+editedAt: null
+createdAt: DateTimeImmutable @1703200848 {#2828
date: 2023-12-22 00:20:48.0 +01:00
}
} |
|
Show voter details
|
129 |
DENIED
|
ROLE_USER
|
null |
|
Show voter details
|
130 |
DENIED
|
moderate
|
App\Entity\EntryComment {#3108
+user: Proxies\__CG__\App\Entity\User {#3107 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2833 …}
+magazine: App\Entity\Magazine {#305
+icon: null
+name: "datahoarder@lemmy.ml"
+title: "datahoarder"
+description: """
**Who are we?**\n
\n
We are digital librarians. Among us are represented the various reasons to keep data – legal requirements, competitive requirements, uncertainty of permanence of cloud services, distaste for transmitting your data externally (e.g. government or corporate espionage), cultural and familial archivists, internet collapse preppers, and people who do it themselves so they’re sure it’s done right. Everyone has their reasons for curating the data they have decided to keep (either forever or For A Damn Long Time). Along the way we have sought out like-minded individuals to exchange strategies, war stories, and cautionary tales of failures.\n
\n
We are one. We are legion. And we’re trying really hard not to forget.\n
\n
– 5-4-3-2-1-bang from [this thread](https://web.archive.org/web/20221111153119/https://old.reddit.com/r/DataHoarder/comments/41tqt4/hi_guys_can_i_kindly_ask_for_an_eli5_of_this/cz53pi0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 58
+entryCommentCount: 311
+postCount: 1
+postCommentCount: 1
+isAdult: false
+customCss: null
+lastActive: DateTime @1729502222 {#313
date: 2024-10-21 11:17:02.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#293 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#289 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#278 …}
+entries: Doctrine\ORM\PersistentCollection {#236 …}
+posts: Doctrine\ORM\PersistentCollection {#194 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#256 …}
+bans: Doctrine\ORM\PersistentCollection {#173 …}
+reports: Doctrine\ORM\PersistentCollection {#159 …}
+badges: Doctrine\ORM\PersistentCollection {#137 …}
+logs: Doctrine\ORM\PersistentCollection {#127 …}
+awards: Doctrine\ORM\PersistentCollection {#116 …}
+categories: Doctrine\ORM\PersistentCollection {#103 …}
-id: 32
+apId: "datahoarder@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/datahoarder"
+apPublicUrl: "https://lemmy.ml/c/datahoarder"
+apFollowersUrl: "https://lemmy.ml/c/datahoarder/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "datahoarder"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729303437 {#314
date: 2024-10-19 04:03:57.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1695727192 {#308
date: 2023-09-26 13:19:52.0 +02:00
}
}
+image: null
+parent: App\Entity\EntryComment {#2832
+user: App\Entity\User {#2846 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2833 …}
+magazine: App\Entity\Magazine {#305}
+image: null
+parent: null
+root: null
+body: """
sounds like your main limitation is attaching the drives – if you can attach them all to a single system (ex. a separate computer or a NAS case) then at least it becomes somewhat easier to access them all at once\n
\n
I was thinking [JBOD](https://en.wikipedia.org/wiki/Non-RAID_drive_architectures#JBOD) but Wikipedia points out the same issue you mention with RAID 0, failure of one drive can mess up the logical volume which leads to a whole host of new issues to deal with during recovery
"""
+lang: "en"
+isAdult: false
+favouriteCount: 1
+score: 0
+lastActive: DateTime @1706264457 {#2827
date: 2024-01-26 11:20:57.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@HiddenLayer5@lemmy.ml"
]
+children: Doctrine\ORM\PersistentCollection {#2834 …}
+nested: Doctrine\ORM\PersistentCollection {#2836 …}
+votes: Doctrine\ORM\PersistentCollection {#2838 …}
+reports: Doctrine\ORM\PersistentCollection {#2840 …}
+favourites: Doctrine\ORM\PersistentCollection {#2842 …}
+notifications: Doctrine\ORM\PersistentCollection {#2844 …}
-id: 241782
-bodyTs: "'/wiki/non-raid_drive_architectures#jbod)':47 '0':59 'access':36 'attach':7,13 'becom':32 'case':27 'comput':23 'deal':80 'drive':9,63 'easier':34 'en.wikipedia.org':46 'en.wikipedia.org/wiki/non-raid_drive_architectures#jbod)':45 'ex':20 'failur':60 'host':75 'issu':54,78 'jbod':44 'lead':71 'least':30 'like':2 'limit':5 'logic':68 'main':4 'mention':56 'mess':65 'nas':26 'new':77 'one':62 'point':50 'raid':58 'recoveri':83 'separ':22 'singl':18 'somewhat':33 'sound':1 'system':19 'think':43 'volum':69 'whole':74 'wikipedia':49"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://slrpnk.net/comment/4854547"
+editedAt: null
+createdAt: DateTimeImmutable @1703200848 {#2828
date: 2023-12-22 00:20:48.0 +01:00
}
}
+root: App\Entity\EntryComment {#2832}
+body: """
Not that big of a deal when it is a backup. Raid is not a backup solution, it is a 24/7 uptime solution. If the main drive dies with JBOD, then you have the backup. If a backup drive fails, then you still have the main. Trick is to ensure any drive issues are dealt with immediately and no backup runs if there is a smart error or similar on any drive.\n
\n
So having software that monitors drive health and email/notifies you is necessary.\n
\n
Secondary benefit of JBOD is all drives in a pool are still readable separately.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 1
+score: 0
+lastActive: DateTime @1703211807 {#3096
date: 2023-12-22 03:23:27.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@HiddenLayer5@lemmy.ml"
"@cerement@slrpnk.net"
]
+children: Doctrine\ORM\PersistentCollection {#3099 …}
+nested: Doctrine\ORM\PersistentCollection {#3101 …}
+votes: Doctrine\ORM\PersistentCollection {#3109 …}
+reports: Doctrine\ORM\PersistentCollection {#3111 …}
+favourites: Doctrine\ORM\PersistentCollection {#3113 …}
+notifications: Doctrine\ORM\PersistentCollection {#3115 …}
-id: 242161
-bodyTs: "'24/7':21 'backup':11,16,35,38,60 'benefit':86 'big':3 'deal':6 'dealt':55 'die':28 'drive':27,39,52,72,78,91 'email/notifies':81 'ensur':50 'error':67 'fail':40 'health':79 'immedi':57 'issu':53 'jbod':30,88 'main':26,46 'monitor':77 'necessari':84 'pool':94 'raid':12 'readabl':97 'run':61 'secondari':85 'separ':98 'similar':69 'smart':66 'softwar':75 'solut':17,23 'still':43,96 'trick':47 'uptim':22"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.ca/comment/5821646"
+editedAt: DateTimeImmutable @1706265900 {#3097
date: 2024-01-26 11:45:00.0 +01:00
}
+createdAt: DateTimeImmutable @1703211807 {#3098
date: 2023-12-22 03:23:27.0 +01:00
}
} |
|
Show voter details
|
131 |
DENIED
|
edit
|
App\Entity\EntryComment {#3108
+user: Proxies\__CG__\App\Entity\User {#3107 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2833 …}
+magazine: App\Entity\Magazine {#305
+icon: null
+name: "datahoarder@lemmy.ml"
+title: "datahoarder"
+description: """
**Who are we?**\n
\n
We are digital librarians. Among us are represented the various reasons to keep data – legal requirements, competitive requirements, uncertainty of permanence of cloud services, distaste for transmitting your data externally (e.g. government or corporate espionage), cultural and familial archivists, internet collapse preppers, and people who do it themselves so they’re sure it’s done right. Everyone has their reasons for curating the data they have decided to keep (either forever or For A Damn Long Time). Along the way we have sought out like-minded individuals to exchange strategies, war stories, and cautionary tales of failures.\n
\n
We are one. We are legion. And we’re trying really hard not to forget.\n
\n
– 5-4-3-2-1-bang from [this thread](https://web.archive.org/web/20221111153119/https://old.reddit.com/r/DataHoarder/comments/41tqt4/hi_guys_can_i_kindly_ask_for_an_eli5_of_this/cz53pi0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 58
+entryCommentCount: 311
+postCount: 1
+postCommentCount: 1
+isAdult: false
+customCss: null
+lastActive: DateTime @1729502222 {#313
date: 2024-10-21 11:17:02.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#293 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#289 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#278 …}
+entries: Doctrine\ORM\PersistentCollection {#236 …}
+posts: Doctrine\ORM\PersistentCollection {#194 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#256 …}
+bans: Doctrine\ORM\PersistentCollection {#173 …}
+reports: Doctrine\ORM\PersistentCollection {#159 …}
+badges: Doctrine\ORM\PersistentCollection {#137 …}
+logs: Doctrine\ORM\PersistentCollection {#127 …}
+awards: Doctrine\ORM\PersistentCollection {#116 …}
+categories: Doctrine\ORM\PersistentCollection {#103 …}
-id: 32
+apId: "datahoarder@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/datahoarder"
+apPublicUrl: "https://lemmy.ml/c/datahoarder"
+apFollowersUrl: "https://lemmy.ml/c/datahoarder/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "datahoarder"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729303437 {#314
date: 2024-10-19 04:03:57.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1695727192 {#308
date: 2023-09-26 13:19:52.0 +02:00
}
}
+image: null
+parent: App\Entity\EntryComment {#2832
+user: App\Entity\User {#2846 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2833 …}
+magazine: App\Entity\Magazine {#305}
+image: null
+parent: null
+root: null
+body: """
sounds like your main limitation is attaching the drives – if you can attach them all to a single system (ex. a separate computer or a NAS case) then at least it becomes somewhat easier to access them all at once\n
\n
I was thinking [JBOD](https://en.wikipedia.org/wiki/Non-RAID_drive_architectures#JBOD) but Wikipedia points out the same issue you mention with RAID 0, failure of one drive can mess up the logical volume which leads to a whole host of new issues to deal with during recovery
"""
+lang: "en"
+isAdult: false
+favouriteCount: 1
+score: 0
+lastActive: DateTime @1706264457 {#2827
date: 2024-01-26 11:20:57.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@HiddenLayer5@lemmy.ml"
]
+children: Doctrine\ORM\PersistentCollection {#2834 …}
+nested: Doctrine\ORM\PersistentCollection {#2836 …}
+votes: Doctrine\ORM\PersistentCollection {#2838 …}
+reports: Doctrine\ORM\PersistentCollection {#2840 …}
+favourites: Doctrine\ORM\PersistentCollection {#2842 …}
+notifications: Doctrine\ORM\PersistentCollection {#2844 …}
-id: 241782
-bodyTs: "'/wiki/non-raid_drive_architectures#jbod)':47 '0':59 'access':36 'attach':7,13 'becom':32 'case':27 'comput':23 'deal':80 'drive':9,63 'easier':34 'en.wikipedia.org':46 'en.wikipedia.org/wiki/non-raid_drive_architectures#jbod)':45 'ex':20 'failur':60 'host':75 'issu':54,78 'jbod':44 'lead':71 'least':30 'like':2 'limit':5 'logic':68 'main':4 'mention':56 'mess':65 'nas':26 'new':77 'one':62 'point':50 'raid':58 'recoveri':83 'separ':22 'singl':18 'somewhat':33 'sound':1 'system':19 'think':43 'volum':69 'whole':74 'wikipedia':49"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://slrpnk.net/comment/4854547"
+editedAt: null
+createdAt: DateTimeImmutable @1703200848 {#2828
date: 2023-12-22 00:20:48.0 +01:00
}
}
+root: App\Entity\EntryComment {#2832}
+body: """
Not that big of a deal when it is a backup. Raid is not a backup solution, it is a 24/7 uptime solution. If the main drive dies with JBOD, then you have the backup. If a backup drive fails, then you still have the main. Trick is to ensure any drive issues are dealt with immediately and no backup runs if there is a smart error or similar on any drive.\n
\n
So having software that monitors drive health and email/notifies you is necessary.\n
\n
Secondary benefit of JBOD is all drives in a pool are still readable separately.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 1
+score: 0
+lastActive: DateTime @1703211807 {#3096
date: 2023-12-22 03:23:27.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@HiddenLayer5@lemmy.ml"
"@cerement@slrpnk.net"
]
+children: Doctrine\ORM\PersistentCollection {#3099 …}
+nested: Doctrine\ORM\PersistentCollection {#3101 …}
+votes: Doctrine\ORM\PersistentCollection {#3109 …}
+reports: Doctrine\ORM\PersistentCollection {#3111 …}
+favourites: Doctrine\ORM\PersistentCollection {#3113 …}
+notifications: Doctrine\ORM\PersistentCollection {#3115 …}
-id: 242161
-bodyTs: "'24/7':21 'backup':11,16,35,38,60 'benefit':86 'big':3 'deal':6 'dealt':55 'die':28 'drive':27,39,52,72,78,91 'email/notifies':81 'ensur':50 'error':67 'fail':40 'health':79 'immedi':57 'issu':53 'jbod':30,88 'main':26,46 'monitor':77 'necessari':84 'pool':94 'raid':12 'readabl':97 'run':61 'secondari':85 'separ':98 'similar':69 'smart':66 'softwar':75 'solut':17,23 'still':43,96 'trick':47 'uptim':22"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.ca/comment/5821646"
+editedAt: DateTimeImmutable @1706265900 {#3097
date: 2024-01-26 11:45:00.0 +01:00
}
+createdAt: DateTimeImmutable @1703211807 {#3098
date: 2023-12-22 03:23:27.0 +01:00
}
} |
|
Show voter details
|
132 |
DENIED
|
moderate
|
App\Entity\EntryComment {#3108
+user: Proxies\__CG__\App\Entity\User {#3107 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2833 …}
+magazine: App\Entity\Magazine {#305
+icon: null
+name: "datahoarder@lemmy.ml"
+title: "datahoarder"
+description: """
**Who are we?**\n
\n
We are digital librarians. Among us are represented the various reasons to keep data – legal requirements, competitive requirements, uncertainty of permanence of cloud services, distaste for transmitting your data externally (e.g. government or corporate espionage), cultural and familial archivists, internet collapse preppers, and people who do it themselves so they’re sure it’s done right. Everyone has their reasons for curating the data they have decided to keep (either forever or For A Damn Long Time). Along the way we have sought out like-minded individuals to exchange strategies, war stories, and cautionary tales of failures.\n
\n
We are one. We are legion. And we’re trying really hard not to forget.\n
\n
– 5-4-3-2-1-bang from [this thread](https://web.archive.org/web/20221111153119/https://old.reddit.com/r/DataHoarder/comments/41tqt4/hi_guys_can_i_kindly_ask_for_an_eli5_of_this/cz53pi0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 58
+entryCommentCount: 311
+postCount: 1
+postCommentCount: 1
+isAdult: false
+customCss: null
+lastActive: DateTime @1729502222 {#313
date: 2024-10-21 11:17:02.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#293 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#289 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#278 …}
+entries: Doctrine\ORM\PersistentCollection {#236 …}
+posts: Doctrine\ORM\PersistentCollection {#194 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#256 …}
+bans: Doctrine\ORM\PersistentCollection {#173 …}
+reports: Doctrine\ORM\PersistentCollection {#159 …}
+badges: Doctrine\ORM\PersistentCollection {#137 …}
+logs: Doctrine\ORM\PersistentCollection {#127 …}
+awards: Doctrine\ORM\PersistentCollection {#116 …}
+categories: Doctrine\ORM\PersistentCollection {#103 …}
-id: 32
+apId: "datahoarder@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/datahoarder"
+apPublicUrl: "https://lemmy.ml/c/datahoarder"
+apFollowersUrl: "https://lemmy.ml/c/datahoarder/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "datahoarder"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729303437 {#314
date: 2024-10-19 04:03:57.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1695727192 {#308
date: 2023-09-26 13:19:52.0 +02:00
}
}
+image: null
+parent: App\Entity\EntryComment {#2832
+user: App\Entity\User {#2846 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2833 …}
+magazine: App\Entity\Magazine {#305}
+image: null
+parent: null
+root: null
+body: """
sounds like your main limitation is attaching the drives – if you can attach them all to a single system (ex. a separate computer or a NAS case) then at least it becomes somewhat easier to access them all at once\n
\n
I was thinking [JBOD](https://en.wikipedia.org/wiki/Non-RAID_drive_architectures#JBOD) but Wikipedia points out the same issue you mention with RAID 0, failure of one drive can mess up the logical volume which leads to a whole host of new issues to deal with during recovery
"""
+lang: "en"
+isAdult: false
+favouriteCount: 1
+score: 0
+lastActive: DateTime @1706264457 {#2827
date: 2024-01-26 11:20:57.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@HiddenLayer5@lemmy.ml"
]
+children: Doctrine\ORM\PersistentCollection {#2834 …}
+nested: Doctrine\ORM\PersistentCollection {#2836 …}
+votes: Doctrine\ORM\PersistentCollection {#2838 …}
+reports: Doctrine\ORM\PersistentCollection {#2840 …}
+favourites: Doctrine\ORM\PersistentCollection {#2842 …}
+notifications: Doctrine\ORM\PersistentCollection {#2844 …}
-id: 241782
-bodyTs: "'/wiki/non-raid_drive_architectures#jbod)':47 '0':59 'access':36 'attach':7,13 'becom':32 'case':27 'comput':23 'deal':80 'drive':9,63 'easier':34 'en.wikipedia.org':46 'en.wikipedia.org/wiki/non-raid_drive_architectures#jbod)':45 'ex':20 'failur':60 'host':75 'issu':54,78 'jbod':44 'lead':71 'least':30 'like':2 'limit':5 'logic':68 'main':4 'mention':56 'mess':65 'nas':26 'new':77 'one':62 'point':50 'raid':58 'recoveri':83 'separ':22 'singl':18 'somewhat':33 'sound':1 'system':19 'think':43 'volum':69 'whole':74 'wikipedia':49"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://slrpnk.net/comment/4854547"
+editedAt: null
+createdAt: DateTimeImmutable @1703200848 {#2828
date: 2023-12-22 00:20:48.0 +01:00
}
}
+root: App\Entity\EntryComment {#2832}
+body: """
Not that big of a deal when it is a backup. Raid is not a backup solution, it is a 24/7 uptime solution. If the main drive dies with JBOD, then you have the backup. If a backup drive fails, then you still have the main. Trick is to ensure any drive issues are dealt with immediately and no backup runs if there is a smart error or similar on any drive.\n
\n
So having software that monitors drive health and email/notifies you is necessary.\n
\n
Secondary benefit of JBOD is all drives in a pool are still readable separately.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 1
+score: 0
+lastActive: DateTime @1703211807 {#3096
date: 2023-12-22 03:23:27.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@HiddenLayer5@lemmy.ml"
"@cerement@slrpnk.net"
]
+children: Doctrine\ORM\PersistentCollection {#3099 …}
+nested: Doctrine\ORM\PersistentCollection {#3101 …}
+votes: Doctrine\ORM\PersistentCollection {#3109 …}
+reports: Doctrine\ORM\PersistentCollection {#3111 …}
+favourites: Doctrine\ORM\PersistentCollection {#3113 …}
+notifications: Doctrine\ORM\PersistentCollection {#3115 …}
-id: 242161
-bodyTs: "'24/7':21 'backup':11,16,35,38,60 'benefit':86 'big':3 'deal':6 'dealt':55 'die':28 'drive':27,39,52,72,78,91 'email/notifies':81 'ensur':50 'error':67 'fail':40 'health':79 'immedi':57 'issu':53 'jbod':30,88 'main':26,46 'monitor':77 'necessari':84 'pool':94 'raid':12 'readabl':97 'run':61 'secondari':85 'separ':98 'similar':69 'smart':66 'softwar':75 'solut':17,23 'still':43,96 'trick':47 'uptim':22"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.ca/comment/5821646"
+editedAt: DateTimeImmutable @1706265900 {#3097
date: 2024-01-26 11:45:00.0 +01:00
}
+createdAt: DateTimeImmutable @1703211807 {#3098
date: 2023-12-22 03:23:27.0 +01:00
}
} |
|
Show voter details
|
133 |
DENIED
|
ROLE_USER
|
null |
|
Show voter details
|
134 |
DENIED
|
moderate
|
App\Entity\EntryComment {#2908
+user: App\Entity\User {#1452 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2909 …}
+magazine: App\Entity\Magazine {#305
+icon: null
+name: "datahoarder@lemmy.ml"
+title: "datahoarder"
+description: """
**Who are we?**\n
\n
We are digital librarians. Among us are represented the various reasons to keep data – legal requirements, competitive requirements, uncertainty of permanence of cloud services, distaste for transmitting your data externally (e.g. government or corporate espionage), cultural and familial archivists, internet collapse preppers, and people who do it themselves so they’re sure it’s done right. Everyone has their reasons for curating the data they have decided to keep (either forever or For A Damn Long Time). Along the way we have sought out like-minded individuals to exchange strategies, war stories, and cautionary tales of failures.\n
\n
We are one. We are legion. And we’re trying really hard not to forget.\n
\n
– 5-4-3-2-1-bang from [this thread](https://web.archive.org/web/20221111153119/https://old.reddit.com/r/DataHoarder/comments/41tqt4/hi_guys_can_i_kindly_ask_for_an_eli5_of_this/cz53pi0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 58
+entryCommentCount: 311
+postCount: 1
+postCommentCount: 1
+isAdult: false
+customCss: null
+lastActive: DateTime @1729502222 {#313
date: 2024-10-21 11:17:02.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#293 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#289 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#278 …}
+entries: Doctrine\ORM\PersistentCollection {#236 …}
+posts: Doctrine\ORM\PersistentCollection {#194 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#256 …}
+bans: Doctrine\ORM\PersistentCollection {#173 …}
+reports: Doctrine\ORM\PersistentCollection {#159 …}
+badges: Doctrine\ORM\PersistentCollection {#137 …}
+logs: Doctrine\ORM\PersistentCollection {#127 …}
+awards: Doctrine\ORM\PersistentCollection {#116 …}
+categories: Doctrine\ORM\PersistentCollection {#103 …}
-id: 32
+apId: "datahoarder@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/datahoarder"
+apPublicUrl: "https://lemmy.ml/c/datahoarder"
+apFollowersUrl: "https://lemmy.ml/c/datahoarder/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "datahoarder"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729303437 {#314
date: 2024-10-19 04:03:57.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1695727192 {#308
date: 2023-09-26 13:19:52.0 +02:00
}
}
+image: null
+parent: null
+root: null
+body: """
According to [this](https://blog.playapod.com/2019/05/26/playapod-2-features/) you can copy stuff *onto* it. I assume you’ve tried to see if you can copy *off?* If not, then there is probably no way to extract the audio, short of recording it as it plays.\n
\n
I was only able to find a couple episodes online. One on [someone’s google drive](https://drive.google.com/drive/folders/10veQ0gNRgoz9oG42VbHZEoMlUxxLwFfX) and a few in [the wayback machine](https://web.archive.org/web/20091230082716/http://www.endlessboundaries.com/archives/), all from [this thread](https://archive.ph/hbYbH)\n
\n
edit: if playapod has an option to store files on an sd card, that’s usually stored unencrypted. (on android anyway…)\n
\n
edit: wait iphones don’t even have sd card slots, right? lol
"""
+lang: "en"
+isAdult: false
+favouriteCount: 3
+score: 0
+lastActive: DateTime @1706206232 {#2902
date: 2024-01-25 19:10:32.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@yo_scottie_oh@lemmy.ml"
]
+children: Doctrine\ORM\PersistentCollection {#2910 …}
+nested: Doctrine\ORM\PersistentCollection {#2912 …}
+votes: Doctrine\ORM\PersistentCollection {#2914 …}
+reports: Doctrine\ORM\PersistentCollection {#2916 …}
+favourites: Doctrine\ORM\PersistentCollection {#2918 …}
+notifications: Doctrine\ORM\PersistentCollection {#2920 …}
-id: 240652
-bodyTs: "'/2019/05/26/playapod-2-features/)':6 '/drive/folders/10veq0gnrgoz9og42vbhzeomluxxlwffx)':62 '/hbybh)':79 '/web/20091230082716/http://www.endlessboundaries.com/archives/),':72 'abl':47 'accord':1 'android':99 'anyway':100 'archive.ph':78 'archive.ph/hbybh)':77 'assum':14 'audio':36 'blog.playapod.com':5 'blog.playapod.com/2019/05/26/playapod-2-features/)':4 'card':92,109 'copi':9,23 'coupl':51 'drive':59 'drive.google.com':61 'drive.google.com/drive/folders/10veq0gnrgoz9og42vbhzeomluxxlwffx)':60 'edit':80,101 'episod':52 'even':106 'extract':34 'file':88 'find':49 'googl':58 'iphon':103 'lol':112 'machin':69 'one':54 'onlin':53 'onto':11 'option':85 'play':43 'playapod':82 'probabl':30 'record':39 'right':111 'sd':91,108 'see':19 'short':37 'slot':110 'someon':56 'store':87,96 'stuff':10 'thread':76 'tri':17 'unencrypt':97 'usual':95 've':16 'wait':102 'way':32 'wayback':68 'web.archive.org':71 'web.archive.org/web/20091230082716/http://www.endlessboundaries.com/archives/),':70"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemm.ee/comment/7493462"
+editedAt: DateTimeImmutable @1706102006 {#2903
date: 2024-01-24 14:13:26.0 +01:00
}
+createdAt: DateTimeImmutable @1703174021 {#2904
date: 2023-12-21 16:53:41.0 +01:00
}
} |
|
Show voter details
|
135 |
DENIED
|
edit
|
App\Entity\EntryComment {#2908
+user: App\Entity\User {#1452 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2909 …}
+magazine: App\Entity\Magazine {#305
+icon: null
+name: "datahoarder@lemmy.ml"
+title: "datahoarder"
+description: """
**Who are we?**\n
\n
We are digital librarians. Among us are represented the various reasons to keep data – legal requirements, competitive requirements, uncertainty of permanence of cloud services, distaste for transmitting your data externally (e.g. government or corporate espionage), cultural and familial archivists, internet collapse preppers, and people who do it themselves so they’re sure it’s done right. Everyone has their reasons for curating the data they have decided to keep (either forever or For A Damn Long Time). Along the way we have sought out like-minded individuals to exchange strategies, war stories, and cautionary tales of failures.\n
\n
We are one. We are legion. And we’re trying really hard not to forget.\n
\n
– 5-4-3-2-1-bang from [this thread](https://web.archive.org/web/20221111153119/https://old.reddit.com/r/DataHoarder/comments/41tqt4/hi_guys_can_i_kindly_ask_for_an_eli5_of_this/cz53pi0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 58
+entryCommentCount: 311
+postCount: 1
+postCommentCount: 1
+isAdult: false
+customCss: null
+lastActive: DateTime @1729502222 {#313
date: 2024-10-21 11:17:02.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#293 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#289 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#278 …}
+entries: Doctrine\ORM\PersistentCollection {#236 …}
+posts: Doctrine\ORM\PersistentCollection {#194 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#256 …}
+bans: Doctrine\ORM\PersistentCollection {#173 …}
+reports: Doctrine\ORM\PersistentCollection {#159 …}
+badges: Doctrine\ORM\PersistentCollection {#137 …}
+logs: Doctrine\ORM\PersistentCollection {#127 …}
+awards: Doctrine\ORM\PersistentCollection {#116 …}
+categories: Doctrine\ORM\PersistentCollection {#103 …}
-id: 32
+apId: "datahoarder@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/datahoarder"
+apPublicUrl: "https://lemmy.ml/c/datahoarder"
+apFollowersUrl: "https://lemmy.ml/c/datahoarder/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "datahoarder"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729303437 {#314
date: 2024-10-19 04:03:57.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1695727192 {#308
date: 2023-09-26 13:19:52.0 +02:00
}
}
+image: null
+parent: null
+root: null
+body: """
According to [this](https://blog.playapod.com/2019/05/26/playapod-2-features/) you can copy stuff *onto* it. I assume you’ve tried to see if you can copy *off?* If not, then there is probably no way to extract the audio, short of recording it as it plays.\n
\n
I was only able to find a couple episodes online. One on [someone’s google drive](https://drive.google.com/drive/folders/10veQ0gNRgoz9oG42VbHZEoMlUxxLwFfX) and a few in [the wayback machine](https://web.archive.org/web/20091230082716/http://www.endlessboundaries.com/archives/), all from [this thread](https://archive.ph/hbYbH)\n
\n
edit: if playapod has an option to store files on an sd card, that’s usually stored unencrypted. (on android anyway…)\n
\n
edit: wait iphones don’t even have sd card slots, right? lol
"""
+lang: "en"
+isAdult: false
+favouriteCount: 3
+score: 0
+lastActive: DateTime @1706206232 {#2902
date: 2024-01-25 19:10:32.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@yo_scottie_oh@lemmy.ml"
]
+children: Doctrine\ORM\PersistentCollection {#2910 …}
+nested: Doctrine\ORM\PersistentCollection {#2912 …}
+votes: Doctrine\ORM\PersistentCollection {#2914 …}
+reports: Doctrine\ORM\PersistentCollection {#2916 …}
+favourites: Doctrine\ORM\PersistentCollection {#2918 …}
+notifications: Doctrine\ORM\PersistentCollection {#2920 …}
-id: 240652
-bodyTs: "'/2019/05/26/playapod-2-features/)':6 '/drive/folders/10veq0gnrgoz9og42vbhzeomluxxlwffx)':62 '/hbybh)':79 '/web/20091230082716/http://www.endlessboundaries.com/archives/),':72 'abl':47 'accord':1 'android':99 'anyway':100 'archive.ph':78 'archive.ph/hbybh)':77 'assum':14 'audio':36 'blog.playapod.com':5 'blog.playapod.com/2019/05/26/playapod-2-features/)':4 'card':92,109 'copi':9,23 'coupl':51 'drive':59 'drive.google.com':61 'drive.google.com/drive/folders/10veq0gnrgoz9og42vbhzeomluxxlwffx)':60 'edit':80,101 'episod':52 'even':106 'extract':34 'file':88 'find':49 'googl':58 'iphon':103 'lol':112 'machin':69 'one':54 'onlin':53 'onto':11 'option':85 'play':43 'playapod':82 'probabl':30 'record':39 'right':111 'sd':91,108 'see':19 'short':37 'slot':110 'someon':56 'store':87,96 'stuff':10 'thread':76 'tri':17 'unencrypt':97 'usual':95 've':16 'wait':102 'way':32 'wayback':68 'web.archive.org':71 'web.archive.org/web/20091230082716/http://www.endlessboundaries.com/archives/),':70"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemm.ee/comment/7493462"
+editedAt: DateTimeImmutable @1706102006 {#2903
date: 2024-01-24 14:13:26.0 +01:00
}
+createdAt: DateTimeImmutable @1703174021 {#2904
date: 2023-12-21 16:53:41.0 +01:00
}
} |
|
Show voter details
|
136 |
DENIED
|
moderate
|
App\Entity\EntryComment {#2908
+user: App\Entity\User {#1452 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2909 …}
+magazine: App\Entity\Magazine {#305
+icon: null
+name: "datahoarder@lemmy.ml"
+title: "datahoarder"
+description: """
**Who are we?**\n
\n
We are digital librarians. Among us are represented the various reasons to keep data – legal requirements, competitive requirements, uncertainty of permanence of cloud services, distaste for transmitting your data externally (e.g. government or corporate espionage), cultural and familial archivists, internet collapse preppers, and people who do it themselves so they’re sure it’s done right. Everyone has their reasons for curating the data they have decided to keep (either forever or For A Damn Long Time). Along the way we have sought out like-minded individuals to exchange strategies, war stories, and cautionary tales of failures.\n
\n
We are one. We are legion. And we’re trying really hard not to forget.\n
\n
– 5-4-3-2-1-bang from [this thread](https://web.archive.org/web/20221111153119/https://old.reddit.com/r/DataHoarder/comments/41tqt4/hi_guys_can_i_kindly_ask_for_an_eli5_of_this/cz53pi0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 58
+entryCommentCount: 311
+postCount: 1
+postCommentCount: 1
+isAdult: false
+customCss: null
+lastActive: DateTime @1729502222 {#313
date: 2024-10-21 11:17:02.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#293 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#289 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#278 …}
+entries: Doctrine\ORM\PersistentCollection {#236 …}
+posts: Doctrine\ORM\PersistentCollection {#194 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#256 …}
+bans: Doctrine\ORM\PersistentCollection {#173 …}
+reports: Doctrine\ORM\PersistentCollection {#159 …}
+badges: Doctrine\ORM\PersistentCollection {#137 …}
+logs: Doctrine\ORM\PersistentCollection {#127 …}
+awards: Doctrine\ORM\PersistentCollection {#116 …}
+categories: Doctrine\ORM\PersistentCollection {#103 …}
-id: 32
+apId: "datahoarder@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/datahoarder"
+apPublicUrl: "https://lemmy.ml/c/datahoarder"
+apFollowersUrl: "https://lemmy.ml/c/datahoarder/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "datahoarder"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729303437 {#314
date: 2024-10-19 04:03:57.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1695727192 {#308
date: 2023-09-26 13:19:52.0 +02:00
}
}
+image: null
+parent: null
+root: null
+body: """
According to [this](https://blog.playapod.com/2019/05/26/playapod-2-features/) you can copy stuff *onto* it. I assume you’ve tried to see if you can copy *off?* If not, then there is probably no way to extract the audio, short of recording it as it plays.\n
\n
I was only able to find a couple episodes online. One on [someone’s google drive](https://drive.google.com/drive/folders/10veQ0gNRgoz9oG42VbHZEoMlUxxLwFfX) and a few in [the wayback machine](https://web.archive.org/web/20091230082716/http://www.endlessboundaries.com/archives/), all from [this thread](https://archive.ph/hbYbH)\n
\n
edit: if playapod has an option to store files on an sd card, that’s usually stored unencrypted. (on android anyway…)\n
\n
edit: wait iphones don’t even have sd card slots, right? lol
"""
+lang: "en"
+isAdult: false
+favouriteCount: 3
+score: 0
+lastActive: DateTime @1706206232 {#2902
date: 2024-01-25 19:10:32.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@yo_scottie_oh@lemmy.ml"
]
+children: Doctrine\ORM\PersistentCollection {#2910 …}
+nested: Doctrine\ORM\PersistentCollection {#2912 …}
+votes: Doctrine\ORM\PersistentCollection {#2914 …}
+reports: Doctrine\ORM\PersistentCollection {#2916 …}
+favourites: Doctrine\ORM\PersistentCollection {#2918 …}
+notifications: Doctrine\ORM\PersistentCollection {#2920 …}
-id: 240652
-bodyTs: "'/2019/05/26/playapod-2-features/)':6 '/drive/folders/10veq0gnrgoz9og42vbhzeomluxxlwffx)':62 '/hbybh)':79 '/web/20091230082716/http://www.endlessboundaries.com/archives/),':72 'abl':47 'accord':1 'android':99 'anyway':100 'archive.ph':78 'archive.ph/hbybh)':77 'assum':14 'audio':36 'blog.playapod.com':5 'blog.playapod.com/2019/05/26/playapod-2-features/)':4 'card':92,109 'copi':9,23 'coupl':51 'drive':59 'drive.google.com':61 'drive.google.com/drive/folders/10veq0gnrgoz9og42vbhzeomluxxlwffx)':60 'edit':80,101 'episod':52 'even':106 'extract':34 'file':88 'find':49 'googl':58 'iphon':103 'lol':112 'machin':69 'one':54 'onlin':53 'onto':11 'option':85 'play':43 'playapod':82 'probabl':30 'record':39 'right':111 'sd':91,108 'see':19 'short':37 'slot':110 'someon':56 'store':87,96 'stuff':10 'thread':76 'tri':17 'unencrypt':97 'usual':95 've':16 'wait':102 'way':32 'wayback':68 'web.archive.org':71 'web.archive.org/web/20091230082716/http://www.endlessboundaries.com/archives/),':70"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemm.ee/comment/7493462"
+editedAt: DateTimeImmutable @1706102006 {#2903
date: 2024-01-24 14:13:26.0 +01:00
}
+createdAt: DateTimeImmutable @1703174021 {#2904
date: 2023-12-21 16:53:41.0 +01:00
}
} |
|
Show voter details
|
137 |
DENIED
|
ROLE_USER
|
null |
|
Show voter details
|
138 |
DENIED
|
moderate
|
App\Entity\EntryComment {#3043
+user: App\Entity\User {#1452 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2909 …}
+magazine: App\Entity\Magazine {#305
+icon: null
+name: "datahoarder@lemmy.ml"
+title: "datahoarder"
+description: """
**Who are we?**\n
\n
We are digital librarians. Among us are represented the various reasons to keep data – legal requirements, competitive requirements, uncertainty of permanence of cloud services, distaste for transmitting your data externally (e.g. government or corporate espionage), cultural and familial archivists, internet collapse preppers, and people who do it themselves so they’re sure it’s done right. Everyone has their reasons for curating the data they have decided to keep (either forever or For A Damn Long Time). Along the way we have sought out like-minded individuals to exchange strategies, war stories, and cautionary tales of failures.\n
\n
We are one. We are legion. And we’re trying really hard not to forget.\n
\n
– 5-4-3-2-1-bang from [this thread](https://web.archive.org/web/20221111153119/https://old.reddit.com/r/DataHoarder/comments/41tqt4/hi_guys_can_i_kindly_ask_for_an_eli5_of_this/cz53pi0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 58
+entryCommentCount: 311
+postCount: 1
+postCommentCount: 1
+isAdult: false
+customCss: null
+lastActive: DateTime @1729502222 {#313
date: 2024-10-21 11:17:02.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#293 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#289 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#278 …}
+entries: Doctrine\ORM\PersistentCollection {#236 …}
+posts: Doctrine\ORM\PersistentCollection {#194 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#256 …}
+bans: Doctrine\ORM\PersistentCollection {#173 …}
+reports: Doctrine\ORM\PersistentCollection {#159 …}
+badges: Doctrine\ORM\PersistentCollection {#137 …}
+logs: Doctrine\ORM\PersistentCollection {#127 …}
+awards: Doctrine\ORM\PersistentCollection {#116 …}
+categories: Doctrine\ORM\PersistentCollection {#103 …}
-id: 32
+apId: "datahoarder@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/datahoarder"
+apPublicUrl: "https://lemmy.ml/c/datahoarder"
+apFollowersUrl: "https://lemmy.ml/c/datahoarder/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "datahoarder"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729303437 {#314
date: 2024-10-19 04:03:57.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1695727192 {#308
date: 2023-09-26 13:19:52.0 +02:00
}
}
+image: null
+parent: App\Entity\EntryComment {#2908
+user: App\Entity\User {#1452 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2909 …}
+magazine: App\Entity\Magazine {#305}
+image: null
+parent: null
+root: null
+body: """
According to [this](https://blog.playapod.com/2019/05/26/playapod-2-features/) you can copy stuff *onto* it. I assume you’ve tried to see if you can copy *off?* If not, then there is probably no way to extract the audio, short of recording it as it plays.\n
\n
I was only able to find a couple episodes online. One on [someone’s google drive](https://drive.google.com/drive/folders/10veQ0gNRgoz9oG42VbHZEoMlUxxLwFfX) and a few in [the wayback machine](https://web.archive.org/web/20091230082716/http://www.endlessboundaries.com/archives/), all from [this thread](https://archive.ph/hbYbH)\n
\n
edit: if playapod has an option to store files on an sd card, that’s usually stored unencrypted. (on android anyway…)\n
\n
edit: wait iphones don’t even have sd card slots, right? lol
"""
+lang: "en"
+isAdult: false
+favouriteCount: 3
+score: 0
+lastActive: DateTime @1706206232 {#2902
date: 2024-01-25 19:10:32.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@yo_scottie_oh@lemmy.ml"
]
+children: Doctrine\ORM\PersistentCollection {#2910 …}
+nested: Doctrine\ORM\PersistentCollection {#2912 …}
+votes: Doctrine\ORM\PersistentCollection {#2914 …}
+reports: Doctrine\ORM\PersistentCollection {#2916 …}
+favourites: Doctrine\ORM\PersistentCollection {#2918 …}
+notifications: Doctrine\ORM\PersistentCollection {#2920 …}
-id: 240652
-bodyTs: "'/2019/05/26/playapod-2-features/)':6 '/drive/folders/10veq0gnrgoz9og42vbhzeomluxxlwffx)':62 '/hbybh)':79 '/web/20091230082716/http://www.endlessboundaries.com/archives/),':72 'abl':47 'accord':1 'android':99 'anyway':100 'archive.ph':78 'archive.ph/hbybh)':77 'assum':14 'audio':36 'blog.playapod.com':5 'blog.playapod.com/2019/05/26/playapod-2-features/)':4 'card':92,109 'copi':9,23 'coupl':51 'drive':59 'drive.google.com':61 'drive.google.com/drive/folders/10veq0gnrgoz9og42vbhzeomluxxlwffx)':60 'edit':80,101 'episod':52 'even':106 'extract':34 'file':88 'find':49 'googl':58 'iphon':103 'lol':112 'machin':69 'one':54 'onlin':53 'onto':11 'option':85 'play':43 'playapod':82 'probabl':30 'record':39 'right':111 'sd':91,108 'see':19 'short':37 'slot':110 'someon':56 'store':87,96 'stuff':10 'thread':76 'tri':17 'unencrypt':97 'usual':95 've':16 'wait':102 'way':32 'wayback':68 'web.archive.org':71 'web.archive.org/web/20091230082716/http://www.endlessboundaries.com/archives/),':70"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemm.ee/comment/7493462"
+editedAt: DateTimeImmutable @1706102006 {#2903
date: 2024-01-24 14:13:26.0 +01:00
}
+createdAt: DateTimeImmutable @1703174021 {#2904
date: 2023-12-21 16:53:41.0 +01:00
}
}
+root: App\Entity\EntryComment {#2908}
+body: """
Actually there might be a whole bunch more in the wayback machine. (though still not that many) [here](http://web.archive.org/web/*/http://endlessboundaries.com/*)\n
\n
Just sort by mime type and check out audio/* for items of interest
"""
+lang: "en"
+isAdult: false
+favouriteCount: 1
+score: 0
+lastActive: DateTime @1703194864 {#3046
date: 2023-12-21 22:41:04.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@yo_scottie_oh@lemmy.ml"
"@bela@lemm.ee"
]
+children: Doctrine\ORM\PersistentCollection {#3042 …}
+nested: Doctrine\ORM\PersistentCollection {#3040 …}
+votes: Doctrine\ORM\PersistentCollection {#3038 …}
+reports: Doctrine\ORM\PersistentCollection {#3036 …}
+favourites: Doctrine\ORM\PersistentCollection {#3034 …}
+notifications: Doctrine\ORM\PersistentCollection {#3032 …}
-id: 241526
-bodyTs: "'/web/*/http://endlessboundaries.com/*)':21 'actual':1 'audio':30 'bunch':7 'check':28 'interest':34 'item':32 'machin':12 'mani':17 'might':3 'mime':25 'sort':23 'still':14 'though':13 'type':26 'wayback':11 'web.archive.org':20 'web.archive.org/web/*/http://endlessboundaries.com/*)':19 'whole':6"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemm.ee/comment/7501742"
+editedAt: DateTimeImmutable @1706162670 {#3045
date: 2024-01-25 07:04:30.0 +01:00
}
+createdAt: DateTimeImmutable @1703194864 {#3044
date: 2023-12-21 22:41:04.0 +01:00
}
} |
|
Show voter details
|
139 |
DENIED
|
edit
|
App\Entity\EntryComment {#3043
+user: App\Entity\User {#1452 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2909 …}
+magazine: App\Entity\Magazine {#305
+icon: null
+name: "datahoarder@lemmy.ml"
+title: "datahoarder"
+description: """
**Who are we?**\n
\n
We are digital librarians. Among us are represented the various reasons to keep data – legal requirements, competitive requirements, uncertainty of permanence of cloud services, distaste for transmitting your data externally (e.g. government or corporate espionage), cultural and familial archivists, internet collapse preppers, and people who do it themselves so they’re sure it’s done right. Everyone has their reasons for curating the data they have decided to keep (either forever or For A Damn Long Time). Along the way we have sought out like-minded individuals to exchange strategies, war stories, and cautionary tales of failures.\n
\n
We are one. We are legion. And we’re trying really hard not to forget.\n
\n
– 5-4-3-2-1-bang from [this thread](https://web.archive.org/web/20221111153119/https://old.reddit.com/r/DataHoarder/comments/41tqt4/hi_guys_can_i_kindly_ask_for_an_eli5_of_this/cz53pi0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 58
+entryCommentCount: 311
+postCount: 1
+postCommentCount: 1
+isAdult: false
+customCss: null
+lastActive: DateTime @1729502222 {#313
date: 2024-10-21 11:17:02.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#293 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#289 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#278 …}
+entries: Doctrine\ORM\PersistentCollection {#236 …}
+posts: Doctrine\ORM\PersistentCollection {#194 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#256 …}
+bans: Doctrine\ORM\PersistentCollection {#173 …}
+reports: Doctrine\ORM\PersistentCollection {#159 …}
+badges: Doctrine\ORM\PersistentCollection {#137 …}
+logs: Doctrine\ORM\PersistentCollection {#127 …}
+awards: Doctrine\ORM\PersistentCollection {#116 …}
+categories: Doctrine\ORM\PersistentCollection {#103 …}
-id: 32
+apId: "datahoarder@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/datahoarder"
+apPublicUrl: "https://lemmy.ml/c/datahoarder"
+apFollowersUrl: "https://lemmy.ml/c/datahoarder/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "datahoarder"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729303437 {#314
date: 2024-10-19 04:03:57.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1695727192 {#308
date: 2023-09-26 13:19:52.0 +02:00
}
}
+image: null
+parent: App\Entity\EntryComment {#2908
+user: App\Entity\User {#1452 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2909 …}
+magazine: App\Entity\Magazine {#305}
+image: null
+parent: null
+root: null
+body: """
According to [this](https://blog.playapod.com/2019/05/26/playapod-2-features/) you can copy stuff *onto* it. I assume you’ve tried to see if you can copy *off?* If not, then there is probably no way to extract the audio, short of recording it as it plays.\n
\n
I was only able to find a couple episodes online. One on [someone’s google drive](https://drive.google.com/drive/folders/10veQ0gNRgoz9oG42VbHZEoMlUxxLwFfX) and a few in [the wayback machine](https://web.archive.org/web/20091230082716/http://www.endlessboundaries.com/archives/), all from [this thread](https://archive.ph/hbYbH)\n
\n
edit: if playapod has an option to store files on an sd card, that’s usually stored unencrypted. (on android anyway…)\n
\n
edit: wait iphones don’t even have sd card slots, right? lol
"""
+lang: "en"
+isAdult: false
+favouriteCount: 3
+score: 0
+lastActive: DateTime @1706206232 {#2902
date: 2024-01-25 19:10:32.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@yo_scottie_oh@lemmy.ml"
]
+children: Doctrine\ORM\PersistentCollection {#2910 …}
+nested: Doctrine\ORM\PersistentCollection {#2912 …}
+votes: Doctrine\ORM\PersistentCollection {#2914 …}
+reports: Doctrine\ORM\PersistentCollection {#2916 …}
+favourites: Doctrine\ORM\PersistentCollection {#2918 …}
+notifications: Doctrine\ORM\PersistentCollection {#2920 …}
-id: 240652
-bodyTs: "'/2019/05/26/playapod-2-features/)':6 '/drive/folders/10veq0gnrgoz9og42vbhzeomluxxlwffx)':62 '/hbybh)':79 '/web/20091230082716/http://www.endlessboundaries.com/archives/),':72 'abl':47 'accord':1 'android':99 'anyway':100 'archive.ph':78 'archive.ph/hbybh)':77 'assum':14 'audio':36 'blog.playapod.com':5 'blog.playapod.com/2019/05/26/playapod-2-features/)':4 'card':92,109 'copi':9,23 'coupl':51 'drive':59 'drive.google.com':61 'drive.google.com/drive/folders/10veq0gnrgoz9og42vbhzeomluxxlwffx)':60 'edit':80,101 'episod':52 'even':106 'extract':34 'file':88 'find':49 'googl':58 'iphon':103 'lol':112 'machin':69 'one':54 'onlin':53 'onto':11 'option':85 'play':43 'playapod':82 'probabl':30 'record':39 'right':111 'sd':91,108 'see':19 'short':37 'slot':110 'someon':56 'store':87,96 'stuff':10 'thread':76 'tri':17 'unencrypt':97 'usual':95 've':16 'wait':102 'way':32 'wayback':68 'web.archive.org':71 'web.archive.org/web/20091230082716/http://www.endlessboundaries.com/archives/),':70"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemm.ee/comment/7493462"
+editedAt: DateTimeImmutable @1706102006 {#2903
date: 2024-01-24 14:13:26.0 +01:00
}
+createdAt: DateTimeImmutable @1703174021 {#2904
date: 2023-12-21 16:53:41.0 +01:00
}
}
+root: App\Entity\EntryComment {#2908}
+body: """
Actually there might be a whole bunch more in the wayback machine. (though still not that many) [here](http://web.archive.org/web/*/http://endlessboundaries.com/*)\n
\n
Just sort by mime type and check out audio/* for items of interest
"""
+lang: "en"
+isAdult: false
+favouriteCount: 1
+score: 0
+lastActive: DateTime @1703194864 {#3046
date: 2023-12-21 22:41:04.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@yo_scottie_oh@lemmy.ml"
"@bela@lemm.ee"
]
+children: Doctrine\ORM\PersistentCollection {#3042 …}
+nested: Doctrine\ORM\PersistentCollection {#3040 …}
+votes: Doctrine\ORM\PersistentCollection {#3038 …}
+reports: Doctrine\ORM\PersistentCollection {#3036 …}
+favourites: Doctrine\ORM\PersistentCollection {#3034 …}
+notifications: Doctrine\ORM\PersistentCollection {#3032 …}
-id: 241526
-bodyTs: "'/web/*/http://endlessboundaries.com/*)':21 'actual':1 'audio':30 'bunch':7 'check':28 'interest':34 'item':32 'machin':12 'mani':17 'might':3 'mime':25 'sort':23 'still':14 'though':13 'type':26 'wayback':11 'web.archive.org':20 'web.archive.org/web/*/http://endlessboundaries.com/*)':19 'whole':6"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemm.ee/comment/7501742"
+editedAt: DateTimeImmutable @1706162670 {#3045
date: 2024-01-25 07:04:30.0 +01:00
}
+createdAt: DateTimeImmutable @1703194864 {#3044
date: 2023-12-21 22:41:04.0 +01:00
}
} |
|
Show voter details
|
140 |
DENIED
|
moderate
|
App\Entity\EntryComment {#3043
+user: App\Entity\User {#1452 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2909 …}
+magazine: App\Entity\Magazine {#305
+icon: null
+name: "datahoarder@lemmy.ml"
+title: "datahoarder"
+description: """
**Who are we?**\n
\n
We are digital librarians. Among us are represented the various reasons to keep data – legal requirements, competitive requirements, uncertainty of permanence of cloud services, distaste for transmitting your data externally (e.g. government or corporate espionage), cultural and familial archivists, internet collapse preppers, and people who do it themselves so they’re sure it’s done right. Everyone has their reasons for curating the data they have decided to keep (either forever or For A Damn Long Time). Along the way we have sought out like-minded individuals to exchange strategies, war stories, and cautionary tales of failures.\n
\n
We are one. We are legion. And we’re trying really hard not to forget.\n
\n
– 5-4-3-2-1-bang from [this thread](https://web.archive.org/web/20221111153119/https://old.reddit.com/r/DataHoarder/comments/41tqt4/hi_guys_can_i_kindly_ask_for_an_eli5_of_this/cz53pi0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 58
+entryCommentCount: 311
+postCount: 1
+postCommentCount: 1
+isAdult: false
+customCss: null
+lastActive: DateTime @1729502222 {#313
date: 2024-10-21 11:17:02.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#293 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#289 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#278 …}
+entries: Doctrine\ORM\PersistentCollection {#236 …}
+posts: Doctrine\ORM\PersistentCollection {#194 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#256 …}
+bans: Doctrine\ORM\PersistentCollection {#173 …}
+reports: Doctrine\ORM\PersistentCollection {#159 …}
+badges: Doctrine\ORM\PersistentCollection {#137 …}
+logs: Doctrine\ORM\PersistentCollection {#127 …}
+awards: Doctrine\ORM\PersistentCollection {#116 …}
+categories: Doctrine\ORM\PersistentCollection {#103 …}
-id: 32
+apId: "datahoarder@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/datahoarder"
+apPublicUrl: "https://lemmy.ml/c/datahoarder"
+apFollowersUrl: "https://lemmy.ml/c/datahoarder/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "datahoarder"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729303437 {#314
date: 2024-10-19 04:03:57.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1695727192 {#308
date: 2023-09-26 13:19:52.0 +02:00
}
}
+image: null
+parent: App\Entity\EntryComment {#2908
+user: App\Entity\User {#1452 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2909 …}
+magazine: App\Entity\Magazine {#305}
+image: null
+parent: null
+root: null
+body: """
According to [this](https://blog.playapod.com/2019/05/26/playapod-2-features/) you can copy stuff *onto* it. I assume you’ve tried to see if you can copy *off?* If not, then there is probably no way to extract the audio, short of recording it as it plays.\n
\n
I was only able to find a couple episodes online. One on [someone’s google drive](https://drive.google.com/drive/folders/10veQ0gNRgoz9oG42VbHZEoMlUxxLwFfX) and a few in [the wayback machine](https://web.archive.org/web/20091230082716/http://www.endlessboundaries.com/archives/), all from [this thread](https://archive.ph/hbYbH)\n
\n
edit: if playapod has an option to store files on an sd card, that’s usually stored unencrypted. (on android anyway…)\n
\n
edit: wait iphones don’t even have sd card slots, right? lol
"""
+lang: "en"
+isAdult: false
+favouriteCount: 3
+score: 0
+lastActive: DateTime @1706206232 {#2902
date: 2024-01-25 19:10:32.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@yo_scottie_oh@lemmy.ml"
]
+children: Doctrine\ORM\PersistentCollection {#2910 …}
+nested: Doctrine\ORM\PersistentCollection {#2912 …}
+votes: Doctrine\ORM\PersistentCollection {#2914 …}
+reports: Doctrine\ORM\PersistentCollection {#2916 …}
+favourites: Doctrine\ORM\PersistentCollection {#2918 …}
+notifications: Doctrine\ORM\PersistentCollection {#2920 …}
-id: 240652
-bodyTs: "'/2019/05/26/playapod-2-features/)':6 '/drive/folders/10veq0gnrgoz9og42vbhzeomluxxlwffx)':62 '/hbybh)':79 '/web/20091230082716/http://www.endlessboundaries.com/archives/),':72 'abl':47 'accord':1 'android':99 'anyway':100 'archive.ph':78 'archive.ph/hbybh)':77 'assum':14 'audio':36 'blog.playapod.com':5 'blog.playapod.com/2019/05/26/playapod-2-features/)':4 'card':92,109 'copi':9,23 'coupl':51 'drive':59 'drive.google.com':61 'drive.google.com/drive/folders/10veq0gnrgoz9og42vbhzeomluxxlwffx)':60 'edit':80,101 'episod':52 'even':106 'extract':34 'file':88 'find':49 'googl':58 'iphon':103 'lol':112 'machin':69 'one':54 'onlin':53 'onto':11 'option':85 'play':43 'playapod':82 'probabl':30 'record':39 'right':111 'sd':91,108 'see':19 'short':37 'slot':110 'someon':56 'store':87,96 'stuff':10 'thread':76 'tri':17 'unencrypt':97 'usual':95 've':16 'wait':102 'way':32 'wayback':68 'web.archive.org':71 'web.archive.org/web/20091230082716/http://www.endlessboundaries.com/archives/),':70"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemm.ee/comment/7493462"
+editedAt: DateTimeImmutable @1706102006 {#2903
date: 2024-01-24 14:13:26.0 +01:00
}
+createdAt: DateTimeImmutable @1703174021 {#2904
date: 2023-12-21 16:53:41.0 +01:00
}
}
+root: App\Entity\EntryComment {#2908}
+body: """
Actually there might be a whole bunch more in the wayback machine. (though still not that many) [here](http://web.archive.org/web/*/http://endlessboundaries.com/*)\n
\n
Just sort by mime type and check out audio/* for items of interest
"""
+lang: "en"
+isAdult: false
+favouriteCount: 1
+score: 0
+lastActive: DateTime @1703194864 {#3046
date: 2023-12-21 22:41:04.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@yo_scottie_oh@lemmy.ml"
"@bela@lemm.ee"
]
+children: Doctrine\ORM\PersistentCollection {#3042 …}
+nested: Doctrine\ORM\PersistentCollection {#3040 …}
+votes: Doctrine\ORM\PersistentCollection {#3038 …}
+reports: Doctrine\ORM\PersistentCollection {#3036 …}
+favourites: Doctrine\ORM\PersistentCollection {#3034 …}
+notifications: Doctrine\ORM\PersistentCollection {#3032 …}
-id: 241526
-bodyTs: "'/web/*/http://endlessboundaries.com/*)':21 'actual':1 'audio':30 'bunch':7 'check':28 'interest':34 'item':32 'machin':12 'mani':17 'might':3 'mime':25 'sort':23 'still':14 'though':13 'type':26 'wayback':11 'web.archive.org':20 'web.archive.org/web/*/http://endlessboundaries.com/*)':19 'whole':6"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemm.ee/comment/7501742"
+editedAt: DateTimeImmutable @1706162670 {#3045
date: 2024-01-25 07:04:30.0 +01:00
}
+createdAt: DateTimeImmutable @1703194864 {#3044
date: 2023-12-21 22:41:04.0 +01:00
}
} |
|
Show voter details
|
141 |
DENIED
|
ROLE_USER
|
null |
|
Show voter details
|
142 |
DENIED
|
moderate
|
App\Entity\EntryComment {#3295
+user: Proxies\__CG__\App\Entity\User {#3027 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2909 …}
+magazine: App\Entity\Magazine {#305
+icon: null
+name: "datahoarder@lemmy.ml"
+title: "datahoarder"
+description: """
**Who are we?**\n
\n
We are digital librarians. Among us are represented the various reasons to keep data – legal requirements, competitive requirements, uncertainty of permanence of cloud services, distaste for transmitting your data externally (e.g. government or corporate espionage), cultural and familial archivists, internet collapse preppers, and people who do it themselves so they’re sure it’s done right. Everyone has their reasons for curating the data they have decided to keep (either forever or For A Damn Long Time). Along the way we have sought out like-minded individuals to exchange strategies, war stories, and cautionary tales of failures.\n
\n
We are one. We are legion. And we’re trying really hard not to forget.\n
\n
– 5-4-3-2-1-bang from [this thread](https://web.archive.org/web/20221111153119/https://old.reddit.com/r/DataHoarder/comments/41tqt4/hi_guys_can_i_kindly_ask_for_an_eli5_of_this/cz53pi0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 58
+entryCommentCount: 311
+postCount: 1
+postCommentCount: 1
+isAdult: false
+customCss: null
+lastActive: DateTime @1729502222 {#313
date: 2024-10-21 11:17:02.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#293 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#289 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#278 …}
+entries: Doctrine\ORM\PersistentCollection {#236 …}
+posts: Doctrine\ORM\PersistentCollection {#194 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#256 …}
+bans: Doctrine\ORM\PersistentCollection {#173 …}
+reports: Doctrine\ORM\PersistentCollection {#159 …}
+badges: Doctrine\ORM\PersistentCollection {#137 …}
+logs: Doctrine\ORM\PersistentCollection {#127 …}
+awards: Doctrine\ORM\PersistentCollection {#116 …}
+categories: Doctrine\ORM\PersistentCollection {#103 …}
-id: 32
+apId: "datahoarder@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/datahoarder"
+apPublicUrl: "https://lemmy.ml/c/datahoarder"
+apFollowersUrl: "https://lemmy.ml/c/datahoarder/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "datahoarder"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729303437 {#314
date: 2024-10-19 04:03:57.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1695727192 {#308
date: 2023-09-26 13:19:52.0 +02:00
}
}
+image: null
+parent: App\Entity\EntryComment {#3043
+user: App\Entity\User {#1452 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2909 …}
+magazine: App\Entity\Magazine {#305}
+image: null
+parent: App\Entity\EntryComment {#2908
+user: App\Entity\User {#1452 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2909 …}
+magazine: App\Entity\Magazine {#305}
+image: null
+parent: null
+root: null
+body: """
According to [this](https://blog.playapod.com/2019/05/26/playapod-2-features/) you can copy stuff *onto* it. I assume you’ve tried to see if you can copy *off?* If not, then there is probably no way to extract the audio, short of recording it as it plays.\n
\n
I was only able to find a couple episodes online. One on [someone’s google drive](https://drive.google.com/drive/folders/10veQ0gNRgoz9oG42VbHZEoMlUxxLwFfX) and a few in [the wayback machine](https://web.archive.org/web/20091230082716/http://www.endlessboundaries.com/archives/), all from [this thread](https://archive.ph/hbYbH)\n
\n
edit: if playapod has an option to store files on an sd card, that’s usually stored unencrypted. (on android anyway…)\n
\n
edit: wait iphones don’t even have sd card slots, right? lol
"""
+lang: "en"
+isAdult: false
+favouriteCount: 3
+score: 0
+lastActive: DateTime @1706206232 {#2902
date: 2024-01-25 19:10:32.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@yo_scottie_oh@lemmy.ml"
]
+children: Doctrine\ORM\PersistentCollection {#2910 …}
+nested: Doctrine\ORM\PersistentCollection {#2912 …}
+votes: Doctrine\ORM\PersistentCollection {#2914 …}
+reports: Doctrine\ORM\PersistentCollection {#2916 …}
+favourites: Doctrine\ORM\PersistentCollection {#2918 …}
+notifications: Doctrine\ORM\PersistentCollection {#2920 …}
-id: 240652
-bodyTs: "'/2019/05/26/playapod-2-features/)':6 '/drive/folders/10veq0gnrgoz9og42vbhzeomluxxlwffx)':62 '/hbybh)':79 '/web/20091230082716/http://www.endlessboundaries.com/archives/),':72 'abl':47 'accord':1 'android':99 'anyway':100 'archive.ph':78 'archive.ph/hbybh)':77 'assum':14 'audio':36 'blog.playapod.com':5 'blog.playapod.com/2019/05/26/playapod-2-features/)':4 'card':92,109 'copi':9,23 'coupl':51 'drive':59 'drive.google.com':61 'drive.google.com/drive/folders/10veq0gnrgoz9og42vbhzeomluxxlwffx)':60 'edit':80,101 'episod':52 'even':106 'extract':34 'file':88 'find':49 'googl':58 'iphon':103 'lol':112 'machin':69 'one':54 'onlin':53 'onto':11 'option':85 'play':43 'playapod':82 'probabl':30 'record':39 'right':111 'sd':91,108 'see':19 'short':37 'slot':110 'someon':56 'store':87,96 'stuff':10 'thread':76 'tri':17 'unencrypt':97 'usual':95 've':16 'wait':102 'way':32 'wayback':68 'web.archive.org':71 'web.archive.org/web/20091230082716/http://www.endlessboundaries.com/archives/),':70"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemm.ee/comment/7493462"
+editedAt: DateTimeImmutable @1706102006 {#2903
date: 2024-01-24 14:13:26.0 +01:00
}
+createdAt: DateTimeImmutable @1703174021 {#2904
date: 2023-12-21 16:53:41.0 +01:00
}
}
+root: App\Entity\EntryComment {#2908}
+body: """
Actually there might be a whole bunch more in the wayback machine. (though still not that many) [here](http://web.archive.org/web/*/http://endlessboundaries.com/*)\n
\n
Just sort by mime type and check out audio/* for items of interest
"""
+lang: "en"
+isAdult: false
+favouriteCount: 1
+score: 0
+lastActive: DateTime @1703194864 {#3046
date: 2023-12-21 22:41:04.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@yo_scottie_oh@lemmy.ml"
"@bela@lemm.ee"
]
+children: Doctrine\ORM\PersistentCollection {#3042 …}
+nested: Doctrine\ORM\PersistentCollection {#3040 …}
+votes: Doctrine\ORM\PersistentCollection {#3038 …}
+reports: Doctrine\ORM\PersistentCollection {#3036 …}
+favourites: Doctrine\ORM\PersistentCollection {#3034 …}
+notifications: Doctrine\ORM\PersistentCollection {#3032 …}
-id: 241526
-bodyTs: "'/web/*/http://endlessboundaries.com/*)':21 'actual':1 'audio':30 'bunch':7 'check':28 'interest':34 'item':32 'machin':12 'mani':17 'might':3 'mime':25 'sort':23 'still':14 'though':13 'type':26 'wayback':11 'web.archive.org':20 'web.archive.org/web/*/http://endlessboundaries.com/*)':19 'whole':6"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemm.ee/comment/7501742"
+editedAt: DateTimeImmutable @1706162670 {#3045
date: 2024-01-25 07:04:30.0 +01:00
}
+createdAt: DateTimeImmutable @1703194864 {#3044
date: 2023-12-21 22:41:04.0 +01:00
}
}
+root: App\Entity\EntryComment {#2908}
+body: """
This helped me, thank you so much! I filtered by `.mp3` and I’m using DownThemAll to download all the episodes in batches.\n
\n
ETA at first, all the downloads failed because I was attempting to download multiple files simultaneously. After configuring DownThemAll to allow only one simultaneous download, it’s been smooth sailing.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 1
+score: 0
+lastActive: DateTime @1703201667 {#3300
date: 2023-12-22 00:34:27.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@yo_scottie_oh@lemmy.ml"
"@bela@lemm.ee"
]
+children: Doctrine\ORM\PersistentCollection {#3291 …}
+nested: Doctrine\ORM\PersistentCollection {#3289 …}
+votes: Doctrine\ORM\PersistentCollection {#3293 …}
+reports: Doctrine\ORM\PersistentCollection {#3305 …}
+favourites: Doctrine\ORM\PersistentCollection {#3307 …}
+notifications: Doctrine\ORM\PersistentCollection {#3309 …}
-id: 241821
-bodyTs: "'allow':44 'attempt':34 'batch':23 'configur':41 'download':18,29,36,48 'downthemal':16,42 'episod':21 'eta':24 'fail':30 'file':38 'filter':9 'first':26 'help':2 'm':14 'mp3':11 'much':7 'multipl':37 'one':46 'sail':53 'simultan':39,47 'smooth':52 'thank':4 'use':15"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.ml/comment/6809551"
+editedAt: DateTimeImmutable @1706207412 {#3303
date: 2024-01-25 19:30:12.0 +01:00
}
+createdAt: DateTimeImmutable @1703201667 {#3299
date: 2023-12-22 00:34:27.0 +01:00
}
} |
|
Show voter details
|
143 |
DENIED
|
edit
|
App\Entity\EntryComment {#3295
+user: Proxies\__CG__\App\Entity\User {#3027 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2909 …}
+magazine: App\Entity\Magazine {#305
+icon: null
+name: "datahoarder@lemmy.ml"
+title: "datahoarder"
+description: """
**Who are we?**\n
\n
We are digital librarians. Among us are represented the various reasons to keep data – legal requirements, competitive requirements, uncertainty of permanence of cloud services, distaste for transmitting your data externally (e.g. government or corporate espionage), cultural and familial archivists, internet collapse preppers, and people who do it themselves so they’re sure it’s done right. Everyone has their reasons for curating the data they have decided to keep (either forever or For A Damn Long Time). Along the way we have sought out like-minded individuals to exchange strategies, war stories, and cautionary tales of failures.\n
\n
We are one. We are legion. And we’re trying really hard not to forget.\n
\n
– 5-4-3-2-1-bang from [this thread](https://web.archive.org/web/20221111153119/https://old.reddit.com/r/DataHoarder/comments/41tqt4/hi_guys_can_i_kindly_ask_for_an_eli5_of_this/cz53pi0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 58
+entryCommentCount: 311
+postCount: 1
+postCommentCount: 1
+isAdult: false
+customCss: null
+lastActive: DateTime @1729502222 {#313
date: 2024-10-21 11:17:02.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#293 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#289 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#278 …}
+entries: Doctrine\ORM\PersistentCollection {#236 …}
+posts: Doctrine\ORM\PersistentCollection {#194 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#256 …}
+bans: Doctrine\ORM\PersistentCollection {#173 …}
+reports: Doctrine\ORM\PersistentCollection {#159 …}
+badges: Doctrine\ORM\PersistentCollection {#137 …}
+logs: Doctrine\ORM\PersistentCollection {#127 …}
+awards: Doctrine\ORM\PersistentCollection {#116 …}
+categories: Doctrine\ORM\PersistentCollection {#103 …}
-id: 32
+apId: "datahoarder@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/datahoarder"
+apPublicUrl: "https://lemmy.ml/c/datahoarder"
+apFollowersUrl: "https://lemmy.ml/c/datahoarder/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "datahoarder"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729303437 {#314
date: 2024-10-19 04:03:57.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1695727192 {#308
date: 2023-09-26 13:19:52.0 +02:00
}
}
+image: null
+parent: App\Entity\EntryComment {#3043
+user: App\Entity\User {#1452 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2909 …}
+magazine: App\Entity\Magazine {#305}
+image: null
+parent: App\Entity\EntryComment {#2908
+user: App\Entity\User {#1452 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2909 …}
+magazine: App\Entity\Magazine {#305}
+image: null
+parent: null
+root: null
+body: """
According to [this](https://blog.playapod.com/2019/05/26/playapod-2-features/) you can copy stuff *onto* it. I assume you’ve tried to see if you can copy *off?* If not, then there is probably no way to extract the audio, short of recording it as it plays.\n
\n
I was only able to find a couple episodes online. One on [someone’s google drive](https://drive.google.com/drive/folders/10veQ0gNRgoz9oG42VbHZEoMlUxxLwFfX) and a few in [the wayback machine](https://web.archive.org/web/20091230082716/http://www.endlessboundaries.com/archives/), all from [this thread](https://archive.ph/hbYbH)\n
\n
edit: if playapod has an option to store files on an sd card, that’s usually stored unencrypted. (on android anyway…)\n
\n
edit: wait iphones don’t even have sd card slots, right? lol
"""
+lang: "en"
+isAdult: false
+favouriteCount: 3
+score: 0
+lastActive: DateTime @1706206232 {#2902
date: 2024-01-25 19:10:32.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@yo_scottie_oh@lemmy.ml"
]
+children: Doctrine\ORM\PersistentCollection {#2910 …}
+nested: Doctrine\ORM\PersistentCollection {#2912 …}
+votes: Doctrine\ORM\PersistentCollection {#2914 …}
+reports: Doctrine\ORM\PersistentCollection {#2916 …}
+favourites: Doctrine\ORM\PersistentCollection {#2918 …}
+notifications: Doctrine\ORM\PersistentCollection {#2920 …}
-id: 240652
-bodyTs: "'/2019/05/26/playapod-2-features/)':6 '/drive/folders/10veq0gnrgoz9og42vbhzeomluxxlwffx)':62 '/hbybh)':79 '/web/20091230082716/http://www.endlessboundaries.com/archives/),':72 'abl':47 'accord':1 'android':99 'anyway':100 'archive.ph':78 'archive.ph/hbybh)':77 'assum':14 'audio':36 'blog.playapod.com':5 'blog.playapod.com/2019/05/26/playapod-2-features/)':4 'card':92,109 'copi':9,23 'coupl':51 'drive':59 'drive.google.com':61 'drive.google.com/drive/folders/10veq0gnrgoz9og42vbhzeomluxxlwffx)':60 'edit':80,101 'episod':52 'even':106 'extract':34 'file':88 'find':49 'googl':58 'iphon':103 'lol':112 'machin':69 'one':54 'onlin':53 'onto':11 'option':85 'play':43 'playapod':82 'probabl':30 'record':39 'right':111 'sd':91,108 'see':19 'short':37 'slot':110 'someon':56 'store':87,96 'stuff':10 'thread':76 'tri':17 'unencrypt':97 'usual':95 've':16 'wait':102 'way':32 'wayback':68 'web.archive.org':71 'web.archive.org/web/20091230082716/http://www.endlessboundaries.com/archives/),':70"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemm.ee/comment/7493462"
+editedAt: DateTimeImmutable @1706102006 {#2903
date: 2024-01-24 14:13:26.0 +01:00
}
+createdAt: DateTimeImmutable @1703174021 {#2904
date: 2023-12-21 16:53:41.0 +01:00
}
}
+root: App\Entity\EntryComment {#2908}
+body: """
Actually there might be a whole bunch more in the wayback machine. (though still not that many) [here](http://web.archive.org/web/*/http://endlessboundaries.com/*)\n
\n
Just sort by mime type and check out audio/* for items of interest
"""
+lang: "en"
+isAdult: false
+favouriteCount: 1
+score: 0
+lastActive: DateTime @1703194864 {#3046
date: 2023-12-21 22:41:04.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@yo_scottie_oh@lemmy.ml"
"@bela@lemm.ee"
]
+children: Doctrine\ORM\PersistentCollection {#3042 …}
+nested: Doctrine\ORM\PersistentCollection {#3040 …}
+votes: Doctrine\ORM\PersistentCollection {#3038 …}
+reports: Doctrine\ORM\PersistentCollection {#3036 …}
+favourites: Doctrine\ORM\PersistentCollection {#3034 …}
+notifications: Doctrine\ORM\PersistentCollection {#3032 …}
-id: 241526
-bodyTs: "'/web/*/http://endlessboundaries.com/*)':21 'actual':1 'audio':30 'bunch':7 'check':28 'interest':34 'item':32 'machin':12 'mani':17 'might':3 'mime':25 'sort':23 'still':14 'though':13 'type':26 'wayback':11 'web.archive.org':20 'web.archive.org/web/*/http://endlessboundaries.com/*)':19 'whole':6"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemm.ee/comment/7501742"
+editedAt: DateTimeImmutable @1706162670 {#3045
date: 2024-01-25 07:04:30.0 +01:00
}
+createdAt: DateTimeImmutable @1703194864 {#3044
date: 2023-12-21 22:41:04.0 +01:00
}
}
+root: App\Entity\EntryComment {#2908}
+body: """
This helped me, thank you so much! I filtered by `.mp3` and I’m using DownThemAll to download all the episodes in batches.\n
\n
ETA at first, all the downloads failed because I was attempting to download multiple files simultaneously. After configuring DownThemAll to allow only one simultaneous download, it’s been smooth sailing.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 1
+score: 0
+lastActive: DateTime @1703201667 {#3300
date: 2023-12-22 00:34:27.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@yo_scottie_oh@lemmy.ml"
"@bela@lemm.ee"
]
+children: Doctrine\ORM\PersistentCollection {#3291 …}
+nested: Doctrine\ORM\PersistentCollection {#3289 …}
+votes: Doctrine\ORM\PersistentCollection {#3293 …}
+reports: Doctrine\ORM\PersistentCollection {#3305 …}
+favourites: Doctrine\ORM\PersistentCollection {#3307 …}
+notifications: Doctrine\ORM\PersistentCollection {#3309 …}
-id: 241821
-bodyTs: "'allow':44 'attempt':34 'batch':23 'configur':41 'download':18,29,36,48 'downthemal':16,42 'episod':21 'eta':24 'fail':30 'file':38 'filter':9 'first':26 'help':2 'm':14 'mp3':11 'much':7 'multipl':37 'one':46 'sail':53 'simultan':39,47 'smooth':52 'thank':4 'use':15"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.ml/comment/6809551"
+editedAt: DateTimeImmutable @1706207412 {#3303
date: 2024-01-25 19:30:12.0 +01:00
}
+createdAt: DateTimeImmutable @1703201667 {#3299
date: 2023-12-22 00:34:27.0 +01:00
}
} |
|
Show voter details
|
144 |
DENIED
|
moderate
|
App\Entity\EntryComment {#3295
+user: Proxies\__CG__\App\Entity\User {#3027 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2909 …}
+magazine: App\Entity\Magazine {#305
+icon: null
+name: "datahoarder@lemmy.ml"
+title: "datahoarder"
+description: """
**Who are we?**\n
\n
We are digital librarians. Among us are represented the various reasons to keep data – legal requirements, competitive requirements, uncertainty of permanence of cloud services, distaste for transmitting your data externally (e.g. government or corporate espionage), cultural and familial archivists, internet collapse preppers, and people who do it themselves so they’re sure it’s done right. Everyone has their reasons for curating the data they have decided to keep (either forever or For A Damn Long Time). Along the way we have sought out like-minded individuals to exchange strategies, war stories, and cautionary tales of failures.\n
\n
We are one. We are legion. And we’re trying really hard not to forget.\n
\n
– 5-4-3-2-1-bang from [this thread](https://web.archive.org/web/20221111153119/https://old.reddit.com/r/DataHoarder/comments/41tqt4/hi_guys_can_i_kindly_ask_for_an_eli5_of_this/cz53pi0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 58
+entryCommentCount: 311
+postCount: 1
+postCommentCount: 1
+isAdult: false
+customCss: null
+lastActive: DateTime @1729502222 {#313
date: 2024-10-21 11:17:02.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#293 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#289 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#278 …}
+entries: Doctrine\ORM\PersistentCollection {#236 …}
+posts: Doctrine\ORM\PersistentCollection {#194 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#256 …}
+bans: Doctrine\ORM\PersistentCollection {#173 …}
+reports: Doctrine\ORM\PersistentCollection {#159 …}
+badges: Doctrine\ORM\PersistentCollection {#137 …}
+logs: Doctrine\ORM\PersistentCollection {#127 …}
+awards: Doctrine\ORM\PersistentCollection {#116 …}
+categories: Doctrine\ORM\PersistentCollection {#103 …}
-id: 32
+apId: "datahoarder@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/datahoarder"
+apPublicUrl: "https://lemmy.ml/c/datahoarder"
+apFollowersUrl: "https://lemmy.ml/c/datahoarder/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "datahoarder"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729303437 {#314
date: 2024-10-19 04:03:57.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1695727192 {#308
date: 2023-09-26 13:19:52.0 +02:00
}
}
+image: null
+parent: App\Entity\EntryComment {#3043
+user: App\Entity\User {#1452 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2909 …}
+magazine: App\Entity\Magazine {#305}
+image: null
+parent: App\Entity\EntryComment {#2908
+user: App\Entity\User {#1452 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2909 …}
+magazine: App\Entity\Magazine {#305}
+image: null
+parent: null
+root: null
+body: """
According to [this](https://blog.playapod.com/2019/05/26/playapod-2-features/) you can copy stuff *onto* it. I assume you’ve tried to see if you can copy *off?* If not, then there is probably no way to extract the audio, short of recording it as it plays.\n
\n
I was only able to find a couple episodes online. One on [someone’s google drive](https://drive.google.com/drive/folders/10veQ0gNRgoz9oG42VbHZEoMlUxxLwFfX) and a few in [the wayback machine](https://web.archive.org/web/20091230082716/http://www.endlessboundaries.com/archives/), all from [this thread](https://archive.ph/hbYbH)\n
\n
edit: if playapod has an option to store files on an sd card, that’s usually stored unencrypted. (on android anyway…)\n
\n
edit: wait iphones don’t even have sd card slots, right? lol
"""
+lang: "en"
+isAdult: false
+favouriteCount: 3
+score: 0
+lastActive: DateTime @1706206232 {#2902
date: 2024-01-25 19:10:32.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@yo_scottie_oh@lemmy.ml"
]
+children: Doctrine\ORM\PersistentCollection {#2910 …}
+nested: Doctrine\ORM\PersistentCollection {#2912 …}
+votes: Doctrine\ORM\PersistentCollection {#2914 …}
+reports: Doctrine\ORM\PersistentCollection {#2916 …}
+favourites: Doctrine\ORM\PersistentCollection {#2918 …}
+notifications: Doctrine\ORM\PersistentCollection {#2920 …}
-id: 240652
-bodyTs: "'/2019/05/26/playapod-2-features/)':6 '/drive/folders/10veq0gnrgoz9og42vbhzeomluxxlwffx)':62 '/hbybh)':79 '/web/20091230082716/http://www.endlessboundaries.com/archives/),':72 'abl':47 'accord':1 'android':99 'anyway':100 'archive.ph':78 'archive.ph/hbybh)':77 'assum':14 'audio':36 'blog.playapod.com':5 'blog.playapod.com/2019/05/26/playapod-2-features/)':4 'card':92,109 'copi':9,23 'coupl':51 'drive':59 'drive.google.com':61 'drive.google.com/drive/folders/10veq0gnrgoz9og42vbhzeomluxxlwffx)':60 'edit':80,101 'episod':52 'even':106 'extract':34 'file':88 'find':49 'googl':58 'iphon':103 'lol':112 'machin':69 'one':54 'onlin':53 'onto':11 'option':85 'play':43 'playapod':82 'probabl':30 'record':39 'right':111 'sd':91,108 'see':19 'short':37 'slot':110 'someon':56 'store':87,96 'stuff':10 'thread':76 'tri':17 'unencrypt':97 'usual':95 've':16 'wait':102 'way':32 'wayback':68 'web.archive.org':71 'web.archive.org/web/20091230082716/http://www.endlessboundaries.com/archives/),':70"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemm.ee/comment/7493462"
+editedAt: DateTimeImmutable @1706102006 {#2903
date: 2024-01-24 14:13:26.0 +01:00
}
+createdAt: DateTimeImmutable @1703174021 {#2904
date: 2023-12-21 16:53:41.0 +01:00
}
}
+root: App\Entity\EntryComment {#2908}
+body: """
Actually there might be a whole bunch more in the wayback machine. (though still not that many) [here](http://web.archive.org/web/*/http://endlessboundaries.com/*)\n
\n
Just sort by mime type and check out audio/* for items of interest
"""
+lang: "en"
+isAdult: false
+favouriteCount: 1
+score: 0
+lastActive: DateTime @1703194864 {#3046
date: 2023-12-21 22:41:04.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@yo_scottie_oh@lemmy.ml"
"@bela@lemm.ee"
]
+children: Doctrine\ORM\PersistentCollection {#3042 …}
+nested: Doctrine\ORM\PersistentCollection {#3040 …}
+votes: Doctrine\ORM\PersistentCollection {#3038 …}
+reports: Doctrine\ORM\PersistentCollection {#3036 …}
+favourites: Doctrine\ORM\PersistentCollection {#3034 …}
+notifications: Doctrine\ORM\PersistentCollection {#3032 …}
-id: 241526
-bodyTs: "'/web/*/http://endlessboundaries.com/*)':21 'actual':1 'audio':30 'bunch':7 'check':28 'interest':34 'item':32 'machin':12 'mani':17 'might':3 'mime':25 'sort':23 'still':14 'though':13 'type':26 'wayback':11 'web.archive.org':20 'web.archive.org/web/*/http://endlessboundaries.com/*)':19 'whole':6"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemm.ee/comment/7501742"
+editedAt: DateTimeImmutable @1706162670 {#3045
date: 2024-01-25 07:04:30.0 +01:00
}
+createdAt: DateTimeImmutable @1703194864 {#3044
date: 2023-12-21 22:41:04.0 +01:00
}
}
+root: App\Entity\EntryComment {#2908}
+body: """
This helped me, thank you so much! I filtered by `.mp3` and I’m using DownThemAll to download all the episodes in batches.\n
\n
ETA at first, all the downloads failed because I was attempting to download multiple files simultaneously. After configuring DownThemAll to allow only one simultaneous download, it’s been smooth sailing.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 1
+score: 0
+lastActive: DateTime @1703201667 {#3300
date: 2023-12-22 00:34:27.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@yo_scottie_oh@lemmy.ml"
"@bela@lemm.ee"
]
+children: Doctrine\ORM\PersistentCollection {#3291 …}
+nested: Doctrine\ORM\PersistentCollection {#3289 …}
+votes: Doctrine\ORM\PersistentCollection {#3293 …}
+reports: Doctrine\ORM\PersistentCollection {#3305 …}
+favourites: Doctrine\ORM\PersistentCollection {#3307 …}
+notifications: Doctrine\ORM\PersistentCollection {#3309 …}
-id: 241821
-bodyTs: "'allow':44 'attempt':34 'batch':23 'configur':41 'download':18,29,36,48 'downthemal':16,42 'episod':21 'eta':24 'fail':30 'file':38 'filter':9 'first':26 'help':2 'm':14 'mp3':11 'much':7 'multipl':37 'one':46 'sail':53 'simultan':39,47 'smooth':52 'thank':4 'use':15"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://lemmy.ml/comment/6809551"
+editedAt: DateTimeImmutable @1706207412 {#3303
date: 2024-01-25 19:30:12.0 +01:00
}
+createdAt: DateTimeImmutable @1703201667 {#3299
date: 2023-12-22 00:34:27.0 +01:00
}
} |
|
Show voter details
|
145 |
DENIED
|
ROLE_USER
|
null |
|
Show voter details
|
146 |
DENIED
|
moderate
|
App\Entity\EntryComment {#2924
+user: App\Entity\User {#2937 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2909 …}
+magazine: App\Entity\Magazine {#305
+icon: null
+name: "datahoarder@lemmy.ml"
+title: "datahoarder"
+description: """
**Who are we?**\n
\n
We are digital librarians. Among us are represented the various reasons to keep data – legal requirements, competitive requirements, uncertainty of permanence of cloud services, distaste for transmitting your data externally (e.g. government or corporate espionage), cultural and familial archivists, internet collapse preppers, and people who do it themselves so they’re sure it’s done right. Everyone has their reasons for curating the data they have decided to keep (either forever or For A Damn Long Time). Along the way we have sought out like-minded individuals to exchange strategies, war stories, and cautionary tales of failures.\n
\n
We are one. We are legion. And we’re trying really hard not to forget.\n
\n
– 5-4-3-2-1-bang from [this thread](https://web.archive.org/web/20221111153119/https://old.reddit.com/r/DataHoarder/comments/41tqt4/hi_guys_can_i_kindly_ask_for_an_eli5_of_this/cz53pi0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 58
+entryCommentCount: 311
+postCount: 1
+postCommentCount: 1
+isAdult: false
+customCss: null
+lastActive: DateTime @1729502222 {#313
date: 2024-10-21 11:17:02.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#293 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#289 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#278 …}
+entries: Doctrine\ORM\PersistentCollection {#236 …}
+posts: Doctrine\ORM\PersistentCollection {#194 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#256 …}
+bans: Doctrine\ORM\PersistentCollection {#173 …}
+reports: Doctrine\ORM\PersistentCollection {#159 …}
+badges: Doctrine\ORM\PersistentCollection {#137 …}
+logs: Doctrine\ORM\PersistentCollection {#127 …}
+awards: Doctrine\ORM\PersistentCollection {#116 …}
+categories: Doctrine\ORM\PersistentCollection {#103 …}
-id: 32
+apId: "datahoarder@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/datahoarder"
+apPublicUrl: "https://lemmy.ml/c/datahoarder"
+apFollowersUrl: "https://lemmy.ml/c/datahoarder/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "datahoarder"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729303437 {#314
date: 2024-10-19 04:03:57.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1695727192 {#308
date: 2023-09-26 13:19:52.0 +02:00
}
}
+image: null
+parent: null
+root: null
+body: "The Playapod website mentions a web player, does the web player happen to sync with your app on the phone? If so maybe you can extract it through the web player on a desktop."
+lang: "en"
+isAdult: false
+favouriteCount: 1
+score: 0
+lastActive: DateTime @1706185759 {#2907
date: 2024-01-25 13:29:19.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@yo_scottie_oh@lemmy.ml"
]
+children: Doctrine\ORM\PersistentCollection {#2925 …}
+nested: Doctrine\ORM\PersistentCollection {#2927 …}
+votes: Doctrine\ORM\PersistentCollection {#2929 …}
+reports: Doctrine\ORM\PersistentCollection {#2931 …}
+favourites: Doctrine\ORM\PersistentCollection {#2933 …}
+notifications: Doctrine\ORM\PersistentCollection {#2935 …}
-id: 241382
-bodyTs: "'app':17 'desktop':34 'extract':26 'happen':12 'mayb':23 'mention':4 'phone':20 'playapod':2 'player':7,11,31 'sync':14 'web':6,10,30 'websit':3"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://beehaw.org/comment/1899136"
+editedAt: null
+createdAt: DateTimeImmutable @1703191718 {#2906
date: 2023-12-21 21:48:38.0 +01:00
}
} |
|
Show voter details
|
147 |
DENIED
|
edit
|
App\Entity\EntryComment {#2924
+user: App\Entity\User {#2937 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2909 …}
+magazine: App\Entity\Magazine {#305
+icon: null
+name: "datahoarder@lemmy.ml"
+title: "datahoarder"
+description: """
**Who are we?**\n
\n
We are digital librarians. Among us are represented the various reasons to keep data – legal requirements, competitive requirements, uncertainty of permanence of cloud services, distaste for transmitting your data externally (e.g. government or corporate espionage), cultural and familial archivists, internet collapse preppers, and people who do it themselves so they’re sure it’s done right. Everyone has their reasons for curating the data they have decided to keep (either forever or For A Damn Long Time). Along the way we have sought out like-minded individuals to exchange strategies, war stories, and cautionary tales of failures.\n
\n
We are one. We are legion. And we’re trying really hard not to forget.\n
\n
– 5-4-3-2-1-bang from [this thread](https://web.archive.org/web/20221111153119/https://old.reddit.com/r/DataHoarder/comments/41tqt4/hi_guys_can_i_kindly_ask_for_an_eli5_of_this/cz53pi0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 58
+entryCommentCount: 311
+postCount: 1
+postCommentCount: 1
+isAdult: false
+customCss: null
+lastActive: DateTime @1729502222 {#313
date: 2024-10-21 11:17:02.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#293 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#289 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#278 …}
+entries: Doctrine\ORM\PersistentCollection {#236 …}
+posts: Doctrine\ORM\PersistentCollection {#194 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#256 …}
+bans: Doctrine\ORM\PersistentCollection {#173 …}
+reports: Doctrine\ORM\PersistentCollection {#159 …}
+badges: Doctrine\ORM\PersistentCollection {#137 …}
+logs: Doctrine\ORM\PersistentCollection {#127 …}
+awards: Doctrine\ORM\PersistentCollection {#116 …}
+categories: Doctrine\ORM\PersistentCollection {#103 …}
-id: 32
+apId: "datahoarder@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/datahoarder"
+apPublicUrl: "https://lemmy.ml/c/datahoarder"
+apFollowersUrl: "https://lemmy.ml/c/datahoarder/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "datahoarder"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729303437 {#314
date: 2024-10-19 04:03:57.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1695727192 {#308
date: 2023-09-26 13:19:52.0 +02:00
}
}
+image: null
+parent: null
+root: null
+body: "The Playapod website mentions a web player, does the web player happen to sync with your app on the phone? If so maybe you can extract it through the web player on a desktop."
+lang: "en"
+isAdult: false
+favouriteCount: 1
+score: 0
+lastActive: DateTime @1706185759 {#2907
date: 2024-01-25 13:29:19.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@yo_scottie_oh@lemmy.ml"
]
+children: Doctrine\ORM\PersistentCollection {#2925 …}
+nested: Doctrine\ORM\PersistentCollection {#2927 …}
+votes: Doctrine\ORM\PersistentCollection {#2929 …}
+reports: Doctrine\ORM\PersistentCollection {#2931 …}
+favourites: Doctrine\ORM\PersistentCollection {#2933 …}
+notifications: Doctrine\ORM\PersistentCollection {#2935 …}
-id: 241382
-bodyTs: "'app':17 'desktop':34 'extract':26 'happen':12 'mayb':23 'mention':4 'phone':20 'playapod':2 'player':7,11,31 'sync':14 'web':6,10,30 'websit':3"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://beehaw.org/comment/1899136"
+editedAt: null
+createdAt: DateTimeImmutable @1703191718 {#2906
date: 2023-12-21 21:48:38.0 +01:00
}
} |
|
Show voter details
|
148 |
DENIED
|
moderate
|
App\Entity\EntryComment {#2924
+user: App\Entity\User {#2937 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2909 …}
+magazine: App\Entity\Magazine {#305
+icon: null
+name: "datahoarder@lemmy.ml"
+title: "datahoarder"
+description: """
**Who are we?**\n
\n
We are digital librarians. Among us are represented the various reasons to keep data – legal requirements, competitive requirements, uncertainty of permanence of cloud services, distaste for transmitting your data externally (e.g. government or corporate espionage), cultural and familial archivists, internet collapse preppers, and people who do it themselves so they’re sure it’s done right. Everyone has their reasons for curating the data they have decided to keep (either forever or For A Damn Long Time). Along the way we have sought out like-minded individuals to exchange strategies, war stories, and cautionary tales of failures.\n
\n
We are one. We are legion. And we’re trying really hard not to forget.\n
\n
– 5-4-3-2-1-bang from [this thread](https://web.archive.org/web/20221111153119/https://old.reddit.com/r/DataHoarder/comments/41tqt4/hi_guys_can_i_kindly_ask_for_an_eli5_of_this/cz53pi0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 58
+entryCommentCount: 311
+postCount: 1
+postCommentCount: 1
+isAdult: false
+customCss: null
+lastActive: DateTime @1729502222 {#313
date: 2024-10-21 11:17:02.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#293 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#289 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#278 …}
+entries: Doctrine\ORM\PersistentCollection {#236 …}
+posts: Doctrine\ORM\PersistentCollection {#194 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#256 …}
+bans: Doctrine\ORM\PersistentCollection {#173 …}
+reports: Doctrine\ORM\PersistentCollection {#159 …}
+badges: Doctrine\ORM\PersistentCollection {#137 …}
+logs: Doctrine\ORM\PersistentCollection {#127 …}
+awards: Doctrine\ORM\PersistentCollection {#116 …}
+categories: Doctrine\ORM\PersistentCollection {#103 …}
-id: 32
+apId: "datahoarder@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/datahoarder"
+apPublicUrl: "https://lemmy.ml/c/datahoarder"
+apFollowersUrl: "https://lemmy.ml/c/datahoarder/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "datahoarder"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729303437 {#314
date: 2024-10-19 04:03:57.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1695727192 {#308
date: 2023-09-26 13:19:52.0 +02:00
}
}
+image: null
+parent: null
+root: null
+body: "The Playapod website mentions a web player, does the web player happen to sync with your app on the phone? If so maybe you can extract it through the web player on a desktop."
+lang: "en"
+isAdult: false
+favouriteCount: 1
+score: 0
+lastActive: DateTime @1706185759 {#2907
date: 2024-01-25 13:29:19.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@yo_scottie_oh@lemmy.ml"
]
+children: Doctrine\ORM\PersistentCollection {#2925 …}
+nested: Doctrine\ORM\PersistentCollection {#2927 …}
+votes: Doctrine\ORM\PersistentCollection {#2929 …}
+reports: Doctrine\ORM\PersistentCollection {#2931 …}
+favourites: Doctrine\ORM\PersistentCollection {#2933 …}
+notifications: Doctrine\ORM\PersistentCollection {#2935 …}
-id: 241382
-bodyTs: "'app':17 'desktop':34 'extract':26 'happen':12 'mayb':23 'mention':4 'phone':20 'playapod':2 'player':7,11,31 'sync':14 'web':6,10,30 'websit':3"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://beehaw.org/comment/1899136"
+editedAt: null
+createdAt: DateTimeImmutable @1703191718 {#2906
date: 2023-12-21 21:48:38.0 +01:00
}
} |
|
Show voter details
|
149 |
DENIED
|
edit
|
App\Entity\Magazine {#305
+icon: null
+name: "datahoarder@lemmy.ml"
+title: "datahoarder"
+description: """
**Who are we?**\n
\n
We are digital librarians. Among us are represented the various reasons to keep data – legal requirements, competitive requirements, uncertainty of permanence of cloud services, distaste for transmitting your data externally (e.g. government or corporate espionage), cultural and familial archivists, internet collapse preppers, and people who do it themselves so they’re sure it’s done right. Everyone has their reasons for curating the data they have decided to keep (either forever or For A Damn Long Time). Along the way we have sought out like-minded individuals to exchange strategies, war stories, and cautionary tales of failures.\n
\n
We are one. We are legion. And we’re trying really hard not to forget.\n
\n
– 5-4-3-2-1-bang from [this thread](https://web.archive.org/web/20221111153119/https://old.reddit.com/r/DataHoarder/comments/41tqt4/hi_guys_can_i_kindly_ask_for_an_eli5_of_this/cz53pi0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 58
+entryCommentCount: 311
+postCount: 1
+postCommentCount: 1
+isAdult: false
+customCss: null
+lastActive: DateTime @1729502222 {#313
date: 2024-10-21 11:17:02.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#293 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#289 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#278 …}
+entries: Doctrine\ORM\PersistentCollection {#236 …}
+posts: Doctrine\ORM\PersistentCollection {#194 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#256 …}
+bans: Doctrine\ORM\PersistentCollection {#173 …}
+reports: Doctrine\ORM\PersistentCollection {#159 …}
+badges: Doctrine\ORM\PersistentCollection {#137 …}
+logs: Doctrine\ORM\PersistentCollection {#127 …}
+awards: Doctrine\ORM\PersistentCollection {#116 …}
+categories: Doctrine\ORM\PersistentCollection {#103 …}
-id: 32
+apId: "datahoarder@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/datahoarder"
+apPublicUrl: "https://lemmy.ml/c/datahoarder"
+apFollowersUrl: "https://lemmy.ml/c/datahoarder/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "datahoarder"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729303437 {#314
date: 2024-10-19 04:03:57.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1695727192 {#308
date: 2023-09-26 13:19:52.0 +02:00
}
} |
|
Show voter details
|