1 |
DENIED
|
ROLE_USER
|
null |
|
Show voter details
|
2 |
DENIED
|
moderate
|
App\Entity\Entry {#1794
+user: Proxies\__CG__\App\Entity\User {#1900 …}
+magazine: App\Entity\Magazine {#289
+icon: Proxies\__CG__\App\Entity\Image {#270 …}
+name: "linux@lemmy.ml"
+title: "linux"
+description: """
From Wikipedia, the free encyclopedia\n
\n
Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).\n
\n
Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word “Linux” in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.\n
\n
### Rules\n
\n
- Posts must be relevant to operating systems running the Linux kernel. GNU/Linux or otherwise.\n
- No misinformation\n
- No NSFW content\n
- No hate speech, bigotry, etc\n
\n
### Related Communities\n
\n
- [!opensource@lemmy.ml](https://lemmy.ml/c/opensource)\n
- [!libre_culture@lemmy.ml](https://lemmy.ml/c/libre_culture)\n
- [!technology@lemmy.ml](https://lemmy.ml/c/technology)\n
- [!libre_hardware@lemmy.ml](https://lemmy.ml/c/libre_hardware)\n
\n
Community icon by [Alpár-Etele Méder](https://www.iconfinder.com/pocike), licensed under [CC BY 3.0](https://creativecommons.org/licenses/by/3.0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 1406
+entryCommentCount: 28632
+postCount: 6
+postCommentCount: 214
+isAdult: false
+customCss: null
+lastActive: DateTime @1729583542 {#299
date: 2024-10-22 09:52:22.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#261 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#257 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#246 …}
+entries: Doctrine\ORM\PersistentCollection {#204 …}
+posts: Doctrine\ORM\PersistentCollection {#162 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#224 …}
+bans: Doctrine\ORM\PersistentCollection {#141 …}
+reports: Doctrine\ORM\PersistentCollection {#127 …}
+badges: Doctrine\ORM\PersistentCollection {#105 …}
+logs: Doctrine\ORM\PersistentCollection {#95 …}
+awards: Doctrine\ORM\PersistentCollection {#84 …}
+categories: Doctrine\ORM\PersistentCollection {#71 …}
-id: 73
+apId: "linux@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/linux"
+apPublicUrl: "https://lemmy.ml/c/linux"
+apFollowersUrl: "https://lemmy.ml/c/linux/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "linux"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729583596 {#293
date: 2024-10-22 09:53:16.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1698929468 {#292
date: 2023-11-02 13:51:08.0 +01:00
}
}
+image: null
+domain: Proxies\__CG__\App\Entity\Domain {#1916 …}
+slug: "My-First-Regular-Expressions"
+title: "My First Regular Expressions"
+url: null
+body: """
I’ve been reading *Mastering Regular Expressions* by Jeffrey E.F. Friedl, and since nobody in my life (aside from my wife) cares, I thought I’d share something I’m pretty proud of. My first set of regular expressions, that I wrote myself to manipulate the text I’m working with.\n
\n
What’s I’m so happy about is that I wrote these expressions. I understand exactly what they do and the purpose of each character in each expression.\n
\n
I’ve used regex in the past. Stuff cobbled together from stack overflow, but I never really understood how they worked or what the expressions meant, just that they did what I needed them to do at the time.\n
\n
I’m only about 10% of the way through the book, but already I understand so much more than I ever did about regex *(I also recognize I have a lot to learn)*.\n
\n
I wrote the expressions to be used with egrep and sed to generate and clean up a list of filenames pulled out of tarballs. *(movies I’ve ripped from my DVD collection and tarballed to archive them)*.\n
\n
The first expression I wrote was this one used with tar and egrep to list the files in the tarball and get just the name of the video file:\n
\n
`tar -tzvf file.tar.gz | egrep -o ‘/[^/]*.m(kv|p4)’ > movielist`\n
\n
Which gives me a list of movies of which this is an example:\n
\n
`/The.Hunger.Games.(2012).[tmdbid-70160].mp4`\n
\n
Then I used sed with the expression groups to remove:\n
\n
- the leading forward slash\n
- Everything from `.[` to the end\n
- All of the periods in between words\n
\n
And the last expression checks for one or more spaces and replaces them with a single space.\n
\n
This is the full sed command:\n
\n
`sed -Eie ‘s/^///; s/.[[a-z]±[0-9]+].m(p4|kv)//; s/[^a-zA-Z0-9()&-]/ /g; s/ +/ /g’ movielist`\n
\n
Which leaves me with a pretty list of movies that looks like this:\n
\n
`The Hunger Games (2012)`\n
\n
I’m sure this could be done more elegantly, and I’m happy for any feedback on how to do that! For now, I’m just excited that I’m beginning to understand regex and how to use it!\n
\n
Edit: fixed title so it didn’t say “regex expressions”
"""
+type: "article"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 63
+favouriteCount: 214
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1711562613 {#1861
date: 2024-03-27 19:03:33.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#1947 …}
+votes: Doctrine\ORM\PersistentCollection {#1893 …}
+reports: Doctrine\ORM\PersistentCollection {#2388 …}
+favourites: Doctrine\ORM\PersistentCollection {#1397 …}
+notifications: Doctrine\ORM\PersistentCollection {#1371 …}
+badges: Doctrine\ORM\PersistentCollection {#1379 …}
+children: []
-id: 24511
-titleTs: "'express':4 'first':2 'regular':3"
-bodyTs: "'-70160':243 '-9':302 '/g':312,314 '/the.hunger.games':240 '0':301 '10':123 '2012':241,332 '9':311 'a-z':298 'a-za-z0':307 'alreadi':131 'also':144 'archiv':187 'asid':18 'begin':363 'book':129 'care':22 'charact':76 'check':275 'clean':166 'cobbl':88 'collect':183 'command':293 'could':337 'd':26 'didn':377 'done':339 'dvd':182 'e.f':10 'edit':372 'egrep':160,201,221 'eie':295 'eleg':341 'end':263 'ever':139 'everyth':259 'exact':67 'exampl':239 'excit':359 'express':7,39,64,79,104,155,191,251,274,381 'feedback':348 'file':205,217 'file.tar.gz':220 'filenam':171 'first':35,190 'fix':373 'forward':257 'friedl':11 'full':291 'game':331 'generat':164 'get':210 'give':228 'group':252 'happi':57,345 'hunger':330 'jeffrey':9 'kv':224,305 'last':273 'lead':256 'learn':151 'leav':317 'life':17 'like':327 'list':169,203,231,322 'look':326 'lot':149 'm':30,49,55,120,223,303,334,344,357,362 'manipul':45 'master':5 'meant':105 'movi':176,233,324 'movielist':226,315 'mp4':244 'much':135 'name':213 'need':112 'never':95 'nobodi':14 'o':222 'one':196,277 'overflow':92 'p4':225,304 'past':86 'period':267 'pretti':31,321 'proud':32 'pull':172 'purpos':73 'read':4 'realli':96 'recogn':145 'regex':83,142,366,380 'regular':6,38 'remov':254 'replac':282 'rip':179 'say':379 'sed':162,248,292,294 'set':36 'share':27 'sinc':13 'singl':286 'slash':258 'someth':28 'space':280,287 'stack':91 'stuff':87 'sure':335 'tar':199,218 'tarbal':175,185,208 'text':47 'thought':24 'time':118 'titl':374 'tmdbid':242 'togeth':89 'tzvf':219 'understand':66,133,365 'understood':97 'use':82,158,197,247,370 've':2,81,178 'video':216 'way':126 'wife':21 'word':270 'work':50,100 'wrote':42,62,153,193 'z':300 'z0':310 'za':309"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1703542531
+visibility: "visible "
+apId: "https://lemmy.world/post/9942188"
+editedAt: DateTimeImmutable @1707607314 {#75
date: 2024-02-11 00:21:54.0 +01:00
}
+createdAt: DateTimeImmutable @1703456131 {#2415
date: 2023-12-24 23:15:31.0 +01:00
}
} |
|
Show voter details
|
3 |
DENIED
|
edit
|
App\Entity\Entry {#1794
+user: Proxies\__CG__\App\Entity\User {#1900 …}
+magazine: App\Entity\Magazine {#289
+icon: Proxies\__CG__\App\Entity\Image {#270 …}
+name: "linux@lemmy.ml"
+title: "linux"
+description: """
From Wikipedia, the free encyclopedia\n
\n
Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).\n
\n
Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word “Linux” in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.\n
\n
### Rules\n
\n
- Posts must be relevant to operating systems running the Linux kernel. GNU/Linux or otherwise.\n
- No misinformation\n
- No NSFW content\n
- No hate speech, bigotry, etc\n
\n
### Related Communities\n
\n
- [!opensource@lemmy.ml](https://lemmy.ml/c/opensource)\n
- [!libre_culture@lemmy.ml](https://lemmy.ml/c/libre_culture)\n
- [!technology@lemmy.ml](https://lemmy.ml/c/technology)\n
- [!libre_hardware@lemmy.ml](https://lemmy.ml/c/libre_hardware)\n
\n
Community icon by [Alpár-Etele Méder](https://www.iconfinder.com/pocike), licensed under [CC BY 3.0](https://creativecommons.org/licenses/by/3.0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 1406
+entryCommentCount: 28632
+postCount: 6
+postCommentCount: 214
+isAdult: false
+customCss: null
+lastActive: DateTime @1729583542 {#299
date: 2024-10-22 09:52:22.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#261 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#257 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#246 …}
+entries: Doctrine\ORM\PersistentCollection {#204 …}
+posts: Doctrine\ORM\PersistentCollection {#162 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#224 …}
+bans: Doctrine\ORM\PersistentCollection {#141 …}
+reports: Doctrine\ORM\PersistentCollection {#127 …}
+badges: Doctrine\ORM\PersistentCollection {#105 …}
+logs: Doctrine\ORM\PersistentCollection {#95 …}
+awards: Doctrine\ORM\PersistentCollection {#84 …}
+categories: Doctrine\ORM\PersistentCollection {#71 …}
-id: 73
+apId: "linux@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/linux"
+apPublicUrl: "https://lemmy.ml/c/linux"
+apFollowersUrl: "https://lemmy.ml/c/linux/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "linux"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729583596 {#293
date: 2024-10-22 09:53:16.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1698929468 {#292
date: 2023-11-02 13:51:08.0 +01:00
}
}
+image: null
+domain: Proxies\__CG__\App\Entity\Domain {#1916 …}
+slug: "My-First-Regular-Expressions"
+title: "My First Regular Expressions"
+url: null
+body: """
I’ve been reading *Mastering Regular Expressions* by Jeffrey E.F. Friedl, and since nobody in my life (aside from my wife) cares, I thought I’d share something I’m pretty proud of. My first set of regular expressions, that I wrote myself to manipulate the text I’m working with.\n
\n
What’s I’m so happy about is that I wrote these expressions. I understand exactly what they do and the purpose of each character in each expression.\n
\n
I’ve used regex in the past. Stuff cobbled together from stack overflow, but I never really understood how they worked or what the expressions meant, just that they did what I needed them to do at the time.\n
\n
I’m only about 10% of the way through the book, but already I understand so much more than I ever did about regex *(I also recognize I have a lot to learn)*.\n
\n
I wrote the expressions to be used with egrep and sed to generate and clean up a list of filenames pulled out of tarballs. *(movies I’ve ripped from my DVD collection and tarballed to archive them)*.\n
\n
The first expression I wrote was this one used with tar and egrep to list the files in the tarball and get just the name of the video file:\n
\n
`tar -tzvf file.tar.gz | egrep -o ‘/[^/]*.m(kv|p4)’ > movielist`\n
\n
Which gives me a list of movies of which this is an example:\n
\n
`/The.Hunger.Games.(2012).[tmdbid-70160].mp4`\n
\n
Then I used sed with the expression groups to remove:\n
\n
- the leading forward slash\n
- Everything from `.[` to the end\n
- All of the periods in between words\n
\n
And the last expression checks for one or more spaces and replaces them with a single space.\n
\n
This is the full sed command:\n
\n
`sed -Eie ‘s/^///; s/.[[a-z]±[0-9]+].m(p4|kv)//; s/[^a-zA-Z0-9()&-]/ /g; s/ +/ /g’ movielist`\n
\n
Which leaves me with a pretty list of movies that looks like this:\n
\n
`The Hunger Games (2012)`\n
\n
I’m sure this could be done more elegantly, and I’m happy for any feedback on how to do that! For now, I’m just excited that I’m beginning to understand regex and how to use it!\n
\n
Edit: fixed title so it didn’t say “regex expressions”
"""
+type: "article"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 63
+favouriteCount: 214
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1711562613 {#1861
date: 2024-03-27 19:03:33.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#1947 …}
+votes: Doctrine\ORM\PersistentCollection {#1893 …}
+reports: Doctrine\ORM\PersistentCollection {#2388 …}
+favourites: Doctrine\ORM\PersistentCollection {#1397 …}
+notifications: Doctrine\ORM\PersistentCollection {#1371 …}
+badges: Doctrine\ORM\PersistentCollection {#1379 …}
+children: []
-id: 24511
-titleTs: "'express':4 'first':2 'regular':3"
-bodyTs: "'-70160':243 '-9':302 '/g':312,314 '/the.hunger.games':240 '0':301 '10':123 '2012':241,332 '9':311 'a-z':298 'a-za-z0':307 'alreadi':131 'also':144 'archiv':187 'asid':18 'begin':363 'book':129 'care':22 'charact':76 'check':275 'clean':166 'cobbl':88 'collect':183 'command':293 'could':337 'd':26 'didn':377 'done':339 'dvd':182 'e.f':10 'edit':372 'egrep':160,201,221 'eie':295 'eleg':341 'end':263 'ever':139 'everyth':259 'exact':67 'exampl':239 'excit':359 'express':7,39,64,79,104,155,191,251,274,381 'feedback':348 'file':205,217 'file.tar.gz':220 'filenam':171 'first':35,190 'fix':373 'forward':257 'friedl':11 'full':291 'game':331 'generat':164 'get':210 'give':228 'group':252 'happi':57,345 'hunger':330 'jeffrey':9 'kv':224,305 'last':273 'lead':256 'learn':151 'leav':317 'life':17 'like':327 'list':169,203,231,322 'look':326 'lot':149 'm':30,49,55,120,223,303,334,344,357,362 'manipul':45 'master':5 'meant':105 'movi':176,233,324 'movielist':226,315 'mp4':244 'much':135 'name':213 'need':112 'never':95 'nobodi':14 'o':222 'one':196,277 'overflow':92 'p4':225,304 'past':86 'period':267 'pretti':31,321 'proud':32 'pull':172 'purpos':73 'read':4 'realli':96 'recogn':145 'regex':83,142,366,380 'regular':6,38 'remov':254 'replac':282 'rip':179 'say':379 'sed':162,248,292,294 'set':36 'share':27 'sinc':13 'singl':286 'slash':258 'someth':28 'space':280,287 'stack':91 'stuff':87 'sure':335 'tar':199,218 'tarbal':175,185,208 'text':47 'thought':24 'time':118 'titl':374 'tmdbid':242 'togeth':89 'tzvf':219 'understand':66,133,365 'understood':97 'use':82,158,197,247,370 've':2,81,178 'video':216 'way':126 'wife':21 'word':270 'work':50,100 'wrote':42,62,153,193 'z':300 'z0':310 'za':309"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1703542531
+visibility: "visible "
+apId: "https://lemmy.world/post/9942188"
+editedAt: DateTimeImmutable @1707607314 {#75
date: 2024-02-11 00:21:54.0 +01:00
}
+createdAt: DateTimeImmutable @1703456131 {#2415
date: 2023-12-24 23:15:31.0 +01:00
}
} |
|
Show voter details
|
4 |
DENIED
|
moderate
|
App\Entity\Entry {#1794
+user: Proxies\__CG__\App\Entity\User {#1900 …}
+magazine: App\Entity\Magazine {#289
+icon: Proxies\__CG__\App\Entity\Image {#270 …}
+name: "linux@lemmy.ml"
+title: "linux"
+description: """
From Wikipedia, the free encyclopedia\n
\n
Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).\n
\n
Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word “Linux” in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.\n
\n
### Rules\n
\n
- Posts must be relevant to operating systems running the Linux kernel. GNU/Linux or otherwise.\n
- No misinformation\n
- No NSFW content\n
- No hate speech, bigotry, etc\n
\n
### Related Communities\n
\n
- [!opensource@lemmy.ml](https://lemmy.ml/c/opensource)\n
- [!libre_culture@lemmy.ml](https://lemmy.ml/c/libre_culture)\n
- [!technology@lemmy.ml](https://lemmy.ml/c/technology)\n
- [!libre_hardware@lemmy.ml](https://lemmy.ml/c/libre_hardware)\n
\n
Community icon by [Alpár-Etele Méder](https://www.iconfinder.com/pocike), licensed under [CC BY 3.0](https://creativecommons.org/licenses/by/3.0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 1406
+entryCommentCount: 28632
+postCount: 6
+postCommentCount: 214
+isAdult: false
+customCss: null
+lastActive: DateTime @1729583542 {#299
date: 2024-10-22 09:52:22.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#261 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#257 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#246 …}
+entries: Doctrine\ORM\PersistentCollection {#204 …}
+posts: Doctrine\ORM\PersistentCollection {#162 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#224 …}
+bans: Doctrine\ORM\PersistentCollection {#141 …}
+reports: Doctrine\ORM\PersistentCollection {#127 …}
+badges: Doctrine\ORM\PersistentCollection {#105 …}
+logs: Doctrine\ORM\PersistentCollection {#95 …}
+awards: Doctrine\ORM\PersistentCollection {#84 …}
+categories: Doctrine\ORM\PersistentCollection {#71 …}
-id: 73
+apId: "linux@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/linux"
+apPublicUrl: "https://lemmy.ml/c/linux"
+apFollowersUrl: "https://lemmy.ml/c/linux/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "linux"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729583596 {#293
date: 2024-10-22 09:53:16.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1698929468 {#292
date: 2023-11-02 13:51:08.0 +01:00
}
}
+image: null
+domain: Proxies\__CG__\App\Entity\Domain {#1916 …}
+slug: "My-First-Regular-Expressions"
+title: "My First Regular Expressions"
+url: null
+body: """
I’ve been reading *Mastering Regular Expressions* by Jeffrey E.F. Friedl, and since nobody in my life (aside from my wife) cares, I thought I’d share something I’m pretty proud of. My first set of regular expressions, that I wrote myself to manipulate the text I’m working with.\n
\n
What’s I’m so happy about is that I wrote these expressions. I understand exactly what they do and the purpose of each character in each expression.\n
\n
I’ve used regex in the past. Stuff cobbled together from stack overflow, but I never really understood how they worked or what the expressions meant, just that they did what I needed them to do at the time.\n
\n
I’m only about 10% of the way through the book, but already I understand so much more than I ever did about regex *(I also recognize I have a lot to learn)*.\n
\n
I wrote the expressions to be used with egrep and sed to generate and clean up a list of filenames pulled out of tarballs. *(movies I’ve ripped from my DVD collection and tarballed to archive them)*.\n
\n
The first expression I wrote was this one used with tar and egrep to list the files in the tarball and get just the name of the video file:\n
\n
`tar -tzvf file.tar.gz | egrep -o ‘/[^/]*.m(kv|p4)’ > movielist`\n
\n
Which gives me a list of movies of which this is an example:\n
\n
`/The.Hunger.Games.(2012).[tmdbid-70160].mp4`\n
\n
Then I used sed with the expression groups to remove:\n
\n
- the leading forward slash\n
- Everything from `.[` to the end\n
- All of the periods in between words\n
\n
And the last expression checks for one or more spaces and replaces them with a single space.\n
\n
This is the full sed command:\n
\n
`sed -Eie ‘s/^///; s/.[[a-z]±[0-9]+].m(p4|kv)//; s/[^a-zA-Z0-9()&-]/ /g; s/ +/ /g’ movielist`\n
\n
Which leaves me with a pretty list of movies that looks like this:\n
\n
`The Hunger Games (2012)`\n
\n
I’m sure this could be done more elegantly, and I’m happy for any feedback on how to do that! For now, I’m just excited that I’m beginning to understand regex and how to use it!\n
\n
Edit: fixed title so it didn’t say “regex expressions”
"""
+type: "article"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 63
+favouriteCount: 214
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1711562613 {#1861
date: 2024-03-27 19:03:33.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#1947 …}
+votes: Doctrine\ORM\PersistentCollection {#1893 …}
+reports: Doctrine\ORM\PersistentCollection {#2388 …}
+favourites: Doctrine\ORM\PersistentCollection {#1397 …}
+notifications: Doctrine\ORM\PersistentCollection {#1371 …}
+badges: Doctrine\ORM\PersistentCollection {#1379 …}
+children: []
-id: 24511
-titleTs: "'express':4 'first':2 'regular':3"
-bodyTs: "'-70160':243 '-9':302 '/g':312,314 '/the.hunger.games':240 '0':301 '10':123 '2012':241,332 '9':311 'a-z':298 'a-za-z0':307 'alreadi':131 'also':144 'archiv':187 'asid':18 'begin':363 'book':129 'care':22 'charact':76 'check':275 'clean':166 'cobbl':88 'collect':183 'command':293 'could':337 'd':26 'didn':377 'done':339 'dvd':182 'e.f':10 'edit':372 'egrep':160,201,221 'eie':295 'eleg':341 'end':263 'ever':139 'everyth':259 'exact':67 'exampl':239 'excit':359 'express':7,39,64,79,104,155,191,251,274,381 'feedback':348 'file':205,217 'file.tar.gz':220 'filenam':171 'first':35,190 'fix':373 'forward':257 'friedl':11 'full':291 'game':331 'generat':164 'get':210 'give':228 'group':252 'happi':57,345 'hunger':330 'jeffrey':9 'kv':224,305 'last':273 'lead':256 'learn':151 'leav':317 'life':17 'like':327 'list':169,203,231,322 'look':326 'lot':149 'm':30,49,55,120,223,303,334,344,357,362 'manipul':45 'master':5 'meant':105 'movi':176,233,324 'movielist':226,315 'mp4':244 'much':135 'name':213 'need':112 'never':95 'nobodi':14 'o':222 'one':196,277 'overflow':92 'p4':225,304 'past':86 'period':267 'pretti':31,321 'proud':32 'pull':172 'purpos':73 'read':4 'realli':96 'recogn':145 'regex':83,142,366,380 'regular':6,38 'remov':254 'replac':282 'rip':179 'say':379 'sed':162,248,292,294 'set':36 'share':27 'sinc':13 'singl':286 'slash':258 'someth':28 'space':280,287 'stack':91 'stuff':87 'sure':335 'tar':199,218 'tarbal':175,185,208 'text':47 'thought':24 'time':118 'titl':374 'tmdbid':242 'togeth':89 'tzvf':219 'understand':66,133,365 'understood':97 'use':82,158,197,247,370 've':2,81,178 'video':216 'way':126 'wife':21 'word':270 'work':50,100 'wrote':42,62,153,193 'z':300 'z0':310 'za':309"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1703542531
+visibility: "visible "
+apId: "https://lemmy.world/post/9942188"
+editedAt: DateTimeImmutable @1707607314 {#75
date: 2024-02-11 00:21:54.0 +01:00
}
+createdAt: DateTimeImmutable @1703456131 {#2415
date: 2023-12-24 23:15:31.0 +01:00
}
} |
|
Show voter details
|
5 |
DENIED
|
edit
|
App\Entity\Magazine {#289
+icon: Proxies\__CG__\App\Entity\Image {#270 …}
+name: "linux@lemmy.ml"
+title: "linux"
+description: """
From Wikipedia, the free encyclopedia\n
\n
Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).\n
\n
Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word “Linux” in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.\n
\n
### Rules\n
\n
- Posts must be relevant to operating systems running the Linux kernel. GNU/Linux or otherwise.\n
- No misinformation\n
- No NSFW content\n
- No hate speech, bigotry, etc\n
\n
### Related Communities\n
\n
- [!opensource@lemmy.ml](https://lemmy.ml/c/opensource)\n
- [!libre_culture@lemmy.ml](https://lemmy.ml/c/libre_culture)\n
- [!technology@lemmy.ml](https://lemmy.ml/c/technology)\n
- [!libre_hardware@lemmy.ml](https://lemmy.ml/c/libre_hardware)\n
\n
Community icon by [Alpár-Etele Méder](https://www.iconfinder.com/pocike), licensed under [CC BY 3.0](https://creativecommons.org/licenses/by/3.0/)
"""
+rules: null
+subscriptionsCount: 1
+entryCount: 1406
+entryCommentCount: 28632
+postCount: 6
+postCommentCount: 214
+isAdult: false
+customCss: null
+lastActive: DateTime @1729583542 {#299
date: 2024-10-22 09:52:22.0 +02:00
}
+markedForDeletionAt: null
+tags: null
+moderators: Doctrine\ORM\PersistentCollection {#261 …}
+ownershipRequests: Doctrine\ORM\PersistentCollection {#257 …}
+moderatorRequests: Doctrine\ORM\PersistentCollection {#246 …}
+entries: Doctrine\ORM\PersistentCollection {#204 …}
+posts: Doctrine\ORM\PersistentCollection {#162 …}
+subscriptions: Doctrine\ORM\PersistentCollection {#224 …}
+bans: Doctrine\ORM\PersistentCollection {#141 …}
+reports: Doctrine\ORM\PersistentCollection {#127 …}
+badges: Doctrine\ORM\PersistentCollection {#105 …}
+logs: Doctrine\ORM\PersistentCollection {#95 …}
+awards: Doctrine\ORM\PersistentCollection {#84 …}
+categories: Doctrine\ORM\PersistentCollection {#71 …}
-id: 73
+apId: "linux@lemmy.ml"
+apProfileId: "https://lemmy.ml/c/linux"
+apPublicUrl: "https://lemmy.ml/c/linux"
+apFollowersUrl: "https://lemmy.ml/c/linux/followers"
+apInboxUrl: "https://lemmy.ml/inbox"
+apDomain: "lemmy.ml"
+apPreferredUsername: "linux"
+apDiscoverable: true
+apManuallyApprovesFollowers: null
+privateKey: null
+publicKey: null
+apFetchedAt: DateTime @1729583596 {#293
date: 2024-10-22 09:53:16.0 +02:00
}
+apDeletedAt: null
+apTimeoutAt: null
+visibility: "visible "
+createdAt: DateTimeImmutable @1698929468 {#292
date: 2023-11-02 13:51:08.0 +01:00
}
} |
|
Show voter details
|