1 |
DENIED
|
ROLE_USER
|
null |
|
Show voter details
|
2 |
DENIED
|
moderate
|
Proxies\__CG__\App\Entity\Entry {#2029
+user: Proxies\__CG__\App\Entity\User {#2636 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+domain: Proxies\__CG__\App\Entity\Domain {#2792 …}
+slug: "With-Firefox-on-X11-any-page-can-pastejack-you-anytime"
+title: "With Firefox on X11, any page can pastejack you anytime"
+url: "https://www.openwall.com/lists/oss-security/2023/10/17/1"
+body: """
Date: Tue, 17 Oct 2023 03:17:36 +0300 From: turistu To: oss-security@…ts.openwall.com Subject: with firefox on X11, any page can pastejack you anytime\n
\n
Note to the moderator: I have already submitted this to the firefox people three weeks ago, and according to them, this is not a real security issue, or at least not worse than those pesky scripts which you cannot kill without killing firefox itself; if you think the same, just ignore this without replying.\n
\n
I would however appreciate if you let this through and so give it some visibility so that the other 2 or 3 people who may be affected by this could learn about it.\n
\n
Thank you very much.\n
\n
====\n
\n
In firefox running on X11, any script from any page can freely write to the primary selection, and that can be easily exploited to run arbitrary code on the user’s machine.\n
\n
No user interaction is necessary – any page able to run javascript can do it, including e.g. a page from a background tab of a minimized window, an iframe inside such a window, an error page, a sandboxed iframe, a page that has reloaded itself via `meta http-equiv=refresh`, etc.\n
\n
This applies to all the versions of mozilla/firefox and their derivatives (seamonkey, etc) that I was able to test, including the latest nightly.\n
\n
### Example\n
\n
The simplest example, which works in the default configurations of systems like OpenBSD or Alpine Linux (= any Unix/Linux system where Wayland is not the default and the default *shell* does not implement bracketed-paste), would go like this:\n
\n
Load the following snippet in firefox:\n
\n
```\n
\n
<span style="color:#323232;">\n
</span><span style="color:#323232;">intentionally left blank\n
</span>\n
```\n
\n
Then pretend to forget about it, and go about your work. Sooner or later, when trying to paste something in the terminal with shift-Insert or middle click, you will end up running the command `writeXPrimary()` has injected just between your copy and paste.\n
\n
live example of that snippet: [turistu.github.io/firefox/pastejack.html](https://turistu.github.io/firefox/pastejack.html)\n
\n
### Short technical explanation\n
\n
Browsers like firefox have the concepts of “secure context” (e.g. `https://`) and “transient user activation”; the javascript from the page gets some temporary powers as soon as you have interacted *even so little* with the page, like clicked, touched, etc.\n
\n
For instance, writing with `Clipboard.writeText()` to the windows-style Ctrl-C Ctrl-V *clipboard* selection is only possible from secure contexts and only in the short while after the user has clicked a button, etc on the page. As this bug demonstrates, those prerequisites are not needed for writing to the *primary* selection, which on X11 is much more used and much more valuable.\n
\n
### Workaround\n
\n
Without patching firefox, the only workaround I can think about is disabling the `Clipboard.selectAllChildren()` function from an addon’s content script, e.g. like this:\n
\n
```\n
\n
<span style="color:#323232;">let block = function(){ throw Error('blocked') };\n
</span><span style="color:#323232;">exportFunction(block, Selection.prototype, { defineAs: 'selectAllChildren' });\n
</span>\n
```\n
\n
Complete extension here at [github.com/turistu/odds-n-ends/raw/…/no-sel.xpi](https://github.com/turistu/odds-n-ends/raw/main/firefox/no-sel.xpi).\n
\n
I tried to submit it to addons.mozilla.org but they didn’t accept it. If you’re running firefox-esr, the development edition or nightly, you can just `set xpinstall.signatures.required` to true in `about:config` and install it with `firefox no-sel.xpi`.\n
\n
### Firefox Patch\n
\n
```\n
\n
<span style="color:#323232;">diff -r 9b362770f30b layout/generic/nsFrameSelection.cpp\n
</span><span style="color:#323232;">--- a/layout/generic/nsFrameSelection.cpp\tFri Oct 06 12:03:17 2023 +0000\n
</span><span style="color:#323232;">+++ b/layout/generic/nsFrameSelection.cpp\tSun Oct 08 11:04:41 2023 +0300\n
</span><span style="color:#323232;">@@ -3345,6 +3345,10 @@\n
</span><span style="color:#323232;"> return; // Don't care if we are still dragging.\n
</span><span style="color:#323232;"> }\n
</span><span style="color:#323232;"> \n
</span><span style="color:#323232;">+ if (aReason & nsISelectionListener::JS_REASON) {\n
</span><span style="color:#323232;">+ return;\n
</span><span style="color:#323232;">+ }\n
</span><span style="color:#323232;">+\n
</span><span style="color:#323232;"> if (!aDocument || aSelection.IsCollapsed()) {\n
</span><span style="color:#323232;"> #ifdef DEBUG_CLIPBOARD\n
</span><span style="color:#323232;"> fprintf(stderr, "CLIPBOARD: no selection/collapsed selectionn");\n
</span>\n
```\n
\n
The idea of this patch was to *always* prevent javascript from indirectly messing with the primary selection via the Selection API. However, it turned out that the `JS_REASON` flag was not reliable; if javascript calls some function like `addRange()` or `selectAllChildren()` while the user has started dragging but hasn’t released the mouse button yet, that code will be called *without* that flag but with the text set by javascript, not the text selected by the user. However, I think that this patch is still enough to fill the glaring hole opened by `selectAllChildren()`.\n
\n
### About the example and bracketed-paste\n
\n
The bracketed paste feature of bash/readline and zsh means that you cannot just append a CR or LF to the payload and be done, it’s the user who has to press ENTER for it to run.\n
\n
However, workarounds exist. For instance, some terminals like mlterm don’t filter out the pasted data, and you can terminate the pasting mode early by inserting a `e201~` in the payload.\n
\n
For bash, you can take advantage of some quirks in the readline library to turn off the highlighting and make the payload invisible to the user. E.g.:\n
\n
```\n
\n
<span style="color:#323232;">let payload = 'touch ~/LOL-' + Date.now() / 1000;\n
</span><span style="color:#323232;">writeXPrimary('n' + payload + 'n'.repeat(100) + ' '.repeat(30)\n
</span><span style="color:#323232;">\t+ 'n'.repeat(100))\n
</span>\n
```\n
\n
which will confuse the user with the same screen as when some stray background job had written something to the terminal:\n
\n
```\n
\n
<span style="color:#323232;">user@...t:~$ : previous unrelated command\n
</span><span style="color:#323232;">user@...t:~$\t<-- paste here\n
</span><span style="color:#323232;"># <-- cursor here, most users will just hit Enter to get a new prompt\n
</span>\n
```\n
\n
live example of that snippet: [turistu.github.io/firefox/bash-pastejack.html\n
\n
Just to be clear, I don’t think that either mlterm, bash, nor the shells that don’t do have that bracketed-paste feature are at fault here in any way (and I personally always turn off that misfeature as it badly interferes with my workflow): It’s firefox which should get all the blame for letting random javascript evade its pretended “sandbox” in this way.\n
\n
### About Wayland\n
\n
For firefox running in Wayland, `writeXPrimary()` will only succeed when the firefox window (the main window, not necessarily the tab the code runs in) has the focus. Otherwise the selection will be cleared. At first I assumed that this is something specific to the Wayland protocol, but that turned out to be utterly false; it’s just some quirk, bug or “feature” specific to either firefox itself or GTK.\n
\n
But I think that’s still bad enough, even if the page should take care to only set the selection when the main window has gained focus.\n
\n
And of course, all this doesn’t affect the situation where you’re copying and pasting in another firefox tab with a different context, origin, etc; and all the other situations where you don’t appreciate having random javascript you don’t even know about messing with your copy & paste.\n
\n
===\n
\n
This is a slightly edited version of [github.com/turistu/odds-n-ends/…/pastejack.md](https://github.com/turistu/odds-n-ends/blob/main/firefox/pastejack.md).\n
\n
I will correct any errors or omissions and also add more info there.
"""
+type: "link"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 8
+favouriteCount: 0
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1725264437 {#2150
date: 2024-09-02 10:07:17.0 +02:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#2813 …}
+votes: Doctrine\ORM\PersistentCollection {#2814 …}
+reports: Doctrine\ORM\PersistentCollection {#2815 …}
+favourites: Doctrine\ORM\PersistentCollection {#2820 …}
+notifications: Doctrine\ORM\PersistentCollection {#2810 …}
+badges: Doctrine\ORM\PersistentCollection {#2808 …}
+children: [
App\Entity\EntryComment {#2028
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2029 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: null
+root: null
+body: "JavaScript was a mistake."
+lang: "en"
+isAdult: false
+favouriteCount: 1
+score: 0
+lastActive: DateTime @1725264437 {#2033
date: 2024-09-02 10:07:17.0 +02:00
}
+ip: null
+tags: null
+mentions: [
"@ugjka@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#2012 …}
+nested: Doctrine\ORM\PersistentCollection {#2013 …}
+votes: Doctrine\ORM\PersistentCollection {#2035 …}
+reports: Doctrine\ORM\PersistentCollection {#2036 …}
+favourites: Doctrine\ORM\PersistentCollection {#2144 …}
+notifications: Doctrine\ORM\PersistentCollection {#2061 …}
-id: 232203
-bodyTs: "'javascript':1 'mistak':4"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/4186879"
+editedAt: null
+createdAt: DateTimeImmutable @1698015089 {#2021
date: 2023-10-23 00:51:29.0 +02:00
}
+"title": 232203
}
]
-id: 17198
-titleTs: "'anytim':10 'firefox':2 'page':6 'pastejack':8 'x11':4"
-bodyTs: "'+0000':538 '+0300':9,547 '+3345':550 '-3345':548 '/firefox/bash-pastejack.html':843 '/firefox/pastejack.html](https://turistu.github.io/firefox/pastejack.html)':326 '/lol-':779 '/no-sel.xpi':479 '/pastejack.md':1069 '/turistu/odds-n-ends/':1068 '/turistu/odds-n-ends/blob/main/firefox/pastejack.md).':1072 '/turistu/odds-n-ends/raw/':478 '/turistu/odds-n-ends/raw/main/firefox/no-sel.xpi).':482 '03':6,535 '04':544 '06':533 '08':542 '10':551 '100':787,792 '1000':781 '11':543 '12':534 '17':3,7,536 '2':101 '2023':5,537,546 '3':103 '30':789 '36':8 '41':545 '6':549 '9b362770f30b':528 'a/layout/generic/nsframeselection.cpp':530 'abl':158,218 'accept':494 'accord':45 'activ':343 'add':1082 'addon':454 'addons.mozilla.org':489 'addrang':618 'adocu':568 'advantag':754 'affect':108,1016 'ago':43 'alpin':240 'alreadi':34 'also':1081 'alway':586,879 'anoth':1026 'anytim':27 'api':599 'append':694 'appli':203 'appreci':85,1044 'arbitrari':144 'areason':562 'aselection.iscollapsed':569 'assum':949 'b/layout/generic/nsframeselection.cpp':539 'background':171,806 'bad':886,988 'bash':750,855 'bash/readline':686 'blame':899 'blank':273 'block':462,466,468 'bracket':259,679,682,866 'bracketed-past':258,678,865 'browser':330 'bug':412,972 'button':405,633 'c':381 'call':614,639 'cannot':66,692 'care':555,996 'clear':847,945 'click':302,366,403 'clipboard':385,572,575 'clipboard.selectallchildren':450 'clipboard.writetext':373 'code':145,636,934 'command':309,818 'complet':472 'concept':335 'config':517 'configur':234 'confus':795 'content':456 'context':338,392,1032 'copi':316,1022,1057 'correct':1075 'could':111 'cours':1011 'cr':696 'ctrl':380,383 'ctrl-c':379 'ctrl-v':382 'cursor':823 'data':733 'date':1 'date.now':780 'debug':571 'default':233,250,253 'definea':470 'demonstr':413 'deriv':212 'develop':504 'didn':492 'diff':526 'differ':1031 'disabl':448 'doesn':1014 'done':704 'drag':560,626 'e.g':166,339,458,775 'e201':745 'earli':741 'easili':140 'edit':505,1063 'either':853,977 'end':305 'enough':665,989 'enter':713,830 'equiv':199 'error':184,465,1077 'esr':502 'etc':201,214,368,406,1034 'evad':904 'even':359,990,1051 'exampl':225,228,320,676,837 'exist':720 'explan':329 'exploit':141 'exportfunct':467 'extens':473 'fals':966 'fault':871 'featur':684,868,974 'fill':667 'filter':729 'firefox':19,39,70,120,270,332,439,501,522,524,893,914,924,978,1027 'firefox-esr':500 'first':947 'flag':608,642 'focus':939,1008 'follow':267 'forget':277 'fprintf':573 'freeli':130 'fri':531 'function':451,463,616 'gain':1007 'get':349,832,896 'github.com':477,481,1067,1071 'github.com/turistu/odds-n-ends/':1066 'github.com/turistu/odds-n-ends/blob/main/firefox/pastejack.md).':1070 'github.com/turistu/odds-n-ends/raw/':476 'github.com/turistu/odds-n-ends/raw/main/firefox/no-sel.xpi).':480 'give':93 'glare':669 'go':262,281 'gtk':981 'hasn':628 'highlight':766 'hit':829 'hole':670 'howev':84,600,657,718 'http':198 'http-equiv':197 'idea':580 'ifdef':570 'ifram':178,188 'ignor':78 'implement':257 'includ':165,221 'indirect':590 'info':1084 'inject':312 'insert':299,743 'insid':179 'instal':519 'instanc':370,722 'intent':271 'interact':153,358 'interfer':887 'invis':771 'issu':54 'javascript':161,345,588,613,649,903,1047 'job':807 'js':564,606 'kill':67,69 'know':1052 'later':287 'latest':223 'layout/generic/nsframeselection.cpp':529 'learn':112 'least':57 'left':272 'let':88,461,776,901 'lf':698 'librari':761 'like':237,263,331,365,459,617,725 'linux':241 'littl':361 'live':319,836 'load':265 'machin':150 'main':927,1004 'make':768 'may':106 'mean':689 'mess':591,1054 'meta':196 'middl':301 'minim':175 'misfeatur':883 'mlterm':726,854 'mode':740 'moder':31 'mous':632 'mozilla/firefox':209 'much':118,429,433 'n':783,785,790 'necessari':155 'necessarili':930 'need':418 'new':834 'night':224,507 'no-sel.xpi':523 'note':28 'nsiselectionlisten':563 'oct':4,532,541 'omiss':1079 'open':671 'openbsd':238 'origin':1033 'oss':14 'oss-secur':13 'otherwis':940 'page':23,128,157,168,185,190,348,364,409,993 'past':260,291,318,680,683,732,739,821,867,1024,1058 'pastejack':25 'patch':438,525,583,662 'payload':701,748,770,777,784 'peopl':40,104 'person':878 'peski':62 'possibl':389 'power':352 'prerequisit':415 'press':712 'pretend':275,906 'prevent':587 'previous':816 'primari':134,423,594 'prompt':835 'protocol':958 'quirk':757,971 'r':527 'random':902,1046 're':498,1021 'readlin':760 'real':52 'reason':565,607 'refresh':200 'releas':630 'reliabl':611 'reload':193 'repeat':786,788,791 'repli':81 'return':552,566 'run':121,143,160,307,499,717,915,935 'sandbox':187,907 'screen':801 'script':63,125,457 'seamonkey':213 'secur':15,53,337,391 'select':135,386,424,595,598,653,942,1001 'selectallchildren':471,620,673 'selection.prototype':469 'selection/collapsed':577 'selectionn':578 'set':511,647,999 'shell':254,858 'shift':298 'shift-insert':297 'short':327,397 'simplest':227 'situat':1018,1039 'slight':1062 'snippet':268,323,840 'someth':292,810,953 'soon':354 'sooner':285 'specif':954,975 'start':625 'stderr':574 'still':559,664,987 'stray':805 'style':378 'subject':17 'submit':35,486 'succeed':921 'sun':540 'system':236,244 'tab':172,932,1028 'take':753,995 'technic':328 'temporari':351 'termin':295,724,737,813 'test':220 'text':646,652 'thank':115 'think':74,445,659,851,984 'three':41 'throw':464 'touch':367,778 'transient':341 'tri':289,484 'true':514 'ts.openwall.com':16 'tue':2 'turistu':11 'turistu.github.io':325,842 'turistu.github.io/firefox/bash-pastejack.html':841 'turistu.github.io/firefox/pastejack.html](https://turistu.github.io/firefox/pastejack.html)':324 'turn':602,763,880,961 'unix/linux':243 'unrel':817 'use':431 'user':148,152,342,401,623,656,708,774,797,814,819,826 'utter':965 'v':384 'valuabl':435 'version':207,1064 'via':195,596 'visibl':96 'way':875,910 'wayland':246,912,917,957 'week':42 'window':176,182,377,925,928,1005 'windows-styl':376 'without':68,80,437,640 'work':230,284 'workaround':436,442,719 'workflow':890 'wors':59 'would':83,261 'write':131,371,420 'writexprimari':310,782,918 'written':809 'x11':21,123,427 'xpinstall.signatures.required':512 'yet':634 'zsh':688"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1697959616
+visibility: "visible "
+apId: "https://lemmy.world/post/7123900"
+editedAt: null
+createdAt: DateTimeImmutable @1697907616 {#2751
date: 2023-10-21 19:00:16.0 +02:00
}
+__isInitialized__: true
…2
} |
|
Show voter details
|
3 |
DENIED
|
edit
|
Proxies\__CG__\App\Entity\Entry {#2029
+user: Proxies\__CG__\App\Entity\User {#2636 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+domain: Proxies\__CG__\App\Entity\Domain {#2792 …}
+slug: "With-Firefox-on-X11-any-page-can-pastejack-you-anytime"
+title: "With Firefox on X11, any page can pastejack you anytime"
+url: "https://www.openwall.com/lists/oss-security/2023/10/17/1"
+body: """
Date: Tue, 17 Oct 2023 03:17:36 +0300 From: turistu To: oss-security@…ts.openwall.com Subject: with firefox on X11, any page can pastejack you anytime\n
\n
Note to the moderator: I have already submitted this to the firefox people three weeks ago, and according to them, this is not a real security issue, or at least not worse than those pesky scripts which you cannot kill without killing firefox itself; if you think the same, just ignore this without replying.\n
\n
I would however appreciate if you let this through and so give it some visibility so that the other 2 or 3 people who may be affected by this could learn about it.\n
\n
Thank you very much.\n
\n
====\n
\n
In firefox running on X11, any script from any page can freely write to the primary selection, and that can be easily exploited to run arbitrary code on the user’s machine.\n
\n
No user interaction is necessary – any page able to run javascript can do it, including e.g. a page from a background tab of a minimized window, an iframe inside such a window, an error page, a sandboxed iframe, a page that has reloaded itself via `meta http-equiv=refresh`, etc.\n
\n
This applies to all the versions of mozilla/firefox and their derivatives (seamonkey, etc) that I was able to test, including the latest nightly.\n
\n
### Example\n
\n
The simplest example, which works in the default configurations of systems like OpenBSD or Alpine Linux (= any Unix/Linux system where Wayland is not the default and the default *shell* does not implement bracketed-paste), would go like this:\n
\n
Load the following snippet in firefox:\n
\n
```\n
\n
<span style="color:#323232;">\n
</span><span style="color:#323232;">intentionally left blank\n
</span>\n
```\n
\n
Then pretend to forget about it, and go about your work. Sooner or later, when trying to paste something in the terminal with shift-Insert or middle click, you will end up running the command `writeXPrimary()` has injected just between your copy and paste.\n
\n
live example of that snippet: [turistu.github.io/firefox/pastejack.html](https://turistu.github.io/firefox/pastejack.html)\n
\n
### Short technical explanation\n
\n
Browsers like firefox have the concepts of “secure context” (e.g. `https://`) and “transient user activation”; the javascript from the page gets some temporary powers as soon as you have interacted *even so little* with the page, like clicked, touched, etc.\n
\n
For instance, writing with `Clipboard.writeText()` to the windows-style Ctrl-C Ctrl-V *clipboard* selection is only possible from secure contexts and only in the short while after the user has clicked a button, etc on the page. As this bug demonstrates, those prerequisites are not needed for writing to the *primary* selection, which on X11 is much more used and much more valuable.\n
\n
### Workaround\n
\n
Without patching firefox, the only workaround I can think about is disabling the `Clipboard.selectAllChildren()` function from an addon’s content script, e.g. like this:\n
\n
```\n
\n
<span style="color:#323232;">let block = function(){ throw Error('blocked') };\n
</span><span style="color:#323232;">exportFunction(block, Selection.prototype, { defineAs: 'selectAllChildren' });\n
</span>\n
```\n
\n
Complete extension here at [github.com/turistu/odds-n-ends/raw/…/no-sel.xpi](https://github.com/turistu/odds-n-ends/raw/main/firefox/no-sel.xpi).\n
\n
I tried to submit it to addons.mozilla.org but they didn’t accept it. If you’re running firefox-esr, the development edition or nightly, you can just `set xpinstall.signatures.required` to true in `about:config` and install it with `firefox no-sel.xpi`.\n
\n
### Firefox Patch\n
\n
```\n
\n
<span style="color:#323232;">diff -r 9b362770f30b layout/generic/nsFrameSelection.cpp\n
</span><span style="color:#323232;">--- a/layout/generic/nsFrameSelection.cpp\tFri Oct 06 12:03:17 2023 +0000\n
</span><span style="color:#323232;">+++ b/layout/generic/nsFrameSelection.cpp\tSun Oct 08 11:04:41 2023 +0300\n
</span><span style="color:#323232;">@@ -3345,6 +3345,10 @@\n
</span><span style="color:#323232;"> return; // Don't care if we are still dragging.\n
</span><span style="color:#323232;"> }\n
</span><span style="color:#323232;"> \n
</span><span style="color:#323232;">+ if (aReason & nsISelectionListener::JS_REASON) {\n
</span><span style="color:#323232;">+ return;\n
</span><span style="color:#323232;">+ }\n
</span><span style="color:#323232;">+\n
</span><span style="color:#323232;"> if (!aDocument || aSelection.IsCollapsed()) {\n
</span><span style="color:#323232;"> #ifdef DEBUG_CLIPBOARD\n
</span><span style="color:#323232;"> fprintf(stderr, "CLIPBOARD: no selection/collapsed selectionn");\n
</span>\n
```\n
\n
The idea of this patch was to *always* prevent javascript from indirectly messing with the primary selection via the Selection API. However, it turned out that the `JS_REASON` flag was not reliable; if javascript calls some function like `addRange()` or `selectAllChildren()` while the user has started dragging but hasn’t released the mouse button yet, that code will be called *without* that flag but with the text set by javascript, not the text selected by the user. However, I think that this patch is still enough to fill the glaring hole opened by `selectAllChildren()`.\n
\n
### About the example and bracketed-paste\n
\n
The bracketed paste feature of bash/readline and zsh means that you cannot just append a CR or LF to the payload and be done, it’s the user who has to press ENTER for it to run.\n
\n
However, workarounds exist. For instance, some terminals like mlterm don’t filter out the pasted data, and you can terminate the pasting mode early by inserting a `e201~` in the payload.\n
\n
For bash, you can take advantage of some quirks in the readline library to turn off the highlighting and make the payload invisible to the user. E.g.:\n
\n
```\n
\n
<span style="color:#323232;">let payload = 'touch ~/LOL-' + Date.now() / 1000;\n
</span><span style="color:#323232;">writeXPrimary('n' + payload + 'n'.repeat(100) + ' '.repeat(30)\n
</span><span style="color:#323232;">\t+ 'n'.repeat(100))\n
</span>\n
```\n
\n
which will confuse the user with the same screen as when some stray background job had written something to the terminal:\n
\n
```\n
\n
<span style="color:#323232;">user@...t:~$ : previous unrelated command\n
</span><span style="color:#323232;">user@...t:~$\t<-- paste here\n
</span><span style="color:#323232;"># <-- cursor here, most users will just hit Enter to get a new prompt\n
</span>\n
```\n
\n
live example of that snippet: [turistu.github.io/firefox/bash-pastejack.html\n
\n
Just to be clear, I don’t think that either mlterm, bash, nor the shells that don’t do have that bracketed-paste feature are at fault here in any way (and I personally always turn off that misfeature as it badly interferes with my workflow): It’s firefox which should get all the blame for letting random javascript evade its pretended “sandbox” in this way.\n
\n
### About Wayland\n
\n
For firefox running in Wayland, `writeXPrimary()` will only succeed when the firefox window (the main window, not necessarily the tab the code runs in) has the focus. Otherwise the selection will be cleared. At first I assumed that this is something specific to the Wayland protocol, but that turned out to be utterly false; it’s just some quirk, bug or “feature” specific to either firefox itself or GTK.\n
\n
But I think that’s still bad enough, even if the page should take care to only set the selection when the main window has gained focus.\n
\n
And of course, all this doesn’t affect the situation where you’re copying and pasting in another firefox tab with a different context, origin, etc; and all the other situations where you don’t appreciate having random javascript you don’t even know about messing with your copy & paste.\n
\n
===\n
\n
This is a slightly edited version of [github.com/turistu/odds-n-ends/…/pastejack.md](https://github.com/turistu/odds-n-ends/blob/main/firefox/pastejack.md).\n
\n
I will correct any errors or omissions and also add more info there.
"""
+type: "link"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 8
+favouriteCount: 0
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1725264437 {#2150
date: 2024-09-02 10:07:17.0 +02:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#2813 …}
+votes: Doctrine\ORM\PersistentCollection {#2814 …}
+reports: Doctrine\ORM\PersistentCollection {#2815 …}
+favourites: Doctrine\ORM\PersistentCollection {#2820 …}
+notifications: Doctrine\ORM\PersistentCollection {#2810 …}
+badges: Doctrine\ORM\PersistentCollection {#2808 …}
+children: [
App\Entity\EntryComment {#2028
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2029 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: null
+root: null
+body: "JavaScript was a mistake."
+lang: "en"
+isAdult: false
+favouriteCount: 1
+score: 0
+lastActive: DateTime @1725264437 {#2033
date: 2024-09-02 10:07:17.0 +02:00
}
+ip: null
+tags: null
+mentions: [
"@ugjka@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#2012 …}
+nested: Doctrine\ORM\PersistentCollection {#2013 …}
+votes: Doctrine\ORM\PersistentCollection {#2035 …}
+reports: Doctrine\ORM\PersistentCollection {#2036 …}
+favourites: Doctrine\ORM\PersistentCollection {#2144 …}
+notifications: Doctrine\ORM\PersistentCollection {#2061 …}
-id: 232203
-bodyTs: "'javascript':1 'mistak':4"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/4186879"
+editedAt: null
+createdAt: DateTimeImmutable @1698015089 {#2021
date: 2023-10-23 00:51:29.0 +02:00
}
+"title": 232203
}
]
-id: 17198
-titleTs: "'anytim':10 'firefox':2 'page':6 'pastejack':8 'x11':4"
-bodyTs: "'+0000':538 '+0300':9,547 '+3345':550 '-3345':548 '/firefox/bash-pastejack.html':843 '/firefox/pastejack.html](https://turistu.github.io/firefox/pastejack.html)':326 '/lol-':779 '/no-sel.xpi':479 '/pastejack.md':1069 '/turistu/odds-n-ends/':1068 '/turistu/odds-n-ends/blob/main/firefox/pastejack.md).':1072 '/turistu/odds-n-ends/raw/':478 '/turistu/odds-n-ends/raw/main/firefox/no-sel.xpi).':482 '03':6,535 '04':544 '06':533 '08':542 '10':551 '100':787,792 '1000':781 '11':543 '12':534 '17':3,7,536 '2':101 '2023':5,537,546 '3':103 '30':789 '36':8 '41':545 '6':549 '9b362770f30b':528 'a/layout/generic/nsframeselection.cpp':530 'abl':158,218 'accept':494 'accord':45 'activ':343 'add':1082 'addon':454 'addons.mozilla.org':489 'addrang':618 'adocu':568 'advantag':754 'affect':108,1016 'ago':43 'alpin':240 'alreadi':34 'also':1081 'alway':586,879 'anoth':1026 'anytim':27 'api':599 'append':694 'appli':203 'appreci':85,1044 'arbitrari':144 'areason':562 'aselection.iscollapsed':569 'assum':949 'b/layout/generic/nsframeselection.cpp':539 'background':171,806 'bad':886,988 'bash':750,855 'bash/readline':686 'blame':899 'blank':273 'block':462,466,468 'bracket':259,679,682,866 'bracketed-past':258,678,865 'browser':330 'bug':412,972 'button':405,633 'c':381 'call':614,639 'cannot':66,692 'care':555,996 'clear':847,945 'click':302,366,403 'clipboard':385,572,575 'clipboard.selectallchildren':450 'clipboard.writetext':373 'code':145,636,934 'command':309,818 'complet':472 'concept':335 'config':517 'configur':234 'confus':795 'content':456 'context':338,392,1032 'copi':316,1022,1057 'correct':1075 'could':111 'cours':1011 'cr':696 'ctrl':380,383 'ctrl-c':379 'ctrl-v':382 'cursor':823 'data':733 'date':1 'date.now':780 'debug':571 'default':233,250,253 'definea':470 'demonstr':413 'deriv':212 'develop':504 'didn':492 'diff':526 'differ':1031 'disabl':448 'doesn':1014 'done':704 'drag':560,626 'e.g':166,339,458,775 'e201':745 'earli':741 'easili':140 'edit':505,1063 'either':853,977 'end':305 'enough':665,989 'enter':713,830 'equiv':199 'error':184,465,1077 'esr':502 'etc':201,214,368,406,1034 'evad':904 'even':359,990,1051 'exampl':225,228,320,676,837 'exist':720 'explan':329 'exploit':141 'exportfunct':467 'extens':473 'fals':966 'fault':871 'featur':684,868,974 'fill':667 'filter':729 'firefox':19,39,70,120,270,332,439,501,522,524,893,914,924,978,1027 'firefox-esr':500 'first':947 'flag':608,642 'focus':939,1008 'follow':267 'forget':277 'fprintf':573 'freeli':130 'fri':531 'function':451,463,616 'gain':1007 'get':349,832,896 'github.com':477,481,1067,1071 'github.com/turistu/odds-n-ends/':1066 'github.com/turistu/odds-n-ends/blob/main/firefox/pastejack.md).':1070 'github.com/turistu/odds-n-ends/raw/':476 'github.com/turistu/odds-n-ends/raw/main/firefox/no-sel.xpi).':480 'give':93 'glare':669 'go':262,281 'gtk':981 'hasn':628 'highlight':766 'hit':829 'hole':670 'howev':84,600,657,718 'http':198 'http-equiv':197 'idea':580 'ifdef':570 'ifram':178,188 'ignor':78 'implement':257 'includ':165,221 'indirect':590 'info':1084 'inject':312 'insert':299,743 'insid':179 'instal':519 'instanc':370,722 'intent':271 'interact':153,358 'interfer':887 'invis':771 'issu':54 'javascript':161,345,588,613,649,903,1047 'job':807 'js':564,606 'kill':67,69 'know':1052 'later':287 'latest':223 'layout/generic/nsframeselection.cpp':529 'learn':112 'least':57 'left':272 'let':88,461,776,901 'lf':698 'librari':761 'like':237,263,331,365,459,617,725 'linux':241 'littl':361 'live':319,836 'load':265 'machin':150 'main':927,1004 'make':768 'may':106 'mean':689 'mess':591,1054 'meta':196 'middl':301 'minim':175 'misfeatur':883 'mlterm':726,854 'mode':740 'moder':31 'mous':632 'mozilla/firefox':209 'much':118,429,433 'n':783,785,790 'necessari':155 'necessarili':930 'need':418 'new':834 'night':224,507 'no-sel.xpi':523 'note':28 'nsiselectionlisten':563 'oct':4,532,541 'omiss':1079 'open':671 'openbsd':238 'origin':1033 'oss':14 'oss-secur':13 'otherwis':940 'page':23,128,157,168,185,190,348,364,409,993 'past':260,291,318,680,683,732,739,821,867,1024,1058 'pastejack':25 'patch':438,525,583,662 'payload':701,748,770,777,784 'peopl':40,104 'person':878 'peski':62 'possibl':389 'power':352 'prerequisit':415 'press':712 'pretend':275,906 'prevent':587 'previous':816 'primari':134,423,594 'prompt':835 'protocol':958 'quirk':757,971 'r':527 'random':902,1046 're':498,1021 'readlin':760 'real':52 'reason':565,607 'refresh':200 'releas':630 'reliabl':611 'reload':193 'repeat':786,788,791 'repli':81 'return':552,566 'run':121,143,160,307,499,717,915,935 'sandbox':187,907 'screen':801 'script':63,125,457 'seamonkey':213 'secur':15,53,337,391 'select':135,386,424,595,598,653,942,1001 'selectallchildren':471,620,673 'selection.prototype':469 'selection/collapsed':577 'selectionn':578 'set':511,647,999 'shell':254,858 'shift':298 'shift-insert':297 'short':327,397 'simplest':227 'situat':1018,1039 'slight':1062 'snippet':268,323,840 'someth':292,810,953 'soon':354 'sooner':285 'specif':954,975 'start':625 'stderr':574 'still':559,664,987 'stray':805 'style':378 'subject':17 'submit':35,486 'succeed':921 'sun':540 'system':236,244 'tab':172,932,1028 'take':753,995 'technic':328 'temporari':351 'termin':295,724,737,813 'test':220 'text':646,652 'thank':115 'think':74,445,659,851,984 'three':41 'throw':464 'touch':367,778 'transient':341 'tri':289,484 'true':514 'ts.openwall.com':16 'tue':2 'turistu':11 'turistu.github.io':325,842 'turistu.github.io/firefox/bash-pastejack.html':841 'turistu.github.io/firefox/pastejack.html](https://turistu.github.io/firefox/pastejack.html)':324 'turn':602,763,880,961 'unix/linux':243 'unrel':817 'use':431 'user':148,152,342,401,623,656,708,774,797,814,819,826 'utter':965 'v':384 'valuabl':435 'version':207,1064 'via':195,596 'visibl':96 'way':875,910 'wayland':246,912,917,957 'week':42 'window':176,182,377,925,928,1005 'windows-styl':376 'without':68,80,437,640 'work':230,284 'workaround':436,442,719 'workflow':890 'wors':59 'would':83,261 'write':131,371,420 'writexprimari':310,782,918 'written':809 'x11':21,123,427 'xpinstall.signatures.required':512 'yet':634 'zsh':688"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1697959616
+visibility: "visible "
+apId: "https://lemmy.world/post/7123900"
+editedAt: null
+createdAt: DateTimeImmutable @1697907616 {#2751
date: 2023-10-21 19:00:16.0 +02:00
}
+__isInitialized__: true
…2
} |
|
Show voter details
|
4 |
DENIED
|
moderate
|
Proxies\__CG__\App\Entity\Entry {#2029
+user: Proxies\__CG__\App\Entity\User {#2636 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+domain: Proxies\__CG__\App\Entity\Domain {#2792 …}
+slug: "With-Firefox-on-X11-any-page-can-pastejack-you-anytime"
+title: "With Firefox on X11, any page can pastejack you anytime"
+url: "https://www.openwall.com/lists/oss-security/2023/10/17/1"
+body: """
Date: Tue, 17 Oct 2023 03:17:36 +0300 From: turistu To: oss-security@…ts.openwall.com Subject: with firefox on X11, any page can pastejack you anytime\n
\n
Note to the moderator: I have already submitted this to the firefox people three weeks ago, and according to them, this is not a real security issue, or at least not worse than those pesky scripts which you cannot kill without killing firefox itself; if you think the same, just ignore this without replying.\n
\n
I would however appreciate if you let this through and so give it some visibility so that the other 2 or 3 people who may be affected by this could learn about it.\n
\n
Thank you very much.\n
\n
====\n
\n
In firefox running on X11, any script from any page can freely write to the primary selection, and that can be easily exploited to run arbitrary code on the user’s machine.\n
\n
No user interaction is necessary – any page able to run javascript can do it, including e.g. a page from a background tab of a minimized window, an iframe inside such a window, an error page, a sandboxed iframe, a page that has reloaded itself via `meta http-equiv=refresh`, etc.\n
\n
This applies to all the versions of mozilla/firefox and their derivatives (seamonkey, etc) that I was able to test, including the latest nightly.\n
\n
### Example\n
\n
The simplest example, which works in the default configurations of systems like OpenBSD or Alpine Linux (= any Unix/Linux system where Wayland is not the default and the default *shell* does not implement bracketed-paste), would go like this:\n
\n
Load the following snippet in firefox:\n
\n
```\n
\n
<span style="color:#323232;">\n
</span><span style="color:#323232;">intentionally left blank\n
</span>\n
```\n
\n
Then pretend to forget about it, and go about your work. Sooner or later, when trying to paste something in the terminal with shift-Insert or middle click, you will end up running the command `writeXPrimary()` has injected just between your copy and paste.\n
\n
live example of that snippet: [turistu.github.io/firefox/pastejack.html](https://turistu.github.io/firefox/pastejack.html)\n
\n
### Short technical explanation\n
\n
Browsers like firefox have the concepts of “secure context” (e.g. `https://`) and “transient user activation”; the javascript from the page gets some temporary powers as soon as you have interacted *even so little* with the page, like clicked, touched, etc.\n
\n
For instance, writing with `Clipboard.writeText()` to the windows-style Ctrl-C Ctrl-V *clipboard* selection is only possible from secure contexts and only in the short while after the user has clicked a button, etc on the page. As this bug demonstrates, those prerequisites are not needed for writing to the *primary* selection, which on X11 is much more used and much more valuable.\n
\n
### Workaround\n
\n
Without patching firefox, the only workaround I can think about is disabling the `Clipboard.selectAllChildren()` function from an addon’s content script, e.g. like this:\n
\n
```\n
\n
<span style="color:#323232;">let block = function(){ throw Error('blocked') };\n
</span><span style="color:#323232;">exportFunction(block, Selection.prototype, { defineAs: 'selectAllChildren' });\n
</span>\n
```\n
\n
Complete extension here at [github.com/turistu/odds-n-ends/raw/…/no-sel.xpi](https://github.com/turistu/odds-n-ends/raw/main/firefox/no-sel.xpi).\n
\n
I tried to submit it to addons.mozilla.org but they didn’t accept it. If you’re running firefox-esr, the development edition or nightly, you can just `set xpinstall.signatures.required` to true in `about:config` and install it with `firefox no-sel.xpi`.\n
\n
### Firefox Patch\n
\n
```\n
\n
<span style="color:#323232;">diff -r 9b362770f30b layout/generic/nsFrameSelection.cpp\n
</span><span style="color:#323232;">--- a/layout/generic/nsFrameSelection.cpp\tFri Oct 06 12:03:17 2023 +0000\n
</span><span style="color:#323232;">+++ b/layout/generic/nsFrameSelection.cpp\tSun Oct 08 11:04:41 2023 +0300\n
</span><span style="color:#323232;">@@ -3345,6 +3345,10 @@\n
</span><span style="color:#323232;"> return; // Don't care if we are still dragging.\n
</span><span style="color:#323232;"> }\n
</span><span style="color:#323232;"> \n
</span><span style="color:#323232;">+ if (aReason & nsISelectionListener::JS_REASON) {\n
</span><span style="color:#323232;">+ return;\n
</span><span style="color:#323232;">+ }\n
</span><span style="color:#323232;">+\n
</span><span style="color:#323232;"> if (!aDocument || aSelection.IsCollapsed()) {\n
</span><span style="color:#323232;"> #ifdef DEBUG_CLIPBOARD\n
</span><span style="color:#323232;"> fprintf(stderr, "CLIPBOARD: no selection/collapsed selectionn");\n
</span>\n
```\n
\n
The idea of this patch was to *always* prevent javascript from indirectly messing with the primary selection via the Selection API. However, it turned out that the `JS_REASON` flag was not reliable; if javascript calls some function like `addRange()` or `selectAllChildren()` while the user has started dragging but hasn’t released the mouse button yet, that code will be called *without* that flag but with the text set by javascript, not the text selected by the user. However, I think that this patch is still enough to fill the glaring hole opened by `selectAllChildren()`.\n
\n
### About the example and bracketed-paste\n
\n
The bracketed paste feature of bash/readline and zsh means that you cannot just append a CR or LF to the payload and be done, it’s the user who has to press ENTER for it to run.\n
\n
However, workarounds exist. For instance, some terminals like mlterm don’t filter out the pasted data, and you can terminate the pasting mode early by inserting a `e201~` in the payload.\n
\n
For bash, you can take advantage of some quirks in the readline library to turn off the highlighting and make the payload invisible to the user. E.g.:\n
\n
```\n
\n
<span style="color:#323232;">let payload = 'touch ~/LOL-' + Date.now() / 1000;\n
</span><span style="color:#323232;">writeXPrimary('n' + payload + 'n'.repeat(100) + ' '.repeat(30)\n
</span><span style="color:#323232;">\t+ 'n'.repeat(100))\n
</span>\n
```\n
\n
which will confuse the user with the same screen as when some stray background job had written something to the terminal:\n
\n
```\n
\n
<span style="color:#323232;">user@...t:~$ : previous unrelated command\n
</span><span style="color:#323232;">user@...t:~$\t<-- paste here\n
</span><span style="color:#323232;"># <-- cursor here, most users will just hit Enter to get a new prompt\n
</span>\n
```\n
\n
live example of that snippet: [turistu.github.io/firefox/bash-pastejack.html\n
\n
Just to be clear, I don’t think that either mlterm, bash, nor the shells that don’t do have that bracketed-paste feature are at fault here in any way (and I personally always turn off that misfeature as it badly interferes with my workflow): It’s firefox which should get all the blame for letting random javascript evade its pretended “sandbox” in this way.\n
\n
### About Wayland\n
\n
For firefox running in Wayland, `writeXPrimary()` will only succeed when the firefox window (the main window, not necessarily the tab the code runs in) has the focus. Otherwise the selection will be cleared. At first I assumed that this is something specific to the Wayland protocol, but that turned out to be utterly false; it’s just some quirk, bug or “feature” specific to either firefox itself or GTK.\n
\n
But I think that’s still bad enough, even if the page should take care to only set the selection when the main window has gained focus.\n
\n
And of course, all this doesn’t affect the situation where you’re copying and pasting in another firefox tab with a different context, origin, etc; and all the other situations where you don’t appreciate having random javascript you don’t even know about messing with your copy & paste.\n
\n
===\n
\n
This is a slightly edited version of [github.com/turistu/odds-n-ends/…/pastejack.md](https://github.com/turistu/odds-n-ends/blob/main/firefox/pastejack.md).\n
\n
I will correct any errors or omissions and also add more info there.
"""
+type: "link"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 8
+favouriteCount: 0
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1725264437 {#2150
date: 2024-09-02 10:07:17.0 +02:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#2813 …}
+votes: Doctrine\ORM\PersistentCollection {#2814 …}
+reports: Doctrine\ORM\PersistentCollection {#2815 …}
+favourites: Doctrine\ORM\PersistentCollection {#2820 …}
+notifications: Doctrine\ORM\PersistentCollection {#2810 …}
+badges: Doctrine\ORM\PersistentCollection {#2808 …}
+children: [
App\Entity\EntryComment {#2028
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2029 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: null
+root: null
+body: "JavaScript was a mistake."
+lang: "en"
+isAdult: false
+favouriteCount: 1
+score: 0
+lastActive: DateTime @1725264437 {#2033
date: 2024-09-02 10:07:17.0 +02:00
}
+ip: null
+tags: null
+mentions: [
"@ugjka@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#2012 …}
+nested: Doctrine\ORM\PersistentCollection {#2013 …}
+votes: Doctrine\ORM\PersistentCollection {#2035 …}
+reports: Doctrine\ORM\PersistentCollection {#2036 …}
+favourites: Doctrine\ORM\PersistentCollection {#2144 …}
+notifications: Doctrine\ORM\PersistentCollection {#2061 …}
-id: 232203
-bodyTs: "'javascript':1 'mistak':4"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/4186879"
+editedAt: null
+createdAt: DateTimeImmutable @1698015089 {#2021
date: 2023-10-23 00:51:29.0 +02:00
}
+"title": 232203
}
]
-id: 17198
-titleTs: "'anytim':10 'firefox':2 'page':6 'pastejack':8 'x11':4"
-bodyTs: "'+0000':538 '+0300':9,547 '+3345':550 '-3345':548 '/firefox/bash-pastejack.html':843 '/firefox/pastejack.html](https://turistu.github.io/firefox/pastejack.html)':326 '/lol-':779 '/no-sel.xpi':479 '/pastejack.md':1069 '/turistu/odds-n-ends/':1068 '/turistu/odds-n-ends/blob/main/firefox/pastejack.md).':1072 '/turistu/odds-n-ends/raw/':478 '/turistu/odds-n-ends/raw/main/firefox/no-sel.xpi).':482 '03':6,535 '04':544 '06':533 '08':542 '10':551 '100':787,792 '1000':781 '11':543 '12':534 '17':3,7,536 '2':101 '2023':5,537,546 '3':103 '30':789 '36':8 '41':545 '6':549 '9b362770f30b':528 'a/layout/generic/nsframeselection.cpp':530 'abl':158,218 'accept':494 'accord':45 'activ':343 'add':1082 'addon':454 'addons.mozilla.org':489 'addrang':618 'adocu':568 'advantag':754 'affect':108,1016 'ago':43 'alpin':240 'alreadi':34 'also':1081 'alway':586,879 'anoth':1026 'anytim':27 'api':599 'append':694 'appli':203 'appreci':85,1044 'arbitrari':144 'areason':562 'aselection.iscollapsed':569 'assum':949 'b/layout/generic/nsframeselection.cpp':539 'background':171,806 'bad':886,988 'bash':750,855 'bash/readline':686 'blame':899 'blank':273 'block':462,466,468 'bracket':259,679,682,866 'bracketed-past':258,678,865 'browser':330 'bug':412,972 'button':405,633 'c':381 'call':614,639 'cannot':66,692 'care':555,996 'clear':847,945 'click':302,366,403 'clipboard':385,572,575 'clipboard.selectallchildren':450 'clipboard.writetext':373 'code':145,636,934 'command':309,818 'complet':472 'concept':335 'config':517 'configur':234 'confus':795 'content':456 'context':338,392,1032 'copi':316,1022,1057 'correct':1075 'could':111 'cours':1011 'cr':696 'ctrl':380,383 'ctrl-c':379 'ctrl-v':382 'cursor':823 'data':733 'date':1 'date.now':780 'debug':571 'default':233,250,253 'definea':470 'demonstr':413 'deriv':212 'develop':504 'didn':492 'diff':526 'differ':1031 'disabl':448 'doesn':1014 'done':704 'drag':560,626 'e.g':166,339,458,775 'e201':745 'earli':741 'easili':140 'edit':505,1063 'either':853,977 'end':305 'enough':665,989 'enter':713,830 'equiv':199 'error':184,465,1077 'esr':502 'etc':201,214,368,406,1034 'evad':904 'even':359,990,1051 'exampl':225,228,320,676,837 'exist':720 'explan':329 'exploit':141 'exportfunct':467 'extens':473 'fals':966 'fault':871 'featur':684,868,974 'fill':667 'filter':729 'firefox':19,39,70,120,270,332,439,501,522,524,893,914,924,978,1027 'firefox-esr':500 'first':947 'flag':608,642 'focus':939,1008 'follow':267 'forget':277 'fprintf':573 'freeli':130 'fri':531 'function':451,463,616 'gain':1007 'get':349,832,896 'github.com':477,481,1067,1071 'github.com/turistu/odds-n-ends/':1066 'github.com/turistu/odds-n-ends/blob/main/firefox/pastejack.md).':1070 'github.com/turistu/odds-n-ends/raw/':476 'github.com/turistu/odds-n-ends/raw/main/firefox/no-sel.xpi).':480 'give':93 'glare':669 'go':262,281 'gtk':981 'hasn':628 'highlight':766 'hit':829 'hole':670 'howev':84,600,657,718 'http':198 'http-equiv':197 'idea':580 'ifdef':570 'ifram':178,188 'ignor':78 'implement':257 'includ':165,221 'indirect':590 'info':1084 'inject':312 'insert':299,743 'insid':179 'instal':519 'instanc':370,722 'intent':271 'interact':153,358 'interfer':887 'invis':771 'issu':54 'javascript':161,345,588,613,649,903,1047 'job':807 'js':564,606 'kill':67,69 'know':1052 'later':287 'latest':223 'layout/generic/nsframeselection.cpp':529 'learn':112 'least':57 'left':272 'let':88,461,776,901 'lf':698 'librari':761 'like':237,263,331,365,459,617,725 'linux':241 'littl':361 'live':319,836 'load':265 'machin':150 'main':927,1004 'make':768 'may':106 'mean':689 'mess':591,1054 'meta':196 'middl':301 'minim':175 'misfeatur':883 'mlterm':726,854 'mode':740 'moder':31 'mous':632 'mozilla/firefox':209 'much':118,429,433 'n':783,785,790 'necessari':155 'necessarili':930 'need':418 'new':834 'night':224,507 'no-sel.xpi':523 'note':28 'nsiselectionlisten':563 'oct':4,532,541 'omiss':1079 'open':671 'openbsd':238 'origin':1033 'oss':14 'oss-secur':13 'otherwis':940 'page':23,128,157,168,185,190,348,364,409,993 'past':260,291,318,680,683,732,739,821,867,1024,1058 'pastejack':25 'patch':438,525,583,662 'payload':701,748,770,777,784 'peopl':40,104 'person':878 'peski':62 'possibl':389 'power':352 'prerequisit':415 'press':712 'pretend':275,906 'prevent':587 'previous':816 'primari':134,423,594 'prompt':835 'protocol':958 'quirk':757,971 'r':527 'random':902,1046 're':498,1021 'readlin':760 'real':52 'reason':565,607 'refresh':200 'releas':630 'reliabl':611 'reload':193 'repeat':786,788,791 'repli':81 'return':552,566 'run':121,143,160,307,499,717,915,935 'sandbox':187,907 'screen':801 'script':63,125,457 'seamonkey':213 'secur':15,53,337,391 'select':135,386,424,595,598,653,942,1001 'selectallchildren':471,620,673 'selection.prototype':469 'selection/collapsed':577 'selectionn':578 'set':511,647,999 'shell':254,858 'shift':298 'shift-insert':297 'short':327,397 'simplest':227 'situat':1018,1039 'slight':1062 'snippet':268,323,840 'someth':292,810,953 'soon':354 'sooner':285 'specif':954,975 'start':625 'stderr':574 'still':559,664,987 'stray':805 'style':378 'subject':17 'submit':35,486 'succeed':921 'sun':540 'system':236,244 'tab':172,932,1028 'take':753,995 'technic':328 'temporari':351 'termin':295,724,737,813 'test':220 'text':646,652 'thank':115 'think':74,445,659,851,984 'three':41 'throw':464 'touch':367,778 'transient':341 'tri':289,484 'true':514 'ts.openwall.com':16 'tue':2 'turistu':11 'turistu.github.io':325,842 'turistu.github.io/firefox/bash-pastejack.html':841 'turistu.github.io/firefox/pastejack.html](https://turistu.github.io/firefox/pastejack.html)':324 'turn':602,763,880,961 'unix/linux':243 'unrel':817 'use':431 'user':148,152,342,401,623,656,708,774,797,814,819,826 'utter':965 'v':384 'valuabl':435 'version':207,1064 'via':195,596 'visibl':96 'way':875,910 'wayland':246,912,917,957 'week':42 'window':176,182,377,925,928,1005 'windows-styl':376 'without':68,80,437,640 'work':230,284 'workaround':436,442,719 'workflow':890 'wors':59 'would':83,261 'write':131,371,420 'writexprimari':310,782,918 'written':809 'x11':21,123,427 'xpinstall.signatures.required':512 'yet':634 'zsh':688"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1697959616
+visibility: "visible "
+apId: "https://lemmy.world/post/7123900"
+editedAt: null
+createdAt: DateTimeImmutable @1697907616 {#2751
date: 2023-10-21 19:00:16.0 +02:00
}
+__isInitialized__: true
…2
} |
|
Show voter details
|
5 |
DENIED
|
ROLE_USER
|
null |
|
Show voter details
|
6 |
DENIED
|
moderate
|
App\Entity\EntryComment {#2028
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2029
+user: Proxies\__CG__\App\Entity\User {#2636 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+domain: Proxies\__CG__\App\Entity\Domain {#2792 …}
+slug: "With-Firefox-on-X11-any-page-can-pastejack-you-anytime"
+title: "With Firefox on X11, any page can pastejack you anytime"
+url: "https://www.openwall.com/lists/oss-security/2023/10/17/1"
+body: """
Date: Tue, 17 Oct 2023 03:17:36 +0300 From: turistu To: oss-security@…ts.openwall.com Subject: with firefox on X11, any page can pastejack you anytime\n
\n
Note to the moderator: I have already submitted this to the firefox people three weeks ago, and according to them, this is not a real security issue, or at least not worse than those pesky scripts which you cannot kill without killing firefox itself; if you think the same, just ignore this without replying.\n
\n
I would however appreciate if you let this through and so give it some visibility so that the other 2 or 3 people who may be affected by this could learn about it.\n
\n
Thank you very much.\n
\n
====\n
\n
In firefox running on X11, any script from any page can freely write to the primary selection, and that can be easily exploited to run arbitrary code on the user’s machine.\n
\n
No user interaction is necessary – any page able to run javascript can do it, including e.g. a page from a background tab of a minimized window, an iframe inside such a window, an error page, a sandboxed iframe, a page that has reloaded itself via `meta http-equiv=refresh`, etc.\n
\n
This applies to all the versions of mozilla/firefox and their derivatives (seamonkey, etc) that I was able to test, including the latest nightly.\n
\n
### Example\n
\n
The simplest example, which works in the default configurations of systems like OpenBSD or Alpine Linux (= any Unix/Linux system where Wayland is not the default and the default *shell* does not implement bracketed-paste), would go like this:\n
\n
Load the following snippet in firefox:\n
\n
```\n
\n
<span style="color:#323232;">\n
</span><span style="color:#323232;">intentionally left blank\n
</span>\n
```\n
\n
Then pretend to forget about it, and go about your work. Sooner or later, when trying to paste something in the terminal with shift-Insert or middle click, you will end up running the command `writeXPrimary()` has injected just between your copy and paste.\n
\n
live example of that snippet: [turistu.github.io/firefox/pastejack.html](https://turistu.github.io/firefox/pastejack.html)\n
\n
### Short technical explanation\n
\n
Browsers like firefox have the concepts of “secure context” (e.g. `https://`) and “transient user activation”; the javascript from the page gets some temporary powers as soon as you have interacted *even so little* with the page, like clicked, touched, etc.\n
\n
For instance, writing with `Clipboard.writeText()` to the windows-style Ctrl-C Ctrl-V *clipboard* selection is only possible from secure contexts and only in the short while after the user has clicked a button, etc on the page. As this bug demonstrates, those prerequisites are not needed for writing to the *primary* selection, which on X11 is much more used and much more valuable.\n
\n
### Workaround\n
\n
Without patching firefox, the only workaround I can think about is disabling the `Clipboard.selectAllChildren()` function from an addon’s content script, e.g. like this:\n
\n
```\n
\n
<span style="color:#323232;">let block = function(){ throw Error('blocked') };\n
</span><span style="color:#323232;">exportFunction(block, Selection.prototype, { defineAs: 'selectAllChildren' });\n
</span>\n
```\n
\n
Complete extension here at [github.com/turistu/odds-n-ends/raw/…/no-sel.xpi](https://github.com/turistu/odds-n-ends/raw/main/firefox/no-sel.xpi).\n
\n
I tried to submit it to addons.mozilla.org but they didn’t accept it. If you’re running firefox-esr, the development edition or nightly, you can just `set xpinstall.signatures.required` to true in `about:config` and install it with `firefox no-sel.xpi`.\n
\n
### Firefox Patch\n
\n
```\n
\n
<span style="color:#323232;">diff -r 9b362770f30b layout/generic/nsFrameSelection.cpp\n
</span><span style="color:#323232;">--- a/layout/generic/nsFrameSelection.cpp\tFri Oct 06 12:03:17 2023 +0000\n
</span><span style="color:#323232;">+++ b/layout/generic/nsFrameSelection.cpp\tSun Oct 08 11:04:41 2023 +0300\n
</span><span style="color:#323232;">@@ -3345,6 +3345,10 @@\n
</span><span style="color:#323232;"> return; // Don't care if we are still dragging.\n
</span><span style="color:#323232;"> }\n
</span><span style="color:#323232;"> \n
</span><span style="color:#323232;">+ if (aReason & nsISelectionListener::JS_REASON) {\n
</span><span style="color:#323232;">+ return;\n
</span><span style="color:#323232;">+ }\n
</span><span style="color:#323232;">+\n
</span><span style="color:#323232;"> if (!aDocument || aSelection.IsCollapsed()) {\n
</span><span style="color:#323232;"> #ifdef DEBUG_CLIPBOARD\n
</span><span style="color:#323232;"> fprintf(stderr, "CLIPBOARD: no selection/collapsed selectionn");\n
</span>\n
```\n
\n
The idea of this patch was to *always* prevent javascript from indirectly messing with the primary selection via the Selection API. However, it turned out that the `JS_REASON` flag was not reliable; if javascript calls some function like `addRange()` or `selectAllChildren()` while the user has started dragging but hasn’t released the mouse button yet, that code will be called *without* that flag but with the text set by javascript, not the text selected by the user. However, I think that this patch is still enough to fill the glaring hole opened by `selectAllChildren()`.\n
\n
### About the example and bracketed-paste\n
\n
The bracketed paste feature of bash/readline and zsh means that you cannot just append a CR or LF to the payload and be done, it’s the user who has to press ENTER for it to run.\n
\n
However, workarounds exist. For instance, some terminals like mlterm don’t filter out the pasted data, and you can terminate the pasting mode early by inserting a `e201~` in the payload.\n
\n
For bash, you can take advantage of some quirks in the readline library to turn off the highlighting and make the payload invisible to the user. E.g.:\n
\n
```\n
\n
<span style="color:#323232;">let payload = 'touch ~/LOL-' + Date.now() / 1000;\n
</span><span style="color:#323232;">writeXPrimary('n' + payload + 'n'.repeat(100) + ' '.repeat(30)\n
</span><span style="color:#323232;">\t+ 'n'.repeat(100))\n
</span>\n
```\n
\n
which will confuse the user with the same screen as when some stray background job had written something to the terminal:\n
\n
```\n
\n
<span style="color:#323232;">user@...t:~$ : previous unrelated command\n
</span><span style="color:#323232;">user@...t:~$\t<-- paste here\n
</span><span style="color:#323232;"># <-- cursor here, most users will just hit Enter to get a new prompt\n
</span>\n
```\n
\n
live example of that snippet: [turistu.github.io/firefox/bash-pastejack.html\n
\n
Just to be clear, I don’t think that either mlterm, bash, nor the shells that don’t do have that bracketed-paste feature are at fault here in any way (and I personally always turn off that misfeature as it badly interferes with my workflow): It’s firefox which should get all the blame for letting random javascript evade its pretended “sandbox” in this way.\n
\n
### About Wayland\n
\n
For firefox running in Wayland, `writeXPrimary()` will only succeed when the firefox window (the main window, not necessarily the tab the code runs in) has the focus. Otherwise the selection will be cleared. At first I assumed that this is something specific to the Wayland protocol, but that turned out to be utterly false; it’s just some quirk, bug or “feature” specific to either firefox itself or GTK.\n
\n
But I think that’s still bad enough, even if the page should take care to only set the selection when the main window has gained focus.\n
\n
And of course, all this doesn’t affect the situation where you’re copying and pasting in another firefox tab with a different context, origin, etc; and all the other situations where you don’t appreciate having random javascript you don’t even know about messing with your copy & paste.\n
\n
===\n
\n
This is a slightly edited version of [github.com/turistu/odds-n-ends/…/pastejack.md](https://github.com/turistu/odds-n-ends/blob/main/firefox/pastejack.md).\n
\n
I will correct any errors or omissions and also add more info there.
"""
+type: "link"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 8
+favouriteCount: 0
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1725264437 {#2150
date: 2024-09-02 10:07:17.0 +02:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#2813 …}
+votes: Doctrine\ORM\PersistentCollection {#2814 …}
+reports: Doctrine\ORM\PersistentCollection {#2815 …}
+favourites: Doctrine\ORM\PersistentCollection {#2820 …}
+notifications: Doctrine\ORM\PersistentCollection {#2810 …}
+badges: Doctrine\ORM\PersistentCollection {#2808 …}
+children: [
App\Entity\EntryComment {#2028}
]
-id: 17198
-titleTs: "'anytim':10 'firefox':2 'page':6 'pastejack':8 'x11':4"
-bodyTs: "'+0000':538 '+0300':9,547 '+3345':550 '-3345':548 '/firefox/bash-pastejack.html':843 '/firefox/pastejack.html](https://turistu.github.io/firefox/pastejack.html)':326 '/lol-':779 '/no-sel.xpi':479 '/pastejack.md':1069 '/turistu/odds-n-ends/':1068 '/turistu/odds-n-ends/blob/main/firefox/pastejack.md).':1072 '/turistu/odds-n-ends/raw/':478 '/turistu/odds-n-ends/raw/main/firefox/no-sel.xpi).':482 '03':6,535 '04':544 '06':533 '08':542 '10':551 '100':787,792 '1000':781 '11':543 '12':534 '17':3,7,536 '2':101 '2023':5,537,546 '3':103 '30':789 '36':8 '41':545 '6':549 '9b362770f30b':528 'a/layout/generic/nsframeselection.cpp':530 'abl':158,218 'accept':494 'accord':45 'activ':343 'add':1082 'addon':454 'addons.mozilla.org':489 'addrang':618 'adocu':568 'advantag':754 'affect':108,1016 'ago':43 'alpin':240 'alreadi':34 'also':1081 'alway':586,879 'anoth':1026 'anytim':27 'api':599 'append':694 'appli':203 'appreci':85,1044 'arbitrari':144 'areason':562 'aselection.iscollapsed':569 'assum':949 'b/layout/generic/nsframeselection.cpp':539 'background':171,806 'bad':886,988 'bash':750,855 'bash/readline':686 'blame':899 'blank':273 'block':462,466,468 'bracket':259,679,682,866 'bracketed-past':258,678,865 'browser':330 'bug':412,972 'button':405,633 'c':381 'call':614,639 'cannot':66,692 'care':555,996 'clear':847,945 'click':302,366,403 'clipboard':385,572,575 'clipboard.selectallchildren':450 'clipboard.writetext':373 'code':145,636,934 'command':309,818 'complet':472 'concept':335 'config':517 'configur':234 'confus':795 'content':456 'context':338,392,1032 'copi':316,1022,1057 'correct':1075 'could':111 'cours':1011 'cr':696 'ctrl':380,383 'ctrl-c':379 'ctrl-v':382 'cursor':823 'data':733 'date':1 'date.now':780 'debug':571 'default':233,250,253 'definea':470 'demonstr':413 'deriv':212 'develop':504 'didn':492 'diff':526 'differ':1031 'disabl':448 'doesn':1014 'done':704 'drag':560,626 'e.g':166,339,458,775 'e201':745 'earli':741 'easili':140 'edit':505,1063 'either':853,977 'end':305 'enough':665,989 'enter':713,830 'equiv':199 'error':184,465,1077 'esr':502 'etc':201,214,368,406,1034 'evad':904 'even':359,990,1051 'exampl':225,228,320,676,837 'exist':720 'explan':329 'exploit':141 'exportfunct':467 'extens':473 'fals':966 'fault':871 'featur':684,868,974 'fill':667 'filter':729 'firefox':19,39,70,120,270,332,439,501,522,524,893,914,924,978,1027 'firefox-esr':500 'first':947 'flag':608,642 'focus':939,1008 'follow':267 'forget':277 'fprintf':573 'freeli':130 'fri':531 'function':451,463,616 'gain':1007 'get':349,832,896 'github.com':477,481,1067,1071 'github.com/turistu/odds-n-ends/':1066 'github.com/turistu/odds-n-ends/blob/main/firefox/pastejack.md).':1070 'github.com/turistu/odds-n-ends/raw/':476 'github.com/turistu/odds-n-ends/raw/main/firefox/no-sel.xpi).':480 'give':93 'glare':669 'go':262,281 'gtk':981 'hasn':628 'highlight':766 'hit':829 'hole':670 'howev':84,600,657,718 'http':198 'http-equiv':197 'idea':580 'ifdef':570 'ifram':178,188 'ignor':78 'implement':257 'includ':165,221 'indirect':590 'info':1084 'inject':312 'insert':299,743 'insid':179 'instal':519 'instanc':370,722 'intent':271 'interact':153,358 'interfer':887 'invis':771 'issu':54 'javascript':161,345,588,613,649,903,1047 'job':807 'js':564,606 'kill':67,69 'know':1052 'later':287 'latest':223 'layout/generic/nsframeselection.cpp':529 'learn':112 'least':57 'left':272 'let':88,461,776,901 'lf':698 'librari':761 'like':237,263,331,365,459,617,725 'linux':241 'littl':361 'live':319,836 'load':265 'machin':150 'main':927,1004 'make':768 'may':106 'mean':689 'mess':591,1054 'meta':196 'middl':301 'minim':175 'misfeatur':883 'mlterm':726,854 'mode':740 'moder':31 'mous':632 'mozilla/firefox':209 'much':118,429,433 'n':783,785,790 'necessari':155 'necessarili':930 'need':418 'new':834 'night':224,507 'no-sel.xpi':523 'note':28 'nsiselectionlisten':563 'oct':4,532,541 'omiss':1079 'open':671 'openbsd':238 'origin':1033 'oss':14 'oss-secur':13 'otherwis':940 'page':23,128,157,168,185,190,348,364,409,993 'past':260,291,318,680,683,732,739,821,867,1024,1058 'pastejack':25 'patch':438,525,583,662 'payload':701,748,770,777,784 'peopl':40,104 'person':878 'peski':62 'possibl':389 'power':352 'prerequisit':415 'press':712 'pretend':275,906 'prevent':587 'previous':816 'primari':134,423,594 'prompt':835 'protocol':958 'quirk':757,971 'r':527 'random':902,1046 're':498,1021 'readlin':760 'real':52 'reason':565,607 'refresh':200 'releas':630 'reliabl':611 'reload':193 'repeat':786,788,791 'repli':81 'return':552,566 'run':121,143,160,307,499,717,915,935 'sandbox':187,907 'screen':801 'script':63,125,457 'seamonkey':213 'secur':15,53,337,391 'select':135,386,424,595,598,653,942,1001 'selectallchildren':471,620,673 'selection.prototype':469 'selection/collapsed':577 'selectionn':578 'set':511,647,999 'shell':254,858 'shift':298 'shift-insert':297 'short':327,397 'simplest':227 'situat':1018,1039 'slight':1062 'snippet':268,323,840 'someth':292,810,953 'soon':354 'sooner':285 'specif':954,975 'start':625 'stderr':574 'still':559,664,987 'stray':805 'style':378 'subject':17 'submit':35,486 'succeed':921 'sun':540 'system':236,244 'tab':172,932,1028 'take':753,995 'technic':328 'temporari':351 'termin':295,724,737,813 'test':220 'text':646,652 'thank':115 'think':74,445,659,851,984 'three':41 'throw':464 'touch':367,778 'transient':341 'tri':289,484 'true':514 'ts.openwall.com':16 'tue':2 'turistu':11 'turistu.github.io':325,842 'turistu.github.io/firefox/bash-pastejack.html':841 'turistu.github.io/firefox/pastejack.html](https://turistu.github.io/firefox/pastejack.html)':324 'turn':602,763,880,961 'unix/linux':243 'unrel':817 'use':431 'user':148,152,342,401,623,656,708,774,797,814,819,826 'utter':965 'v':384 'valuabl':435 'version':207,1064 'via':195,596 'visibl':96 'way':875,910 'wayland':246,912,917,957 'week':42 'window':176,182,377,925,928,1005 'windows-styl':376 'without':68,80,437,640 'work':230,284 'workaround':436,442,719 'workflow':890 'wors':59 'would':83,261 'write':131,371,420 'writexprimari':310,782,918 'written':809 'x11':21,123,427 'xpinstall.signatures.required':512 'yet':634 'zsh':688"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1697959616
+visibility: "visible "
+apId: "https://lemmy.world/post/7123900"
+editedAt: null
+createdAt: DateTimeImmutable @1697907616 {#2751
date: 2023-10-21 19:00:16.0 +02:00
}
+__isInitialized__: true
…2
}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: null
+root: null
+body: "JavaScript was a mistake."
+lang: "en"
+isAdult: false
+favouriteCount: 1
+score: 0
+lastActive: DateTime @1725264437 {#2033
date: 2024-09-02 10:07:17.0 +02:00
}
+ip: null
+tags: null
+mentions: [
"@ugjka@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#2012 …}
+nested: Doctrine\ORM\PersistentCollection {#2013 …}
+votes: Doctrine\ORM\PersistentCollection {#2035 …}
+reports: Doctrine\ORM\PersistentCollection {#2036 …}
+favourites: Doctrine\ORM\PersistentCollection {#2144 …}
+notifications: Doctrine\ORM\PersistentCollection {#2061 …}
-id: 232203
-bodyTs: "'javascript':1 'mistak':4"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/4186879"
+editedAt: null
+createdAt: DateTimeImmutable @1698015089 {#2021
date: 2023-10-23 00:51:29.0 +02:00
}
+"title": 232203
} |
|
Show voter details
|
7 |
DENIED
|
edit
|
App\Entity\EntryComment {#2028
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2029
+user: Proxies\__CG__\App\Entity\User {#2636 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+domain: Proxies\__CG__\App\Entity\Domain {#2792 …}
+slug: "With-Firefox-on-X11-any-page-can-pastejack-you-anytime"
+title: "With Firefox on X11, any page can pastejack you anytime"
+url: "https://www.openwall.com/lists/oss-security/2023/10/17/1"
+body: """
Date: Tue, 17 Oct 2023 03:17:36 +0300 From: turistu To: oss-security@…ts.openwall.com Subject: with firefox on X11, any page can pastejack you anytime\n
\n
Note to the moderator: I have already submitted this to the firefox people three weeks ago, and according to them, this is not a real security issue, or at least not worse than those pesky scripts which you cannot kill without killing firefox itself; if you think the same, just ignore this without replying.\n
\n
I would however appreciate if you let this through and so give it some visibility so that the other 2 or 3 people who may be affected by this could learn about it.\n
\n
Thank you very much.\n
\n
====\n
\n
In firefox running on X11, any script from any page can freely write to the primary selection, and that can be easily exploited to run arbitrary code on the user’s machine.\n
\n
No user interaction is necessary – any page able to run javascript can do it, including e.g. a page from a background tab of a minimized window, an iframe inside such a window, an error page, a sandboxed iframe, a page that has reloaded itself via `meta http-equiv=refresh`, etc.\n
\n
This applies to all the versions of mozilla/firefox and their derivatives (seamonkey, etc) that I was able to test, including the latest nightly.\n
\n
### Example\n
\n
The simplest example, which works in the default configurations of systems like OpenBSD or Alpine Linux (= any Unix/Linux system where Wayland is not the default and the default *shell* does not implement bracketed-paste), would go like this:\n
\n
Load the following snippet in firefox:\n
\n
```\n
\n
<span style="color:#323232;">\n
</span><span style="color:#323232;">intentionally left blank\n
</span>\n
```\n
\n
Then pretend to forget about it, and go about your work. Sooner or later, when trying to paste something in the terminal with shift-Insert or middle click, you will end up running the command `writeXPrimary()` has injected just between your copy and paste.\n
\n
live example of that snippet: [turistu.github.io/firefox/pastejack.html](https://turistu.github.io/firefox/pastejack.html)\n
\n
### Short technical explanation\n
\n
Browsers like firefox have the concepts of “secure context” (e.g. `https://`) and “transient user activation”; the javascript from the page gets some temporary powers as soon as you have interacted *even so little* with the page, like clicked, touched, etc.\n
\n
For instance, writing with `Clipboard.writeText()` to the windows-style Ctrl-C Ctrl-V *clipboard* selection is only possible from secure contexts and only in the short while after the user has clicked a button, etc on the page. As this bug demonstrates, those prerequisites are not needed for writing to the *primary* selection, which on X11 is much more used and much more valuable.\n
\n
### Workaround\n
\n
Without patching firefox, the only workaround I can think about is disabling the `Clipboard.selectAllChildren()` function from an addon’s content script, e.g. like this:\n
\n
```\n
\n
<span style="color:#323232;">let block = function(){ throw Error('blocked') };\n
</span><span style="color:#323232;">exportFunction(block, Selection.prototype, { defineAs: 'selectAllChildren' });\n
</span>\n
```\n
\n
Complete extension here at [github.com/turistu/odds-n-ends/raw/…/no-sel.xpi](https://github.com/turistu/odds-n-ends/raw/main/firefox/no-sel.xpi).\n
\n
I tried to submit it to addons.mozilla.org but they didn’t accept it. If you’re running firefox-esr, the development edition or nightly, you can just `set xpinstall.signatures.required` to true in `about:config` and install it with `firefox no-sel.xpi`.\n
\n
### Firefox Patch\n
\n
```\n
\n
<span style="color:#323232;">diff -r 9b362770f30b layout/generic/nsFrameSelection.cpp\n
</span><span style="color:#323232;">--- a/layout/generic/nsFrameSelection.cpp\tFri Oct 06 12:03:17 2023 +0000\n
</span><span style="color:#323232;">+++ b/layout/generic/nsFrameSelection.cpp\tSun Oct 08 11:04:41 2023 +0300\n
</span><span style="color:#323232;">@@ -3345,6 +3345,10 @@\n
</span><span style="color:#323232;"> return; // Don't care if we are still dragging.\n
</span><span style="color:#323232;"> }\n
</span><span style="color:#323232;"> \n
</span><span style="color:#323232;">+ if (aReason & nsISelectionListener::JS_REASON) {\n
</span><span style="color:#323232;">+ return;\n
</span><span style="color:#323232;">+ }\n
</span><span style="color:#323232;">+\n
</span><span style="color:#323232;"> if (!aDocument || aSelection.IsCollapsed()) {\n
</span><span style="color:#323232;"> #ifdef DEBUG_CLIPBOARD\n
</span><span style="color:#323232;"> fprintf(stderr, "CLIPBOARD: no selection/collapsed selectionn");\n
</span>\n
```\n
\n
The idea of this patch was to *always* prevent javascript from indirectly messing with the primary selection via the Selection API. However, it turned out that the `JS_REASON` flag was not reliable; if javascript calls some function like `addRange()` or `selectAllChildren()` while the user has started dragging but hasn’t released the mouse button yet, that code will be called *without* that flag but with the text set by javascript, not the text selected by the user. However, I think that this patch is still enough to fill the glaring hole opened by `selectAllChildren()`.\n
\n
### About the example and bracketed-paste\n
\n
The bracketed paste feature of bash/readline and zsh means that you cannot just append a CR or LF to the payload and be done, it’s the user who has to press ENTER for it to run.\n
\n
However, workarounds exist. For instance, some terminals like mlterm don’t filter out the pasted data, and you can terminate the pasting mode early by inserting a `e201~` in the payload.\n
\n
For bash, you can take advantage of some quirks in the readline library to turn off the highlighting and make the payload invisible to the user. E.g.:\n
\n
```\n
\n
<span style="color:#323232;">let payload = 'touch ~/LOL-' + Date.now() / 1000;\n
</span><span style="color:#323232;">writeXPrimary('n' + payload + 'n'.repeat(100) + ' '.repeat(30)\n
</span><span style="color:#323232;">\t+ 'n'.repeat(100))\n
</span>\n
```\n
\n
which will confuse the user with the same screen as when some stray background job had written something to the terminal:\n
\n
```\n
\n
<span style="color:#323232;">user@...t:~$ : previous unrelated command\n
</span><span style="color:#323232;">user@...t:~$\t<-- paste here\n
</span><span style="color:#323232;"># <-- cursor here, most users will just hit Enter to get a new prompt\n
</span>\n
```\n
\n
live example of that snippet: [turistu.github.io/firefox/bash-pastejack.html\n
\n
Just to be clear, I don’t think that either mlterm, bash, nor the shells that don’t do have that bracketed-paste feature are at fault here in any way (and I personally always turn off that misfeature as it badly interferes with my workflow): It’s firefox which should get all the blame for letting random javascript evade its pretended “sandbox” in this way.\n
\n
### About Wayland\n
\n
For firefox running in Wayland, `writeXPrimary()` will only succeed when the firefox window (the main window, not necessarily the tab the code runs in) has the focus. Otherwise the selection will be cleared. At first I assumed that this is something specific to the Wayland protocol, but that turned out to be utterly false; it’s just some quirk, bug or “feature” specific to either firefox itself or GTK.\n
\n
But I think that’s still bad enough, even if the page should take care to only set the selection when the main window has gained focus.\n
\n
And of course, all this doesn’t affect the situation where you’re copying and pasting in another firefox tab with a different context, origin, etc; and all the other situations where you don’t appreciate having random javascript you don’t even know about messing with your copy & paste.\n
\n
===\n
\n
This is a slightly edited version of [github.com/turistu/odds-n-ends/…/pastejack.md](https://github.com/turistu/odds-n-ends/blob/main/firefox/pastejack.md).\n
\n
I will correct any errors or omissions and also add more info there.
"""
+type: "link"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 8
+favouriteCount: 0
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1725264437 {#2150
date: 2024-09-02 10:07:17.0 +02:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#2813 …}
+votes: Doctrine\ORM\PersistentCollection {#2814 …}
+reports: Doctrine\ORM\PersistentCollection {#2815 …}
+favourites: Doctrine\ORM\PersistentCollection {#2820 …}
+notifications: Doctrine\ORM\PersistentCollection {#2810 …}
+badges: Doctrine\ORM\PersistentCollection {#2808 …}
+children: [
App\Entity\EntryComment {#2028}
]
-id: 17198
-titleTs: "'anytim':10 'firefox':2 'page':6 'pastejack':8 'x11':4"
-bodyTs: "'+0000':538 '+0300':9,547 '+3345':550 '-3345':548 '/firefox/bash-pastejack.html':843 '/firefox/pastejack.html](https://turistu.github.io/firefox/pastejack.html)':326 '/lol-':779 '/no-sel.xpi':479 '/pastejack.md':1069 '/turistu/odds-n-ends/':1068 '/turistu/odds-n-ends/blob/main/firefox/pastejack.md).':1072 '/turistu/odds-n-ends/raw/':478 '/turistu/odds-n-ends/raw/main/firefox/no-sel.xpi).':482 '03':6,535 '04':544 '06':533 '08':542 '10':551 '100':787,792 '1000':781 '11':543 '12':534 '17':3,7,536 '2':101 '2023':5,537,546 '3':103 '30':789 '36':8 '41':545 '6':549 '9b362770f30b':528 'a/layout/generic/nsframeselection.cpp':530 'abl':158,218 'accept':494 'accord':45 'activ':343 'add':1082 'addon':454 'addons.mozilla.org':489 'addrang':618 'adocu':568 'advantag':754 'affect':108,1016 'ago':43 'alpin':240 'alreadi':34 'also':1081 'alway':586,879 'anoth':1026 'anytim':27 'api':599 'append':694 'appli':203 'appreci':85,1044 'arbitrari':144 'areason':562 'aselection.iscollapsed':569 'assum':949 'b/layout/generic/nsframeselection.cpp':539 'background':171,806 'bad':886,988 'bash':750,855 'bash/readline':686 'blame':899 'blank':273 'block':462,466,468 'bracket':259,679,682,866 'bracketed-past':258,678,865 'browser':330 'bug':412,972 'button':405,633 'c':381 'call':614,639 'cannot':66,692 'care':555,996 'clear':847,945 'click':302,366,403 'clipboard':385,572,575 'clipboard.selectallchildren':450 'clipboard.writetext':373 'code':145,636,934 'command':309,818 'complet':472 'concept':335 'config':517 'configur':234 'confus':795 'content':456 'context':338,392,1032 'copi':316,1022,1057 'correct':1075 'could':111 'cours':1011 'cr':696 'ctrl':380,383 'ctrl-c':379 'ctrl-v':382 'cursor':823 'data':733 'date':1 'date.now':780 'debug':571 'default':233,250,253 'definea':470 'demonstr':413 'deriv':212 'develop':504 'didn':492 'diff':526 'differ':1031 'disabl':448 'doesn':1014 'done':704 'drag':560,626 'e.g':166,339,458,775 'e201':745 'earli':741 'easili':140 'edit':505,1063 'either':853,977 'end':305 'enough':665,989 'enter':713,830 'equiv':199 'error':184,465,1077 'esr':502 'etc':201,214,368,406,1034 'evad':904 'even':359,990,1051 'exampl':225,228,320,676,837 'exist':720 'explan':329 'exploit':141 'exportfunct':467 'extens':473 'fals':966 'fault':871 'featur':684,868,974 'fill':667 'filter':729 'firefox':19,39,70,120,270,332,439,501,522,524,893,914,924,978,1027 'firefox-esr':500 'first':947 'flag':608,642 'focus':939,1008 'follow':267 'forget':277 'fprintf':573 'freeli':130 'fri':531 'function':451,463,616 'gain':1007 'get':349,832,896 'github.com':477,481,1067,1071 'github.com/turistu/odds-n-ends/':1066 'github.com/turistu/odds-n-ends/blob/main/firefox/pastejack.md).':1070 'github.com/turistu/odds-n-ends/raw/':476 'github.com/turistu/odds-n-ends/raw/main/firefox/no-sel.xpi).':480 'give':93 'glare':669 'go':262,281 'gtk':981 'hasn':628 'highlight':766 'hit':829 'hole':670 'howev':84,600,657,718 'http':198 'http-equiv':197 'idea':580 'ifdef':570 'ifram':178,188 'ignor':78 'implement':257 'includ':165,221 'indirect':590 'info':1084 'inject':312 'insert':299,743 'insid':179 'instal':519 'instanc':370,722 'intent':271 'interact':153,358 'interfer':887 'invis':771 'issu':54 'javascript':161,345,588,613,649,903,1047 'job':807 'js':564,606 'kill':67,69 'know':1052 'later':287 'latest':223 'layout/generic/nsframeselection.cpp':529 'learn':112 'least':57 'left':272 'let':88,461,776,901 'lf':698 'librari':761 'like':237,263,331,365,459,617,725 'linux':241 'littl':361 'live':319,836 'load':265 'machin':150 'main':927,1004 'make':768 'may':106 'mean':689 'mess':591,1054 'meta':196 'middl':301 'minim':175 'misfeatur':883 'mlterm':726,854 'mode':740 'moder':31 'mous':632 'mozilla/firefox':209 'much':118,429,433 'n':783,785,790 'necessari':155 'necessarili':930 'need':418 'new':834 'night':224,507 'no-sel.xpi':523 'note':28 'nsiselectionlisten':563 'oct':4,532,541 'omiss':1079 'open':671 'openbsd':238 'origin':1033 'oss':14 'oss-secur':13 'otherwis':940 'page':23,128,157,168,185,190,348,364,409,993 'past':260,291,318,680,683,732,739,821,867,1024,1058 'pastejack':25 'patch':438,525,583,662 'payload':701,748,770,777,784 'peopl':40,104 'person':878 'peski':62 'possibl':389 'power':352 'prerequisit':415 'press':712 'pretend':275,906 'prevent':587 'previous':816 'primari':134,423,594 'prompt':835 'protocol':958 'quirk':757,971 'r':527 'random':902,1046 're':498,1021 'readlin':760 'real':52 'reason':565,607 'refresh':200 'releas':630 'reliabl':611 'reload':193 'repeat':786,788,791 'repli':81 'return':552,566 'run':121,143,160,307,499,717,915,935 'sandbox':187,907 'screen':801 'script':63,125,457 'seamonkey':213 'secur':15,53,337,391 'select':135,386,424,595,598,653,942,1001 'selectallchildren':471,620,673 'selection.prototype':469 'selection/collapsed':577 'selectionn':578 'set':511,647,999 'shell':254,858 'shift':298 'shift-insert':297 'short':327,397 'simplest':227 'situat':1018,1039 'slight':1062 'snippet':268,323,840 'someth':292,810,953 'soon':354 'sooner':285 'specif':954,975 'start':625 'stderr':574 'still':559,664,987 'stray':805 'style':378 'subject':17 'submit':35,486 'succeed':921 'sun':540 'system':236,244 'tab':172,932,1028 'take':753,995 'technic':328 'temporari':351 'termin':295,724,737,813 'test':220 'text':646,652 'thank':115 'think':74,445,659,851,984 'three':41 'throw':464 'touch':367,778 'transient':341 'tri':289,484 'true':514 'ts.openwall.com':16 'tue':2 'turistu':11 'turistu.github.io':325,842 'turistu.github.io/firefox/bash-pastejack.html':841 'turistu.github.io/firefox/pastejack.html](https://turistu.github.io/firefox/pastejack.html)':324 'turn':602,763,880,961 'unix/linux':243 'unrel':817 'use':431 'user':148,152,342,401,623,656,708,774,797,814,819,826 'utter':965 'v':384 'valuabl':435 'version':207,1064 'via':195,596 'visibl':96 'way':875,910 'wayland':246,912,917,957 'week':42 'window':176,182,377,925,928,1005 'windows-styl':376 'without':68,80,437,640 'work':230,284 'workaround':436,442,719 'workflow':890 'wors':59 'would':83,261 'write':131,371,420 'writexprimari':310,782,918 'written':809 'x11':21,123,427 'xpinstall.signatures.required':512 'yet':634 'zsh':688"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1697959616
+visibility: "visible "
+apId: "https://lemmy.world/post/7123900"
+editedAt: null
+createdAt: DateTimeImmutable @1697907616 {#2751
date: 2023-10-21 19:00:16.0 +02:00
}
+__isInitialized__: true
…2
}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: null
+root: null
+body: "JavaScript was a mistake."
+lang: "en"
+isAdult: false
+favouriteCount: 1
+score: 0
+lastActive: DateTime @1725264437 {#2033
date: 2024-09-02 10:07:17.0 +02:00
}
+ip: null
+tags: null
+mentions: [
"@ugjka@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#2012 …}
+nested: Doctrine\ORM\PersistentCollection {#2013 …}
+votes: Doctrine\ORM\PersistentCollection {#2035 …}
+reports: Doctrine\ORM\PersistentCollection {#2036 …}
+favourites: Doctrine\ORM\PersistentCollection {#2144 …}
+notifications: Doctrine\ORM\PersistentCollection {#2061 …}
-id: 232203
-bodyTs: "'javascript':1 'mistak':4"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/4186879"
+editedAt: null
+createdAt: DateTimeImmutable @1698015089 {#2021
date: 2023-10-23 00:51:29.0 +02:00
}
+"title": 232203
} |
|
Show voter details
|
8 |
DENIED
|
moderate
|
App\Entity\EntryComment {#2028
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2029
+user: Proxies\__CG__\App\Entity\User {#2636 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+domain: Proxies\__CG__\App\Entity\Domain {#2792 …}
+slug: "With-Firefox-on-X11-any-page-can-pastejack-you-anytime"
+title: "With Firefox on X11, any page can pastejack you anytime"
+url: "https://www.openwall.com/lists/oss-security/2023/10/17/1"
+body: """
Date: Tue, 17 Oct 2023 03:17:36 +0300 From: turistu To: oss-security@…ts.openwall.com Subject: with firefox on X11, any page can pastejack you anytime\n
\n
Note to the moderator: I have already submitted this to the firefox people three weeks ago, and according to them, this is not a real security issue, or at least not worse than those pesky scripts which you cannot kill without killing firefox itself; if you think the same, just ignore this without replying.\n
\n
I would however appreciate if you let this through and so give it some visibility so that the other 2 or 3 people who may be affected by this could learn about it.\n
\n
Thank you very much.\n
\n
====\n
\n
In firefox running on X11, any script from any page can freely write to the primary selection, and that can be easily exploited to run arbitrary code on the user’s machine.\n
\n
No user interaction is necessary – any page able to run javascript can do it, including e.g. a page from a background tab of a minimized window, an iframe inside such a window, an error page, a sandboxed iframe, a page that has reloaded itself via `meta http-equiv=refresh`, etc.\n
\n
This applies to all the versions of mozilla/firefox and their derivatives (seamonkey, etc) that I was able to test, including the latest nightly.\n
\n
### Example\n
\n
The simplest example, which works in the default configurations of systems like OpenBSD or Alpine Linux (= any Unix/Linux system where Wayland is not the default and the default *shell* does not implement bracketed-paste), would go like this:\n
\n
Load the following snippet in firefox:\n
\n
```\n
\n
<span style="color:#323232;">\n
</span><span style="color:#323232;">intentionally left blank\n
</span>\n
```\n
\n
Then pretend to forget about it, and go about your work. Sooner or later, when trying to paste something in the terminal with shift-Insert or middle click, you will end up running the command `writeXPrimary()` has injected just between your copy and paste.\n
\n
live example of that snippet: [turistu.github.io/firefox/pastejack.html](https://turistu.github.io/firefox/pastejack.html)\n
\n
### Short technical explanation\n
\n
Browsers like firefox have the concepts of “secure context” (e.g. `https://`) and “transient user activation”; the javascript from the page gets some temporary powers as soon as you have interacted *even so little* with the page, like clicked, touched, etc.\n
\n
For instance, writing with `Clipboard.writeText()` to the windows-style Ctrl-C Ctrl-V *clipboard* selection is only possible from secure contexts and only in the short while after the user has clicked a button, etc on the page. As this bug demonstrates, those prerequisites are not needed for writing to the *primary* selection, which on X11 is much more used and much more valuable.\n
\n
### Workaround\n
\n
Without patching firefox, the only workaround I can think about is disabling the `Clipboard.selectAllChildren()` function from an addon’s content script, e.g. like this:\n
\n
```\n
\n
<span style="color:#323232;">let block = function(){ throw Error('blocked') };\n
</span><span style="color:#323232;">exportFunction(block, Selection.prototype, { defineAs: 'selectAllChildren' });\n
</span>\n
```\n
\n
Complete extension here at [github.com/turistu/odds-n-ends/raw/…/no-sel.xpi](https://github.com/turistu/odds-n-ends/raw/main/firefox/no-sel.xpi).\n
\n
I tried to submit it to addons.mozilla.org but they didn’t accept it. If you’re running firefox-esr, the development edition or nightly, you can just `set xpinstall.signatures.required` to true in `about:config` and install it with `firefox no-sel.xpi`.\n
\n
### Firefox Patch\n
\n
```\n
\n
<span style="color:#323232;">diff -r 9b362770f30b layout/generic/nsFrameSelection.cpp\n
</span><span style="color:#323232;">--- a/layout/generic/nsFrameSelection.cpp\tFri Oct 06 12:03:17 2023 +0000\n
</span><span style="color:#323232;">+++ b/layout/generic/nsFrameSelection.cpp\tSun Oct 08 11:04:41 2023 +0300\n
</span><span style="color:#323232;">@@ -3345,6 +3345,10 @@\n
</span><span style="color:#323232;"> return; // Don't care if we are still dragging.\n
</span><span style="color:#323232;"> }\n
</span><span style="color:#323232;"> \n
</span><span style="color:#323232;">+ if (aReason & nsISelectionListener::JS_REASON) {\n
</span><span style="color:#323232;">+ return;\n
</span><span style="color:#323232;">+ }\n
</span><span style="color:#323232;">+\n
</span><span style="color:#323232;"> if (!aDocument || aSelection.IsCollapsed()) {\n
</span><span style="color:#323232;"> #ifdef DEBUG_CLIPBOARD\n
</span><span style="color:#323232;"> fprintf(stderr, "CLIPBOARD: no selection/collapsed selectionn");\n
</span>\n
```\n
\n
The idea of this patch was to *always* prevent javascript from indirectly messing with the primary selection via the Selection API. However, it turned out that the `JS_REASON` flag was not reliable; if javascript calls some function like `addRange()` or `selectAllChildren()` while the user has started dragging but hasn’t released the mouse button yet, that code will be called *without* that flag but with the text set by javascript, not the text selected by the user. However, I think that this patch is still enough to fill the glaring hole opened by `selectAllChildren()`.\n
\n
### About the example and bracketed-paste\n
\n
The bracketed paste feature of bash/readline and zsh means that you cannot just append a CR or LF to the payload and be done, it’s the user who has to press ENTER for it to run.\n
\n
However, workarounds exist. For instance, some terminals like mlterm don’t filter out the pasted data, and you can terminate the pasting mode early by inserting a `e201~` in the payload.\n
\n
For bash, you can take advantage of some quirks in the readline library to turn off the highlighting and make the payload invisible to the user. E.g.:\n
\n
```\n
\n
<span style="color:#323232;">let payload = 'touch ~/LOL-' + Date.now() / 1000;\n
</span><span style="color:#323232;">writeXPrimary('n' + payload + 'n'.repeat(100) + ' '.repeat(30)\n
</span><span style="color:#323232;">\t+ 'n'.repeat(100))\n
</span>\n
```\n
\n
which will confuse the user with the same screen as when some stray background job had written something to the terminal:\n
\n
```\n
\n
<span style="color:#323232;">user@...t:~$ : previous unrelated command\n
</span><span style="color:#323232;">user@...t:~$\t<-- paste here\n
</span><span style="color:#323232;"># <-- cursor here, most users will just hit Enter to get a new prompt\n
</span>\n
```\n
\n
live example of that snippet: [turistu.github.io/firefox/bash-pastejack.html\n
\n
Just to be clear, I don’t think that either mlterm, bash, nor the shells that don’t do have that bracketed-paste feature are at fault here in any way (and I personally always turn off that misfeature as it badly interferes with my workflow): It’s firefox which should get all the blame for letting random javascript evade its pretended “sandbox” in this way.\n
\n
### About Wayland\n
\n
For firefox running in Wayland, `writeXPrimary()` will only succeed when the firefox window (the main window, not necessarily the tab the code runs in) has the focus. Otherwise the selection will be cleared. At first I assumed that this is something specific to the Wayland protocol, but that turned out to be utterly false; it’s just some quirk, bug or “feature” specific to either firefox itself or GTK.\n
\n
But I think that’s still bad enough, even if the page should take care to only set the selection when the main window has gained focus.\n
\n
And of course, all this doesn’t affect the situation where you’re copying and pasting in another firefox tab with a different context, origin, etc; and all the other situations where you don’t appreciate having random javascript you don’t even know about messing with your copy & paste.\n
\n
===\n
\n
This is a slightly edited version of [github.com/turistu/odds-n-ends/…/pastejack.md](https://github.com/turistu/odds-n-ends/blob/main/firefox/pastejack.md).\n
\n
I will correct any errors or omissions and also add more info there.
"""
+type: "link"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 8
+favouriteCount: 0
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1725264437 {#2150
date: 2024-09-02 10:07:17.0 +02:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#2813 …}
+votes: Doctrine\ORM\PersistentCollection {#2814 …}
+reports: Doctrine\ORM\PersistentCollection {#2815 …}
+favourites: Doctrine\ORM\PersistentCollection {#2820 …}
+notifications: Doctrine\ORM\PersistentCollection {#2810 …}
+badges: Doctrine\ORM\PersistentCollection {#2808 …}
+children: [
App\Entity\EntryComment {#2028}
]
-id: 17198
-titleTs: "'anytim':10 'firefox':2 'page':6 'pastejack':8 'x11':4"
-bodyTs: "'+0000':538 '+0300':9,547 '+3345':550 '-3345':548 '/firefox/bash-pastejack.html':843 '/firefox/pastejack.html](https://turistu.github.io/firefox/pastejack.html)':326 '/lol-':779 '/no-sel.xpi':479 '/pastejack.md':1069 '/turistu/odds-n-ends/':1068 '/turistu/odds-n-ends/blob/main/firefox/pastejack.md).':1072 '/turistu/odds-n-ends/raw/':478 '/turistu/odds-n-ends/raw/main/firefox/no-sel.xpi).':482 '03':6,535 '04':544 '06':533 '08':542 '10':551 '100':787,792 '1000':781 '11':543 '12':534 '17':3,7,536 '2':101 '2023':5,537,546 '3':103 '30':789 '36':8 '41':545 '6':549 '9b362770f30b':528 'a/layout/generic/nsframeselection.cpp':530 'abl':158,218 'accept':494 'accord':45 'activ':343 'add':1082 'addon':454 'addons.mozilla.org':489 'addrang':618 'adocu':568 'advantag':754 'affect':108,1016 'ago':43 'alpin':240 'alreadi':34 'also':1081 'alway':586,879 'anoth':1026 'anytim':27 'api':599 'append':694 'appli':203 'appreci':85,1044 'arbitrari':144 'areason':562 'aselection.iscollapsed':569 'assum':949 'b/layout/generic/nsframeselection.cpp':539 'background':171,806 'bad':886,988 'bash':750,855 'bash/readline':686 'blame':899 'blank':273 'block':462,466,468 'bracket':259,679,682,866 'bracketed-past':258,678,865 'browser':330 'bug':412,972 'button':405,633 'c':381 'call':614,639 'cannot':66,692 'care':555,996 'clear':847,945 'click':302,366,403 'clipboard':385,572,575 'clipboard.selectallchildren':450 'clipboard.writetext':373 'code':145,636,934 'command':309,818 'complet':472 'concept':335 'config':517 'configur':234 'confus':795 'content':456 'context':338,392,1032 'copi':316,1022,1057 'correct':1075 'could':111 'cours':1011 'cr':696 'ctrl':380,383 'ctrl-c':379 'ctrl-v':382 'cursor':823 'data':733 'date':1 'date.now':780 'debug':571 'default':233,250,253 'definea':470 'demonstr':413 'deriv':212 'develop':504 'didn':492 'diff':526 'differ':1031 'disabl':448 'doesn':1014 'done':704 'drag':560,626 'e.g':166,339,458,775 'e201':745 'earli':741 'easili':140 'edit':505,1063 'either':853,977 'end':305 'enough':665,989 'enter':713,830 'equiv':199 'error':184,465,1077 'esr':502 'etc':201,214,368,406,1034 'evad':904 'even':359,990,1051 'exampl':225,228,320,676,837 'exist':720 'explan':329 'exploit':141 'exportfunct':467 'extens':473 'fals':966 'fault':871 'featur':684,868,974 'fill':667 'filter':729 'firefox':19,39,70,120,270,332,439,501,522,524,893,914,924,978,1027 'firefox-esr':500 'first':947 'flag':608,642 'focus':939,1008 'follow':267 'forget':277 'fprintf':573 'freeli':130 'fri':531 'function':451,463,616 'gain':1007 'get':349,832,896 'github.com':477,481,1067,1071 'github.com/turistu/odds-n-ends/':1066 'github.com/turistu/odds-n-ends/blob/main/firefox/pastejack.md).':1070 'github.com/turistu/odds-n-ends/raw/':476 'github.com/turistu/odds-n-ends/raw/main/firefox/no-sel.xpi).':480 'give':93 'glare':669 'go':262,281 'gtk':981 'hasn':628 'highlight':766 'hit':829 'hole':670 'howev':84,600,657,718 'http':198 'http-equiv':197 'idea':580 'ifdef':570 'ifram':178,188 'ignor':78 'implement':257 'includ':165,221 'indirect':590 'info':1084 'inject':312 'insert':299,743 'insid':179 'instal':519 'instanc':370,722 'intent':271 'interact':153,358 'interfer':887 'invis':771 'issu':54 'javascript':161,345,588,613,649,903,1047 'job':807 'js':564,606 'kill':67,69 'know':1052 'later':287 'latest':223 'layout/generic/nsframeselection.cpp':529 'learn':112 'least':57 'left':272 'let':88,461,776,901 'lf':698 'librari':761 'like':237,263,331,365,459,617,725 'linux':241 'littl':361 'live':319,836 'load':265 'machin':150 'main':927,1004 'make':768 'may':106 'mean':689 'mess':591,1054 'meta':196 'middl':301 'minim':175 'misfeatur':883 'mlterm':726,854 'mode':740 'moder':31 'mous':632 'mozilla/firefox':209 'much':118,429,433 'n':783,785,790 'necessari':155 'necessarili':930 'need':418 'new':834 'night':224,507 'no-sel.xpi':523 'note':28 'nsiselectionlisten':563 'oct':4,532,541 'omiss':1079 'open':671 'openbsd':238 'origin':1033 'oss':14 'oss-secur':13 'otherwis':940 'page':23,128,157,168,185,190,348,364,409,993 'past':260,291,318,680,683,732,739,821,867,1024,1058 'pastejack':25 'patch':438,525,583,662 'payload':701,748,770,777,784 'peopl':40,104 'person':878 'peski':62 'possibl':389 'power':352 'prerequisit':415 'press':712 'pretend':275,906 'prevent':587 'previous':816 'primari':134,423,594 'prompt':835 'protocol':958 'quirk':757,971 'r':527 'random':902,1046 're':498,1021 'readlin':760 'real':52 'reason':565,607 'refresh':200 'releas':630 'reliabl':611 'reload':193 'repeat':786,788,791 'repli':81 'return':552,566 'run':121,143,160,307,499,717,915,935 'sandbox':187,907 'screen':801 'script':63,125,457 'seamonkey':213 'secur':15,53,337,391 'select':135,386,424,595,598,653,942,1001 'selectallchildren':471,620,673 'selection.prototype':469 'selection/collapsed':577 'selectionn':578 'set':511,647,999 'shell':254,858 'shift':298 'shift-insert':297 'short':327,397 'simplest':227 'situat':1018,1039 'slight':1062 'snippet':268,323,840 'someth':292,810,953 'soon':354 'sooner':285 'specif':954,975 'start':625 'stderr':574 'still':559,664,987 'stray':805 'style':378 'subject':17 'submit':35,486 'succeed':921 'sun':540 'system':236,244 'tab':172,932,1028 'take':753,995 'technic':328 'temporari':351 'termin':295,724,737,813 'test':220 'text':646,652 'thank':115 'think':74,445,659,851,984 'three':41 'throw':464 'touch':367,778 'transient':341 'tri':289,484 'true':514 'ts.openwall.com':16 'tue':2 'turistu':11 'turistu.github.io':325,842 'turistu.github.io/firefox/bash-pastejack.html':841 'turistu.github.io/firefox/pastejack.html](https://turistu.github.io/firefox/pastejack.html)':324 'turn':602,763,880,961 'unix/linux':243 'unrel':817 'use':431 'user':148,152,342,401,623,656,708,774,797,814,819,826 'utter':965 'v':384 'valuabl':435 'version':207,1064 'via':195,596 'visibl':96 'way':875,910 'wayland':246,912,917,957 'week':42 'window':176,182,377,925,928,1005 'windows-styl':376 'without':68,80,437,640 'work':230,284 'workaround':436,442,719 'workflow':890 'wors':59 'would':83,261 'write':131,371,420 'writexprimari':310,782,918 'written':809 'x11':21,123,427 'xpinstall.signatures.required':512 'yet':634 'zsh':688"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1697959616
+visibility: "visible "
+apId: "https://lemmy.world/post/7123900"
+editedAt: null
+createdAt: DateTimeImmutable @1697907616 {#2751
date: 2023-10-21 19:00:16.0 +02:00
}
+__isInitialized__: true
…2
}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: null
+root: null
+body: "JavaScript was a mistake."
+lang: "en"
+isAdult: false
+favouriteCount: 1
+score: 0
+lastActive: DateTime @1725264437 {#2033
date: 2024-09-02 10:07:17.0 +02:00
}
+ip: null
+tags: null
+mentions: [
"@ugjka@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#2012 …}
+nested: Doctrine\ORM\PersistentCollection {#2013 …}
+votes: Doctrine\ORM\PersistentCollection {#2035 …}
+reports: Doctrine\ORM\PersistentCollection {#2036 …}
+favourites: Doctrine\ORM\PersistentCollection {#2144 …}
+notifications: Doctrine\ORM\PersistentCollection {#2061 …}
-id: 232203
-bodyTs: "'javascript':1 'mistak':4"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/4186879"
+editedAt: null
+createdAt: DateTimeImmutable @1698015089 {#2021
date: 2023-10-23 00:51:29.0 +02:00
}
+"title": 232203
} |
|
Show voter details
|
9 |
DENIED
|
ROLE_USER
|
null |
|
Show voter details
|
10 |
DENIED
|
moderate
|
Proxies\__CG__\App\Entity\Entry {#2259
+user: Proxies\__CG__\App\Entity\User {#2896 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: Proxies\__CG__\App\Entity\Image {#2898 …}
+domain: Proxies\__CG__\App\Entity\Domain {#2899 …}
+slug: "What-s-your-favorite-music-player-on-Linux"
+title: "What's your favorite music player on Linux?"
+url: "https://lemmy.ml/pictrs/image/1edb78b2-728e-4d65-88b8-92867995b594.png"
+body: "Mine is [Strawberry](https://www.strawberrymusicplayer.org/) since it has a ton of options and plays a ton of formats. It’s also (distant) fork of Amarok 1.4 and integrates well with KDE Plasma. I’m curious what other people are using these days. What’s your favorite player?"
+type: "image"
+lang: "en"
+isOc: false
+hasEmbed: true
+commentCount: 241
+favouriteCount: 430
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1722660703 {#2891
date: 2024-08-03 06:51:43.0 +02:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#2900 …}
+votes: Doctrine\ORM\PersistentCollection {#2902 …}
+reports: Doctrine\ORM\PersistentCollection {#2904 …}
+favourites: Doctrine\ORM\PersistentCollection {#2906 …}
+notifications: Doctrine\ORM\PersistentCollection {#2908 …}
+badges: Doctrine\ORM\PersistentCollection {#2910 …}
+children: [
App\Entity\EntryComment {#2258
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2259 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: null
+root: null
+body: """
cmus\n
\n
So fast and satisfying to navigate around
"""
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1704304330 {#2237
date: 2024-01-03 18:52:10.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@const_void@lemmy.ml"
]
+children: Doctrine\ORM\PersistentCollection {#2260 …}
+nested: Doctrine\ORM\PersistentCollection {#2254 …}
+votes: Doctrine\ORM\PersistentCollection {#2246 …}
+reports: Doctrine\ORM\PersistentCollection {#2248 …}
+favourites: Doctrine\ORM\PersistentCollection {#2247 …}
+notifications: Doctrine\ORM\PersistentCollection {#2256 …}
-id: 287138
-bodyTs: "'around':8 'cmus':1 'fast':3 'navig':7 'satisfi':5"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/6105652"
+editedAt: null
+createdAt: DateTimeImmutable @1704304330 {#2249
date: 2024-01-03 18:52:10.0 +01:00
}
+"title": 287138
}
]
-id: 26969
-titleTs: "'favorit':4 'linux':8 'music':5 'player':6"
-bodyTs: "'/)':6 '1.4':27 'also':22 'amarok':26 'curious':36 'day':43 'distant':23 'favorit':47 'fork':24 'format':19 'integr':29 'kde':32 'm':35 'mine':1 'option':13 'peopl':39 'plasma':33 'play':15 'player':48 'sinc':7 'strawberri':3 'ton':11,17 'use':41 'well':30 'www.strawberrymusicplayer.org':5 'www.strawberrymusicplayer.org/)':4"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1704386086
+visibility: "visible "
+apId: "https://lemmy.ml/post/10074233"
+editedAt: DateTimeImmutable @1711277069 {#2863
date: 2024-03-24 11:44:29.0 +01:00
}
+createdAt: DateTimeImmutable @1704299686 {#2842
date: 2024-01-03 17:34:46.0 +01:00
}
+__isInitialized__: true
…2
} |
|
Show voter details
|
11 |
DENIED
|
edit
|
Proxies\__CG__\App\Entity\Entry {#2259
+user: Proxies\__CG__\App\Entity\User {#2896 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: Proxies\__CG__\App\Entity\Image {#2898 …}
+domain: Proxies\__CG__\App\Entity\Domain {#2899 …}
+slug: "What-s-your-favorite-music-player-on-Linux"
+title: "What's your favorite music player on Linux?"
+url: "https://lemmy.ml/pictrs/image/1edb78b2-728e-4d65-88b8-92867995b594.png"
+body: "Mine is [Strawberry](https://www.strawberrymusicplayer.org/) since it has a ton of options and plays a ton of formats. It’s also (distant) fork of Amarok 1.4 and integrates well with KDE Plasma. I’m curious what other people are using these days. What’s your favorite player?"
+type: "image"
+lang: "en"
+isOc: false
+hasEmbed: true
+commentCount: 241
+favouriteCount: 430
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1722660703 {#2891
date: 2024-08-03 06:51:43.0 +02:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#2900 …}
+votes: Doctrine\ORM\PersistentCollection {#2902 …}
+reports: Doctrine\ORM\PersistentCollection {#2904 …}
+favourites: Doctrine\ORM\PersistentCollection {#2906 …}
+notifications: Doctrine\ORM\PersistentCollection {#2908 …}
+badges: Doctrine\ORM\PersistentCollection {#2910 …}
+children: [
App\Entity\EntryComment {#2258
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2259 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: null
+root: null
+body: """
cmus\n
\n
So fast and satisfying to navigate around
"""
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1704304330 {#2237
date: 2024-01-03 18:52:10.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@const_void@lemmy.ml"
]
+children: Doctrine\ORM\PersistentCollection {#2260 …}
+nested: Doctrine\ORM\PersistentCollection {#2254 …}
+votes: Doctrine\ORM\PersistentCollection {#2246 …}
+reports: Doctrine\ORM\PersistentCollection {#2248 …}
+favourites: Doctrine\ORM\PersistentCollection {#2247 …}
+notifications: Doctrine\ORM\PersistentCollection {#2256 …}
-id: 287138
-bodyTs: "'around':8 'cmus':1 'fast':3 'navig':7 'satisfi':5"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/6105652"
+editedAt: null
+createdAt: DateTimeImmutable @1704304330 {#2249
date: 2024-01-03 18:52:10.0 +01:00
}
+"title": 287138
}
]
-id: 26969
-titleTs: "'favorit':4 'linux':8 'music':5 'player':6"
-bodyTs: "'/)':6 '1.4':27 'also':22 'amarok':26 'curious':36 'day':43 'distant':23 'favorit':47 'fork':24 'format':19 'integr':29 'kde':32 'm':35 'mine':1 'option':13 'peopl':39 'plasma':33 'play':15 'player':48 'sinc':7 'strawberri':3 'ton':11,17 'use':41 'well':30 'www.strawberrymusicplayer.org':5 'www.strawberrymusicplayer.org/)':4"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1704386086
+visibility: "visible "
+apId: "https://lemmy.ml/post/10074233"
+editedAt: DateTimeImmutable @1711277069 {#2863
date: 2024-03-24 11:44:29.0 +01:00
}
+createdAt: DateTimeImmutable @1704299686 {#2842
date: 2024-01-03 17:34:46.0 +01:00
}
+__isInitialized__: true
…2
} |
|
Show voter details
|
12 |
DENIED
|
moderate
|
Proxies\__CG__\App\Entity\Entry {#2259
+user: Proxies\__CG__\App\Entity\User {#2896 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: Proxies\__CG__\App\Entity\Image {#2898 …}
+domain: Proxies\__CG__\App\Entity\Domain {#2899 …}
+slug: "What-s-your-favorite-music-player-on-Linux"
+title: "What's your favorite music player on Linux?"
+url: "https://lemmy.ml/pictrs/image/1edb78b2-728e-4d65-88b8-92867995b594.png"
+body: "Mine is [Strawberry](https://www.strawberrymusicplayer.org/) since it has a ton of options and plays a ton of formats. It’s also (distant) fork of Amarok 1.4 and integrates well with KDE Plasma. I’m curious what other people are using these days. What’s your favorite player?"
+type: "image"
+lang: "en"
+isOc: false
+hasEmbed: true
+commentCount: 241
+favouriteCount: 430
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1722660703 {#2891
date: 2024-08-03 06:51:43.0 +02:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#2900 …}
+votes: Doctrine\ORM\PersistentCollection {#2902 …}
+reports: Doctrine\ORM\PersistentCollection {#2904 …}
+favourites: Doctrine\ORM\PersistentCollection {#2906 …}
+notifications: Doctrine\ORM\PersistentCollection {#2908 …}
+badges: Doctrine\ORM\PersistentCollection {#2910 …}
+children: [
App\Entity\EntryComment {#2258
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2259 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: null
+root: null
+body: """
cmus\n
\n
So fast and satisfying to navigate around
"""
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1704304330 {#2237
date: 2024-01-03 18:52:10.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@const_void@lemmy.ml"
]
+children: Doctrine\ORM\PersistentCollection {#2260 …}
+nested: Doctrine\ORM\PersistentCollection {#2254 …}
+votes: Doctrine\ORM\PersistentCollection {#2246 …}
+reports: Doctrine\ORM\PersistentCollection {#2248 …}
+favourites: Doctrine\ORM\PersistentCollection {#2247 …}
+notifications: Doctrine\ORM\PersistentCollection {#2256 …}
-id: 287138
-bodyTs: "'around':8 'cmus':1 'fast':3 'navig':7 'satisfi':5"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/6105652"
+editedAt: null
+createdAt: DateTimeImmutable @1704304330 {#2249
date: 2024-01-03 18:52:10.0 +01:00
}
+"title": 287138
}
]
-id: 26969
-titleTs: "'favorit':4 'linux':8 'music':5 'player':6"
-bodyTs: "'/)':6 '1.4':27 'also':22 'amarok':26 'curious':36 'day':43 'distant':23 'favorit':47 'fork':24 'format':19 'integr':29 'kde':32 'm':35 'mine':1 'option':13 'peopl':39 'plasma':33 'play':15 'player':48 'sinc':7 'strawberri':3 'ton':11,17 'use':41 'well':30 'www.strawberrymusicplayer.org':5 'www.strawberrymusicplayer.org/)':4"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1704386086
+visibility: "visible "
+apId: "https://lemmy.ml/post/10074233"
+editedAt: DateTimeImmutable @1711277069 {#2863
date: 2024-03-24 11:44:29.0 +01:00
}
+createdAt: DateTimeImmutable @1704299686 {#2842
date: 2024-01-03 17:34:46.0 +01:00
}
+__isInitialized__: true
…2
} |
|
Show voter details
|
13 |
DENIED
|
ROLE_USER
|
null |
|
Show voter details
|
14 |
DENIED
|
moderate
|
App\Entity\EntryComment {#2258
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2259
+user: Proxies\__CG__\App\Entity\User {#2896 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: Proxies\__CG__\App\Entity\Image {#2898 …}
+domain: Proxies\__CG__\App\Entity\Domain {#2899 …}
+slug: "What-s-your-favorite-music-player-on-Linux"
+title: "What's your favorite music player on Linux?"
+url: "https://lemmy.ml/pictrs/image/1edb78b2-728e-4d65-88b8-92867995b594.png"
+body: "Mine is [Strawberry](https://www.strawberrymusicplayer.org/) since it has a ton of options and plays a ton of formats. It’s also (distant) fork of Amarok 1.4 and integrates well with KDE Plasma. I’m curious what other people are using these days. What’s your favorite player?"
+type: "image"
+lang: "en"
+isOc: false
+hasEmbed: true
+commentCount: 241
+favouriteCount: 430
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1722660703 {#2891
date: 2024-08-03 06:51:43.0 +02:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#2900 …}
+votes: Doctrine\ORM\PersistentCollection {#2902 …}
+reports: Doctrine\ORM\PersistentCollection {#2904 …}
+favourites: Doctrine\ORM\PersistentCollection {#2906 …}
+notifications: Doctrine\ORM\PersistentCollection {#2908 …}
+badges: Doctrine\ORM\PersistentCollection {#2910 …}
+children: [
App\Entity\EntryComment {#2258}
]
-id: 26969
-titleTs: "'favorit':4 'linux':8 'music':5 'player':6"
-bodyTs: "'/)':6 '1.4':27 'also':22 'amarok':26 'curious':36 'day':43 'distant':23 'favorit':47 'fork':24 'format':19 'integr':29 'kde':32 'm':35 'mine':1 'option':13 'peopl':39 'plasma':33 'play':15 'player':48 'sinc':7 'strawberri':3 'ton':11,17 'use':41 'well':30 'www.strawberrymusicplayer.org':5 'www.strawberrymusicplayer.org/)':4"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1704386086
+visibility: "visible "
+apId: "https://lemmy.ml/post/10074233"
+editedAt: DateTimeImmutable @1711277069 {#2863
date: 2024-03-24 11:44:29.0 +01:00
}
+createdAt: DateTimeImmutable @1704299686 {#2842
date: 2024-01-03 17:34:46.0 +01:00
}
+__isInitialized__: true
…2
}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: null
+root: null
+body: """
cmus\n
\n
So fast and satisfying to navigate around
"""
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1704304330 {#2237
date: 2024-01-03 18:52:10.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@const_void@lemmy.ml"
]
+children: Doctrine\ORM\PersistentCollection {#2260 …}
+nested: Doctrine\ORM\PersistentCollection {#2254 …}
+votes: Doctrine\ORM\PersistentCollection {#2246 …}
+reports: Doctrine\ORM\PersistentCollection {#2248 …}
+favourites: Doctrine\ORM\PersistentCollection {#2247 …}
+notifications: Doctrine\ORM\PersistentCollection {#2256 …}
-id: 287138
-bodyTs: "'around':8 'cmus':1 'fast':3 'navig':7 'satisfi':5"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/6105652"
+editedAt: null
+createdAt: DateTimeImmutable @1704304330 {#2249
date: 2024-01-03 18:52:10.0 +01:00
}
+"title": 287138
} |
|
Show voter details
|
15 |
DENIED
|
edit
|
App\Entity\EntryComment {#2258
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2259
+user: Proxies\__CG__\App\Entity\User {#2896 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: Proxies\__CG__\App\Entity\Image {#2898 …}
+domain: Proxies\__CG__\App\Entity\Domain {#2899 …}
+slug: "What-s-your-favorite-music-player-on-Linux"
+title: "What's your favorite music player on Linux?"
+url: "https://lemmy.ml/pictrs/image/1edb78b2-728e-4d65-88b8-92867995b594.png"
+body: "Mine is [Strawberry](https://www.strawberrymusicplayer.org/) since it has a ton of options and plays a ton of formats. It’s also (distant) fork of Amarok 1.4 and integrates well with KDE Plasma. I’m curious what other people are using these days. What’s your favorite player?"
+type: "image"
+lang: "en"
+isOc: false
+hasEmbed: true
+commentCount: 241
+favouriteCount: 430
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1722660703 {#2891
date: 2024-08-03 06:51:43.0 +02:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#2900 …}
+votes: Doctrine\ORM\PersistentCollection {#2902 …}
+reports: Doctrine\ORM\PersistentCollection {#2904 …}
+favourites: Doctrine\ORM\PersistentCollection {#2906 …}
+notifications: Doctrine\ORM\PersistentCollection {#2908 …}
+badges: Doctrine\ORM\PersistentCollection {#2910 …}
+children: [
App\Entity\EntryComment {#2258}
]
-id: 26969
-titleTs: "'favorit':4 'linux':8 'music':5 'player':6"
-bodyTs: "'/)':6 '1.4':27 'also':22 'amarok':26 'curious':36 'day':43 'distant':23 'favorit':47 'fork':24 'format':19 'integr':29 'kde':32 'm':35 'mine':1 'option':13 'peopl':39 'plasma':33 'play':15 'player':48 'sinc':7 'strawberri':3 'ton':11,17 'use':41 'well':30 'www.strawberrymusicplayer.org':5 'www.strawberrymusicplayer.org/)':4"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1704386086
+visibility: "visible "
+apId: "https://lemmy.ml/post/10074233"
+editedAt: DateTimeImmutable @1711277069 {#2863
date: 2024-03-24 11:44:29.0 +01:00
}
+createdAt: DateTimeImmutable @1704299686 {#2842
date: 2024-01-03 17:34:46.0 +01:00
}
+__isInitialized__: true
…2
}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: null
+root: null
+body: """
cmus\n
\n
So fast and satisfying to navigate around
"""
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1704304330 {#2237
date: 2024-01-03 18:52:10.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@const_void@lemmy.ml"
]
+children: Doctrine\ORM\PersistentCollection {#2260 …}
+nested: Doctrine\ORM\PersistentCollection {#2254 …}
+votes: Doctrine\ORM\PersistentCollection {#2246 …}
+reports: Doctrine\ORM\PersistentCollection {#2248 …}
+favourites: Doctrine\ORM\PersistentCollection {#2247 …}
+notifications: Doctrine\ORM\PersistentCollection {#2256 …}
-id: 287138
-bodyTs: "'around':8 'cmus':1 'fast':3 'navig':7 'satisfi':5"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/6105652"
+editedAt: null
+createdAt: DateTimeImmutable @1704304330 {#2249
date: 2024-01-03 18:52:10.0 +01:00
}
+"title": 287138
} |
|
Show voter details
|
16 |
DENIED
|
moderate
|
App\Entity\EntryComment {#2258
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2259
+user: Proxies\__CG__\App\Entity\User {#2896 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: Proxies\__CG__\App\Entity\Image {#2898 …}
+domain: Proxies\__CG__\App\Entity\Domain {#2899 …}
+slug: "What-s-your-favorite-music-player-on-Linux"
+title: "What's your favorite music player on Linux?"
+url: "https://lemmy.ml/pictrs/image/1edb78b2-728e-4d65-88b8-92867995b594.png"
+body: "Mine is [Strawberry](https://www.strawberrymusicplayer.org/) since it has a ton of options and plays a ton of formats. It’s also (distant) fork of Amarok 1.4 and integrates well with KDE Plasma. I’m curious what other people are using these days. What’s your favorite player?"
+type: "image"
+lang: "en"
+isOc: false
+hasEmbed: true
+commentCount: 241
+favouriteCount: 430
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1722660703 {#2891
date: 2024-08-03 06:51:43.0 +02:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#2900 …}
+votes: Doctrine\ORM\PersistentCollection {#2902 …}
+reports: Doctrine\ORM\PersistentCollection {#2904 …}
+favourites: Doctrine\ORM\PersistentCollection {#2906 …}
+notifications: Doctrine\ORM\PersistentCollection {#2908 …}
+badges: Doctrine\ORM\PersistentCollection {#2910 …}
+children: [
App\Entity\EntryComment {#2258}
]
-id: 26969
-titleTs: "'favorit':4 'linux':8 'music':5 'player':6"
-bodyTs: "'/)':6 '1.4':27 'also':22 'amarok':26 'curious':36 'day':43 'distant':23 'favorit':47 'fork':24 'format':19 'integr':29 'kde':32 'm':35 'mine':1 'option':13 'peopl':39 'plasma':33 'play':15 'player':48 'sinc':7 'strawberri':3 'ton':11,17 'use':41 'well':30 'www.strawberrymusicplayer.org':5 'www.strawberrymusicplayer.org/)':4"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1704386086
+visibility: "visible "
+apId: "https://lemmy.ml/post/10074233"
+editedAt: DateTimeImmutable @1711277069 {#2863
date: 2024-03-24 11:44:29.0 +01:00
}
+createdAt: DateTimeImmutable @1704299686 {#2842
date: 2024-01-03 17:34:46.0 +01:00
}
+__isInitialized__: true
…2
}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: null
+root: null
+body: """
cmus\n
\n
So fast and satisfying to navigate around
"""
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1704304330 {#2237
date: 2024-01-03 18:52:10.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@const_void@lemmy.ml"
]
+children: Doctrine\ORM\PersistentCollection {#2260 …}
+nested: Doctrine\ORM\PersistentCollection {#2254 …}
+votes: Doctrine\ORM\PersistentCollection {#2246 …}
+reports: Doctrine\ORM\PersistentCollection {#2248 …}
+favourites: Doctrine\ORM\PersistentCollection {#2247 …}
+notifications: Doctrine\ORM\PersistentCollection {#2256 …}
-id: 287138
-bodyTs: "'around':8 'cmus':1 'fast':3 'navig':7 'satisfi':5"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/6105652"
+editedAt: null
+createdAt: DateTimeImmutable @1704304330 {#2249
date: 2024-01-03 18:52:10.0 +01:00
}
+"title": 287138
} |
|
Show voter details
|
17 |
DENIED
|
ROLE_USER
|
null |
|
Show voter details
|
18 |
DENIED
|
moderate
|
Proxies\__CG__\App\Entity\Entry {#2221
+user: Proxies\__CG__\App\Entity\User {#2860 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: Proxies\__CG__\App\Entity\Image {#2917 …}
+domain: Proxies\__CG__\App\Entity\Domain {#2919 …}
+slug: "Linux-reaches-new-high-3-82"
+title: "Linux reaches new high 3.82%"
+url: "https://gs.statcounter.com/os-market-share/desktop/worldwide"
+body: null
+type: "link"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 259
+favouriteCount: 838
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1721610728 {#2912
date: 2024-07-22 03:12:08.0 +02:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#2920 …}
+votes: Doctrine\ORM\PersistentCollection {#2922 …}
+reports: Doctrine\ORM\PersistentCollection {#2924 …}
+favourites: Doctrine\ORM\PersistentCollection {#2926 …}
+notifications: Doctrine\ORM\PersistentCollection {#2928 …}
+badges: Doctrine\ORM\PersistentCollection {#2930 …}
+children: [
1 => App\Entity\EntryComment {#2222
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2221 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2219 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2219 …}
+body: "I wouldn’t count ChromeOS just as we don’t count Android."
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1704258977 {#2220
date: 2024-01-03 06:16:17.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@markus99@lemmy.world"
"@WeLoveCastingSpellz@lemmy.dbzer0.com"
]
+children: Doctrine\ORM\PersistentCollection {#2217 …}
+nested: Doctrine\ORM\PersistentCollection {#2199 …}
+votes: Doctrine\ORM\PersistentCollection {#2195 …}
+reports: Doctrine\ORM\PersistentCollection {#2197 …}
+favourites: Doctrine\ORM\PersistentCollection {#2206 …}
+notifications: Doctrine\ORM\PersistentCollection {#2201 …}
-id: 287115
-bodyTs: "'android':12 'chromeo':5 'count':4,11 'wouldn':2"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/6087092"
+editedAt: null
+createdAt: DateTimeImmutable @1704258977 {#2218
date: 2024-01-03 06:16:17.0 +01:00
}
+"title": 287115
}
0 => App\Entity\EntryComment {#2212
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2221 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2208 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2208 …}
+body: "I use Arch too, BTW."
+lang: "en"
+isAdult: false
+favouriteCount: 1
+score: 0
+lastActive: DateTime @1704259033 {#2203
date: 2024-01-03 06:17:13.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@markus99@lemmy.world"
"@gerdesj@lemmy.ml"
]
+children: Doctrine\ORM\PersistentCollection {#2209 …}
+nested: Doctrine\ORM\PersistentCollection {#2200 …}
+votes: Doctrine\ORM\PersistentCollection {#2270 …}
+reports: Doctrine\ORM\PersistentCollection {#2257 …}
+favourites: Doctrine\ORM\PersistentCollection {#2267 …}
+notifications: Doctrine\ORM\PersistentCollection {#2271 …}
-id: 287116
-bodyTs: "'arch':3 'btw':5 'use':2"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/6087118"
+editedAt: null
+createdAt: DateTimeImmutable @1704259033 {#2207
date: 2024-01-03 06:17:13.0 +01:00
}
+"title": 287116
}
]
-id: 26745
-titleTs: "'3.82':5 'high':4 'linux':1 'new':3 'reach':2"
-bodyTs: null
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1704299973
+visibility: "visible "
+apId: "https://lemmy.world/post/10238899"
+editedAt: null
+createdAt: DateTimeImmutable @1704213573 {#2897
date: 2024-01-02 17:39:33.0 +01:00
}
+__isInitialized__: true
…2
} |
|
Show voter details
|
19 |
DENIED
|
edit
|
Proxies\__CG__\App\Entity\Entry {#2221
+user: Proxies\__CG__\App\Entity\User {#2860 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: Proxies\__CG__\App\Entity\Image {#2917 …}
+domain: Proxies\__CG__\App\Entity\Domain {#2919 …}
+slug: "Linux-reaches-new-high-3-82"
+title: "Linux reaches new high 3.82%"
+url: "https://gs.statcounter.com/os-market-share/desktop/worldwide"
+body: null
+type: "link"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 259
+favouriteCount: 838
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1721610728 {#2912
date: 2024-07-22 03:12:08.0 +02:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#2920 …}
+votes: Doctrine\ORM\PersistentCollection {#2922 …}
+reports: Doctrine\ORM\PersistentCollection {#2924 …}
+favourites: Doctrine\ORM\PersistentCollection {#2926 …}
+notifications: Doctrine\ORM\PersistentCollection {#2928 …}
+badges: Doctrine\ORM\PersistentCollection {#2930 …}
+children: [
1 => App\Entity\EntryComment {#2222
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2221 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2219 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2219 …}
+body: "I wouldn’t count ChromeOS just as we don’t count Android."
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1704258977 {#2220
date: 2024-01-03 06:16:17.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@markus99@lemmy.world"
"@WeLoveCastingSpellz@lemmy.dbzer0.com"
]
+children: Doctrine\ORM\PersistentCollection {#2217 …}
+nested: Doctrine\ORM\PersistentCollection {#2199 …}
+votes: Doctrine\ORM\PersistentCollection {#2195 …}
+reports: Doctrine\ORM\PersistentCollection {#2197 …}
+favourites: Doctrine\ORM\PersistentCollection {#2206 …}
+notifications: Doctrine\ORM\PersistentCollection {#2201 …}
-id: 287115
-bodyTs: "'android':12 'chromeo':5 'count':4,11 'wouldn':2"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/6087092"
+editedAt: null
+createdAt: DateTimeImmutable @1704258977 {#2218
date: 2024-01-03 06:16:17.0 +01:00
}
+"title": 287115
}
0 => App\Entity\EntryComment {#2212
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2221 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2208 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2208 …}
+body: "I use Arch too, BTW."
+lang: "en"
+isAdult: false
+favouriteCount: 1
+score: 0
+lastActive: DateTime @1704259033 {#2203
date: 2024-01-03 06:17:13.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@markus99@lemmy.world"
"@gerdesj@lemmy.ml"
]
+children: Doctrine\ORM\PersistentCollection {#2209 …}
+nested: Doctrine\ORM\PersistentCollection {#2200 …}
+votes: Doctrine\ORM\PersistentCollection {#2270 …}
+reports: Doctrine\ORM\PersistentCollection {#2257 …}
+favourites: Doctrine\ORM\PersistentCollection {#2267 …}
+notifications: Doctrine\ORM\PersistentCollection {#2271 …}
-id: 287116
-bodyTs: "'arch':3 'btw':5 'use':2"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/6087118"
+editedAt: null
+createdAt: DateTimeImmutable @1704259033 {#2207
date: 2024-01-03 06:17:13.0 +01:00
}
+"title": 287116
}
]
-id: 26745
-titleTs: "'3.82':5 'high':4 'linux':1 'new':3 'reach':2"
-bodyTs: null
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1704299973
+visibility: "visible "
+apId: "https://lemmy.world/post/10238899"
+editedAt: null
+createdAt: DateTimeImmutable @1704213573 {#2897
date: 2024-01-02 17:39:33.0 +01:00
}
+__isInitialized__: true
…2
} |
|
Show voter details
|
20 |
DENIED
|
moderate
|
Proxies\__CG__\App\Entity\Entry {#2221
+user: Proxies\__CG__\App\Entity\User {#2860 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: Proxies\__CG__\App\Entity\Image {#2917 …}
+domain: Proxies\__CG__\App\Entity\Domain {#2919 …}
+slug: "Linux-reaches-new-high-3-82"
+title: "Linux reaches new high 3.82%"
+url: "https://gs.statcounter.com/os-market-share/desktop/worldwide"
+body: null
+type: "link"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 259
+favouriteCount: 838
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1721610728 {#2912
date: 2024-07-22 03:12:08.0 +02:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#2920 …}
+votes: Doctrine\ORM\PersistentCollection {#2922 …}
+reports: Doctrine\ORM\PersistentCollection {#2924 …}
+favourites: Doctrine\ORM\PersistentCollection {#2926 …}
+notifications: Doctrine\ORM\PersistentCollection {#2928 …}
+badges: Doctrine\ORM\PersistentCollection {#2930 …}
+children: [
1 => App\Entity\EntryComment {#2222
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2221 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2219 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2219 …}
+body: "I wouldn’t count ChromeOS just as we don’t count Android."
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1704258977 {#2220
date: 2024-01-03 06:16:17.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@markus99@lemmy.world"
"@WeLoveCastingSpellz@lemmy.dbzer0.com"
]
+children: Doctrine\ORM\PersistentCollection {#2217 …}
+nested: Doctrine\ORM\PersistentCollection {#2199 …}
+votes: Doctrine\ORM\PersistentCollection {#2195 …}
+reports: Doctrine\ORM\PersistentCollection {#2197 …}
+favourites: Doctrine\ORM\PersistentCollection {#2206 …}
+notifications: Doctrine\ORM\PersistentCollection {#2201 …}
-id: 287115
-bodyTs: "'android':12 'chromeo':5 'count':4,11 'wouldn':2"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/6087092"
+editedAt: null
+createdAt: DateTimeImmutable @1704258977 {#2218
date: 2024-01-03 06:16:17.0 +01:00
}
+"title": 287115
}
0 => App\Entity\EntryComment {#2212
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2221 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2208 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2208 …}
+body: "I use Arch too, BTW."
+lang: "en"
+isAdult: false
+favouriteCount: 1
+score: 0
+lastActive: DateTime @1704259033 {#2203
date: 2024-01-03 06:17:13.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@markus99@lemmy.world"
"@gerdesj@lemmy.ml"
]
+children: Doctrine\ORM\PersistentCollection {#2209 …}
+nested: Doctrine\ORM\PersistentCollection {#2200 …}
+votes: Doctrine\ORM\PersistentCollection {#2270 …}
+reports: Doctrine\ORM\PersistentCollection {#2257 …}
+favourites: Doctrine\ORM\PersistentCollection {#2267 …}
+notifications: Doctrine\ORM\PersistentCollection {#2271 …}
-id: 287116
-bodyTs: "'arch':3 'btw':5 'use':2"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/6087118"
+editedAt: null
+createdAt: DateTimeImmutable @1704259033 {#2207
date: 2024-01-03 06:17:13.0 +01:00
}
+"title": 287116
}
]
-id: 26745
-titleTs: "'3.82':5 'high':4 'linux':1 'new':3 'reach':2"
-bodyTs: null
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1704299973
+visibility: "visible "
+apId: "https://lemmy.world/post/10238899"
+editedAt: null
+createdAt: DateTimeImmutable @1704213573 {#2897
date: 2024-01-02 17:39:33.0 +01:00
}
+__isInitialized__: true
…2
} |
|
Show voter details
|
21 |
DENIED
|
ROLE_USER
|
null |
|
Show voter details
|
22 |
DENIED
|
moderate
|
App\Entity\EntryComment {#2222
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2221
+user: Proxies\__CG__\App\Entity\User {#2860 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: Proxies\__CG__\App\Entity\Image {#2917 …}
+domain: Proxies\__CG__\App\Entity\Domain {#2919 …}
+slug: "Linux-reaches-new-high-3-82"
+title: "Linux reaches new high 3.82%"
+url: "https://gs.statcounter.com/os-market-share/desktop/worldwide"
+body: null
+type: "link"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 259
+favouriteCount: 838
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1721610728 {#2912
date: 2024-07-22 03:12:08.0 +02:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#2920 …}
+votes: Doctrine\ORM\PersistentCollection {#2922 …}
+reports: Doctrine\ORM\PersistentCollection {#2924 …}
+favourites: Doctrine\ORM\PersistentCollection {#2926 …}
+notifications: Doctrine\ORM\PersistentCollection {#2928 …}
+badges: Doctrine\ORM\PersistentCollection {#2930 …}
+children: [
1 => App\Entity\EntryComment {#2222}
0 => App\Entity\EntryComment {#2212
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2221 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2208 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2208 …}
+body: "I use Arch too, BTW."
+lang: "en"
+isAdult: false
+favouriteCount: 1
+score: 0
+lastActive: DateTime @1704259033 {#2203
date: 2024-01-03 06:17:13.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@markus99@lemmy.world"
"@gerdesj@lemmy.ml"
]
+children: Doctrine\ORM\PersistentCollection {#2209 …}
+nested: Doctrine\ORM\PersistentCollection {#2200 …}
+votes: Doctrine\ORM\PersistentCollection {#2270 …}
+reports: Doctrine\ORM\PersistentCollection {#2257 …}
+favourites: Doctrine\ORM\PersistentCollection {#2267 …}
+notifications: Doctrine\ORM\PersistentCollection {#2271 …}
-id: 287116
-bodyTs: "'arch':3 'btw':5 'use':2"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/6087118"
+editedAt: null
+createdAt: DateTimeImmutable @1704259033 {#2207
date: 2024-01-03 06:17:13.0 +01:00
}
+"title": 287116
}
]
-id: 26745
-titleTs: "'3.82':5 'high':4 'linux':1 'new':3 'reach':2"
-bodyTs: null
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1704299973
+visibility: "visible "
+apId: "https://lemmy.world/post/10238899"
+editedAt: null
+createdAt: DateTimeImmutable @1704213573 {#2897
date: 2024-01-02 17:39:33.0 +01:00
}
+__isInitialized__: true
…2
}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2219 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2219 …}
+body: "I wouldn’t count ChromeOS just as we don’t count Android."
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1704258977 {#2220
date: 2024-01-03 06:16:17.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@markus99@lemmy.world"
"@WeLoveCastingSpellz@lemmy.dbzer0.com"
]
+children: Doctrine\ORM\PersistentCollection {#2217 …}
+nested: Doctrine\ORM\PersistentCollection {#2199 …}
+votes: Doctrine\ORM\PersistentCollection {#2195 …}
+reports: Doctrine\ORM\PersistentCollection {#2197 …}
+favourites: Doctrine\ORM\PersistentCollection {#2206 …}
+notifications: Doctrine\ORM\PersistentCollection {#2201 …}
-id: 287115
-bodyTs: "'android':12 'chromeo':5 'count':4,11 'wouldn':2"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/6087092"
+editedAt: null
+createdAt: DateTimeImmutable @1704258977 {#2218
date: 2024-01-03 06:16:17.0 +01:00
}
+"title": 287115
} |
|
Show voter details
|
23 |
DENIED
|
edit
|
App\Entity\EntryComment {#2222
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2221
+user: Proxies\__CG__\App\Entity\User {#2860 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: Proxies\__CG__\App\Entity\Image {#2917 …}
+domain: Proxies\__CG__\App\Entity\Domain {#2919 …}
+slug: "Linux-reaches-new-high-3-82"
+title: "Linux reaches new high 3.82%"
+url: "https://gs.statcounter.com/os-market-share/desktop/worldwide"
+body: null
+type: "link"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 259
+favouriteCount: 838
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1721610728 {#2912
date: 2024-07-22 03:12:08.0 +02:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#2920 …}
+votes: Doctrine\ORM\PersistentCollection {#2922 …}
+reports: Doctrine\ORM\PersistentCollection {#2924 …}
+favourites: Doctrine\ORM\PersistentCollection {#2926 …}
+notifications: Doctrine\ORM\PersistentCollection {#2928 …}
+badges: Doctrine\ORM\PersistentCollection {#2930 …}
+children: [
1 => App\Entity\EntryComment {#2222}
0 => App\Entity\EntryComment {#2212
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2221 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2208 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2208 …}
+body: "I use Arch too, BTW."
+lang: "en"
+isAdult: false
+favouriteCount: 1
+score: 0
+lastActive: DateTime @1704259033 {#2203
date: 2024-01-03 06:17:13.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@markus99@lemmy.world"
"@gerdesj@lemmy.ml"
]
+children: Doctrine\ORM\PersistentCollection {#2209 …}
+nested: Doctrine\ORM\PersistentCollection {#2200 …}
+votes: Doctrine\ORM\PersistentCollection {#2270 …}
+reports: Doctrine\ORM\PersistentCollection {#2257 …}
+favourites: Doctrine\ORM\PersistentCollection {#2267 …}
+notifications: Doctrine\ORM\PersistentCollection {#2271 …}
-id: 287116
-bodyTs: "'arch':3 'btw':5 'use':2"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/6087118"
+editedAt: null
+createdAt: DateTimeImmutable @1704259033 {#2207
date: 2024-01-03 06:17:13.0 +01:00
}
+"title": 287116
}
]
-id: 26745
-titleTs: "'3.82':5 'high':4 'linux':1 'new':3 'reach':2"
-bodyTs: null
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1704299973
+visibility: "visible "
+apId: "https://lemmy.world/post/10238899"
+editedAt: null
+createdAt: DateTimeImmutable @1704213573 {#2897
date: 2024-01-02 17:39:33.0 +01:00
}
+__isInitialized__: true
…2
}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2219 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2219 …}
+body: "I wouldn’t count ChromeOS just as we don’t count Android."
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1704258977 {#2220
date: 2024-01-03 06:16:17.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@markus99@lemmy.world"
"@WeLoveCastingSpellz@lemmy.dbzer0.com"
]
+children: Doctrine\ORM\PersistentCollection {#2217 …}
+nested: Doctrine\ORM\PersistentCollection {#2199 …}
+votes: Doctrine\ORM\PersistentCollection {#2195 …}
+reports: Doctrine\ORM\PersistentCollection {#2197 …}
+favourites: Doctrine\ORM\PersistentCollection {#2206 …}
+notifications: Doctrine\ORM\PersistentCollection {#2201 …}
-id: 287115
-bodyTs: "'android':12 'chromeo':5 'count':4,11 'wouldn':2"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/6087092"
+editedAt: null
+createdAt: DateTimeImmutable @1704258977 {#2218
date: 2024-01-03 06:16:17.0 +01:00
}
+"title": 287115
} |
|
Show voter details
|
24 |
DENIED
|
moderate
|
App\Entity\EntryComment {#2222
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2221
+user: Proxies\__CG__\App\Entity\User {#2860 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: Proxies\__CG__\App\Entity\Image {#2917 …}
+domain: Proxies\__CG__\App\Entity\Domain {#2919 …}
+slug: "Linux-reaches-new-high-3-82"
+title: "Linux reaches new high 3.82%"
+url: "https://gs.statcounter.com/os-market-share/desktop/worldwide"
+body: null
+type: "link"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 259
+favouriteCount: 838
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1721610728 {#2912
date: 2024-07-22 03:12:08.0 +02:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#2920 …}
+votes: Doctrine\ORM\PersistentCollection {#2922 …}
+reports: Doctrine\ORM\PersistentCollection {#2924 …}
+favourites: Doctrine\ORM\PersistentCollection {#2926 …}
+notifications: Doctrine\ORM\PersistentCollection {#2928 …}
+badges: Doctrine\ORM\PersistentCollection {#2930 …}
+children: [
1 => App\Entity\EntryComment {#2222}
0 => App\Entity\EntryComment {#2212
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2221 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2208 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2208 …}
+body: "I use Arch too, BTW."
+lang: "en"
+isAdult: false
+favouriteCount: 1
+score: 0
+lastActive: DateTime @1704259033 {#2203
date: 2024-01-03 06:17:13.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@markus99@lemmy.world"
"@gerdesj@lemmy.ml"
]
+children: Doctrine\ORM\PersistentCollection {#2209 …}
+nested: Doctrine\ORM\PersistentCollection {#2200 …}
+votes: Doctrine\ORM\PersistentCollection {#2270 …}
+reports: Doctrine\ORM\PersistentCollection {#2257 …}
+favourites: Doctrine\ORM\PersistentCollection {#2267 …}
+notifications: Doctrine\ORM\PersistentCollection {#2271 …}
-id: 287116
-bodyTs: "'arch':3 'btw':5 'use':2"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/6087118"
+editedAt: null
+createdAt: DateTimeImmutable @1704259033 {#2207
date: 2024-01-03 06:17:13.0 +01:00
}
+"title": 287116
}
]
-id: 26745
-titleTs: "'3.82':5 'high':4 'linux':1 'new':3 'reach':2"
-bodyTs: null
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1704299973
+visibility: "visible "
+apId: "https://lemmy.world/post/10238899"
+editedAt: null
+createdAt: DateTimeImmutable @1704213573 {#2897
date: 2024-01-02 17:39:33.0 +01:00
}
+__isInitialized__: true
…2
}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2219 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2219 …}
+body: "I wouldn’t count ChromeOS just as we don’t count Android."
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1704258977 {#2220
date: 2024-01-03 06:16:17.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@markus99@lemmy.world"
"@WeLoveCastingSpellz@lemmy.dbzer0.com"
]
+children: Doctrine\ORM\PersistentCollection {#2217 …}
+nested: Doctrine\ORM\PersistentCollection {#2199 …}
+votes: Doctrine\ORM\PersistentCollection {#2195 …}
+reports: Doctrine\ORM\PersistentCollection {#2197 …}
+favourites: Doctrine\ORM\PersistentCollection {#2206 …}
+notifications: Doctrine\ORM\PersistentCollection {#2201 …}
-id: 287115
-bodyTs: "'android':12 'chromeo':5 'count':4,11 'wouldn':2"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/6087092"
+editedAt: null
+createdAt: DateTimeImmutable @1704258977 {#2218
date: 2024-01-03 06:16:17.0 +01:00
}
+"title": 287115
} |
|
Show voter details
|
25 |
DENIED
|
ROLE_USER
|
null |
|
Show voter details
|
26 |
DENIED
|
moderate
|
App\Entity\EntryComment {#2212
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2221
+user: Proxies\__CG__\App\Entity\User {#2860 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: Proxies\__CG__\App\Entity\Image {#2917 …}
+domain: Proxies\__CG__\App\Entity\Domain {#2919 …}
+slug: "Linux-reaches-new-high-3-82"
+title: "Linux reaches new high 3.82%"
+url: "https://gs.statcounter.com/os-market-share/desktop/worldwide"
+body: null
+type: "link"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 259
+favouriteCount: 838
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1721610728 {#2912
date: 2024-07-22 03:12:08.0 +02:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#2920 …}
+votes: Doctrine\ORM\PersistentCollection {#2922 …}
+reports: Doctrine\ORM\PersistentCollection {#2924 …}
+favourites: Doctrine\ORM\PersistentCollection {#2926 …}
+notifications: Doctrine\ORM\PersistentCollection {#2928 …}
+badges: Doctrine\ORM\PersistentCollection {#2930 …}
+children: [
1 => App\Entity\EntryComment {#2222
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2221 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2219 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2219 …}
+body: "I wouldn’t count ChromeOS just as we don’t count Android."
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1704258977 {#2220
date: 2024-01-03 06:16:17.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@markus99@lemmy.world"
"@WeLoveCastingSpellz@lemmy.dbzer0.com"
]
+children: Doctrine\ORM\PersistentCollection {#2217 …}
+nested: Doctrine\ORM\PersistentCollection {#2199 …}
+votes: Doctrine\ORM\PersistentCollection {#2195 …}
+reports: Doctrine\ORM\PersistentCollection {#2197 …}
+favourites: Doctrine\ORM\PersistentCollection {#2206 …}
+notifications: Doctrine\ORM\PersistentCollection {#2201 …}
-id: 287115
-bodyTs: "'android':12 'chromeo':5 'count':4,11 'wouldn':2"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/6087092"
+editedAt: null
+createdAt: DateTimeImmutable @1704258977 {#2218
date: 2024-01-03 06:16:17.0 +01:00
}
+"title": 287115
}
0 => App\Entity\EntryComment {#2212}
]
-id: 26745
-titleTs: "'3.82':5 'high':4 'linux':1 'new':3 'reach':2"
-bodyTs: null
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1704299973
+visibility: "visible "
+apId: "https://lemmy.world/post/10238899"
+editedAt: null
+createdAt: DateTimeImmutable @1704213573 {#2897
date: 2024-01-02 17:39:33.0 +01:00
}
+__isInitialized__: true
…2
}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2208 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2208 …}
+body: "I use Arch too, BTW."
+lang: "en"
+isAdult: false
+favouriteCount: 1
+score: 0
+lastActive: DateTime @1704259033 {#2203
date: 2024-01-03 06:17:13.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@markus99@lemmy.world"
"@gerdesj@lemmy.ml"
]
+children: Doctrine\ORM\PersistentCollection {#2209 …}
+nested: Doctrine\ORM\PersistentCollection {#2200 …}
+votes: Doctrine\ORM\PersistentCollection {#2270 …}
+reports: Doctrine\ORM\PersistentCollection {#2257 …}
+favourites: Doctrine\ORM\PersistentCollection {#2267 …}
+notifications: Doctrine\ORM\PersistentCollection {#2271 …}
-id: 287116
-bodyTs: "'arch':3 'btw':5 'use':2"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/6087118"
+editedAt: null
+createdAt: DateTimeImmutable @1704259033 {#2207
date: 2024-01-03 06:17:13.0 +01:00
}
+"title": 287116
} |
|
Show voter details
|
27 |
DENIED
|
edit
|
App\Entity\EntryComment {#2212
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2221
+user: Proxies\__CG__\App\Entity\User {#2860 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: Proxies\__CG__\App\Entity\Image {#2917 …}
+domain: Proxies\__CG__\App\Entity\Domain {#2919 …}
+slug: "Linux-reaches-new-high-3-82"
+title: "Linux reaches new high 3.82%"
+url: "https://gs.statcounter.com/os-market-share/desktop/worldwide"
+body: null
+type: "link"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 259
+favouriteCount: 838
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1721610728 {#2912
date: 2024-07-22 03:12:08.0 +02:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#2920 …}
+votes: Doctrine\ORM\PersistentCollection {#2922 …}
+reports: Doctrine\ORM\PersistentCollection {#2924 …}
+favourites: Doctrine\ORM\PersistentCollection {#2926 …}
+notifications: Doctrine\ORM\PersistentCollection {#2928 …}
+badges: Doctrine\ORM\PersistentCollection {#2930 …}
+children: [
1 => App\Entity\EntryComment {#2222
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2221 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2219 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2219 …}
+body: "I wouldn’t count ChromeOS just as we don’t count Android."
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1704258977 {#2220
date: 2024-01-03 06:16:17.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@markus99@lemmy.world"
"@WeLoveCastingSpellz@lemmy.dbzer0.com"
]
+children: Doctrine\ORM\PersistentCollection {#2217 …}
+nested: Doctrine\ORM\PersistentCollection {#2199 …}
+votes: Doctrine\ORM\PersistentCollection {#2195 …}
+reports: Doctrine\ORM\PersistentCollection {#2197 …}
+favourites: Doctrine\ORM\PersistentCollection {#2206 …}
+notifications: Doctrine\ORM\PersistentCollection {#2201 …}
-id: 287115
-bodyTs: "'android':12 'chromeo':5 'count':4,11 'wouldn':2"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/6087092"
+editedAt: null
+createdAt: DateTimeImmutable @1704258977 {#2218
date: 2024-01-03 06:16:17.0 +01:00
}
+"title": 287115
}
0 => App\Entity\EntryComment {#2212}
]
-id: 26745
-titleTs: "'3.82':5 'high':4 'linux':1 'new':3 'reach':2"
-bodyTs: null
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1704299973
+visibility: "visible "
+apId: "https://lemmy.world/post/10238899"
+editedAt: null
+createdAt: DateTimeImmutable @1704213573 {#2897
date: 2024-01-02 17:39:33.0 +01:00
}
+__isInitialized__: true
…2
}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2208 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2208 …}
+body: "I use Arch too, BTW."
+lang: "en"
+isAdult: false
+favouriteCount: 1
+score: 0
+lastActive: DateTime @1704259033 {#2203
date: 2024-01-03 06:17:13.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@markus99@lemmy.world"
"@gerdesj@lemmy.ml"
]
+children: Doctrine\ORM\PersistentCollection {#2209 …}
+nested: Doctrine\ORM\PersistentCollection {#2200 …}
+votes: Doctrine\ORM\PersistentCollection {#2270 …}
+reports: Doctrine\ORM\PersistentCollection {#2257 …}
+favourites: Doctrine\ORM\PersistentCollection {#2267 …}
+notifications: Doctrine\ORM\PersistentCollection {#2271 …}
-id: 287116
-bodyTs: "'arch':3 'btw':5 'use':2"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/6087118"
+editedAt: null
+createdAt: DateTimeImmutable @1704259033 {#2207
date: 2024-01-03 06:17:13.0 +01:00
}
+"title": 287116
} |
|
Show voter details
|
28 |
DENIED
|
moderate
|
App\Entity\EntryComment {#2212
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2221
+user: Proxies\__CG__\App\Entity\User {#2860 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: Proxies\__CG__\App\Entity\Image {#2917 …}
+domain: Proxies\__CG__\App\Entity\Domain {#2919 …}
+slug: "Linux-reaches-new-high-3-82"
+title: "Linux reaches new high 3.82%"
+url: "https://gs.statcounter.com/os-market-share/desktop/worldwide"
+body: null
+type: "link"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 259
+favouriteCount: 838
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1721610728 {#2912
date: 2024-07-22 03:12:08.0 +02:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#2920 …}
+votes: Doctrine\ORM\PersistentCollection {#2922 …}
+reports: Doctrine\ORM\PersistentCollection {#2924 …}
+favourites: Doctrine\ORM\PersistentCollection {#2926 …}
+notifications: Doctrine\ORM\PersistentCollection {#2928 …}
+badges: Doctrine\ORM\PersistentCollection {#2930 …}
+children: [
1 => App\Entity\EntryComment {#2222
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2221 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2219 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2219 …}
+body: "I wouldn’t count ChromeOS just as we don’t count Android."
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1704258977 {#2220
date: 2024-01-03 06:16:17.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@markus99@lemmy.world"
"@WeLoveCastingSpellz@lemmy.dbzer0.com"
]
+children: Doctrine\ORM\PersistentCollection {#2217 …}
+nested: Doctrine\ORM\PersistentCollection {#2199 …}
+votes: Doctrine\ORM\PersistentCollection {#2195 …}
+reports: Doctrine\ORM\PersistentCollection {#2197 …}
+favourites: Doctrine\ORM\PersistentCollection {#2206 …}
+notifications: Doctrine\ORM\PersistentCollection {#2201 …}
-id: 287115
-bodyTs: "'android':12 'chromeo':5 'count':4,11 'wouldn':2"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/6087092"
+editedAt: null
+createdAt: DateTimeImmutable @1704258977 {#2218
date: 2024-01-03 06:16:17.0 +01:00
}
+"title": 287115
}
0 => App\Entity\EntryComment {#2212}
]
-id: 26745
-titleTs: "'3.82':5 'high':4 'linux':1 'new':3 'reach':2"
-bodyTs: null
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1704299973
+visibility: "visible "
+apId: "https://lemmy.world/post/10238899"
+editedAt: null
+createdAt: DateTimeImmutable @1704213573 {#2897
date: 2024-01-02 17:39:33.0 +01:00
}
+__isInitialized__: true
…2
}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2208 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2208 …}
+body: "I use Arch too, BTW."
+lang: "en"
+isAdult: false
+favouriteCount: 1
+score: 0
+lastActive: DateTime @1704259033 {#2203
date: 2024-01-03 06:17:13.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@markus99@lemmy.world"
"@gerdesj@lemmy.ml"
]
+children: Doctrine\ORM\PersistentCollection {#2209 …}
+nested: Doctrine\ORM\PersistentCollection {#2200 …}
+votes: Doctrine\ORM\PersistentCollection {#2270 …}
+reports: Doctrine\ORM\PersistentCollection {#2257 …}
+favourites: Doctrine\ORM\PersistentCollection {#2267 …}
+notifications: Doctrine\ORM\PersistentCollection {#2271 …}
-id: 287116
-bodyTs: "'arch':3 'btw':5 'use':2"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/6087118"
+editedAt: null
+createdAt: DateTimeImmutable @1704259033 {#2207
date: 2024-01-03 06:17:13.0 +01:00
}
+"title": 287116
} |
|
Show voter details
|
29 |
DENIED
|
ROLE_USER
|
null |
|
Show voter details
|
30 |
DENIED
|
moderate
|
Proxies\__CG__\App\Entity\Entry {#2287
+user: Proxies\__CG__\App\Entity\User {#2645 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+domain: Proxies\__CG__\App\Entity\Domain {#2825 …}
+slug: "What-Is-Linux-Mobile-technical-explanation-of-the-ecosystem-for"
+title: "What Is Linux Mobile - technical explanation of the ecosystem for Linux on smartphones previously (often previosuly android)"
+url: "https://connolly.tech/posts/2024_01_06-what-is-linux-mobile/"
+body: null
+type: "link"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 6
+favouriteCount: 26
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1712656972 {#2806
date: 2024-04-09 12:02:52.0 +02:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#2827 …}
+votes: Doctrine\ORM\PersistentCollection {#2829 …}
+reports: Doctrine\ORM\PersistentCollection {#2831 …}
+favourites: Doctrine\ORM\PersistentCollection {#2833 …}
+notifications: Doctrine\ORM\PersistentCollection {#2835 …}
+badges: Doctrine\ORM\PersistentCollection {#2837 …}
+children: [
App\Entity\EntryComment {#2286
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2287 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: null
+root: null
+body: """
I have OnePlus 6T with Droidian and must say it is **this** close to daily drive for me.\n
\n
Everything works and there are apps for almost everything I need. As someone who uses only FOSS social media and things, there is Mastodon and Matrix client, I just lack maps with navigation (can use Organic Maps via Waydroid). Beyond that what is left is polish and tiny things, like for the performance or support for controlling media via buttons on bluetooth speaker.\n
\n
I also tried PostmarketOS, that is adapting real Linux to phones (when Droidian is taking Linux kernel and drivers from Android and building on that). It is great if someone can get around lack of camera support etc., but for me now it can act like a second device or RPi alternative.\n
\n
The ability to… you know, just use normal SSH and all the commands, Flatpak apps, all Pipewire tools, not fiddling with Android Studio and it’s stupid SDK or customizing my UI with just CSS is magical.\n
\n
Seriously, fuck Google and Qualcomm for creating such hostile drivers ecosystem. There are brands like Fairphone that I think would happly support Linux but can’t because of Qualcomm only releasing their own vendor kernel prepared only for Android.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 11
+score: 0
+lastActive: DateTime @1712655443 {#2284
date: 2024-04-09 11:37:23.0 +02:00
}
+ip: null
+tags: null
+mentions: [
"@clumsy_cat@beehaw.org"
]
+children: Doctrine\ORM\PersistentCollection {#2188 …}
+nested: Doctrine\ORM\PersistentCollection {#2034 …}
+votes: Doctrine\ORM\PersistentCollection {#2156 …}
+reports: Doctrine\ORM\PersistentCollection {#2154 …}
+favourites: Doctrine\ORM\PersistentCollection {#2157 …}
+notifications: Doctrine\ORM\PersistentCollection {#2147 …}
-id: 287220
-bodyTs: "'6t':4 'abil':135 'act':126 'adapt':88 'almost':26 'also':83 'altern':133 'android':102,155,209 'app':24,148 'around':114 'beyond':58 'bluetooth':80 'brand':184 'build':104 'button':78 'camera':117 'client':45 'close':13 'command':146 'control':75 'creat':177 'css':168 'custom':163 'daili':15 'devic':130 'drive':16 'driver':100,180 'droidian':6,94 'ecosystem':181 'etc':119 'everyth':19,27 'fairphon':186 'fiddl':153 'flatpak':147 'foss':35 'fuck':172 'get':113 'googl':173 'great':109 'happli':191 'hostil':179 'kernel':98,205 'know':138 'lack':48,115 'left':62 'like':68,127,185 'linux':90,97,193 'magic':170 'map':49,55 'mastodon':42 'matrix':44 'media':37,76 'must':8 'navig':51 'need':29 'normal':141 'oneplus':3 'organ':54 'perform':71 'phone':92 'pipewir':150 'polish':64 'postmarketo':85 'prepar':206 'qualcomm':175,199 'real':89 'releas':201 'rpi':132 'say':9 'sdk':161 'second':129 'serious':171 'social':36 'someon':31,111 'speaker':81 'ssh':142 'studio':156 'stupid':160 'support':73,118,192 'take':96 'thing':39,67 'think':189 'tini':66 'tool':151 'tri':84 'ui':165 'use':33,53,140 'vendor':204 'via':56,77 'waydroid':57 'work':20 'would':190"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/6195697"
+editedAt: null
+createdAt: DateTimeImmutable @1704573837 {#2285
date: 2024-01-06 21:43:57.0 +01:00
}
+"title": 287220
}
]
-id: 27695
-titleTs: "'android':17 'ecosystem':9 'explan':6 'linux':3,11 'mobil':4 'often':15 'previosuli':16 'previous':14 'smartphon':13 'technic':5"
-bodyTs: null
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1704658522
+visibility: "visible "
+apId: "https://beehaw.org/post/10836205"
+editedAt: null
+createdAt: DateTimeImmutable @1704572122 {#2797
date: 2024-01-06 21:15:22.0 +01:00
}
+__isInitialized__: true
…2
} |
|
Show voter details
|
31 |
DENIED
|
edit
|
Proxies\__CG__\App\Entity\Entry {#2287
+user: Proxies\__CG__\App\Entity\User {#2645 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+domain: Proxies\__CG__\App\Entity\Domain {#2825 …}
+slug: "What-Is-Linux-Mobile-technical-explanation-of-the-ecosystem-for"
+title: "What Is Linux Mobile - technical explanation of the ecosystem for Linux on smartphones previously (often previosuly android)"
+url: "https://connolly.tech/posts/2024_01_06-what-is-linux-mobile/"
+body: null
+type: "link"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 6
+favouriteCount: 26
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1712656972 {#2806
date: 2024-04-09 12:02:52.0 +02:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#2827 …}
+votes: Doctrine\ORM\PersistentCollection {#2829 …}
+reports: Doctrine\ORM\PersistentCollection {#2831 …}
+favourites: Doctrine\ORM\PersistentCollection {#2833 …}
+notifications: Doctrine\ORM\PersistentCollection {#2835 …}
+badges: Doctrine\ORM\PersistentCollection {#2837 …}
+children: [
App\Entity\EntryComment {#2286
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2287 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: null
+root: null
+body: """
I have OnePlus 6T with Droidian and must say it is **this** close to daily drive for me.\n
\n
Everything works and there are apps for almost everything I need. As someone who uses only FOSS social media and things, there is Mastodon and Matrix client, I just lack maps with navigation (can use Organic Maps via Waydroid). Beyond that what is left is polish and tiny things, like for the performance or support for controlling media via buttons on bluetooth speaker.\n
\n
I also tried PostmarketOS, that is adapting real Linux to phones (when Droidian is taking Linux kernel and drivers from Android and building on that). It is great if someone can get around lack of camera support etc., but for me now it can act like a second device or RPi alternative.\n
\n
The ability to… you know, just use normal SSH and all the commands, Flatpak apps, all Pipewire tools, not fiddling with Android Studio and it’s stupid SDK or customizing my UI with just CSS is magical.\n
\n
Seriously, fuck Google and Qualcomm for creating such hostile drivers ecosystem. There are brands like Fairphone that I think would happly support Linux but can’t because of Qualcomm only releasing their own vendor kernel prepared only for Android.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 11
+score: 0
+lastActive: DateTime @1712655443 {#2284
date: 2024-04-09 11:37:23.0 +02:00
}
+ip: null
+tags: null
+mentions: [
"@clumsy_cat@beehaw.org"
]
+children: Doctrine\ORM\PersistentCollection {#2188 …}
+nested: Doctrine\ORM\PersistentCollection {#2034 …}
+votes: Doctrine\ORM\PersistentCollection {#2156 …}
+reports: Doctrine\ORM\PersistentCollection {#2154 …}
+favourites: Doctrine\ORM\PersistentCollection {#2157 …}
+notifications: Doctrine\ORM\PersistentCollection {#2147 …}
-id: 287220
-bodyTs: "'6t':4 'abil':135 'act':126 'adapt':88 'almost':26 'also':83 'altern':133 'android':102,155,209 'app':24,148 'around':114 'beyond':58 'bluetooth':80 'brand':184 'build':104 'button':78 'camera':117 'client':45 'close':13 'command':146 'control':75 'creat':177 'css':168 'custom':163 'daili':15 'devic':130 'drive':16 'driver':100,180 'droidian':6,94 'ecosystem':181 'etc':119 'everyth':19,27 'fairphon':186 'fiddl':153 'flatpak':147 'foss':35 'fuck':172 'get':113 'googl':173 'great':109 'happli':191 'hostil':179 'kernel':98,205 'know':138 'lack':48,115 'left':62 'like':68,127,185 'linux':90,97,193 'magic':170 'map':49,55 'mastodon':42 'matrix':44 'media':37,76 'must':8 'navig':51 'need':29 'normal':141 'oneplus':3 'organ':54 'perform':71 'phone':92 'pipewir':150 'polish':64 'postmarketo':85 'prepar':206 'qualcomm':175,199 'real':89 'releas':201 'rpi':132 'say':9 'sdk':161 'second':129 'serious':171 'social':36 'someon':31,111 'speaker':81 'ssh':142 'studio':156 'stupid':160 'support':73,118,192 'take':96 'thing':39,67 'think':189 'tini':66 'tool':151 'tri':84 'ui':165 'use':33,53,140 'vendor':204 'via':56,77 'waydroid':57 'work':20 'would':190"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/6195697"
+editedAt: null
+createdAt: DateTimeImmutable @1704573837 {#2285
date: 2024-01-06 21:43:57.0 +01:00
}
+"title": 287220
}
]
-id: 27695
-titleTs: "'android':17 'ecosystem':9 'explan':6 'linux':3,11 'mobil':4 'often':15 'previosuli':16 'previous':14 'smartphon':13 'technic':5"
-bodyTs: null
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1704658522
+visibility: "visible "
+apId: "https://beehaw.org/post/10836205"
+editedAt: null
+createdAt: DateTimeImmutable @1704572122 {#2797
date: 2024-01-06 21:15:22.0 +01:00
}
+__isInitialized__: true
…2
} |
|
Show voter details
|
32 |
DENIED
|
moderate
|
Proxies\__CG__\App\Entity\Entry {#2287
+user: Proxies\__CG__\App\Entity\User {#2645 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+domain: Proxies\__CG__\App\Entity\Domain {#2825 …}
+slug: "What-Is-Linux-Mobile-technical-explanation-of-the-ecosystem-for"
+title: "What Is Linux Mobile - technical explanation of the ecosystem for Linux on smartphones previously (often previosuly android)"
+url: "https://connolly.tech/posts/2024_01_06-what-is-linux-mobile/"
+body: null
+type: "link"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 6
+favouriteCount: 26
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1712656972 {#2806
date: 2024-04-09 12:02:52.0 +02:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#2827 …}
+votes: Doctrine\ORM\PersistentCollection {#2829 …}
+reports: Doctrine\ORM\PersistentCollection {#2831 …}
+favourites: Doctrine\ORM\PersistentCollection {#2833 …}
+notifications: Doctrine\ORM\PersistentCollection {#2835 …}
+badges: Doctrine\ORM\PersistentCollection {#2837 …}
+children: [
App\Entity\EntryComment {#2286
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2287 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: null
+root: null
+body: """
I have OnePlus 6T with Droidian and must say it is **this** close to daily drive for me.\n
\n
Everything works and there are apps for almost everything I need. As someone who uses only FOSS social media and things, there is Mastodon and Matrix client, I just lack maps with navigation (can use Organic Maps via Waydroid). Beyond that what is left is polish and tiny things, like for the performance or support for controlling media via buttons on bluetooth speaker.\n
\n
I also tried PostmarketOS, that is adapting real Linux to phones (when Droidian is taking Linux kernel and drivers from Android and building on that). It is great if someone can get around lack of camera support etc., but for me now it can act like a second device or RPi alternative.\n
\n
The ability to… you know, just use normal SSH and all the commands, Flatpak apps, all Pipewire tools, not fiddling with Android Studio and it’s stupid SDK or customizing my UI with just CSS is magical.\n
\n
Seriously, fuck Google and Qualcomm for creating such hostile drivers ecosystem. There are brands like Fairphone that I think would happly support Linux but can’t because of Qualcomm only releasing their own vendor kernel prepared only for Android.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 11
+score: 0
+lastActive: DateTime @1712655443 {#2284
date: 2024-04-09 11:37:23.0 +02:00
}
+ip: null
+tags: null
+mentions: [
"@clumsy_cat@beehaw.org"
]
+children: Doctrine\ORM\PersistentCollection {#2188 …}
+nested: Doctrine\ORM\PersistentCollection {#2034 …}
+votes: Doctrine\ORM\PersistentCollection {#2156 …}
+reports: Doctrine\ORM\PersistentCollection {#2154 …}
+favourites: Doctrine\ORM\PersistentCollection {#2157 …}
+notifications: Doctrine\ORM\PersistentCollection {#2147 …}
-id: 287220
-bodyTs: "'6t':4 'abil':135 'act':126 'adapt':88 'almost':26 'also':83 'altern':133 'android':102,155,209 'app':24,148 'around':114 'beyond':58 'bluetooth':80 'brand':184 'build':104 'button':78 'camera':117 'client':45 'close':13 'command':146 'control':75 'creat':177 'css':168 'custom':163 'daili':15 'devic':130 'drive':16 'driver':100,180 'droidian':6,94 'ecosystem':181 'etc':119 'everyth':19,27 'fairphon':186 'fiddl':153 'flatpak':147 'foss':35 'fuck':172 'get':113 'googl':173 'great':109 'happli':191 'hostil':179 'kernel':98,205 'know':138 'lack':48,115 'left':62 'like':68,127,185 'linux':90,97,193 'magic':170 'map':49,55 'mastodon':42 'matrix':44 'media':37,76 'must':8 'navig':51 'need':29 'normal':141 'oneplus':3 'organ':54 'perform':71 'phone':92 'pipewir':150 'polish':64 'postmarketo':85 'prepar':206 'qualcomm':175,199 'real':89 'releas':201 'rpi':132 'say':9 'sdk':161 'second':129 'serious':171 'social':36 'someon':31,111 'speaker':81 'ssh':142 'studio':156 'stupid':160 'support':73,118,192 'take':96 'thing':39,67 'think':189 'tini':66 'tool':151 'tri':84 'ui':165 'use':33,53,140 'vendor':204 'via':56,77 'waydroid':57 'work':20 'would':190"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/6195697"
+editedAt: null
+createdAt: DateTimeImmutable @1704573837 {#2285
date: 2024-01-06 21:43:57.0 +01:00
}
+"title": 287220
}
]
-id: 27695
-titleTs: "'android':17 'ecosystem':9 'explan':6 'linux':3,11 'mobil':4 'often':15 'previosuli':16 'previous':14 'smartphon':13 'technic':5"
-bodyTs: null
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1704658522
+visibility: "visible "
+apId: "https://beehaw.org/post/10836205"
+editedAt: null
+createdAt: DateTimeImmutable @1704572122 {#2797
date: 2024-01-06 21:15:22.0 +01:00
}
+__isInitialized__: true
…2
} |
|
Show voter details
|
33 |
DENIED
|
ROLE_USER
|
null |
|
Show voter details
|
34 |
DENIED
|
moderate
|
App\Entity\EntryComment {#2286
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2287
+user: Proxies\__CG__\App\Entity\User {#2645 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+domain: Proxies\__CG__\App\Entity\Domain {#2825 …}
+slug: "What-Is-Linux-Mobile-technical-explanation-of-the-ecosystem-for"
+title: "What Is Linux Mobile - technical explanation of the ecosystem for Linux on smartphones previously (often previosuly android)"
+url: "https://connolly.tech/posts/2024_01_06-what-is-linux-mobile/"
+body: null
+type: "link"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 6
+favouriteCount: 26
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1712656972 {#2806
date: 2024-04-09 12:02:52.0 +02:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#2827 …}
+votes: Doctrine\ORM\PersistentCollection {#2829 …}
+reports: Doctrine\ORM\PersistentCollection {#2831 …}
+favourites: Doctrine\ORM\PersistentCollection {#2833 …}
+notifications: Doctrine\ORM\PersistentCollection {#2835 …}
+badges: Doctrine\ORM\PersistentCollection {#2837 …}
+children: [
App\Entity\EntryComment {#2286}
]
-id: 27695
-titleTs: "'android':17 'ecosystem':9 'explan':6 'linux':3,11 'mobil':4 'often':15 'previosuli':16 'previous':14 'smartphon':13 'technic':5"
-bodyTs: null
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1704658522
+visibility: "visible "
+apId: "https://beehaw.org/post/10836205"
+editedAt: null
+createdAt: DateTimeImmutable @1704572122 {#2797
date: 2024-01-06 21:15:22.0 +01:00
}
+__isInitialized__: true
…2
}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: null
+root: null
+body: """
I have OnePlus 6T with Droidian and must say it is **this** close to daily drive for me.\n
\n
Everything works and there are apps for almost everything I need. As someone who uses only FOSS social media and things, there is Mastodon and Matrix client, I just lack maps with navigation (can use Organic Maps via Waydroid). Beyond that what is left is polish and tiny things, like for the performance or support for controlling media via buttons on bluetooth speaker.\n
\n
I also tried PostmarketOS, that is adapting real Linux to phones (when Droidian is taking Linux kernel and drivers from Android and building on that). It is great if someone can get around lack of camera support etc., but for me now it can act like a second device or RPi alternative.\n
\n
The ability to… you know, just use normal SSH and all the commands, Flatpak apps, all Pipewire tools, not fiddling with Android Studio and it’s stupid SDK or customizing my UI with just CSS is magical.\n
\n
Seriously, fuck Google and Qualcomm for creating such hostile drivers ecosystem. There are brands like Fairphone that I think would happly support Linux but can’t because of Qualcomm only releasing their own vendor kernel prepared only for Android.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 11
+score: 0
+lastActive: DateTime @1712655443 {#2284
date: 2024-04-09 11:37:23.0 +02:00
}
+ip: null
+tags: null
+mentions: [
"@clumsy_cat@beehaw.org"
]
+children: Doctrine\ORM\PersistentCollection {#2188 …}
+nested: Doctrine\ORM\PersistentCollection {#2034 …}
+votes: Doctrine\ORM\PersistentCollection {#2156 …}
+reports: Doctrine\ORM\PersistentCollection {#2154 …}
+favourites: Doctrine\ORM\PersistentCollection {#2157 …}
+notifications: Doctrine\ORM\PersistentCollection {#2147 …}
-id: 287220
-bodyTs: "'6t':4 'abil':135 'act':126 'adapt':88 'almost':26 'also':83 'altern':133 'android':102,155,209 'app':24,148 'around':114 'beyond':58 'bluetooth':80 'brand':184 'build':104 'button':78 'camera':117 'client':45 'close':13 'command':146 'control':75 'creat':177 'css':168 'custom':163 'daili':15 'devic':130 'drive':16 'driver':100,180 'droidian':6,94 'ecosystem':181 'etc':119 'everyth':19,27 'fairphon':186 'fiddl':153 'flatpak':147 'foss':35 'fuck':172 'get':113 'googl':173 'great':109 'happli':191 'hostil':179 'kernel':98,205 'know':138 'lack':48,115 'left':62 'like':68,127,185 'linux':90,97,193 'magic':170 'map':49,55 'mastodon':42 'matrix':44 'media':37,76 'must':8 'navig':51 'need':29 'normal':141 'oneplus':3 'organ':54 'perform':71 'phone':92 'pipewir':150 'polish':64 'postmarketo':85 'prepar':206 'qualcomm':175,199 'real':89 'releas':201 'rpi':132 'say':9 'sdk':161 'second':129 'serious':171 'social':36 'someon':31,111 'speaker':81 'ssh':142 'studio':156 'stupid':160 'support':73,118,192 'take':96 'thing':39,67 'think':189 'tini':66 'tool':151 'tri':84 'ui':165 'use':33,53,140 'vendor':204 'via':56,77 'waydroid':57 'work':20 'would':190"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/6195697"
+editedAt: null
+createdAt: DateTimeImmutable @1704573837 {#2285
date: 2024-01-06 21:43:57.0 +01:00
}
+"title": 287220
} |
|
Show voter details
|
35 |
DENIED
|
edit
|
App\Entity\EntryComment {#2286
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2287
+user: Proxies\__CG__\App\Entity\User {#2645 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+domain: Proxies\__CG__\App\Entity\Domain {#2825 …}
+slug: "What-Is-Linux-Mobile-technical-explanation-of-the-ecosystem-for"
+title: "What Is Linux Mobile - technical explanation of the ecosystem for Linux on smartphones previously (often previosuly android)"
+url: "https://connolly.tech/posts/2024_01_06-what-is-linux-mobile/"
+body: null
+type: "link"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 6
+favouriteCount: 26
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1712656972 {#2806
date: 2024-04-09 12:02:52.0 +02:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#2827 …}
+votes: Doctrine\ORM\PersistentCollection {#2829 …}
+reports: Doctrine\ORM\PersistentCollection {#2831 …}
+favourites: Doctrine\ORM\PersistentCollection {#2833 …}
+notifications: Doctrine\ORM\PersistentCollection {#2835 …}
+badges: Doctrine\ORM\PersistentCollection {#2837 …}
+children: [
App\Entity\EntryComment {#2286}
]
-id: 27695
-titleTs: "'android':17 'ecosystem':9 'explan':6 'linux':3,11 'mobil':4 'often':15 'previosuli':16 'previous':14 'smartphon':13 'technic':5"
-bodyTs: null
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1704658522
+visibility: "visible "
+apId: "https://beehaw.org/post/10836205"
+editedAt: null
+createdAt: DateTimeImmutable @1704572122 {#2797
date: 2024-01-06 21:15:22.0 +01:00
}
+__isInitialized__: true
…2
}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: null
+root: null
+body: """
I have OnePlus 6T with Droidian and must say it is **this** close to daily drive for me.\n
\n
Everything works and there are apps for almost everything I need. As someone who uses only FOSS social media and things, there is Mastodon and Matrix client, I just lack maps with navigation (can use Organic Maps via Waydroid). Beyond that what is left is polish and tiny things, like for the performance or support for controlling media via buttons on bluetooth speaker.\n
\n
I also tried PostmarketOS, that is adapting real Linux to phones (when Droidian is taking Linux kernel and drivers from Android and building on that). It is great if someone can get around lack of camera support etc., but for me now it can act like a second device or RPi alternative.\n
\n
The ability to… you know, just use normal SSH and all the commands, Flatpak apps, all Pipewire tools, not fiddling with Android Studio and it’s stupid SDK or customizing my UI with just CSS is magical.\n
\n
Seriously, fuck Google and Qualcomm for creating such hostile drivers ecosystem. There are brands like Fairphone that I think would happly support Linux but can’t because of Qualcomm only releasing their own vendor kernel prepared only for Android.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 11
+score: 0
+lastActive: DateTime @1712655443 {#2284
date: 2024-04-09 11:37:23.0 +02:00
}
+ip: null
+tags: null
+mentions: [
"@clumsy_cat@beehaw.org"
]
+children: Doctrine\ORM\PersistentCollection {#2188 …}
+nested: Doctrine\ORM\PersistentCollection {#2034 …}
+votes: Doctrine\ORM\PersistentCollection {#2156 …}
+reports: Doctrine\ORM\PersistentCollection {#2154 …}
+favourites: Doctrine\ORM\PersistentCollection {#2157 …}
+notifications: Doctrine\ORM\PersistentCollection {#2147 …}
-id: 287220
-bodyTs: "'6t':4 'abil':135 'act':126 'adapt':88 'almost':26 'also':83 'altern':133 'android':102,155,209 'app':24,148 'around':114 'beyond':58 'bluetooth':80 'brand':184 'build':104 'button':78 'camera':117 'client':45 'close':13 'command':146 'control':75 'creat':177 'css':168 'custom':163 'daili':15 'devic':130 'drive':16 'driver':100,180 'droidian':6,94 'ecosystem':181 'etc':119 'everyth':19,27 'fairphon':186 'fiddl':153 'flatpak':147 'foss':35 'fuck':172 'get':113 'googl':173 'great':109 'happli':191 'hostil':179 'kernel':98,205 'know':138 'lack':48,115 'left':62 'like':68,127,185 'linux':90,97,193 'magic':170 'map':49,55 'mastodon':42 'matrix':44 'media':37,76 'must':8 'navig':51 'need':29 'normal':141 'oneplus':3 'organ':54 'perform':71 'phone':92 'pipewir':150 'polish':64 'postmarketo':85 'prepar':206 'qualcomm':175,199 'real':89 'releas':201 'rpi':132 'say':9 'sdk':161 'second':129 'serious':171 'social':36 'someon':31,111 'speaker':81 'ssh':142 'studio':156 'stupid':160 'support':73,118,192 'take':96 'thing':39,67 'think':189 'tini':66 'tool':151 'tri':84 'ui':165 'use':33,53,140 'vendor':204 'via':56,77 'waydroid':57 'work':20 'would':190"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/6195697"
+editedAt: null
+createdAt: DateTimeImmutable @1704573837 {#2285
date: 2024-01-06 21:43:57.0 +01:00
}
+"title": 287220
} |
|
Show voter details
|
36 |
DENIED
|
moderate
|
App\Entity\EntryComment {#2286
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2287
+user: Proxies\__CG__\App\Entity\User {#2645 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+domain: Proxies\__CG__\App\Entity\Domain {#2825 …}
+slug: "What-Is-Linux-Mobile-technical-explanation-of-the-ecosystem-for"
+title: "What Is Linux Mobile - technical explanation of the ecosystem for Linux on smartphones previously (often previosuly android)"
+url: "https://connolly.tech/posts/2024_01_06-what-is-linux-mobile/"
+body: null
+type: "link"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 6
+favouriteCount: 26
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1712656972 {#2806
date: 2024-04-09 12:02:52.0 +02:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#2827 …}
+votes: Doctrine\ORM\PersistentCollection {#2829 …}
+reports: Doctrine\ORM\PersistentCollection {#2831 …}
+favourites: Doctrine\ORM\PersistentCollection {#2833 …}
+notifications: Doctrine\ORM\PersistentCollection {#2835 …}
+badges: Doctrine\ORM\PersistentCollection {#2837 …}
+children: [
App\Entity\EntryComment {#2286}
]
-id: 27695
-titleTs: "'android':17 'ecosystem':9 'explan':6 'linux':3,11 'mobil':4 'often':15 'previosuli':16 'previous':14 'smartphon':13 'technic':5"
-bodyTs: null
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1704658522
+visibility: "visible "
+apId: "https://beehaw.org/post/10836205"
+editedAt: null
+createdAt: DateTimeImmutable @1704572122 {#2797
date: 2024-01-06 21:15:22.0 +01:00
}
+__isInitialized__: true
…2
}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: null
+root: null
+body: """
I have OnePlus 6T with Droidian and must say it is **this** close to daily drive for me.\n
\n
Everything works and there are apps for almost everything I need. As someone who uses only FOSS social media and things, there is Mastodon and Matrix client, I just lack maps with navigation (can use Organic Maps via Waydroid). Beyond that what is left is polish and tiny things, like for the performance or support for controlling media via buttons on bluetooth speaker.\n
\n
I also tried PostmarketOS, that is adapting real Linux to phones (when Droidian is taking Linux kernel and drivers from Android and building on that). It is great if someone can get around lack of camera support etc., but for me now it can act like a second device or RPi alternative.\n
\n
The ability to… you know, just use normal SSH and all the commands, Flatpak apps, all Pipewire tools, not fiddling with Android Studio and it’s stupid SDK or customizing my UI with just CSS is magical.\n
\n
Seriously, fuck Google and Qualcomm for creating such hostile drivers ecosystem. There are brands like Fairphone that I think would happly support Linux but can’t because of Qualcomm only releasing their own vendor kernel prepared only for Android.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 11
+score: 0
+lastActive: DateTime @1712655443 {#2284
date: 2024-04-09 11:37:23.0 +02:00
}
+ip: null
+tags: null
+mentions: [
"@clumsy_cat@beehaw.org"
]
+children: Doctrine\ORM\PersistentCollection {#2188 …}
+nested: Doctrine\ORM\PersistentCollection {#2034 …}
+votes: Doctrine\ORM\PersistentCollection {#2156 …}
+reports: Doctrine\ORM\PersistentCollection {#2154 …}
+favourites: Doctrine\ORM\PersistentCollection {#2157 …}
+notifications: Doctrine\ORM\PersistentCollection {#2147 …}
-id: 287220
-bodyTs: "'6t':4 'abil':135 'act':126 'adapt':88 'almost':26 'also':83 'altern':133 'android':102,155,209 'app':24,148 'around':114 'beyond':58 'bluetooth':80 'brand':184 'build':104 'button':78 'camera':117 'client':45 'close':13 'command':146 'control':75 'creat':177 'css':168 'custom':163 'daili':15 'devic':130 'drive':16 'driver':100,180 'droidian':6,94 'ecosystem':181 'etc':119 'everyth':19,27 'fairphon':186 'fiddl':153 'flatpak':147 'foss':35 'fuck':172 'get':113 'googl':173 'great':109 'happli':191 'hostil':179 'kernel':98,205 'know':138 'lack':48,115 'left':62 'like':68,127,185 'linux':90,97,193 'magic':170 'map':49,55 'mastodon':42 'matrix':44 'media':37,76 'must':8 'navig':51 'need':29 'normal':141 'oneplus':3 'organ':54 'perform':71 'phone':92 'pipewir':150 'polish':64 'postmarketo':85 'prepar':206 'qualcomm':175,199 'real':89 'releas':201 'rpi':132 'say':9 'sdk':161 'second':129 'serious':171 'social':36 'someon':31,111 'speaker':81 'ssh':142 'studio':156 'stupid':160 'support':73,118,192 'take':96 'thing':39,67 'think':189 'tini':66 'tool':151 'tri':84 'ui':165 'use':33,53,140 'vendor':204 'via':56,77 'waydroid':57 'work':20 'would':190"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/6195697"
+editedAt: null
+createdAt: DateTimeImmutable @1704573837 {#2285
date: 2024-01-06 21:43:57.0 +01:00
}
+"title": 287220
} |
|
Show voter details
|
37 |
DENIED
|
ROLE_USER
|
null |
|
Show voter details
|
38 |
DENIED
|
moderate
|
Proxies\__CG__\App\Entity\Entry {#2265
+user: Proxies\__CG__\App\Entity\User {#2791 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+domain: Proxies\__CG__\App\Entity\Domain {#1647 …}
+slug: "Where-did-you-learn-partitioning-And-do-you-need-a"
+title: "Where did you learn partitioning? And do you need a guide everytime you install a distro?"
+url: null
+body: """
I have been using linux about 4 years now and in that time i’ve done a bunch of installs. Lately i’ve been setting up luks and lvm, but each time i install a distro ive set up bodhi and nixos with this setup but the issue i have is that each time ive done it i’ve had to follow a guide.\n
\n
For both these distros there werent official docs on how to do it but found guides on github. For both i had to try multiple guides and reinstall multiple times.\n
\n
While ive learned a lot doing this i feel like i have too heavily leaned on the guides and would not be able to install it without a guide.\n
\n
I understand the basic lvm commands to set up pvs, lvs, etc but for example when installing nix i had to reinstall twice because i didnt set up the preLVM setting and the luks device uuid. But if i hadnt found a guide that showed it i never would have known to do it.\n
\n
What resources can you recommended to really understanding how to properly set all the different types of partitioning schemes (gpt, mbr, lvm, luks, etc, etc)
"""
+type: "article"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 3
+favouriteCount: 6
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1712572179 {#2839
date: 2024-04-08 12:29:39.0 +02:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#2844 …}
+votes: Doctrine\ORM\PersistentCollection {#2847 …}
+reports: Doctrine\ORM\PersistentCollection {#2849 …}
+favourites: Doctrine\ORM\PersistentCollection {#2851 …}
+notifications: Doctrine\ORM\PersistentCollection {#2853 …}
+badges: Doctrine\ORM\PersistentCollection {#2855 …}
+children: [
App\Entity\EntryComment {#2253
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2265 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: null
+root: null
+body: "I recommend trying to install ArchLinux"
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1712572179 {#2272
date: 2024-04-08 12:29:39.0 +02:00
}
+ip: null
+tags: null
+mentions: [
"@neosheo@discuss.tchncs.de"
]
+children: Doctrine\ORM\PersistentCollection {#2262 …}
+nested: Doctrine\ORM\PersistentCollection {#2264 …}
+votes: Doctrine\ORM\PersistentCollection {#2242 …}
+reports: Doctrine\ORM\PersistentCollection {#2240 …}
+favourites: Doctrine\ORM\PersistentCollection {#2233 …}
+notifications: Doctrine\ORM\PersistentCollection {#2234 …}
-id: 287117
-bodyTs: "'archlinux':6 'instal':5 'recommend':2 'tri':3"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/6089522"
+editedAt: null
+createdAt: DateTimeImmutable @1704263621 {#2190
date: 2024-01-03 07:33:41.0 +01:00
}
+"title": 287117
}
]
-id: 27738
-titleTs: "'distro':16 'everytim':12 'guid':11 'instal':14 'learn':4 'need':9 'partit':5"
-bodyTs: "'4':7 'abl':117 'basic':127 'bodhi':40 'bunch':18 'command':129 'devic':158 'didnt':149 'differ':192 'distro':36,68 'doc':72 'done':16,56 'etc':135,201,202 'exampl':138 'feel':103 'follow':62 'found':79,164 'github':82 'gpt':197 'guid':64,80,90,112,123,166 'hadnt':163 'heavili':108 'instal':20,34,119,140 'issu':48 'ive':37,55,96 'known':174 'late':21 'lean':109 'learn':97 'like':104 'linux':5 'lot':99 'luk':27,157,200 'lvm':29,128,199 'lvs':134 'mbr':198 'multipl':89,93 'never':171 'nix':141 'nixo':42 'offici':71 'partit':195 'prelvm':153 'proper':188 'pvs':133 'realli':184 'recommend':182 'reinstal':92,145 'resourc':179 'scheme':196 'set':25,38,131,150,154,189 'setup':45 'show':168 'time':13,32,54,94 'tri':88 'twice':146 'type':193 'understand':125,185 'use':4 'uuid':159 've':15,23,59 'werent':70 'without':121 'would':114,172 'year':8"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1704296017
+visibility: "visible "
+apId: "https://discuss.tchncs.de/post/8695036"
+editedAt: null
+createdAt: DateTimeImmutable @1704263017 {#2826
date: 2024-01-03 07:23:37.0 +01:00
}
+__isInitialized__: true
…2
} |
|
Show voter details
|
39 |
DENIED
|
edit
|
Proxies\__CG__\App\Entity\Entry {#2265
+user: Proxies\__CG__\App\Entity\User {#2791 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+domain: Proxies\__CG__\App\Entity\Domain {#1647 …}
+slug: "Where-did-you-learn-partitioning-And-do-you-need-a"
+title: "Where did you learn partitioning? And do you need a guide everytime you install a distro?"
+url: null
+body: """
I have been using linux about 4 years now and in that time i’ve done a bunch of installs. Lately i’ve been setting up luks and lvm, but each time i install a distro ive set up bodhi and nixos with this setup but the issue i have is that each time ive done it i’ve had to follow a guide.\n
\n
For both these distros there werent official docs on how to do it but found guides on github. For both i had to try multiple guides and reinstall multiple times.\n
\n
While ive learned a lot doing this i feel like i have too heavily leaned on the guides and would not be able to install it without a guide.\n
\n
I understand the basic lvm commands to set up pvs, lvs, etc but for example when installing nix i had to reinstall twice because i didnt set up the preLVM setting and the luks device uuid. But if i hadnt found a guide that showed it i never would have known to do it.\n
\n
What resources can you recommended to really understanding how to properly set all the different types of partitioning schemes (gpt, mbr, lvm, luks, etc, etc)
"""
+type: "article"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 3
+favouriteCount: 6
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1712572179 {#2839
date: 2024-04-08 12:29:39.0 +02:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#2844 …}
+votes: Doctrine\ORM\PersistentCollection {#2847 …}
+reports: Doctrine\ORM\PersistentCollection {#2849 …}
+favourites: Doctrine\ORM\PersistentCollection {#2851 …}
+notifications: Doctrine\ORM\PersistentCollection {#2853 …}
+badges: Doctrine\ORM\PersistentCollection {#2855 …}
+children: [
App\Entity\EntryComment {#2253
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2265 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: null
+root: null
+body: "I recommend trying to install ArchLinux"
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1712572179 {#2272
date: 2024-04-08 12:29:39.0 +02:00
}
+ip: null
+tags: null
+mentions: [
"@neosheo@discuss.tchncs.de"
]
+children: Doctrine\ORM\PersistentCollection {#2262 …}
+nested: Doctrine\ORM\PersistentCollection {#2264 …}
+votes: Doctrine\ORM\PersistentCollection {#2242 …}
+reports: Doctrine\ORM\PersistentCollection {#2240 …}
+favourites: Doctrine\ORM\PersistentCollection {#2233 …}
+notifications: Doctrine\ORM\PersistentCollection {#2234 …}
-id: 287117
-bodyTs: "'archlinux':6 'instal':5 'recommend':2 'tri':3"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/6089522"
+editedAt: null
+createdAt: DateTimeImmutable @1704263621 {#2190
date: 2024-01-03 07:33:41.0 +01:00
}
+"title": 287117
}
]
-id: 27738
-titleTs: "'distro':16 'everytim':12 'guid':11 'instal':14 'learn':4 'need':9 'partit':5"
-bodyTs: "'4':7 'abl':117 'basic':127 'bodhi':40 'bunch':18 'command':129 'devic':158 'didnt':149 'differ':192 'distro':36,68 'doc':72 'done':16,56 'etc':135,201,202 'exampl':138 'feel':103 'follow':62 'found':79,164 'github':82 'gpt':197 'guid':64,80,90,112,123,166 'hadnt':163 'heavili':108 'instal':20,34,119,140 'issu':48 'ive':37,55,96 'known':174 'late':21 'lean':109 'learn':97 'like':104 'linux':5 'lot':99 'luk':27,157,200 'lvm':29,128,199 'lvs':134 'mbr':198 'multipl':89,93 'never':171 'nix':141 'nixo':42 'offici':71 'partit':195 'prelvm':153 'proper':188 'pvs':133 'realli':184 'recommend':182 'reinstal':92,145 'resourc':179 'scheme':196 'set':25,38,131,150,154,189 'setup':45 'show':168 'time':13,32,54,94 'tri':88 'twice':146 'type':193 'understand':125,185 'use':4 'uuid':159 've':15,23,59 'werent':70 'without':121 'would':114,172 'year':8"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1704296017
+visibility: "visible "
+apId: "https://discuss.tchncs.de/post/8695036"
+editedAt: null
+createdAt: DateTimeImmutable @1704263017 {#2826
date: 2024-01-03 07:23:37.0 +01:00
}
+__isInitialized__: true
…2
} |
|
Show voter details
|
40 |
DENIED
|
moderate
|
Proxies\__CG__\App\Entity\Entry {#2265
+user: Proxies\__CG__\App\Entity\User {#2791 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+domain: Proxies\__CG__\App\Entity\Domain {#1647 …}
+slug: "Where-did-you-learn-partitioning-And-do-you-need-a"
+title: "Where did you learn partitioning? And do you need a guide everytime you install a distro?"
+url: null
+body: """
I have been using linux about 4 years now and in that time i’ve done a bunch of installs. Lately i’ve been setting up luks and lvm, but each time i install a distro ive set up bodhi and nixos with this setup but the issue i have is that each time ive done it i’ve had to follow a guide.\n
\n
For both these distros there werent official docs on how to do it but found guides on github. For both i had to try multiple guides and reinstall multiple times.\n
\n
While ive learned a lot doing this i feel like i have too heavily leaned on the guides and would not be able to install it without a guide.\n
\n
I understand the basic lvm commands to set up pvs, lvs, etc but for example when installing nix i had to reinstall twice because i didnt set up the preLVM setting and the luks device uuid. But if i hadnt found a guide that showed it i never would have known to do it.\n
\n
What resources can you recommended to really understanding how to properly set all the different types of partitioning schemes (gpt, mbr, lvm, luks, etc, etc)
"""
+type: "article"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 3
+favouriteCount: 6
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1712572179 {#2839
date: 2024-04-08 12:29:39.0 +02:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#2844 …}
+votes: Doctrine\ORM\PersistentCollection {#2847 …}
+reports: Doctrine\ORM\PersistentCollection {#2849 …}
+favourites: Doctrine\ORM\PersistentCollection {#2851 …}
+notifications: Doctrine\ORM\PersistentCollection {#2853 …}
+badges: Doctrine\ORM\PersistentCollection {#2855 …}
+children: [
App\Entity\EntryComment {#2253
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2265 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: null
+root: null
+body: "I recommend trying to install ArchLinux"
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1712572179 {#2272
date: 2024-04-08 12:29:39.0 +02:00
}
+ip: null
+tags: null
+mentions: [
"@neosheo@discuss.tchncs.de"
]
+children: Doctrine\ORM\PersistentCollection {#2262 …}
+nested: Doctrine\ORM\PersistentCollection {#2264 …}
+votes: Doctrine\ORM\PersistentCollection {#2242 …}
+reports: Doctrine\ORM\PersistentCollection {#2240 …}
+favourites: Doctrine\ORM\PersistentCollection {#2233 …}
+notifications: Doctrine\ORM\PersistentCollection {#2234 …}
-id: 287117
-bodyTs: "'archlinux':6 'instal':5 'recommend':2 'tri':3"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/6089522"
+editedAt: null
+createdAt: DateTimeImmutable @1704263621 {#2190
date: 2024-01-03 07:33:41.0 +01:00
}
+"title": 287117
}
]
-id: 27738
-titleTs: "'distro':16 'everytim':12 'guid':11 'instal':14 'learn':4 'need':9 'partit':5"
-bodyTs: "'4':7 'abl':117 'basic':127 'bodhi':40 'bunch':18 'command':129 'devic':158 'didnt':149 'differ':192 'distro':36,68 'doc':72 'done':16,56 'etc':135,201,202 'exampl':138 'feel':103 'follow':62 'found':79,164 'github':82 'gpt':197 'guid':64,80,90,112,123,166 'hadnt':163 'heavili':108 'instal':20,34,119,140 'issu':48 'ive':37,55,96 'known':174 'late':21 'lean':109 'learn':97 'like':104 'linux':5 'lot':99 'luk':27,157,200 'lvm':29,128,199 'lvs':134 'mbr':198 'multipl':89,93 'never':171 'nix':141 'nixo':42 'offici':71 'partit':195 'prelvm':153 'proper':188 'pvs':133 'realli':184 'recommend':182 'reinstal':92,145 'resourc':179 'scheme':196 'set':25,38,131,150,154,189 'setup':45 'show':168 'time':13,32,54,94 'tri':88 'twice':146 'type':193 'understand':125,185 'use':4 'uuid':159 've':15,23,59 'werent':70 'without':121 'would':114,172 'year':8"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1704296017
+visibility: "visible "
+apId: "https://discuss.tchncs.de/post/8695036"
+editedAt: null
+createdAt: DateTimeImmutable @1704263017 {#2826
date: 2024-01-03 07:23:37.0 +01:00
}
+__isInitialized__: true
…2
} |
|
Show voter details
|
41 |
DENIED
|
ROLE_USER
|
null |
|
Show voter details
|
42 |
DENIED
|
moderate
|
App\Entity\EntryComment {#2253
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2265
+user: Proxies\__CG__\App\Entity\User {#2791 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+domain: Proxies\__CG__\App\Entity\Domain {#1647 …}
+slug: "Where-did-you-learn-partitioning-And-do-you-need-a"
+title: "Where did you learn partitioning? And do you need a guide everytime you install a distro?"
+url: null
+body: """
I have been using linux about 4 years now and in that time i’ve done a bunch of installs. Lately i’ve been setting up luks and lvm, but each time i install a distro ive set up bodhi and nixos with this setup but the issue i have is that each time ive done it i’ve had to follow a guide.\n
\n
For both these distros there werent official docs on how to do it but found guides on github. For both i had to try multiple guides and reinstall multiple times.\n
\n
While ive learned a lot doing this i feel like i have too heavily leaned on the guides and would not be able to install it without a guide.\n
\n
I understand the basic lvm commands to set up pvs, lvs, etc but for example when installing nix i had to reinstall twice because i didnt set up the preLVM setting and the luks device uuid. But if i hadnt found a guide that showed it i never would have known to do it.\n
\n
What resources can you recommended to really understanding how to properly set all the different types of partitioning schemes (gpt, mbr, lvm, luks, etc, etc)
"""
+type: "article"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 3
+favouriteCount: 6
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1712572179 {#2839
date: 2024-04-08 12:29:39.0 +02:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#2844 …}
+votes: Doctrine\ORM\PersistentCollection {#2847 …}
+reports: Doctrine\ORM\PersistentCollection {#2849 …}
+favourites: Doctrine\ORM\PersistentCollection {#2851 …}
+notifications: Doctrine\ORM\PersistentCollection {#2853 …}
+badges: Doctrine\ORM\PersistentCollection {#2855 …}
+children: [
App\Entity\EntryComment {#2253}
]
-id: 27738
-titleTs: "'distro':16 'everytim':12 'guid':11 'instal':14 'learn':4 'need':9 'partit':5"
-bodyTs: "'4':7 'abl':117 'basic':127 'bodhi':40 'bunch':18 'command':129 'devic':158 'didnt':149 'differ':192 'distro':36,68 'doc':72 'done':16,56 'etc':135,201,202 'exampl':138 'feel':103 'follow':62 'found':79,164 'github':82 'gpt':197 'guid':64,80,90,112,123,166 'hadnt':163 'heavili':108 'instal':20,34,119,140 'issu':48 'ive':37,55,96 'known':174 'late':21 'lean':109 'learn':97 'like':104 'linux':5 'lot':99 'luk':27,157,200 'lvm':29,128,199 'lvs':134 'mbr':198 'multipl':89,93 'never':171 'nix':141 'nixo':42 'offici':71 'partit':195 'prelvm':153 'proper':188 'pvs':133 'realli':184 'recommend':182 'reinstal':92,145 'resourc':179 'scheme':196 'set':25,38,131,150,154,189 'setup':45 'show':168 'time':13,32,54,94 'tri':88 'twice':146 'type':193 'understand':125,185 'use':4 'uuid':159 've':15,23,59 'werent':70 'without':121 'would':114,172 'year':8"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1704296017
+visibility: "visible "
+apId: "https://discuss.tchncs.de/post/8695036"
+editedAt: null
+createdAt: DateTimeImmutable @1704263017 {#2826
date: 2024-01-03 07:23:37.0 +01:00
}
+__isInitialized__: true
…2
}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: null
+root: null
+body: "I recommend trying to install ArchLinux"
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1712572179 {#2272
date: 2024-04-08 12:29:39.0 +02:00
}
+ip: null
+tags: null
+mentions: [
"@neosheo@discuss.tchncs.de"
]
+children: Doctrine\ORM\PersistentCollection {#2262 …}
+nested: Doctrine\ORM\PersistentCollection {#2264 …}
+votes: Doctrine\ORM\PersistentCollection {#2242 …}
+reports: Doctrine\ORM\PersistentCollection {#2240 …}
+favourites: Doctrine\ORM\PersistentCollection {#2233 …}
+notifications: Doctrine\ORM\PersistentCollection {#2234 …}
-id: 287117
-bodyTs: "'archlinux':6 'instal':5 'recommend':2 'tri':3"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/6089522"
+editedAt: null
+createdAt: DateTimeImmutable @1704263621 {#2190
date: 2024-01-03 07:33:41.0 +01:00
}
+"title": 287117
} |
|
Show voter details
|
43 |
DENIED
|
edit
|
App\Entity\EntryComment {#2253
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2265
+user: Proxies\__CG__\App\Entity\User {#2791 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+domain: Proxies\__CG__\App\Entity\Domain {#1647 …}
+slug: "Where-did-you-learn-partitioning-And-do-you-need-a"
+title: "Where did you learn partitioning? And do you need a guide everytime you install a distro?"
+url: null
+body: """
I have been using linux about 4 years now and in that time i’ve done a bunch of installs. Lately i’ve been setting up luks and lvm, but each time i install a distro ive set up bodhi and nixos with this setup but the issue i have is that each time ive done it i’ve had to follow a guide.\n
\n
For both these distros there werent official docs on how to do it but found guides on github. For both i had to try multiple guides and reinstall multiple times.\n
\n
While ive learned a lot doing this i feel like i have too heavily leaned on the guides and would not be able to install it without a guide.\n
\n
I understand the basic lvm commands to set up pvs, lvs, etc but for example when installing nix i had to reinstall twice because i didnt set up the preLVM setting and the luks device uuid. But if i hadnt found a guide that showed it i never would have known to do it.\n
\n
What resources can you recommended to really understanding how to properly set all the different types of partitioning schemes (gpt, mbr, lvm, luks, etc, etc)
"""
+type: "article"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 3
+favouriteCount: 6
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1712572179 {#2839
date: 2024-04-08 12:29:39.0 +02:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#2844 …}
+votes: Doctrine\ORM\PersistentCollection {#2847 …}
+reports: Doctrine\ORM\PersistentCollection {#2849 …}
+favourites: Doctrine\ORM\PersistentCollection {#2851 …}
+notifications: Doctrine\ORM\PersistentCollection {#2853 …}
+badges: Doctrine\ORM\PersistentCollection {#2855 …}
+children: [
App\Entity\EntryComment {#2253}
]
-id: 27738
-titleTs: "'distro':16 'everytim':12 'guid':11 'instal':14 'learn':4 'need':9 'partit':5"
-bodyTs: "'4':7 'abl':117 'basic':127 'bodhi':40 'bunch':18 'command':129 'devic':158 'didnt':149 'differ':192 'distro':36,68 'doc':72 'done':16,56 'etc':135,201,202 'exampl':138 'feel':103 'follow':62 'found':79,164 'github':82 'gpt':197 'guid':64,80,90,112,123,166 'hadnt':163 'heavili':108 'instal':20,34,119,140 'issu':48 'ive':37,55,96 'known':174 'late':21 'lean':109 'learn':97 'like':104 'linux':5 'lot':99 'luk':27,157,200 'lvm':29,128,199 'lvs':134 'mbr':198 'multipl':89,93 'never':171 'nix':141 'nixo':42 'offici':71 'partit':195 'prelvm':153 'proper':188 'pvs':133 'realli':184 'recommend':182 'reinstal':92,145 'resourc':179 'scheme':196 'set':25,38,131,150,154,189 'setup':45 'show':168 'time':13,32,54,94 'tri':88 'twice':146 'type':193 'understand':125,185 'use':4 'uuid':159 've':15,23,59 'werent':70 'without':121 'would':114,172 'year':8"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1704296017
+visibility: "visible "
+apId: "https://discuss.tchncs.de/post/8695036"
+editedAt: null
+createdAt: DateTimeImmutable @1704263017 {#2826
date: 2024-01-03 07:23:37.0 +01:00
}
+__isInitialized__: true
…2
}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: null
+root: null
+body: "I recommend trying to install ArchLinux"
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1712572179 {#2272
date: 2024-04-08 12:29:39.0 +02:00
}
+ip: null
+tags: null
+mentions: [
"@neosheo@discuss.tchncs.de"
]
+children: Doctrine\ORM\PersistentCollection {#2262 …}
+nested: Doctrine\ORM\PersistentCollection {#2264 …}
+votes: Doctrine\ORM\PersistentCollection {#2242 …}
+reports: Doctrine\ORM\PersistentCollection {#2240 …}
+favourites: Doctrine\ORM\PersistentCollection {#2233 …}
+notifications: Doctrine\ORM\PersistentCollection {#2234 …}
-id: 287117
-bodyTs: "'archlinux':6 'instal':5 'recommend':2 'tri':3"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/6089522"
+editedAt: null
+createdAt: DateTimeImmutable @1704263621 {#2190
date: 2024-01-03 07:33:41.0 +01:00
}
+"title": 287117
} |
|
Show voter details
|
44 |
DENIED
|
moderate
|
App\Entity\EntryComment {#2253
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2265
+user: Proxies\__CG__\App\Entity\User {#2791 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+domain: Proxies\__CG__\App\Entity\Domain {#1647 …}
+slug: "Where-did-you-learn-partitioning-And-do-you-need-a"
+title: "Where did you learn partitioning? And do you need a guide everytime you install a distro?"
+url: null
+body: """
I have been using linux about 4 years now and in that time i’ve done a bunch of installs. Lately i’ve been setting up luks and lvm, but each time i install a distro ive set up bodhi and nixos with this setup but the issue i have is that each time ive done it i’ve had to follow a guide.\n
\n
For both these distros there werent official docs on how to do it but found guides on github. For both i had to try multiple guides and reinstall multiple times.\n
\n
While ive learned a lot doing this i feel like i have too heavily leaned on the guides and would not be able to install it without a guide.\n
\n
I understand the basic lvm commands to set up pvs, lvs, etc but for example when installing nix i had to reinstall twice because i didnt set up the preLVM setting and the luks device uuid. But if i hadnt found a guide that showed it i never would have known to do it.\n
\n
What resources can you recommended to really understanding how to properly set all the different types of partitioning schemes (gpt, mbr, lvm, luks, etc, etc)
"""
+type: "article"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 3
+favouriteCount: 6
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1712572179 {#2839
date: 2024-04-08 12:29:39.0 +02:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#2844 …}
+votes: Doctrine\ORM\PersistentCollection {#2847 …}
+reports: Doctrine\ORM\PersistentCollection {#2849 …}
+favourites: Doctrine\ORM\PersistentCollection {#2851 …}
+notifications: Doctrine\ORM\PersistentCollection {#2853 …}
+badges: Doctrine\ORM\PersistentCollection {#2855 …}
+children: [
App\Entity\EntryComment {#2253}
]
-id: 27738
-titleTs: "'distro':16 'everytim':12 'guid':11 'instal':14 'learn':4 'need':9 'partit':5"
-bodyTs: "'4':7 'abl':117 'basic':127 'bodhi':40 'bunch':18 'command':129 'devic':158 'didnt':149 'differ':192 'distro':36,68 'doc':72 'done':16,56 'etc':135,201,202 'exampl':138 'feel':103 'follow':62 'found':79,164 'github':82 'gpt':197 'guid':64,80,90,112,123,166 'hadnt':163 'heavili':108 'instal':20,34,119,140 'issu':48 'ive':37,55,96 'known':174 'late':21 'lean':109 'learn':97 'like':104 'linux':5 'lot':99 'luk':27,157,200 'lvm':29,128,199 'lvs':134 'mbr':198 'multipl':89,93 'never':171 'nix':141 'nixo':42 'offici':71 'partit':195 'prelvm':153 'proper':188 'pvs':133 'realli':184 'recommend':182 'reinstal':92,145 'resourc':179 'scheme':196 'set':25,38,131,150,154,189 'setup':45 'show':168 'time':13,32,54,94 'tri':88 'twice':146 'type':193 'understand':125,185 'use':4 'uuid':159 've':15,23,59 'werent':70 'without':121 'would':114,172 'year':8"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1704296017
+visibility: "visible "
+apId: "https://discuss.tchncs.de/post/8695036"
+editedAt: null
+createdAt: DateTimeImmutable @1704263017 {#2826
date: 2024-01-03 07:23:37.0 +01:00
}
+__isInitialized__: true
…2
}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: null
+root: null
+body: "I recommend trying to install ArchLinux"
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1712572179 {#2272
date: 2024-04-08 12:29:39.0 +02:00
}
+ip: null
+tags: null
+mentions: [
"@neosheo@discuss.tchncs.de"
]
+children: Doctrine\ORM\PersistentCollection {#2262 …}
+nested: Doctrine\ORM\PersistentCollection {#2264 …}
+votes: Doctrine\ORM\PersistentCollection {#2242 …}
+reports: Doctrine\ORM\PersistentCollection {#2240 …}
+favourites: Doctrine\ORM\PersistentCollection {#2233 …}
+notifications: Doctrine\ORM\PersistentCollection {#2234 …}
-id: 287117
-bodyTs: "'archlinux':6 'instal':5 'recommend':2 'tri':3"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/6089522"
+editedAt: null
+createdAt: DateTimeImmutable @1704263621 {#2190
date: 2024-01-03 07:33:41.0 +01:00
}
+"title": 287117
} |
|
Show voter details
|
45 |
DENIED
|
ROLE_USER
|
null |
|
Show voter details
|
46 |
DENIED
|
moderate
|
Proxies\__CG__\App\Entity\Entry {#2228
+user: Proxies\__CG__\App\Entity\User {#2510 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: Proxies\__CG__\App\Entity\Image {#2880 …}
+domain: Proxies\__CG__\App\Entity\Domain {#2879 …}
+slug: "Is-DNS-Bloat-too"
+title: "Is DNS Bloat too?"
+url: "https://lemmy.sdf.org/pictrs/image/84ea7148-4c34-4f3a-91d2-cb1524a390f5.png"
+body: null
+type: "image"
+lang: "en"
+isOc: false
+hasEmbed: true
+commentCount: 78
+favouriteCount: 324
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1712209820 {#2857
date: 2024-04-04 07:50:20.0 +02:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#2878 …}
+votes: Doctrine\ORM\PersistentCollection {#2885 …}
+reports: Doctrine\ORM\PersistentCollection {#2881 …}
+favourites: Doctrine\ORM\PersistentCollection {#2884 …}
+notifications: Doctrine\ORM\PersistentCollection {#2887 …}
+badges: Doctrine\ORM\PersistentCollection {#2889 …}
+children: [
1 => App\Entity\EntryComment {#2294
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2228 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2290 …}
+root: App\Entity\EntryComment {#2229
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2228 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: null
+root: null
+body: "Okey, I don’t get it. What’s wrong with DNS?"
+lang: "en"
+isAdult: false
+favouriteCount: 28
+score: 0
+lastActive: DateTime @1710793640 {#2231
date: 2024-03-18 21:27:20.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@scroll_responsibly@lemmy.sdf.org"
]
+children: Doctrine\ORM\PersistentCollection {#2252 …}
+nested: Doctrine\ORM\PersistentCollection {#2189 …}
+votes: Doctrine\ORM\PersistentCollection {#2311 …}
+reports: Doctrine\ORM\PersistentCollection {#2293 …}
+favourites: Doctrine\ORM\PersistentCollection {#2309 …}
+notifications: Doctrine\ORM\PersistentCollection {#2302 …}
-id: 267410
-bodyTs: "'dns':11 'get':5 'okey':1 'wrong':9"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/6030236"
+editedAt: null
+createdAt: DateTimeImmutable @1704033225 {#2232
date: 2023-12-31 15:33:45.0 +01:00
}
+"title": 267410
}
+body: """
Okey, I understand this is fundamental and when not working can cause the service to stop working. But I don’t yet know how does it break or is not easy to troubleshoot?\n
\n
Haven’t hosted anything big yet, so I always just had to check the records via “dig” command if they are served correctly.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 3
+score: 0
+lastActive: DateTime @1704078576 {#2316
date: 2024-01-01 04:09:36.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@scroll_responsibly@lemmy.sdf.org"
"@smileyhead@discuss.tchncs.de"
"@Inucune@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#2296 …}
+nested: Doctrine\ORM\PersistentCollection {#2281 …}
+votes: Doctrine\ORM\PersistentCollection {#2280 …}
+reports: Doctrine\ORM\PersistentCollection {#2278 …}
+favourites: Doctrine\ORM\PersistentCollection {#2279 …}
+notifications: Doctrine\ORM\PersistentCollection {#2277 …}
-id: 269099
-bodyTs: "'alway':42 'anyth':37 'big':38 'break':27 'caus':12 'check':46 'command':51 'correct':56 'dig':50 'easi':31 'fundament':6 'haven':34 'host':36 'know':23 'okey':1 'record':48 'serv':55 'servic':14 'stop':16 'troubleshoot':33 'understand':3 'via':49 'work':10,17 'yet':22,39"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/6041003"
+editedAt: null
+createdAt: DateTimeImmutable @1704078576 {#2292
date: 2024-01-01 04:09:36.0 +01:00
}
+"title": 269099
}
0 => App\Entity\EntryComment {#2229}
]
-id: 25939
-titleTs: "'bloat':3 'dns':2"
-bodyTs: null
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1704061883
+visibility: "visible "
+apId: "https://lemmy.sdf.org/post/9895543"
+editedAt: null
+createdAt: DateTimeImmutable @1703975483 {#2845
date: 2023-12-30 23:31:23.0 +01:00
}
+__isInitialized__: true
…2
} |
|
Show voter details
|
47 |
DENIED
|
edit
|
Proxies\__CG__\App\Entity\Entry {#2228
+user: Proxies\__CG__\App\Entity\User {#2510 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: Proxies\__CG__\App\Entity\Image {#2880 …}
+domain: Proxies\__CG__\App\Entity\Domain {#2879 …}
+slug: "Is-DNS-Bloat-too"
+title: "Is DNS Bloat too?"
+url: "https://lemmy.sdf.org/pictrs/image/84ea7148-4c34-4f3a-91d2-cb1524a390f5.png"
+body: null
+type: "image"
+lang: "en"
+isOc: false
+hasEmbed: true
+commentCount: 78
+favouriteCount: 324
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1712209820 {#2857
date: 2024-04-04 07:50:20.0 +02:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#2878 …}
+votes: Doctrine\ORM\PersistentCollection {#2885 …}
+reports: Doctrine\ORM\PersistentCollection {#2881 …}
+favourites: Doctrine\ORM\PersistentCollection {#2884 …}
+notifications: Doctrine\ORM\PersistentCollection {#2887 …}
+badges: Doctrine\ORM\PersistentCollection {#2889 …}
+children: [
1 => App\Entity\EntryComment {#2294
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2228 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2290 …}
+root: App\Entity\EntryComment {#2229
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2228 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: null
+root: null
+body: "Okey, I don’t get it. What’s wrong with DNS?"
+lang: "en"
+isAdult: false
+favouriteCount: 28
+score: 0
+lastActive: DateTime @1710793640 {#2231
date: 2024-03-18 21:27:20.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@scroll_responsibly@lemmy.sdf.org"
]
+children: Doctrine\ORM\PersistentCollection {#2252 …}
+nested: Doctrine\ORM\PersistentCollection {#2189 …}
+votes: Doctrine\ORM\PersistentCollection {#2311 …}
+reports: Doctrine\ORM\PersistentCollection {#2293 …}
+favourites: Doctrine\ORM\PersistentCollection {#2309 …}
+notifications: Doctrine\ORM\PersistentCollection {#2302 …}
-id: 267410
-bodyTs: "'dns':11 'get':5 'okey':1 'wrong':9"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/6030236"
+editedAt: null
+createdAt: DateTimeImmutable @1704033225 {#2232
date: 2023-12-31 15:33:45.0 +01:00
}
+"title": 267410
}
+body: """
Okey, I understand this is fundamental and when not working can cause the service to stop working. But I don’t yet know how does it break or is not easy to troubleshoot?\n
\n
Haven’t hosted anything big yet, so I always just had to check the records via “dig” command if they are served correctly.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 3
+score: 0
+lastActive: DateTime @1704078576 {#2316
date: 2024-01-01 04:09:36.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@scroll_responsibly@lemmy.sdf.org"
"@smileyhead@discuss.tchncs.de"
"@Inucune@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#2296 …}
+nested: Doctrine\ORM\PersistentCollection {#2281 …}
+votes: Doctrine\ORM\PersistentCollection {#2280 …}
+reports: Doctrine\ORM\PersistentCollection {#2278 …}
+favourites: Doctrine\ORM\PersistentCollection {#2279 …}
+notifications: Doctrine\ORM\PersistentCollection {#2277 …}
-id: 269099
-bodyTs: "'alway':42 'anyth':37 'big':38 'break':27 'caus':12 'check':46 'command':51 'correct':56 'dig':50 'easi':31 'fundament':6 'haven':34 'host':36 'know':23 'okey':1 'record':48 'serv':55 'servic':14 'stop':16 'troubleshoot':33 'understand':3 'via':49 'work':10,17 'yet':22,39"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/6041003"
+editedAt: null
+createdAt: DateTimeImmutable @1704078576 {#2292
date: 2024-01-01 04:09:36.0 +01:00
}
+"title": 269099
}
0 => App\Entity\EntryComment {#2229}
]
-id: 25939
-titleTs: "'bloat':3 'dns':2"
-bodyTs: null
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1704061883
+visibility: "visible "
+apId: "https://lemmy.sdf.org/post/9895543"
+editedAt: null
+createdAt: DateTimeImmutable @1703975483 {#2845
date: 2023-12-30 23:31:23.0 +01:00
}
+__isInitialized__: true
…2
} |
|
Show voter details
|
48 |
DENIED
|
moderate
|
Proxies\__CG__\App\Entity\Entry {#2228
+user: Proxies\__CG__\App\Entity\User {#2510 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: Proxies\__CG__\App\Entity\Image {#2880 …}
+domain: Proxies\__CG__\App\Entity\Domain {#2879 …}
+slug: "Is-DNS-Bloat-too"
+title: "Is DNS Bloat too?"
+url: "https://lemmy.sdf.org/pictrs/image/84ea7148-4c34-4f3a-91d2-cb1524a390f5.png"
+body: null
+type: "image"
+lang: "en"
+isOc: false
+hasEmbed: true
+commentCount: 78
+favouriteCount: 324
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1712209820 {#2857
date: 2024-04-04 07:50:20.0 +02:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#2878 …}
+votes: Doctrine\ORM\PersistentCollection {#2885 …}
+reports: Doctrine\ORM\PersistentCollection {#2881 …}
+favourites: Doctrine\ORM\PersistentCollection {#2884 …}
+notifications: Doctrine\ORM\PersistentCollection {#2887 …}
+badges: Doctrine\ORM\PersistentCollection {#2889 …}
+children: [
1 => App\Entity\EntryComment {#2294
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2228 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2290 …}
+root: App\Entity\EntryComment {#2229
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2228 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: null
+root: null
+body: "Okey, I don’t get it. What’s wrong with DNS?"
+lang: "en"
+isAdult: false
+favouriteCount: 28
+score: 0
+lastActive: DateTime @1710793640 {#2231
date: 2024-03-18 21:27:20.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@scroll_responsibly@lemmy.sdf.org"
]
+children: Doctrine\ORM\PersistentCollection {#2252 …}
+nested: Doctrine\ORM\PersistentCollection {#2189 …}
+votes: Doctrine\ORM\PersistentCollection {#2311 …}
+reports: Doctrine\ORM\PersistentCollection {#2293 …}
+favourites: Doctrine\ORM\PersistentCollection {#2309 …}
+notifications: Doctrine\ORM\PersistentCollection {#2302 …}
-id: 267410
-bodyTs: "'dns':11 'get':5 'okey':1 'wrong':9"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/6030236"
+editedAt: null
+createdAt: DateTimeImmutable @1704033225 {#2232
date: 2023-12-31 15:33:45.0 +01:00
}
+"title": 267410
}
+body: """
Okey, I understand this is fundamental and when not working can cause the service to stop working. But I don’t yet know how does it break or is not easy to troubleshoot?\n
\n
Haven’t hosted anything big yet, so I always just had to check the records via “dig” command if they are served correctly.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 3
+score: 0
+lastActive: DateTime @1704078576 {#2316
date: 2024-01-01 04:09:36.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@scroll_responsibly@lemmy.sdf.org"
"@smileyhead@discuss.tchncs.de"
"@Inucune@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#2296 …}
+nested: Doctrine\ORM\PersistentCollection {#2281 …}
+votes: Doctrine\ORM\PersistentCollection {#2280 …}
+reports: Doctrine\ORM\PersistentCollection {#2278 …}
+favourites: Doctrine\ORM\PersistentCollection {#2279 …}
+notifications: Doctrine\ORM\PersistentCollection {#2277 …}
-id: 269099
-bodyTs: "'alway':42 'anyth':37 'big':38 'break':27 'caus':12 'check':46 'command':51 'correct':56 'dig':50 'easi':31 'fundament':6 'haven':34 'host':36 'know':23 'okey':1 'record':48 'serv':55 'servic':14 'stop':16 'troubleshoot':33 'understand':3 'via':49 'work':10,17 'yet':22,39"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/6041003"
+editedAt: null
+createdAt: DateTimeImmutable @1704078576 {#2292
date: 2024-01-01 04:09:36.0 +01:00
}
+"title": 269099
}
0 => App\Entity\EntryComment {#2229}
]
-id: 25939
-titleTs: "'bloat':3 'dns':2"
-bodyTs: null
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1704061883
+visibility: "visible "
+apId: "https://lemmy.sdf.org/post/9895543"
+editedAt: null
+createdAt: DateTimeImmutable @1703975483 {#2845
date: 2023-12-30 23:31:23.0 +01:00
}
+__isInitialized__: true
…2
} |
|
Show voter details
|
49 |
DENIED
|
ROLE_USER
|
null |
|
Show voter details
|
50 |
DENIED
|
moderate
|
App\Entity\EntryComment {#2294
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2228
+user: Proxies\__CG__\App\Entity\User {#2510 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: Proxies\__CG__\App\Entity\Image {#2880 …}
+domain: Proxies\__CG__\App\Entity\Domain {#2879 …}
+slug: "Is-DNS-Bloat-too"
+title: "Is DNS Bloat too?"
+url: "https://lemmy.sdf.org/pictrs/image/84ea7148-4c34-4f3a-91d2-cb1524a390f5.png"
+body: null
+type: "image"
+lang: "en"
+isOc: false
+hasEmbed: true
+commentCount: 78
+favouriteCount: 324
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1712209820 {#2857
date: 2024-04-04 07:50:20.0 +02:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#2878 …}
+votes: Doctrine\ORM\PersistentCollection {#2885 …}
+reports: Doctrine\ORM\PersistentCollection {#2881 …}
+favourites: Doctrine\ORM\PersistentCollection {#2884 …}
+notifications: Doctrine\ORM\PersistentCollection {#2887 …}
+badges: Doctrine\ORM\PersistentCollection {#2889 …}
+children: [
1 => App\Entity\EntryComment {#2294}
0 => App\Entity\EntryComment {#2229
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2228 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: null
+root: null
+body: "Okey, I don’t get it. What’s wrong with DNS?"
+lang: "en"
+isAdult: false
+favouriteCount: 28
+score: 0
+lastActive: DateTime @1710793640 {#2231
date: 2024-03-18 21:27:20.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@scroll_responsibly@lemmy.sdf.org"
]
+children: Doctrine\ORM\PersistentCollection {#2252 …}
+nested: Doctrine\ORM\PersistentCollection {#2189 …}
+votes: Doctrine\ORM\PersistentCollection {#2311 …}
+reports: Doctrine\ORM\PersistentCollection {#2293 …}
+favourites: Doctrine\ORM\PersistentCollection {#2309 …}
+notifications: Doctrine\ORM\PersistentCollection {#2302 …}
-id: 267410
-bodyTs: "'dns':11 'get':5 'okey':1 'wrong':9"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/6030236"
+editedAt: null
+createdAt: DateTimeImmutable @1704033225 {#2232
date: 2023-12-31 15:33:45.0 +01:00
}
+"title": 267410
}
]
-id: 25939
-titleTs: "'bloat':3 'dns':2"
-bodyTs: null
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1704061883
+visibility: "visible "
+apId: "https://lemmy.sdf.org/post/9895543"
+editedAt: null
+createdAt: DateTimeImmutable @1703975483 {#2845
date: 2023-12-30 23:31:23.0 +01:00
}
+__isInitialized__: true
…2
}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2290 …}
+root: App\Entity\EntryComment {#2229}
+body: """
Okey, I understand this is fundamental and when not working can cause the service to stop working. But I don’t yet know how does it break or is not easy to troubleshoot?\n
\n
Haven’t hosted anything big yet, so I always just had to check the records via “dig” command if they are served correctly.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 3
+score: 0
+lastActive: DateTime @1704078576 {#2316
date: 2024-01-01 04:09:36.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@scroll_responsibly@lemmy.sdf.org"
"@smileyhead@discuss.tchncs.de"
"@Inucune@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#2296 …}
+nested: Doctrine\ORM\PersistentCollection {#2281 …}
+votes: Doctrine\ORM\PersistentCollection {#2280 …}
+reports: Doctrine\ORM\PersistentCollection {#2278 …}
+favourites: Doctrine\ORM\PersistentCollection {#2279 …}
+notifications: Doctrine\ORM\PersistentCollection {#2277 …}
-id: 269099
-bodyTs: "'alway':42 'anyth':37 'big':38 'break':27 'caus':12 'check':46 'command':51 'correct':56 'dig':50 'easi':31 'fundament':6 'haven':34 'host':36 'know':23 'okey':1 'record':48 'serv':55 'servic':14 'stop':16 'troubleshoot':33 'understand':3 'via':49 'work':10,17 'yet':22,39"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/6041003"
+editedAt: null
+createdAt: DateTimeImmutable @1704078576 {#2292
date: 2024-01-01 04:09:36.0 +01:00
}
+"title": 269099
} |
|
Show voter details
|
51 |
DENIED
|
edit
|
App\Entity\EntryComment {#2294
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2228
+user: Proxies\__CG__\App\Entity\User {#2510 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: Proxies\__CG__\App\Entity\Image {#2880 …}
+domain: Proxies\__CG__\App\Entity\Domain {#2879 …}
+slug: "Is-DNS-Bloat-too"
+title: "Is DNS Bloat too?"
+url: "https://lemmy.sdf.org/pictrs/image/84ea7148-4c34-4f3a-91d2-cb1524a390f5.png"
+body: null
+type: "image"
+lang: "en"
+isOc: false
+hasEmbed: true
+commentCount: 78
+favouriteCount: 324
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1712209820 {#2857
date: 2024-04-04 07:50:20.0 +02:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#2878 …}
+votes: Doctrine\ORM\PersistentCollection {#2885 …}
+reports: Doctrine\ORM\PersistentCollection {#2881 …}
+favourites: Doctrine\ORM\PersistentCollection {#2884 …}
+notifications: Doctrine\ORM\PersistentCollection {#2887 …}
+badges: Doctrine\ORM\PersistentCollection {#2889 …}
+children: [
1 => App\Entity\EntryComment {#2294}
0 => App\Entity\EntryComment {#2229
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2228 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: null
+root: null
+body: "Okey, I don’t get it. What’s wrong with DNS?"
+lang: "en"
+isAdult: false
+favouriteCount: 28
+score: 0
+lastActive: DateTime @1710793640 {#2231
date: 2024-03-18 21:27:20.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@scroll_responsibly@lemmy.sdf.org"
]
+children: Doctrine\ORM\PersistentCollection {#2252 …}
+nested: Doctrine\ORM\PersistentCollection {#2189 …}
+votes: Doctrine\ORM\PersistentCollection {#2311 …}
+reports: Doctrine\ORM\PersistentCollection {#2293 …}
+favourites: Doctrine\ORM\PersistentCollection {#2309 …}
+notifications: Doctrine\ORM\PersistentCollection {#2302 …}
-id: 267410
-bodyTs: "'dns':11 'get':5 'okey':1 'wrong':9"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/6030236"
+editedAt: null
+createdAt: DateTimeImmutable @1704033225 {#2232
date: 2023-12-31 15:33:45.0 +01:00
}
+"title": 267410
}
]
-id: 25939
-titleTs: "'bloat':3 'dns':2"
-bodyTs: null
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1704061883
+visibility: "visible "
+apId: "https://lemmy.sdf.org/post/9895543"
+editedAt: null
+createdAt: DateTimeImmutable @1703975483 {#2845
date: 2023-12-30 23:31:23.0 +01:00
}
+__isInitialized__: true
…2
}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2290 …}
+root: App\Entity\EntryComment {#2229}
+body: """
Okey, I understand this is fundamental and when not working can cause the service to stop working. But I don’t yet know how does it break or is not easy to troubleshoot?\n
\n
Haven’t hosted anything big yet, so I always just had to check the records via “dig” command if they are served correctly.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 3
+score: 0
+lastActive: DateTime @1704078576 {#2316
date: 2024-01-01 04:09:36.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@scroll_responsibly@lemmy.sdf.org"
"@smileyhead@discuss.tchncs.de"
"@Inucune@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#2296 …}
+nested: Doctrine\ORM\PersistentCollection {#2281 …}
+votes: Doctrine\ORM\PersistentCollection {#2280 …}
+reports: Doctrine\ORM\PersistentCollection {#2278 …}
+favourites: Doctrine\ORM\PersistentCollection {#2279 …}
+notifications: Doctrine\ORM\PersistentCollection {#2277 …}
-id: 269099
-bodyTs: "'alway':42 'anyth':37 'big':38 'break':27 'caus':12 'check':46 'command':51 'correct':56 'dig':50 'easi':31 'fundament':6 'haven':34 'host':36 'know':23 'okey':1 'record':48 'serv':55 'servic':14 'stop':16 'troubleshoot':33 'understand':3 'via':49 'work':10,17 'yet':22,39"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/6041003"
+editedAt: null
+createdAt: DateTimeImmutable @1704078576 {#2292
date: 2024-01-01 04:09:36.0 +01:00
}
+"title": 269099
} |
|
Show voter details
|
52 |
DENIED
|
moderate
|
App\Entity\EntryComment {#2294
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2228
+user: Proxies\__CG__\App\Entity\User {#2510 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: Proxies\__CG__\App\Entity\Image {#2880 …}
+domain: Proxies\__CG__\App\Entity\Domain {#2879 …}
+slug: "Is-DNS-Bloat-too"
+title: "Is DNS Bloat too?"
+url: "https://lemmy.sdf.org/pictrs/image/84ea7148-4c34-4f3a-91d2-cb1524a390f5.png"
+body: null
+type: "image"
+lang: "en"
+isOc: false
+hasEmbed: true
+commentCount: 78
+favouriteCount: 324
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1712209820 {#2857
date: 2024-04-04 07:50:20.0 +02:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#2878 …}
+votes: Doctrine\ORM\PersistentCollection {#2885 …}
+reports: Doctrine\ORM\PersistentCollection {#2881 …}
+favourites: Doctrine\ORM\PersistentCollection {#2884 …}
+notifications: Doctrine\ORM\PersistentCollection {#2887 …}
+badges: Doctrine\ORM\PersistentCollection {#2889 …}
+children: [
1 => App\Entity\EntryComment {#2294}
0 => App\Entity\EntryComment {#2229
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2228 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: null
+root: null
+body: "Okey, I don’t get it. What’s wrong with DNS?"
+lang: "en"
+isAdult: false
+favouriteCount: 28
+score: 0
+lastActive: DateTime @1710793640 {#2231
date: 2024-03-18 21:27:20.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@scroll_responsibly@lemmy.sdf.org"
]
+children: Doctrine\ORM\PersistentCollection {#2252 …}
+nested: Doctrine\ORM\PersistentCollection {#2189 …}
+votes: Doctrine\ORM\PersistentCollection {#2311 …}
+reports: Doctrine\ORM\PersistentCollection {#2293 …}
+favourites: Doctrine\ORM\PersistentCollection {#2309 …}
+notifications: Doctrine\ORM\PersistentCollection {#2302 …}
-id: 267410
-bodyTs: "'dns':11 'get':5 'okey':1 'wrong':9"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/6030236"
+editedAt: null
+createdAt: DateTimeImmutable @1704033225 {#2232
date: 2023-12-31 15:33:45.0 +01:00
}
+"title": 267410
}
]
-id: 25939
-titleTs: "'bloat':3 'dns':2"
-bodyTs: null
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1704061883
+visibility: "visible "
+apId: "https://lemmy.sdf.org/post/9895543"
+editedAt: null
+createdAt: DateTimeImmutable @1703975483 {#2845
date: 2023-12-30 23:31:23.0 +01:00
}
+__isInitialized__: true
…2
}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2290 …}
+root: App\Entity\EntryComment {#2229}
+body: """
Okey, I understand this is fundamental and when not working can cause the service to stop working. But I don’t yet know how does it break or is not easy to troubleshoot?\n
\n
Haven’t hosted anything big yet, so I always just had to check the records via “dig” command if they are served correctly.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 3
+score: 0
+lastActive: DateTime @1704078576 {#2316
date: 2024-01-01 04:09:36.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@scroll_responsibly@lemmy.sdf.org"
"@smileyhead@discuss.tchncs.de"
"@Inucune@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#2296 …}
+nested: Doctrine\ORM\PersistentCollection {#2281 …}
+votes: Doctrine\ORM\PersistentCollection {#2280 …}
+reports: Doctrine\ORM\PersistentCollection {#2278 …}
+favourites: Doctrine\ORM\PersistentCollection {#2279 …}
+notifications: Doctrine\ORM\PersistentCollection {#2277 …}
-id: 269099
-bodyTs: "'alway':42 'anyth':37 'big':38 'break':27 'caus':12 'check':46 'command':51 'correct':56 'dig':50 'easi':31 'fundament':6 'haven':34 'host':36 'know':23 'okey':1 'record':48 'serv':55 'servic':14 'stop':16 'troubleshoot':33 'understand':3 'via':49 'work':10,17 'yet':22,39"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/6041003"
+editedAt: null
+createdAt: DateTimeImmutable @1704078576 {#2292
date: 2024-01-01 04:09:36.0 +01:00
}
+"title": 269099
} |
|
Show voter details
|
53 |
DENIED
|
ROLE_USER
|
null |
|
Show voter details
|
54 |
DENIED
|
moderate
|
App\Entity\EntryComment {#2229
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2228
+user: Proxies\__CG__\App\Entity\User {#2510 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: Proxies\__CG__\App\Entity\Image {#2880 …}
+domain: Proxies\__CG__\App\Entity\Domain {#2879 …}
+slug: "Is-DNS-Bloat-too"
+title: "Is DNS Bloat too?"
+url: "https://lemmy.sdf.org/pictrs/image/84ea7148-4c34-4f3a-91d2-cb1524a390f5.png"
+body: null
+type: "image"
+lang: "en"
+isOc: false
+hasEmbed: true
+commentCount: 78
+favouriteCount: 324
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1712209820 {#2857
date: 2024-04-04 07:50:20.0 +02:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#2878 …}
+votes: Doctrine\ORM\PersistentCollection {#2885 …}
+reports: Doctrine\ORM\PersistentCollection {#2881 …}
+favourites: Doctrine\ORM\PersistentCollection {#2884 …}
+notifications: Doctrine\ORM\PersistentCollection {#2887 …}
+badges: Doctrine\ORM\PersistentCollection {#2889 …}
+children: [
1 => App\Entity\EntryComment {#2294
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2228 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2290 …}
+root: App\Entity\EntryComment {#2229}
+body: """
Okey, I understand this is fundamental and when not working can cause the service to stop working. But I don’t yet know how does it break or is not easy to troubleshoot?\n
\n
Haven’t hosted anything big yet, so I always just had to check the records via “dig” command if they are served correctly.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 3
+score: 0
+lastActive: DateTime @1704078576 {#2316
date: 2024-01-01 04:09:36.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@scroll_responsibly@lemmy.sdf.org"
"@smileyhead@discuss.tchncs.de"
"@Inucune@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#2296 …}
+nested: Doctrine\ORM\PersistentCollection {#2281 …}
+votes: Doctrine\ORM\PersistentCollection {#2280 …}
+reports: Doctrine\ORM\PersistentCollection {#2278 …}
+favourites: Doctrine\ORM\PersistentCollection {#2279 …}
+notifications: Doctrine\ORM\PersistentCollection {#2277 …}
-id: 269099
-bodyTs: "'alway':42 'anyth':37 'big':38 'break':27 'caus':12 'check':46 'command':51 'correct':56 'dig':50 'easi':31 'fundament':6 'haven':34 'host':36 'know':23 'okey':1 'record':48 'serv':55 'servic':14 'stop':16 'troubleshoot':33 'understand':3 'via':49 'work':10,17 'yet':22,39"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/6041003"
+editedAt: null
+createdAt: DateTimeImmutable @1704078576 {#2292
date: 2024-01-01 04:09:36.0 +01:00
}
+"title": 269099
}
0 => App\Entity\EntryComment {#2229}
]
-id: 25939
-titleTs: "'bloat':3 'dns':2"
-bodyTs: null
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1704061883
+visibility: "visible "
+apId: "https://lemmy.sdf.org/post/9895543"
+editedAt: null
+createdAt: DateTimeImmutable @1703975483 {#2845
date: 2023-12-30 23:31:23.0 +01:00
}
+__isInitialized__: true
…2
}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: null
+root: null
+body: "Okey, I don’t get it. What’s wrong with DNS?"
+lang: "en"
+isAdult: false
+favouriteCount: 28
+score: 0
+lastActive: DateTime @1710793640 {#2231
date: 2024-03-18 21:27:20.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@scroll_responsibly@lemmy.sdf.org"
]
+children: Doctrine\ORM\PersistentCollection {#2252 …}
+nested: Doctrine\ORM\PersistentCollection {#2189 …}
+votes: Doctrine\ORM\PersistentCollection {#2311 …}
+reports: Doctrine\ORM\PersistentCollection {#2293 …}
+favourites: Doctrine\ORM\PersistentCollection {#2309 …}
+notifications: Doctrine\ORM\PersistentCollection {#2302 …}
-id: 267410
-bodyTs: "'dns':11 'get':5 'okey':1 'wrong':9"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/6030236"
+editedAt: null
+createdAt: DateTimeImmutable @1704033225 {#2232
date: 2023-12-31 15:33:45.0 +01:00
}
+"title": 267410
} |
|
Show voter details
|
55 |
DENIED
|
edit
|
App\Entity\EntryComment {#2229
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2228
+user: Proxies\__CG__\App\Entity\User {#2510 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: Proxies\__CG__\App\Entity\Image {#2880 …}
+domain: Proxies\__CG__\App\Entity\Domain {#2879 …}
+slug: "Is-DNS-Bloat-too"
+title: "Is DNS Bloat too?"
+url: "https://lemmy.sdf.org/pictrs/image/84ea7148-4c34-4f3a-91d2-cb1524a390f5.png"
+body: null
+type: "image"
+lang: "en"
+isOc: false
+hasEmbed: true
+commentCount: 78
+favouriteCount: 324
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1712209820 {#2857
date: 2024-04-04 07:50:20.0 +02:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#2878 …}
+votes: Doctrine\ORM\PersistentCollection {#2885 …}
+reports: Doctrine\ORM\PersistentCollection {#2881 …}
+favourites: Doctrine\ORM\PersistentCollection {#2884 …}
+notifications: Doctrine\ORM\PersistentCollection {#2887 …}
+badges: Doctrine\ORM\PersistentCollection {#2889 …}
+children: [
1 => App\Entity\EntryComment {#2294
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2228 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2290 …}
+root: App\Entity\EntryComment {#2229}
+body: """
Okey, I understand this is fundamental and when not working can cause the service to stop working. But I don’t yet know how does it break or is not easy to troubleshoot?\n
\n
Haven’t hosted anything big yet, so I always just had to check the records via “dig” command if they are served correctly.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 3
+score: 0
+lastActive: DateTime @1704078576 {#2316
date: 2024-01-01 04:09:36.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@scroll_responsibly@lemmy.sdf.org"
"@smileyhead@discuss.tchncs.de"
"@Inucune@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#2296 …}
+nested: Doctrine\ORM\PersistentCollection {#2281 …}
+votes: Doctrine\ORM\PersistentCollection {#2280 …}
+reports: Doctrine\ORM\PersistentCollection {#2278 …}
+favourites: Doctrine\ORM\PersistentCollection {#2279 …}
+notifications: Doctrine\ORM\PersistentCollection {#2277 …}
-id: 269099
-bodyTs: "'alway':42 'anyth':37 'big':38 'break':27 'caus':12 'check':46 'command':51 'correct':56 'dig':50 'easi':31 'fundament':6 'haven':34 'host':36 'know':23 'okey':1 'record':48 'serv':55 'servic':14 'stop':16 'troubleshoot':33 'understand':3 'via':49 'work':10,17 'yet':22,39"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/6041003"
+editedAt: null
+createdAt: DateTimeImmutable @1704078576 {#2292
date: 2024-01-01 04:09:36.0 +01:00
}
+"title": 269099
}
0 => App\Entity\EntryComment {#2229}
]
-id: 25939
-titleTs: "'bloat':3 'dns':2"
-bodyTs: null
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1704061883
+visibility: "visible "
+apId: "https://lemmy.sdf.org/post/9895543"
+editedAt: null
+createdAt: DateTimeImmutable @1703975483 {#2845
date: 2023-12-30 23:31:23.0 +01:00
}
+__isInitialized__: true
…2
}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: null
+root: null
+body: "Okey, I don’t get it. What’s wrong with DNS?"
+lang: "en"
+isAdult: false
+favouriteCount: 28
+score: 0
+lastActive: DateTime @1710793640 {#2231
date: 2024-03-18 21:27:20.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@scroll_responsibly@lemmy.sdf.org"
]
+children: Doctrine\ORM\PersistentCollection {#2252 …}
+nested: Doctrine\ORM\PersistentCollection {#2189 …}
+votes: Doctrine\ORM\PersistentCollection {#2311 …}
+reports: Doctrine\ORM\PersistentCollection {#2293 …}
+favourites: Doctrine\ORM\PersistentCollection {#2309 …}
+notifications: Doctrine\ORM\PersistentCollection {#2302 …}
-id: 267410
-bodyTs: "'dns':11 'get':5 'okey':1 'wrong':9"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/6030236"
+editedAt: null
+createdAt: DateTimeImmutable @1704033225 {#2232
date: 2023-12-31 15:33:45.0 +01:00
}
+"title": 267410
} |
|
Show voter details
|
56 |
DENIED
|
moderate
|
App\Entity\EntryComment {#2229
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2228
+user: Proxies\__CG__\App\Entity\User {#2510 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: Proxies\__CG__\App\Entity\Image {#2880 …}
+domain: Proxies\__CG__\App\Entity\Domain {#2879 …}
+slug: "Is-DNS-Bloat-too"
+title: "Is DNS Bloat too?"
+url: "https://lemmy.sdf.org/pictrs/image/84ea7148-4c34-4f3a-91d2-cb1524a390f5.png"
+body: null
+type: "image"
+lang: "en"
+isOc: false
+hasEmbed: true
+commentCount: 78
+favouriteCount: 324
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1712209820 {#2857
date: 2024-04-04 07:50:20.0 +02:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#2878 …}
+votes: Doctrine\ORM\PersistentCollection {#2885 …}
+reports: Doctrine\ORM\PersistentCollection {#2881 …}
+favourites: Doctrine\ORM\PersistentCollection {#2884 …}
+notifications: Doctrine\ORM\PersistentCollection {#2887 …}
+badges: Doctrine\ORM\PersistentCollection {#2889 …}
+children: [
1 => App\Entity\EntryComment {#2294
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2228 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2290 …}
+root: App\Entity\EntryComment {#2229}
+body: """
Okey, I understand this is fundamental and when not working can cause the service to stop working. But I don’t yet know how does it break or is not easy to troubleshoot?\n
\n
Haven’t hosted anything big yet, so I always just had to check the records via “dig” command if they are served correctly.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 3
+score: 0
+lastActive: DateTime @1704078576 {#2316
date: 2024-01-01 04:09:36.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@scroll_responsibly@lemmy.sdf.org"
"@smileyhead@discuss.tchncs.de"
"@Inucune@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#2296 …}
+nested: Doctrine\ORM\PersistentCollection {#2281 …}
+votes: Doctrine\ORM\PersistentCollection {#2280 …}
+reports: Doctrine\ORM\PersistentCollection {#2278 …}
+favourites: Doctrine\ORM\PersistentCollection {#2279 …}
+notifications: Doctrine\ORM\PersistentCollection {#2277 …}
-id: 269099
-bodyTs: "'alway':42 'anyth':37 'big':38 'break':27 'caus':12 'check':46 'command':51 'correct':56 'dig':50 'easi':31 'fundament':6 'haven':34 'host':36 'know':23 'okey':1 'record':48 'serv':55 'servic':14 'stop':16 'troubleshoot':33 'understand':3 'via':49 'work':10,17 'yet':22,39"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/6041003"
+editedAt: null
+createdAt: DateTimeImmutable @1704078576 {#2292
date: 2024-01-01 04:09:36.0 +01:00
}
+"title": 269099
}
0 => App\Entity\EntryComment {#2229}
]
-id: 25939
-titleTs: "'bloat':3 'dns':2"
-bodyTs: null
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1704061883
+visibility: "visible "
+apId: "https://lemmy.sdf.org/post/9895543"
+editedAt: null
+createdAt: DateTimeImmutable @1703975483 {#2845
date: 2023-12-30 23:31:23.0 +01:00
}
+__isInitialized__: true
…2
}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: null
+root: null
+body: "Okey, I don’t get it. What’s wrong with DNS?"
+lang: "en"
+isAdult: false
+favouriteCount: 28
+score: 0
+lastActive: DateTime @1710793640 {#2231
date: 2024-03-18 21:27:20.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@scroll_responsibly@lemmy.sdf.org"
]
+children: Doctrine\ORM\PersistentCollection {#2252 …}
+nested: Doctrine\ORM\PersistentCollection {#2189 …}
+votes: Doctrine\ORM\PersistentCollection {#2311 …}
+reports: Doctrine\ORM\PersistentCollection {#2293 …}
+favourites: Doctrine\ORM\PersistentCollection {#2309 …}
+notifications: Doctrine\ORM\PersistentCollection {#2302 …}
-id: 267410
-bodyTs: "'dns':11 'get':5 'okey':1 'wrong':9"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/6030236"
+editedAt: null
+createdAt: DateTimeImmutable @1704033225 {#2232
date: 2023-12-31 15:33:45.0 +01:00
}
+"title": 267410
} |
|
Show voter details
|
57 |
DENIED
|
ROLE_USER
|
null |
|
Show voter details
|
58 |
DENIED
|
moderate
|
Proxies\__CG__\App\Entity\Entry {#2086
+user: Proxies\__CG__\App\Entity\User {#2975 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: Proxies\__CG__\App\Entity\Image {#2977 …}
+domain: Proxies\__CG__\App\Entity\Domain {#2978 …}
+slug: "Ending-support-for-Windows-10-could-send-240-million-computers"
+title: "Ending support for Windows 10 could send 240 million computers to the landfill. Why not install Linux on them?"
+url: "https://gadgettendency.com/ending-support-for-windows-10-could-send-240-million-computers-to-the-landfill-a-stack-of-that-many-laptops-would-end-up-600-km-higher-than-the-moon/"
+body: "With support ending for Windows 10, the most popular desktop operating system in the world currently, possibly 240 million pcs may be sent to the landfill. This is mostly due to Windows 11’s exorbitant requirements. This will most likely result in many pcs being immediately outdated, and prone to viruses. GNU/Linux may be these computers’ only secure hope, what do you think?"
+type: "link"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 242
+favouriteCount: 748
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1711817575 {#2970
date: 2024-03-30 17:52:55.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#2979 …}
+votes: Doctrine\ORM\PersistentCollection {#2981 …}
+reports: Doctrine\ORM\PersistentCollection {#2983 …}
+favourites: Doctrine\ORM\PersistentCollection {#2985 …}
+notifications: Doctrine\ORM\PersistentCollection {#2987 …}
+badges: Doctrine\ORM\PersistentCollection {#2989 …}
+children: [
6 => App\Entity\EntryComment {#2091
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2090 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2090 …}
+body: """
But a ton of people **can** open a PDF and will be able to select an USB stick from menu and click next, next, next… It’s not completely different, you still use a mouse, a keyboard, you click on things, you get some feedback from it… When a new kind of mobile app arrive, I can see someone using no more than 5 apps in life having problems, but this doesn’t mean only them exists, we do not talk about switching everyone here. People change houses, how are they figuring out where is the toilet if doors have different color and are in different positions?\n
\n
Also a reason why any software like Microsoft Windows or Office should be banned from public education, especially primary schools.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703295334 {#2095
date: 2023-12-23 02:35:34.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@derf82@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#2093 …}
+nested: Doctrine\ORM\PersistentCollection {#2094 …}
+votes: Doctrine\ORM\PersistentCollection {#2140 …}
+reports: Doctrine\ORM\PersistentCollection {#2133 …}
+favourites: Doctrine\ORM\PersistentCollection {#2131 …}
+notifications: Doctrine\ORM\PersistentCollection {#2138 …}
-id: 247319
-bodyTs: "'5':64 'abl':13 'also':108 'app':54,65 'arriv':55 'ban':121 'chang':87 'click':22,39 'color':102 'complet':29 'differ':30,101,106 'doesn':72 'door':99 'educ':124 'especi':125 'everyon':84 'exist':77 'feedback':45 'figur':92 'get':43 'hous':88 'keyboard':37 'kind':51 'life':67 'like':114 'mean':74 'menu':20 'microsoft':115 'mobil':53 'mous':35 'new':50 'next':23,24,25 'offic':118 'open':7 'pdf':9 'peopl':5,86 'posit':107 'primari':126 'problem':69 'public':123 'reason':110 'school':127 'see':58 'select':15 'softwar':113 'someon':59 'stick':18 'still':32 'switch':83 'talk':81 'thing':41 'toilet':97 'ton':3 'usb':17 'use':33,60 'window':116"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5884378"
+editedAt: null
+createdAt: DateTimeImmutable @1703295334 {#2087
date: 2023-12-23 02:35:34.0 +01:00
}
+"title": 247319
}
5 => App\Entity\EntryComment {#2330
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2348 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2346 …}
+body: "Marketing is monopolized with Google and Facebook. Manufacturers and Microsoft won’t make one-click installs happen. Tech support would be chicken and egg problem. Ugh…"
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703295471 {#2345
date: 2023-12-23 02:37:51.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@BaldProphet@kbin.social"
"@anon5621@lemmy.ml"
]
+children: Doctrine\ORM\PersistentCollection {#2351 …}
+nested: Doctrine\ORM\PersistentCollection {#2332 …}
+votes: Doctrine\ORM\PersistentCollection {#2349 …}
+reports: Doctrine\ORM\PersistentCollection {#2141 …}
+favourites: Doctrine\ORM\PersistentCollection {#2164 …}
+notifications: Doctrine\ORM\PersistentCollection {#2314 …}
-id: 247320
-bodyTs: "'chicken':23 'click':16 'egg':25 'facebook':7 'googl':5 'happen':18 'instal':17 'make':13 'manufactur':8 'market':1 'microsoft':10 'monopol':3 'one':15 'one-click':14 'problem':26 'support':20 'tech':19 'ugh':27 'won':11 'would':21"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5884407"
+editedAt: null
+createdAt: DateTimeImmutable @1703295471 {#2350
date: 2023-12-23 02:37:51.0 +01:00
}
+"title": 247320
}
4 => App\Entity\EntryComment {#2325
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2327 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2346 …}
+body: """
Your DAW and audio interface doesn’t support Linux.*\n
\n
Yeah, it’s a bummer, but you are in a small portion of effected computer users, still others can benefit from longer support.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 1
+score: 0
+lastActive: DateTime @1703295692 {#2328
date: 2023-12-23 02:41:32.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@BaldProphet@kbin.social"
"@Transcendant@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#2329 …}
+nested: Doctrine\ORM\PersistentCollection {#2323 …}
+votes: Doctrine\ORM\PersistentCollection {#2300 …}
+reports: Doctrine\ORM\PersistentCollection {#2340 …}
+favourites: Doctrine\ORM\PersistentCollection {#2342 …}
+notifications: Doctrine\ORM\PersistentCollection {#2343 …}
-id: 247321
-bodyTs: "'audio':4 'benefit':29 'bummer':14 'comput':24 'daw':2 'doesn':6 'effect':23 'interfac':5 'linux':9 'longer':31 'other':27 'portion':21 'small':20 'still':26 'support':8,32 'user':25 'yeah':10"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5884453"
+editedAt: DateTimeImmutable @1707175705 {#2326
date: 2024-02-06 00:28:25.0 +01:00
}
+createdAt: DateTimeImmutable @1703295692 {#2191
date: 2023-12-23 02:41:32.0 +01:00
}
+"title": 247321
}
3 => App\Entity\EntryComment {#2338
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2159 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2346 …}
+body: """
There are many many outdated patterns how to do things in Windows that are cemented in public knowledge. Running random executable installers from the web giving them superuser permissions is I thing the most popular one.\n
\n
How to share all user settings between system installations? How to change the logo in the desktop bar? How to add a directory to an applications bar? How to change system build-in keyboard shortcut? How to reinstall just the system keeping the programs? How to make a file run on a shortcut? Those are things I use daily, that are impossible or need some hacky programs to work on anything other than Linux, I would die if I had to switch back now.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703296199 {#2335
date: 2023-12-23 02:49:59.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@BaldProphet@kbin.social"
"@Wermhatswormhat@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#2143 …}
+nested: Doctrine\ORM\PersistentCollection {#2136 …}
+votes: Doctrine\ORM\PersistentCollection {#2073 …}
+reports: Doctrine\ORM\PersistentCollection {#2072 …}
+favourites: Doctrine\ORM\PersistentCollection {#2065 …}
+notifications: Doctrine\ORM\PersistentCollection {#2066 …}
-id: 247322
-bodyTs: "'add':57 'anyth':108 'applic':62 'back':120 'bar':54,63 'build':69 'build-in':68 'cement':15 'chang':48,66 'daili':96 'desktop':53 'die':114 'directori':59 'execut':21 'file':86 'give':26 'hacki':103 'imposs':99 'instal':22,45 'keep':79 'keyboard':71 'knowledg':18 'linux':111 'logo':50 'make':84 'mani':3,4 'need':101 'one':36 'outdat':5 'pattern':6 'permiss':29 'popular':35 'program':81,104 'public':17 'random':20 'reinstal':75 'run':19,87 'set':42 'share':39 'shortcut':72,90 'superus':28 'switch':119 'system':44,67,78 'thing':10,32,93 'use':95 'user':41 'web':25 'window':12 'work':106 'would':113"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5884570"
+editedAt: null
+createdAt: DateTimeImmutable @1703296199 {#2339
date: 2023-12-23 02:49:59.0 +01:00
}
+"title": 247322
}
2 => App\Entity\EntryComment {#2049
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2048 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2346 …}
+body: """
Use whatever is popular and has a cool logo. Distro is basically a software library, preinstalled programs and default settings. You can transform any distro to behave like the other one.\n
\n
KDE, Gnome, XFCE…? Which is looking better for you or which one was default. Init system? Which was the default. X11/Wayland? Wayland. Go with X11 only if Wayland is having problems with your graphics card.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703296544 {#2067
date: 2023-12-23 02:55:44.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@BaldProphet@kbin.social"
"@Deebster@programming.dev"
]
+children: Doctrine\ORM\PersistentCollection {#2051 …}
+nested: Doctrine\ORM\PersistentCollection {#2059 …}
+votes: Doctrine\ORM\PersistentCollection {#2047 …}
+reports: Doctrine\ORM\PersistentCollection {#2057 …}
+favourites: Doctrine\ORM\PersistentCollection {#2055 …}
+notifications: Doctrine\ORM\PersistentCollection {#2054 …}
-id: 247323
-bodyTs: "'basic':12 'behav':27 'better':38 'card':66 'cool':8 'default':19,45,51 'distro':10,25 'gnome':33 'go':54 'graphic':65 'init':46 'kde':32 'librari':15 'like':28 'logo':9 'look':37 'one':31,43 'popular':4 'preinstal':16 'problem':62 'program':17 'set':20 'softwar':14 'system':47 'transform':23 'use':1 'wayland':53,59 'whatev':2 'x11':56 'x11/wayland':52 'xfce':34"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5884646"
+editedAt: null
+createdAt: DateTimeImmutable @1703296544 {#2070
date: 2023-12-23 02:55:44.0 +01:00
}
+"title": 247323
}
1 => App\Entity\EntryComment {#2165
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2041 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2041 …}
+body: "For 240 million devices I think there would be some Linux can “cut it”. And second, no? My computer is 13+ years old and I am using it with basically no lagging, developing a couple of apps. Truth is all medium-tier computers made today and in recent years have reached the point where for normal use (that is daily tasks like communication, content consumption and calculations) only limiting factor for daily driver is software optimization."
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703296770 {#2053
date: 2023-12-23 02:59:30.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@TCB13@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#2104 …}
+nested: Doctrine\ORM\PersistentCollection {#2099 …}
+votes: Doctrine\ORM\PersistentCollection {#2108 …}
+reports: Doctrine\ORM\PersistentCollection {#2101 …}
+favourites: Doctrine\ORM\PersistentCollection {#2109 …}
+notifications: Doctrine\ORM\PersistentCollection {#2106 …}
-id: 247324
-bodyTs: "'13':21 '240':2 'app':37 'basic':30 'calcul':68 'communic':64 'comput':19,44 'consumpt':66 'content':65 'coupl':35 'cut':13 'daili':61,73 'develop':33 'devic':4 'driver':74 'factor':71 'lag':32 'like':63 'limit':70 'linux':11 'made':45 'medium':42 'medium-ti':41 'million':3 'normal':57 'old':23 'optim':77 'point':54 'reach':52 'recent':49 'second':16 'softwar':76 'task':62 'think':6 'tier':43 'today':46 'truth':38 'use':27,58 'would':8 'year':22,50"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5884688"
+editedAt: null
+createdAt: DateTimeImmutable @1703296770 {#2125
date: 2023-12-23 02:59:30.0 +01:00
}
+"title": 247324
}
0 => App\Entity\EntryComment {#2114
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2118 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2346 …}
+body: """
And this is a huge barrier for a lot of users, a massive roadblock. But the article talk about houndres of millions of computers, my point was just about that even if millions like you cannot switch, still in this statistics are millions that can especially non-professional that do not make audio or video, but that are going to throw away a working machine.\n
\n
I feel like you might feel being personally directed by my comment, because of your respond with “YOU’re not compatible”. Maybe it was bad wording, sorry. What I ment was that it can be frustrating to see “Linux doesn’t support …” when actually it has everything needed to support this software and the burden to make it available is on the software developer. Like saying that USB-C doesn’t support iPhone 13. Lack of it still hurts the Linux side anyway, but I just don’t want misconsaptions about which side should make a port happen.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703387471 {#2107
date: 2023-12-24 04:11:11.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@BaldProphet@kbin.social"
"@Transcendant@lemmy.world"
"@smileyhead@discuss.tchncs.de"
]
+children: Doctrine\ORM\PersistentCollection {#2117 …}
+nested: Doctrine\ORM\PersistentCollection {#2122 …}
+votes: Doctrine\ORM\PersistentCollection {#2113 …}
+reports: Doctrine\ORM\PersistentCollection {#2119 …}
+favourites: Doctrine\ORM\PersistentCollection {#2120 …}
+notifications: Doctrine\ORM\PersistentCollection {#2160 …}
-id: 247694
-bodyTs: "'13':141 'actual':110 'anyway':150 'articl':17 'audio':54 'avail':125 'away':63 'bad':91 'barrier':6 'burden':121 'c':136 'cannot':36 'comment':78 'compat':87 'comput':24 'develop':130 'direct':75 'doesn':106,137 'especi':46 'even':31 'everyth':113 'feel':68,72 'frustrat':102 'go':60 'happen':165 'houndr':20 'huge':5 'hurt':146 'iphon':140 'lack':142 'like':34,69,131 'linux':105,148 'lot':9 'machin':66 'make':53,123,162 'massiv':13 'mayb':88 'ment':96 'might':71 'million':22,33,43 'misconsapt':157 'need':114 'non':48 'non-profession':47 'person':74 'point':26 'port':164 'profession':49 're':85 'respond':82 'roadblock':14 'say':132 'see':104 'side':149,160 'softwar':118,129 'sorri':93 'statist':41 'still':38,145 'support':108,116,139 'switch':37 'talk':18 'throw':62 'usb':135 'usb-c':134 'user':11 'video':56 'want':156 'word':92 'work':65"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5904342"
+editedAt: DateTimeImmutable @1707537983 {#2112
date: 2024-02-10 05:06:23.0 +01:00
}
+createdAt: DateTimeImmutable @1703387471 {#2124
date: 2023-12-24 04:11:11.0 +01:00
}
+"title": 247694
}
]
-id: 24104
-titleTs: "'10':5 '240':8 'comput':10 'could':6 'end':1 'instal':16 'landfil':13 'linux':17 'million':9 'send':7 'support':2 'window':4"
-bodyTs: "'10':6 '11':33 '240':18 'comput':56 'current':16 'desktop':10 'due':30 'end':3 'exorbit':35 'gnu/linux':52 'hope':59 'immedi':46 'landfil':26 'like':40 'mani':43 'may':21,53 'million':19 'most':29 'oper':11 'outdat':47 'pcs':20,44 'popular':9 'possibl':17 'prone':49 'requir':36 'result':41 'secur':58 'sent':23 'support':2 'system':12 'think':63 'virus':51 'window':5,32 'world':15"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1703366140
+visibility: "visible "
+apId: "https://lemmy.world/post/9873158"
+editedAt: DateTimeImmutable @1706576554 {#2956
date: 2024-01-30 02:02:34.0 +01:00
}
+createdAt: DateTimeImmutable @1703279740 {#2935
date: 2023-12-22 22:15:40.0 +01:00
}
+__isInitialized__: true
…2
} |
|
Show voter details
|
59 |
DENIED
|
edit
|
Proxies\__CG__\App\Entity\Entry {#2086
+user: Proxies\__CG__\App\Entity\User {#2975 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: Proxies\__CG__\App\Entity\Image {#2977 …}
+domain: Proxies\__CG__\App\Entity\Domain {#2978 …}
+slug: "Ending-support-for-Windows-10-could-send-240-million-computers"
+title: "Ending support for Windows 10 could send 240 million computers to the landfill. Why not install Linux on them?"
+url: "https://gadgettendency.com/ending-support-for-windows-10-could-send-240-million-computers-to-the-landfill-a-stack-of-that-many-laptops-would-end-up-600-km-higher-than-the-moon/"
+body: "With support ending for Windows 10, the most popular desktop operating system in the world currently, possibly 240 million pcs may be sent to the landfill. This is mostly due to Windows 11’s exorbitant requirements. This will most likely result in many pcs being immediately outdated, and prone to viruses. GNU/Linux may be these computers’ only secure hope, what do you think?"
+type: "link"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 242
+favouriteCount: 748
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1711817575 {#2970
date: 2024-03-30 17:52:55.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#2979 …}
+votes: Doctrine\ORM\PersistentCollection {#2981 …}
+reports: Doctrine\ORM\PersistentCollection {#2983 …}
+favourites: Doctrine\ORM\PersistentCollection {#2985 …}
+notifications: Doctrine\ORM\PersistentCollection {#2987 …}
+badges: Doctrine\ORM\PersistentCollection {#2989 …}
+children: [
6 => App\Entity\EntryComment {#2091
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2090 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2090 …}
+body: """
But a ton of people **can** open a PDF and will be able to select an USB stick from menu and click next, next, next… It’s not completely different, you still use a mouse, a keyboard, you click on things, you get some feedback from it… When a new kind of mobile app arrive, I can see someone using no more than 5 apps in life having problems, but this doesn’t mean only them exists, we do not talk about switching everyone here. People change houses, how are they figuring out where is the toilet if doors have different color and are in different positions?\n
\n
Also a reason why any software like Microsoft Windows or Office should be banned from public education, especially primary schools.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703295334 {#2095
date: 2023-12-23 02:35:34.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@derf82@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#2093 …}
+nested: Doctrine\ORM\PersistentCollection {#2094 …}
+votes: Doctrine\ORM\PersistentCollection {#2140 …}
+reports: Doctrine\ORM\PersistentCollection {#2133 …}
+favourites: Doctrine\ORM\PersistentCollection {#2131 …}
+notifications: Doctrine\ORM\PersistentCollection {#2138 …}
-id: 247319
-bodyTs: "'5':64 'abl':13 'also':108 'app':54,65 'arriv':55 'ban':121 'chang':87 'click':22,39 'color':102 'complet':29 'differ':30,101,106 'doesn':72 'door':99 'educ':124 'especi':125 'everyon':84 'exist':77 'feedback':45 'figur':92 'get':43 'hous':88 'keyboard':37 'kind':51 'life':67 'like':114 'mean':74 'menu':20 'microsoft':115 'mobil':53 'mous':35 'new':50 'next':23,24,25 'offic':118 'open':7 'pdf':9 'peopl':5,86 'posit':107 'primari':126 'problem':69 'public':123 'reason':110 'school':127 'see':58 'select':15 'softwar':113 'someon':59 'stick':18 'still':32 'switch':83 'talk':81 'thing':41 'toilet':97 'ton':3 'usb':17 'use':33,60 'window':116"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5884378"
+editedAt: null
+createdAt: DateTimeImmutable @1703295334 {#2087
date: 2023-12-23 02:35:34.0 +01:00
}
+"title": 247319
}
5 => App\Entity\EntryComment {#2330
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2348 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2346 …}
+body: "Marketing is monopolized with Google and Facebook. Manufacturers and Microsoft won’t make one-click installs happen. Tech support would be chicken and egg problem. Ugh…"
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703295471 {#2345
date: 2023-12-23 02:37:51.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@BaldProphet@kbin.social"
"@anon5621@lemmy.ml"
]
+children: Doctrine\ORM\PersistentCollection {#2351 …}
+nested: Doctrine\ORM\PersistentCollection {#2332 …}
+votes: Doctrine\ORM\PersistentCollection {#2349 …}
+reports: Doctrine\ORM\PersistentCollection {#2141 …}
+favourites: Doctrine\ORM\PersistentCollection {#2164 …}
+notifications: Doctrine\ORM\PersistentCollection {#2314 …}
-id: 247320
-bodyTs: "'chicken':23 'click':16 'egg':25 'facebook':7 'googl':5 'happen':18 'instal':17 'make':13 'manufactur':8 'market':1 'microsoft':10 'monopol':3 'one':15 'one-click':14 'problem':26 'support':20 'tech':19 'ugh':27 'won':11 'would':21"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5884407"
+editedAt: null
+createdAt: DateTimeImmutable @1703295471 {#2350
date: 2023-12-23 02:37:51.0 +01:00
}
+"title": 247320
}
4 => App\Entity\EntryComment {#2325
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2327 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2346 …}
+body: """
Your DAW and audio interface doesn’t support Linux.*\n
\n
Yeah, it’s a bummer, but you are in a small portion of effected computer users, still others can benefit from longer support.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 1
+score: 0
+lastActive: DateTime @1703295692 {#2328
date: 2023-12-23 02:41:32.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@BaldProphet@kbin.social"
"@Transcendant@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#2329 …}
+nested: Doctrine\ORM\PersistentCollection {#2323 …}
+votes: Doctrine\ORM\PersistentCollection {#2300 …}
+reports: Doctrine\ORM\PersistentCollection {#2340 …}
+favourites: Doctrine\ORM\PersistentCollection {#2342 …}
+notifications: Doctrine\ORM\PersistentCollection {#2343 …}
-id: 247321
-bodyTs: "'audio':4 'benefit':29 'bummer':14 'comput':24 'daw':2 'doesn':6 'effect':23 'interfac':5 'linux':9 'longer':31 'other':27 'portion':21 'small':20 'still':26 'support':8,32 'user':25 'yeah':10"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5884453"
+editedAt: DateTimeImmutable @1707175705 {#2326
date: 2024-02-06 00:28:25.0 +01:00
}
+createdAt: DateTimeImmutable @1703295692 {#2191
date: 2023-12-23 02:41:32.0 +01:00
}
+"title": 247321
}
3 => App\Entity\EntryComment {#2338
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2159 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2346 …}
+body: """
There are many many outdated patterns how to do things in Windows that are cemented in public knowledge. Running random executable installers from the web giving them superuser permissions is I thing the most popular one.\n
\n
How to share all user settings between system installations? How to change the logo in the desktop bar? How to add a directory to an applications bar? How to change system build-in keyboard shortcut? How to reinstall just the system keeping the programs? How to make a file run on a shortcut? Those are things I use daily, that are impossible or need some hacky programs to work on anything other than Linux, I would die if I had to switch back now.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703296199 {#2335
date: 2023-12-23 02:49:59.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@BaldProphet@kbin.social"
"@Wermhatswormhat@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#2143 …}
+nested: Doctrine\ORM\PersistentCollection {#2136 …}
+votes: Doctrine\ORM\PersistentCollection {#2073 …}
+reports: Doctrine\ORM\PersistentCollection {#2072 …}
+favourites: Doctrine\ORM\PersistentCollection {#2065 …}
+notifications: Doctrine\ORM\PersistentCollection {#2066 …}
-id: 247322
-bodyTs: "'add':57 'anyth':108 'applic':62 'back':120 'bar':54,63 'build':69 'build-in':68 'cement':15 'chang':48,66 'daili':96 'desktop':53 'die':114 'directori':59 'execut':21 'file':86 'give':26 'hacki':103 'imposs':99 'instal':22,45 'keep':79 'keyboard':71 'knowledg':18 'linux':111 'logo':50 'make':84 'mani':3,4 'need':101 'one':36 'outdat':5 'pattern':6 'permiss':29 'popular':35 'program':81,104 'public':17 'random':20 'reinstal':75 'run':19,87 'set':42 'share':39 'shortcut':72,90 'superus':28 'switch':119 'system':44,67,78 'thing':10,32,93 'use':95 'user':41 'web':25 'window':12 'work':106 'would':113"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5884570"
+editedAt: null
+createdAt: DateTimeImmutable @1703296199 {#2339
date: 2023-12-23 02:49:59.0 +01:00
}
+"title": 247322
}
2 => App\Entity\EntryComment {#2049
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2048 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2346 …}
+body: """
Use whatever is popular and has a cool logo. Distro is basically a software library, preinstalled programs and default settings. You can transform any distro to behave like the other one.\n
\n
KDE, Gnome, XFCE…? Which is looking better for you or which one was default. Init system? Which was the default. X11/Wayland? Wayland. Go with X11 only if Wayland is having problems with your graphics card.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703296544 {#2067
date: 2023-12-23 02:55:44.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@BaldProphet@kbin.social"
"@Deebster@programming.dev"
]
+children: Doctrine\ORM\PersistentCollection {#2051 …}
+nested: Doctrine\ORM\PersistentCollection {#2059 …}
+votes: Doctrine\ORM\PersistentCollection {#2047 …}
+reports: Doctrine\ORM\PersistentCollection {#2057 …}
+favourites: Doctrine\ORM\PersistentCollection {#2055 …}
+notifications: Doctrine\ORM\PersistentCollection {#2054 …}
-id: 247323
-bodyTs: "'basic':12 'behav':27 'better':38 'card':66 'cool':8 'default':19,45,51 'distro':10,25 'gnome':33 'go':54 'graphic':65 'init':46 'kde':32 'librari':15 'like':28 'logo':9 'look':37 'one':31,43 'popular':4 'preinstal':16 'problem':62 'program':17 'set':20 'softwar':14 'system':47 'transform':23 'use':1 'wayland':53,59 'whatev':2 'x11':56 'x11/wayland':52 'xfce':34"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5884646"
+editedAt: null
+createdAt: DateTimeImmutable @1703296544 {#2070
date: 2023-12-23 02:55:44.0 +01:00
}
+"title": 247323
}
1 => App\Entity\EntryComment {#2165
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2041 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2041 …}
+body: "For 240 million devices I think there would be some Linux can “cut it”. And second, no? My computer is 13+ years old and I am using it with basically no lagging, developing a couple of apps. Truth is all medium-tier computers made today and in recent years have reached the point where for normal use (that is daily tasks like communication, content consumption and calculations) only limiting factor for daily driver is software optimization."
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703296770 {#2053
date: 2023-12-23 02:59:30.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@TCB13@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#2104 …}
+nested: Doctrine\ORM\PersistentCollection {#2099 …}
+votes: Doctrine\ORM\PersistentCollection {#2108 …}
+reports: Doctrine\ORM\PersistentCollection {#2101 …}
+favourites: Doctrine\ORM\PersistentCollection {#2109 …}
+notifications: Doctrine\ORM\PersistentCollection {#2106 …}
-id: 247324
-bodyTs: "'13':21 '240':2 'app':37 'basic':30 'calcul':68 'communic':64 'comput':19,44 'consumpt':66 'content':65 'coupl':35 'cut':13 'daili':61,73 'develop':33 'devic':4 'driver':74 'factor':71 'lag':32 'like':63 'limit':70 'linux':11 'made':45 'medium':42 'medium-ti':41 'million':3 'normal':57 'old':23 'optim':77 'point':54 'reach':52 'recent':49 'second':16 'softwar':76 'task':62 'think':6 'tier':43 'today':46 'truth':38 'use':27,58 'would':8 'year':22,50"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5884688"
+editedAt: null
+createdAt: DateTimeImmutable @1703296770 {#2125
date: 2023-12-23 02:59:30.0 +01:00
}
+"title": 247324
}
0 => App\Entity\EntryComment {#2114
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2118 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2346 …}
+body: """
And this is a huge barrier for a lot of users, a massive roadblock. But the article talk about houndres of millions of computers, my point was just about that even if millions like you cannot switch, still in this statistics are millions that can especially non-professional that do not make audio or video, but that are going to throw away a working machine.\n
\n
I feel like you might feel being personally directed by my comment, because of your respond with “YOU’re not compatible”. Maybe it was bad wording, sorry. What I ment was that it can be frustrating to see “Linux doesn’t support …” when actually it has everything needed to support this software and the burden to make it available is on the software developer. Like saying that USB-C doesn’t support iPhone 13. Lack of it still hurts the Linux side anyway, but I just don’t want misconsaptions about which side should make a port happen.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703387471 {#2107
date: 2023-12-24 04:11:11.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@BaldProphet@kbin.social"
"@Transcendant@lemmy.world"
"@smileyhead@discuss.tchncs.de"
]
+children: Doctrine\ORM\PersistentCollection {#2117 …}
+nested: Doctrine\ORM\PersistentCollection {#2122 …}
+votes: Doctrine\ORM\PersistentCollection {#2113 …}
+reports: Doctrine\ORM\PersistentCollection {#2119 …}
+favourites: Doctrine\ORM\PersistentCollection {#2120 …}
+notifications: Doctrine\ORM\PersistentCollection {#2160 …}
-id: 247694
-bodyTs: "'13':141 'actual':110 'anyway':150 'articl':17 'audio':54 'avail':125 'away':63 'bad':91 'barrier':6 'burden':121 'c':136 'cannot':36 'comment':78 'compat':87 'comput':24 'develop':130 'direct':75 'doesn':106,137 'especi':46 'even':31 'everyth':113 'feel':68,72 'frustrat':102 'go':60 'happen':165 'houndr':20 'huge':5 'hurt':146 'iphon':140 'lack':142 'like':34,69,131 'linux':105,148 'lot':9 'machin':66 'make':53,123,162 'massiv':13 'mayb':88 'ment':96 'might':71 'million':22,33,43 'misconsapt':157 'need':114 'non':48 'non-profession':47 'person':74 'point':26 'port':164 'profession':49 're':85 'respond':82 'roadblock':14 'say':132 'see':104 'side':149,160 'softwar':118,129 'sorri':93 'statist':41 'still':38,145 'support':108,116,139 'switch':37 'talk':18 'throw':62 'usb':135 'usb-c':134 'user':11 'video':56 'want':156 'word':92 'work':65"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5904342"
+editedAt: DateTimeImmutable @1707537983 {#2112
date: 2024-02-10 05:06:23.0 +01:00
}
+createdAt: DateTimeImmutable @1703387471 {#2124
date: 2023-12-24 04:11:11.0 +01:00
}
+"title": 247694
}
]
-id: 24104
-titleTs: "'10':5 '240':8 'comput':10 'could':6 'end':1 'instal':16 'landfil':13 'linux':17 'million':9 'send':7 'support':2 'window':4"
-bodyTs: "'10':6 '11':33 '240':18 'comput':56 'current':16 'desktop':10 'due':30 'end':3 'exorbit':35 'gnu/linux':52 'hope':59 'immedi':46 'landfil':26 'like':40 'mani':43 'may':21,53 'million':19 'most':29 'oper':11 'outdat':47 'pcs':20,44 'popular':9 'possibl':17 'prone':49 'requir':36 'result':41 'secur':58 'sent':23 'support':2 'system':12 'think':63 'virus':51 'window':5,32 'world':15"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1703366140
+visibility: "visible "
+apId: "https://lemmy.world/post/9873158"
+editedAt: DateTimeImmutable @1706576554 {#2956
date: 2024-01-30 02:02:34.0 +01:00
}
+createdAt: DateTimeImmutable @1703279740 {#2935
date: 2023-12-22 22:15:40.0 +01:00
}
+__isInitialized__: true
…2
} |
|
Show voter details
|
60 |
DENIED
|
moderate
|
Proxies\__CG__\App\Entity\Entry {#2086
+user: Proxies\__CG__\App\Entity\User {#2975 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: Proxies\__CG__\App\Entity\Image {#2977 …}
+domain: Proxies\__CG__\App\Entity\Domain {#2978 …}
+slug: "Ending-support-for-Windows-10-could-send-240-million-computers"
+title: "Ending support for Windows 10 could send 240 million computers to the landfill. Why not install Linux on them?"
+url: "https://gadgettendency.com/ending-support-for-windows-10-could-send-240-million-computers-to-the-landfill-a-stack-of-that-many-laptops-would-end-up-600-km-higher-than-the-moon/"
+body: "With support ending for Windows 10, the most popular desktop operating system in the world currently, possibly 240 million pcs may be sent to the landfill. This is mostly due to Windows 11’s exorbitant requirements. This will most likely result in many pcs being immediately outdated, and prone to viruses. GNU/Linux may be these computers’ only secure hope, what do you think?"
+type: "link"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 242
+favouriteCount: 748
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1711817575 {#2970
date: 2024-03-30 17:52:55.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#2979 …}
+votes: Doctrine\ORM\PersistentCollection {#2981 …}
+reports: Doctrine\ORM\PersistentCollection {#2983 …}
+favourites: Doctrine\ORM\PersistentCollection {#2985 …}
+notifications: Doctrine\ORM\PersistentCollection {#2987 …}
+badges: Doctrine\ORM\PersistentCollection {#2989 …}
+children: [
6 => App\Entity\EntryComment {#2091
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2090 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2090 …}
+body: """
But a ton of people **can** open a PDF and will be able to select an USB stick from menu and click next, next, next… It’s not completely different, you still use a mouse, a keyboard, you click on things, you get some feedback from it… When a new kind of mobile app arrive, I can see someone using no more than 5 apps in life having problems, but this doesn’t mean only them exists, we do not talk about switching everyone here. People change houses, how are they figuring out where is the toilet if doors have different color and are in different positions?\n
\n
Also a reason why any software like Microsoft Windows or Office should be banned from public education, especially primary schools.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703295334 {#2095
date: 2023-12-23 02:35:34.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@derf82@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#2093 …}
+nested: Doctrine\ORM\PersistentCollection {#2094 …}
+votes: Doctrine\ORM\PersistentCollection {#2140 …}
+reports: Doctrine\ORM\PersistentCollection {#2133 …}
+favourites: Doctrine\ORM\PersistentCollection {#2131 …}
+notifications: Doctrine\ORM\PersistentCollection {#2138 …}
-id: 247319
-bodyTs: "'5':64 'abl':13 'also':108 'app':54,65 'arriv':55 'ban':121 'chang':87 'click':22,39 'color':102 'complet':29 'differ':30,101,106 'doesn':72 'door':99 'educ':124 'especi':125 'everyon':84 'exist':77 'feedback':45 'figur':92 'get':43 'hous':88 'keyboard':37 'kind':51 'life':67 'like':114 'mean':74 'menu':20 'microsoft':115 'mobil':53 'mous':35 'new':50 'next':23,24,25 'offic':118 'open':7 'pdf':9 'peopl':5,86 'posit':107 'primari':126 'problem':69 'public':123 'reason':110 'school':127 'see':58 'select':15 'softwar':113 'someon':59 'stick':18 'still':32 'switch':83 'talk':81 'thing':41 'toilet':97 'ton':3 'usb':17 'use':33,60 'window':116"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5884378"
+editedAt: null
+createdAt: DateTimeImmutable @1703295334 {#2087
date: 2023-12-23 02:35:34.0 +01:00
}
+"title": 247319
}
5 => App\Entity\EntryComment {#2330
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2348 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2346 …}
+body: "Marketing is monopolized with Google and Facebook. Manufacturers and Microsoft won’t make one-click installs happen. Tech support would be chicken and egg problem. Ugh…"
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703295471 {#2345
date: 2023-12-23 02:37:51.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@BaldProphet@kbin.social"
"@anon5621@lemmy.ml"
]
+children: Doctrine\ORM\PersistentCollection {#2351 …}
+nested: Doctrine\ORM\PersistentCollection {#2332 …}
+votes: Doctrine\ORM\PersistentCollection {#2349 …}
+reports: Doctrine\ORM\PersistentCollection {#2141 …}
+favourites: Doctrine\ORM\PersistentCollection {#2164 …}
+notifications: Doctrine\ORM\PersistentCollection {#2314 …}
-id: 247320
-bodyTs: "'chicken':23 'click':16 'egg':25 'facebook':7 'googl':5 'happen':18 'instal':17 'make':13 'manufactur':8 'market':1 'microsoft':10 'monopol':3 'one':15 'one-click':14 'problem':26 'support':20 'tech':19 'ugh':27 'won':11 'would':21"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5884407"
+editedAt: null
+createdAt: DateTimeImmutable @1703295471 {#2350
date: 2023-12-23 02:37:51.0 +01:00
}
+"title": 247320
}
4 => App\Entity\EntryComment {#2325
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2327 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2346 …}
+body: """
Your DAW and audio interface doesn’t support Linux.*\n
\n
Yeah, it’s a bummer, but you are in a small portion of effected computer users, still others can benefit from longer support.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 1
+score: 0
+lastActive: DateTime @1703295692 {#2328
date: 2023-12-23 02:41:32.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@BaldProphet@kbin.social"
"@Transcendant@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#2329 …}
+nested: Doctrine\ORM\PersistentCollection {#2323 …}
+votes: Doctrine\ORM\PersistentCollection {#2300 …}
+reports: Doctrine\ORM\PersistentCollection {#2340 …}
+favourites: Doctrine\ORM\PersistentCollection {#2342 …}
+notifications: Doctrine\ORM\PersistentCollection {#2343 …}
-id: 247321
-bodyTs: "'audio':4 'benefit':29 'bummer':14 'comput':24 'daw':2 'doesn':6 'effect':23 'interfac':5 'linux':9 'longer':31 'other':27 'portion':21 'small':20 'still':26 'support':8,32 'user':25 'yeah':10"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5884453"
+editedAt: DateTimeImmutable @1707175705 {#2326
date: 2024-02-06 00:28:25.0 +01:00
}
+createdAt: DateTimeImmutable @1703295692 {#2191
date: 2023-12-23 02:41:32.0 +01:00
}
+"title": 247321
}
3 => App\Entity\EntryComment {#2338
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2159 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2346 …}
+body: """
There are many many outdated patterns how to do things in Windows that are cemented in public knowledge. Running random executable installers from the web giving them superuser permissions is I thing the most popular one.\n
\n
How to share all user settings between system installations? How to change the logo in the desktop bar? How to add a directory to an applications bar? How to change system build-in keyboard shortcut? How to reinstall just the system keeping the programs? How to make a file run on a shortcut? Those are things I use daily, that are impossible or need some hacky programs to work on anything other than Linux, I would die if I had to switch back now.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703296199 {#2335
date: 2023-12-23 02:49:59.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@BaldProphet@kbin.social"
"@Wermhatswormhat@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#2143 …}
+nested: Doctrine\ORM\PersistentCollection {#2136 …}
+votes: Doctrine\ORM\PersistentCollection {#2073 …}
+reports: Doctrine\ORM\PersistentCollection {#2072 …}
+favourites: Doctrine\ORM\PersistentCollection {#2065 …}
+notifications: Doctrine\ORM\PersistentCollection {#2066 …}
-id: 247322
-bodyTs: "'add':57 'anyth':108 'applic':62 'back':120 'bar':54,63 'build':69 'build-in':68 'cement':15 'chang':48,66 'daili':96 'desktop':53 'die':114 'directori':59 'execut':21 'file':86 'give':26 'hacki':103 'imposs':99 'instal':22,45 'keep':79 'keyboard':71 'knowledg':18 'linux':111 'logo':50 'make':84 'mani':3,4 'need':101 'one':36 'outdat':5 'pattern':6 'permiss':29 'popular':35 'program':81,104 'public':17 'random':20 'reinstal':75 'run':19,87 'set':42 'share':39 'shortcut':72,90 'superus':28 'switch':119 'system':44,67,78 'thing':10,32,93 'use':95 'user':41 'web':25 'window':12 'work':106 'would':113"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5884570"
+editedAt: null
+createdAt: DateTimeImmutable @1703296199 {#2339
date: 2023-12-23 02:49:59.0 +01:00
}
+"title": 247322
}
2 => App\Entity\EntryComment {#2049
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2048 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2346 …}
+body: """
Use whatever is popular and has a cool logo. Distro is basically a software library, preinstalled programs and default settings. You can transform any distro to behave like the other one.\n
\n
KDE, Gnome, XFCE…? Which is looking better for you or which one was default. Init system? Which was the default. X11/Wayland? Wayland. Go with X11 only if Wayland is having problems with your graphics card.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703296544 {#2067
date: 2023-12-23 02:55:44.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@BaldProphet@kbin.social"
"@Deebster@programming.dev"
]
+children: Doctrine\ORM\PersistentCollection {#2051 …}
+nested: Doctrine\ORM\PersistentCollection {#2059 …}
+votes: Doctrine\ORM\PersistentCollection {#2047 …}
+reports: Doctrine\ORM\PersistentCollection {#2057 …}
+favourites: Doctrine\ORM\PersistentCollection {#2055 …}
+notifications: Doctrine\ORM\PersistentCollection {#2054 …}
-id: 247323
-bodyTs: "'basic':12 'behav':27 'better':38 'card':66 'cool':8 'default':19,45,51 'distro':10,25 'gnome':33 'go':54 'graphic':65 'init':46 'kde':32 'librari':15 'like':28 'logo':9 'look':37 'one':31,43 'popular':4 'preinstal':16 'problem':62 'program':17 'set':20 'softwar':14 'system':47 'transform':23 'use':1 'wayland':53,59 'whatev':2 'x11':56 'x11/wayland':52 'xfce':34"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5884646"
+editedAt: null
+createdAt: DateTimeImmutable @1703296544 {#2070
date: 2023-12-23 02:55:44.0 +01:00
}
+"title": 247323
}
1 => App\Entity\EntryComment {#2165
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2041 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2041 …}
+body: "For 240 million devices I think there would be some Linux can “cut it”. And second, no? My computer is 13+ years old and I am using it with basically no lagging, developing a couple of apps. Truth is all medium-tier computers made today and in recent years have reached the point where for normal use (that is daily tasks like communication, content consumption and calculations) only limiting factor for daily driver is software optimization."
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703296770 {#2053
date: 2023-12-23 02:59:30.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@TCB13@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#2104 …}
+nested: Doctrine\ORM\PersistentCollection {#2099 …}
+votes: Doctrine\ORM\PersistentCollection {#2108 …}
+reports: Doctrine\ORM\PersistentCollection {#2101 …}
+favourites: Doctrine\ORM\PersistentCollection {#2109 …}
+notifications: Doctrine\ORM\PersistentCollection {#2106 …}
-id: 247324
-bodyTs: "'13':21 '240':2 'app':37 'basic':30 'calcul':68 'communic':64 'comput':19,44 'consumpt':66 'content':65 'coupl':35 'cut':13 'daili':61,73 'develop':33 'devic':4 'driver':74 'factor':71 'lag':32 'like':63 'limit':70 'linux':11 'made':45 'medium':42 'medium-ti':41 'million':3 'normal':57 'old':23 'optim':77 'point':54 'reach':52 'recent':49 'second':16 'softwar':76 'task':62 'think':6 'tier':43 'today':46 'truth':38 'use':27,58 'would':8 'year':22,50"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5884688"
+editedAt: null
+createdAt: DateTimeImmutable @1703296770 {#2125
date: 2023-12-23 02:59:30.0 +01:00
}
+"title": 247324
}
0 => App\Entity\EntryComment {#2114
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2118 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2346 …}
+body: """
And this is a huge barrier for a lot of users, a massive roadblock. But the article talk about houndres of millions of computers, my point was just about that even if millions like you cannot switch, still in this statistics are millions that can especially non-professional that do not make audio or video, but that are going to throw away a working machine.\n
\n
I feel like you might feel being personally directed by my comment, because of your respond with “YOU’re not compatible”. Maybe it was bad wording, sorry. What I ment was that it can be frustrating to see “Linux doesn’t support …” when actually it has everything needed to support this software and the burden to make it available is on the software developer. Like saying that USB-C doesn’t support iPhone 13. Lack of it still hurts the Linux side anyway, but I just don’t want misconsaptions about which side should make a port happen.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703387471 {#2107
date: 2023-12-24 04:11:11.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@BaldProphet@kbin.social"
"@Transcendant@lemmy.world"
"@smileyhead@discuss.tchncs.de"
]
+children: Doctrine\ORM\PersistentCollection {#2117 …}
+nested: Doctrine\ORM\PersistentCollection {#2122 …}
+votes: Doctrine\ORM\PersistentCollection {#2113 …}
+reports: Doctrine\ORM\PersistentCollection {#2119 …}
+favourites: Doctrine\ORM\PersistentCollection {#2120 …}
+notifications: Doctrine\ORM\PersistentCollection {#2160 …}
-id: 247694
-bodyTs: "'13':141 'actual':110 'anyway':150 'articl':17 'audio':54 'avail':125 'away':63 'bad':91 'barrier':6 'burden':121 'c':136 'cannot':36 'comment':78 'compat':87 'comput':24 'develop':130 'direct':75 'doesn':106,137 'especi':46 'even':31 'everyth':113 'feel':68,72 'frustrat':102 'go':60 'happen':165 'houndr':20 'huge':5 'hurt':146 'iphon':140 'lack':142 'like':34,69,131 'linux':105,148 'lot':9 'machin':66 'make':53,123,162 'massiv':13 'mayb':88 'ment':96 'might':71 'million':22,33,43 'misconsapt':157 'need':114 'non':48 'non-profession':47 'person':74 'point':26 'port':164 'profession':49 're':85 'respond':82 'roadblock':14 'say':132 'see':104 'side':149,160 'softwar':118,129 'sorri':93 'statist':41 'still':38,145 'support':108,116,139 'switch':37 'talk':18 'throw':62 'usb':135 'usb-c':134 'user':11 'video':56 'want':156 'word':92 'work':65"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5904342"
+editedAt: DateTimeImmutable @1707537983 {#2112
date: 2024-02-10 05:06:23.0 +01:00
}
+createdAt: DateTimeImmutable @1703387471 {#2124
date: 2023-12-24 04:11:11.0 +01:00
}
+"title": 247694
}
]
-id: 24104
-titleTs: "'10':5 '240':8 'comput':10 'could':6 'end':1 'instal':16 'landfil':13 'linux':17 'million':9 'send':7 'support':2 'window':4"
-bodyTs: "'10':6 '11':33 '240':18 'comput':56 'current':16 'desktop':10 'due':30 'end':3 'exorbit':35 'gnu/linux':52 'hope':59 'immedi':46 'landfil':26 'like':40 'mani':43 'may':21,53 'million':19 'most':29 'oper':11 'outdat':47 'pcs':20,44 'popular':9 'possibl':17 'prone':49 'requir':36 'result':41 'secur':58 'sent':23 'support':2 'system':12 'think':63 'virus':51 'window':5,32 'world':15"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1703366140
+visibility: "visible "
+apId: "https://lemmy.world/post/9873158"
+editedAt: DateTimeImmutable @1706576554 {#2956
date: 2024-01-30 02:02:34.0 +01:00
}
+createdAt: DateTimeImmutable @1703279740 {#2935
date: 2023-12-22 22:15:40.0 +01:00
}
+__isInitialized__: true
…2
} |
|
Show voter details
|
61 |
DENIED
|
ROLE_USER
|
null |
|
Show voter details
|
62 |
DENIED
|
moderate
|
App\Entity\EntryComment {#2091
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086
+user: Proxies\__CG__\App\Entity\User {#2975 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: Proxies\__CG__\App\Entity\Image {#2977 …}
+domain: Proxies\__CG__\App\Entity\Domain {#2978 …}
+slug: "Ending-support-for-Windows-10-could-send-240-million-computers"
+title: "Ending support for Windows 10 could send 240 million computers to the landfill. Why not install Linux on them?"
+url: "https://gadgettendency.com/ending-support-for-windows-10-could-send-240-million-computers-to-the-landfill-a-stack-of-that-many-laptops-would-end-up-600-km-higher-than-the-moon/"
+body: "With support ending for Windows 10, the most popular desktop operating system in the world currently, possibly 240 million pcs may be sent to the landfill. This is mostly due to Windows 11’s exorbitant requirements. This will most likely result in many pcs being immediately outdated, and prone to viruses. GNU/Linux may be these computers’ only secure hope, what do you think?"
+type: "link"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 242
+favouriteCount: 748
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1711817575 {#2970
date: 2024-03-30 17:52:55.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#2979 …}
+votes: Doctrine\ORM\PersistentCollection {#2981 …}
+reports: Doctrine\ORM\PersistentCollection {#2983 …}
+favourites: Doctrine\ORM\PersistentCollection {#2985 …}
+notifications: Doctrine\ORM\PersistentCollection {#2987 …}
+badges: Doctrine\ORM\PersistentCollection {#2989 …}
+children: [
6 => App\Entity\EntryComment {#2091}
5 => App\Entity\EntryComment {#2330
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2348 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2346 …}
+body: "Marketing is monopolized with Google and Facebook. Manufacturers and Microsoft won’t make one-click installs happen. Tech support would be chicken and egg problem. Ugh…"
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703295471 {#2345
date: 2023-12-23 02:37:51.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@BaldProphet@kbin.social"
"@anon5621@lemmy.ml"
]
+children: Doctrine\ORM\PersistentCollection {#2351 …}
+nested: Doctrine\ORM\PersistentCollection {#2332 …}
+votes: Doctrine\ORM\PersistentCollection {#2349 …}
+reports: Doctrine\ORM\PersistentCollection {#2141 …}
+favourites: Doctrine\ORM\PersistentCollection {#2164 …}
+notifications: Doctrine\ORM\PersistentCollection {#2314 …}
-id: 247320
-bodyTs: "'chicken':23 'click':16 'egg':25 'facebook':7 'googl':5 'happen':18 'instal':17 'make':13 'manufactur':8 'market':1 'microsoft':10 'monopol':3 'one':15 'one-click':14 'problem':26 'support':20 'tech':19 'ugh':27 'won':11 'would':21"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5884407"
+editedAt: null
+createdAt: DateTimeImmutable @1703295471 {#2350
date: 2023-12-23 02:37:51.0 +01:00
}
+"title": 247320
}
4 => App\Entity\EntryComment {#2325
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2327 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2346 …}
+body: """
Your DAW and audio interface doesn’t support Linux.*\n
\n
Yeah, it’s a bummer, but you are in a small portion of effected computer users, still others can benefit from longer support.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 1
+score: 0
+lastActive: DateTime @1703295692 {#2328
date: 2023-12-23 02:41:32.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@BaldProphet@kbin.social"
"@Transcendant@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#2329 …}
+nested: Doctrine\ORM\PersistentCollection {#2323 …}
+votes: Doctrine\ORM\PersistentCollection {#2300 …}
+reports: Doctrine\ORM\PersistentCollection {#2340 …}
+favourites: Doctrine\ORM\PersistentCollection {#2342 …}
+notifications: Doctrine\ORM\PersistentCollection {#2343 …}
-id: 247321
-bodyTs: "'audio':4 'benefit':29 'bummer':14 'comput':24 'daw':2 'doesn':6 'effect':23 'interfac':5 'linux':9 'longer':31 'other':27 'portion':21 'small':20 'still':26 'support':8,32 'user':25 'yeah':10"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5884453"
+editedAt: DateTimeImmutable @1707175705 {#2326
date: 2024-02-06 00:28:25.0 +01:00
}
+createdAt: DateTimeImmutable @1703295692 {#2191
date: 2023-12-23 02:41:32.0 +01:00
}
+"title": 247321
}
3 => App\Entity\EntryComment {#2338
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2159 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2346 …}
+body: """
There are many many outdated patterns how to do things in Windows that are cemented in public knowledge. Running random executable installers from the web giving them superuser permissions is I thing the most popular one.\n
\n
How to share all user settings between system installations? How to change the logo in the desktop bar? How to add a directory to an applications bar? How to change system build-in keyboard shortcut? How to reinstall just the system keeping the programs? How to make a file run on a shortcut? Those are things I use daily, that are impossible or need some hacky programs to work on anything other than Linux, I would die if I had to switch back now.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703296199 {#2335
date: 2023-12-23 02:49:59.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@BaldProphet@kbin.social"
"@Wermhatswormhat@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#2143 …}
+nested: Doctrine\ORM\PersistentCollection {#2136 …}
+votes: Doctrine\ORM\PersistentCollection {#2073 …}
+reports: Doctrine\ORM\PersistentCollection {#2072 …}
+favourites: Doctrine\ORM\PersistentCollection {#2065 …}
+notifications: Doctrine\ORM\PersistentCollection {#2066 …}
-id: 247322
-bodyTs: "'add':57 'anyth':108 'applic':62 'back':120 'bar':54,63 'build':69 'build-in':68 'cement':15 'chang':48,66 'daili':96 'desktop':53 'die':114 'directori':59 'execut':21 'file':86 'give':26 'hacki':103 'imposs':99 'instal':22,45 'keep':79 'keyboard':71 'knowledg':18 'linux':111 'logo':50 'make':84 'mani':3,4 'need':101 'one':36 'outdat':5 'pattern':6 'permiss':29 'popular':35 'program':81,104 'public':17 'random':20 'reinstal':75 'run':19,87 'set':42 'share':39 'shortcut':72,90 'superus':28 'switch':119 'system':44,67,78 'thing':10,32,93 'use':95 'user':41 'web':25 'window':12 'work':106 'would':113"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5884570"
+editedAt: null
+createdAt: DateTimeImmutable @1703296199 {#2339
date: 2023-12-23 02:49:59.0 +01:00
}
+"title": 247322
}
2 => App\Entity\EntryComment {#2049
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2048 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2346 …}
+body: """
Use whatever is popular and has a cool logo. Distro is basically a software library, preinstalled programs and default settings. You can transform any distro to behave like the other one.\n
\n
KDE, Gnome, XFCE…? Which is looking better for you or which one was default. Init system? Which was the default. X11/Wayland? Wayland. Go with X11 only if Wayland is having problems with your graphics card.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703296544 {#2067
date: 2023-12-23 02:55:44.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@BaldProphet@kbin.social"
"@Deebster@programming.dev"
]
+children: Doctrine\ORM\PersistentCollection {#2051 …}
+nested: Doctrine\ORM\PersistentCollection {#2059 …}
+votes: Doctrine\ORM\PersistentCollection {#2047 …}
+reports: Doctrine\ORM\PersistentCollection {#2057 …}
+favourites: Doctrine\ORM\PersistentCollection {#2055 …}
+notifications: Doctrine\ORM\PersistentCollection {#2054 …}
-id: 247323
-bodyTs: "'basic':12 'behav':27 'better':38 'card':66 'cool':8 'default':19,45,51 'distro':10,25 'gnome':33 'go':54 'graphic':65 'init':46 'kde':32 'librari':15 'like':28 'logo':9 'look':37 'one':31,43 'popular':4 'preinstal':16 'problem':62 'program':17 'set':20 'softwar':14 'system':47 'transform':23 'use':1 'wayland':53,59 'whatev':2 'x11':56 'x11/wayland':52 'xfce':34"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5884646"
+editedAt: null
+createdAt: DateTimeImmutable @1703296544 {#2070
date: 2023-12-23 02:55:44.0 +01:00
}
+"title": 247323
}
1 => App\Entity\EntryComment {#2165
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2041 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2041 …}
+body: "For 240 million devices I think there would be some Linux can “cut it”. And second, no? My computer is 13+ years old and I am using it with basically no lagging, developing a couple of apps. Truth is all medium-tier computers made today and in recent years have reached the point where for normal use (that is daily tasks like communication, content consumption and calculations) only limiting factor for daily driver is software optimization."
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703296770 {#2053
date: 2023-12-23 02:59:30.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@TCB13@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#2104 …}
+nested: Doctrine\ORM\PersistentCollection {#2099 …}
+votes: Doctrine\ORM\PersistentCollection {#2108 …}
+reports: Doctrine\ORM\PersistentCollection {#2101 …}
+favourites: Doctrine\ORM\PersistentCollection {#2109 …}
+notifications: Doctrine\ORM\PersistentCollection {#2106 …}
-id: 247324
-bodyTs: "'13':21 '240':2 'app':37 'basic':30 'calcul':68 'communic':64 'comput':19,44 'consumpt':66 'content':65 'coupl':35 'cut':13 'daili':61,73 'develop':33 'devic':4 'driver':74 'factor':71 'lag':32 'like':63 'limit':70 'linux':11 'made':45 'medium':42 'medium-ti':41 'million':3 'normal':57 'old':23 'optim':77 'point':54 'reach':52 'recent':49 'second':16 'softwar':76 'task':62 'think':6 'tier':43 'today':46 'truth':38 'use':27,58 'would':8 'year':22,50"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5884688"
+editedAt: null
+createdAt: DateTimeImmutable @1703296770 {#2125
date: 2023-12-23 02:59:30.0 +01:00
}
+"title": 247324
}
0 => App\Entity\EntryComment {#2114
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2118 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2346 …}
+body: """
And this is a huge barrier for a lot of users, a massive roadblock. But the article talk about houndres of millions of computers, my point was just about that even if millions like you cannot switch, still in this statistics are millions that can especially non-professional that do not make audio or video, but that are going to throw away a working machine.\n
\n
I feel like you might feel being personally directed by my comment, because of your respond with “YOU’re not compatible”. Maybe it was bad wording, sorry. What I ment was that it can be frustrating to see “Linux doesn’t support …” when actually it has everything needed to support this software and the burden to make it available is on the software developer. Like saying that USB-C doesn’t support iPhone 13. Lack of it still hurts the Linux side anyway, but I just don’t want misconsaptions about which side should make a port happen.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703387471 {#2107
date: 2023-12-24 04:11:11.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@BaldProphet@kbin.social"
"@Transcendant@lemmy.world"
"@smileyhead@discuss.tchncs.de"
]
+children: Doctrine\ORM\PersistentCollection {#2117 …}
+nested: Doctrine\ORM\PersistentCollection {#2122 …}
+votes: Doctrine\ORM\PersistentCollection {#2113 …}
+reports: Doctrine\ORM\PersistentCollection {#2119 …}
+favourites: Doctrine\ORM\PersistentCollection {#2120 …}
+notifications: Doctrine\ORM\PersistentCollection {#2160 …}
-id: 247694
-bodyTs: "'13':141 'actual':110 'anyway':150 'articl':17 'audio':54 'avail':125 'away':63 'bad':91 'barrier':6 'burden':121 'c':136 'cannot':36 'comment':78 'compat':87 'comput':24 'develop':130 'direct':75 'doesn':106,137 'especi':46 'even':31 'everyth':113 'feel':68,72 'frustrat':102 'go':60 'happen':165 'houndr':20 'huge':5 'hurt':146 'iphon':140 'lack':142 'like':34,69,131 'linux':105,148 'lot':9 'machin':66 'make':53,123,162 'massiv':13 'mayb':88 'ment':96 'might':71 'million':22,33,43 'misconsapt':157 'need':114 'non':48 'non-profession':47 'person':74 'point':26 'port':164 'profession':49 're':85 'respond':82 'roadblock':14 'say':132 'see':104 'side':149,160 'softwar':118,129 'sorri':93 'statist':41 'still':38,145 'support':108,116,139 'switch':37 'talk':18 'throw':62 'usb':135 'usb-c':134 'user':11 'video':56 'want':156 'word':92 'work':65"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5904342"
+editedAt: DateTimeImmutable @1707537983 {#2112
date: 2024-02-10 05:06:23.0 +01:00
}
+createdAt: DateTimeImmutable @1703387471 {#2124
date: 2023-12-24 04:11:11.0 +01:00
}
+"title": 247694
}
]
-id: 24104
-titleTs: "'10':5 '240':8 'comput':10 'could':6 'end':1 'instal':16 'landfil':13 'linux':17 'million':9 'send':7 'support':2 'window':4"
-bodyTs: "'10':6 '11':33 '240':18 'comput':56 'current':16 'desktop':10 'due':30 'end':3 'exorbit':35 'gnu/linux':52 'hope':59 'immedi':46 'landfil':26 'like':40 'mani':43 'may':21,53 'million':19 'most':29 'oper':11 'outdat':47 'pcs':20,44 'popular':9 'possibl':17 'prone':49 'requir':36 'result':41 'secur':58 'sent':23 'support':2 'system':12 'think':63 'virus':51 'window':5,32 'world':15"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1703366140
+visibility: "visible "
+apId: "https://lemmy.world/post/9873158"
+editedAt: DateTimeImmutable @1706576554 {#2956
date: 2024-01-30 02:02:34.0 +01:00
}
+createdAt: DateTimeImmutable @1703279740 {#2935
date: 2023-12-22 22:15:40.0 +01:00
}
+__isInitialized__: true
…2
}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2090 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2090 …}
+body: """
But a ton of people **can** open a PDF and will be able to select an USB stick from menu and click next, next, next… It’s not completely different, you still use a mouse, a keyboard, you click on things, you get some feedback from it… When a new kind of mobile app arrive, I can see someone using no more than 5 apps in life having problems, but this doesn’t mean only them exists, we do not talk about switching everyone here. People change houses, how are they figuring out where is the toilet if doors have different color and are in different positions?\n
\n
Also a reason why any software like Microsoft Windows or Office should be banned from public education, especially primary schools.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703295334 {#2095
date: 2023-12-23 02:35:34.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@derf82@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#2093 …}
+nested: Doctrine\ORM\PersistentCollection {#2094 …}
+votes: Doctrine\ORM\PersistentCollection {#2140 …}
+reports: Doctrine\ORM\PersistentCollection {#2133 …}
+favourites: Doctrine\ORM\PersistentCollection {#2131 …}
+notifications: Doctrine\ORM\PersistentCollection {#2138 …}
-id: 247319
-bodyTs: "'5':64 'abl':13 'also':108 'app':54,65 'arriv':55 'ban':121 'chang':87 'click':22,39 'color':102 'complet':29 'differ':30,101,106 'doesn':72 'door':99 'educ':124 'especi':125 'everyon':84 'exist':77 'feedback':45 'figur':92 'get':43 'hous':88 'keyboard':37 'kind':51 'life':67 'like':114 'mean':74 'menu':20 'microsoft':115 'mobil':53 'mous':35 'new':50 'next':23,24,25 'offic':118 'open':7 'pdf':9 'peopl':5,86 'posit':107 'primari':126 'problem':69 'public':123 'reason':110 'school':127 'see':58 'select':15 'softwar':113 'someon':59 'stick':18 'still':32 'switch':83 'talk':81 'thing':41 'toilet':97 'ton':3 'usb':17 'use':33,60 'window':116"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5884378"
+editedAt: null
+createdAt: DateTimeImmutable @1703295334 {#2087
date: 2023-12-23 02:35:34.0 +01:00
}
+"title": 247319
} |
|
Show voter details
|
63 |
DENIED
|
edit
|
App\Entity\EntryComment {#2091
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086
+user: Proxies\__CG__\App\Entity\User {#2975 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: Proxies\__CG__\App\Entity\Image {#2977 …}
+domain: Proxies\__CG__\App\Entity\Domain {#2978 …}
+slug: "Ending-support-for-Windows-10-could-send-240-million-computers"
+title: "Ending support for Windows 10 could send 240 million computers to the landfill. Why not install Linux on them?"
+url: "https://gadgettendency.com/ending-support-for-windows-10-could-send-240-million-computers-to-the-landfill-a-stack-of-that-many-laptops-would-end-up-600-km-higher-than-the-moon/"
+body: "With support ending for Windows 10, the most popular desktop operating system in the world currently, possibly 240 million pcs may be sent to the landfill. This is mostly due to Windows 11’s exorbitant requirements. This will most likely result in many pcs being immediately outdated, and prone to viruses. GNU/Linux may be these computers’ only secure hope, what do you think?"
+type: "link"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 242
+favouriteCount: 748
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1711817575 {#2970
date: 2024-03-30 17:52:55.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#2979 …}
+votes: Doctrine\ORM\PersistentCollection {#2981 …}
+reports: Doctrine\ORM\PersistentCollection {#2983 …}
+favourites: Doctrine\ORM\PersistentCollection {#2985 …}
+notifications: Doctrine\ORM\PersistentCollection {#2987 …}
+badges: Doctrine\ORM\PersistentCollection {#2989 …}
+children: [
6 => App\Entity\EntryComment {#2091}
5 => App\Entity\EntryComment {#2330
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2348 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2346 …}
+body: "Marketing is monopolized with Google and Facebook. Manufacturers and Microsoft won’t make one-click installs happen. Tech support would be chicken and egg problem. Ugh…"
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703295471 {#2345
date: 2023-12-23 02:37:51.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@BaldProphet@kbin.social"
"@anon5621@lemmy.ml"
]
+children: Doctrine\ORM\PersistentCollection {#2351 …}
+nested: Doctrine\ORM\PersistentCollection {#2332 …}
+votes: Doctrine\ORM\PersistentCollection {#2349 …}
+reports: Doctrine\ORM\PersistentCollection {#2141 …}
+favourites: Doctrine\ORM\PersistentCollection {#2164 …}
+notifications: Doctrine\ORM\PersistentCollection {#2314 …}
-id: 247320
-bodyTs: "'chicken':23 'click':16 'egg':25 'facebook':7 'googl':5 'happen':18 'instal':17 'make':13 'manufactur':8 'market':1 'microsoft':10 'monopol':3 'one':15 'one-click':14 'problem':26 'support':20 'tech':19 'ugh':27 'won':11 'would':21"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5884407"
+editedAt: null
+createdAt: DateTimeImmutable @1703295471 {#2350
date: 2023-12-23 02:37:51.0 +01:00
}
+"title": 247320
}
4 => App\Entity\EntryComment {#2325
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2327 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2346 …}
+body: """
Your DAW and audio interface doesn’t support Linux.*\n
\n
Yeah, it’s a bummer, but you are in a small portion of effected computer users, still others can benefit from longer support.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 1
+score: 0
+lastActive: DateTime @1703295692 {#2328
date: 2023-12-23 02:41:32.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@BaldProphet@kbin.social"
"@Transcendant@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#2329 …}
+nested: Doctrine\ORM\PersistentCollection {#2323 …}
+votes: Doctrine\ORM\PersistentCollection {#2300 …}
+reports: Doctrine\ORM\PersistentCollection {#2340 …}
+favourites: Doctrine\ORM\PersistentCollection {#2342 …}
+notifications: Doctrine\ORM\PersistentCollection {#2343 …}
-id: 247321
-bodyTs: "'audio':4 'benefit':29 'bummer':14 'comput':24 'daw':2 'doesn':6 'effect':23 'interfac':5 'linux':9 'longer':31 'other':27 'portion':21 'small':20 'still':26 'support':8,32 'user':25 'yeah':10"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5884453"
+editedAt: DateTimeImmutable @1707175705 {#2326
date: 2024-02-06 00:28:25.0 +01:00
}
+createdAt: DateTimeImmutable @1703295692 {#2191
date: 2023-12-23 02:41:32.0 +01:00
}
+"title": 247321
}
3 => App\Entity\EntryComment {#2338
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2159 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2346 …}
+body: """
There are many many outdated patterns how to do things in Windows that are cemented in public knowledge. Running random executable installers from the web giving them superuser permissions is I thing the most popular one.\n
\n
How to share all user settings between system installations? How to change the logo in the desktop bar? How to add a directory to an applications bar? How to change system build-in keyboard shortcut? How to reinstall just the system keeping the programs? How to make a file run on a shortcut? Those are things I use daily, that are impossible or need some hacky programs to work on anything other than Linux, I would die if I had to switch back now.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703296199 {#2335
date: 2023-12-23 02:49:59.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@BaldProphet@kbin.social"
"@Wermhatswormhat@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#2143 …}
+nested: Doctrine\ORM\PersistentCollection {#2136 …}
+votes: Doctrine\ORM\PersistentCollection {#2073 …}
+reports: Doctrine\ORM\PersistentCollection {#2072 …}
+favourites: Doctrine\ORM\PersistentCollection {#2065 …}
+notifications: Doctrine\ORM\PersistentCollection {#2066 …}
-id: 247322
-bodyTs: "'add':57 'anyth':108 'applic':62 'back':120 'bar':54,63 'build':69 'build-in':68 'cement':15 'chang':48,66 'daili':96 'desktop':53 'die':114 'directori':59 'execut':21 'file':86 'give':26 'hacki':103 'imposs':99 'instal':22,45 'keep':79 'keyboard':71 'knowledg':18 'linux':111 'logo':50 'make':84 'mani':3,4 'need':101 'one':36 'outdat':5 'pattern':6 'permiss':29 'popular':35 'program':81,104 'public':17 'random':20 'reinstal':75 'run':19,87 'set':42 'share':39 'shortcut':72,90 'superus':28 'switch':119 'system':44,67,78 'thing':10,32,93 'use':95 'user':41 'web':25 'window':12 'work':106 'would':113"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5884570"
+editedAt: null
+createdAt: DateTimeImmutable @1703296199 {#2339
date: 2023-12-23 02:49:59.0 +01:00
}
+"title": 247322
}
2 => App\Entity\EntryComment {#2049
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2048 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2346 …}
+body: """
Use whatever is popular and has a cool logo. Distro is basically a software library, preinstalled programs and default settings. You can transform any distro to behave like the other one.\n
\n
KDE, Gnome, XFCE…? Which is looking better for you or which one was default. Init system? Which was the default. X11/Wayland? Wayland. Go with X11 only if Wayland is having problems with your graphics card.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703296544 {#2067
date: 2023-12-23 02:55:44.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@BaldProphet@kbin.social"
"@Deebster@programming.dev"
]
+children: Doctrine\ORM\PersistentCollection {#2051 …}
+nested: Doctrine\ORM\PersistentCollection {#2059 …}
+votes: Doctrine\ORM\PersistentCollection {#2047 …}
+reports: Doctrine\ORM\PersistentCollection {#2057 …}
+favourites: Doctrine\ORM\PersistentCollection {#2055 …}
+notifications: Doctrine\ORM\PersistentCollection {#2054 …}
-id: 247323
-bodyTs: "'basic':12 'behav':27 'better':38 'card':66 'cool':8 'default':19,45,51 'distro':10,25 'gnome':33 'go':54 'graphic':65 'init':46 'kde':32 'librari':15 'like':28 'logo':9 'look':37 'one':31,43 'popular':4 'preinstal':16 'problem':62 'program':17 'set':20 'softwar':14 'system':47 'transform':23 'use':1 'wayland':53,59 'whatev':2 'x11':56 'x11/wayland':52 'xfce':34"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5884646"
+editedAt: null
+createdAt: DateTimeImmutable @1703296544 {#2070
date: 2023-12-23 02:55:44.0 +01:00
}
+"title": 247323
}
1 => App\Entity\EntryComment {#2165
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2041 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2041 …}
+body: "For 240 million devices I think there would be some Linux can “cut it”. And second, no? My computer is 13+ years old and I am using it with basically no lagging, developing a couple of apps. Truth is all medium-tier computers made today and in recent years have reached the point where for normal use (that is daily tasks like communication, content consumption and calculations) only limiting factor for daily driver is software optimization."
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703296770 {#2053
date: 2023-12-23 02:59:30.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@TCB13@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#2104 …}
+nested: Doctrine\ORM\PersistentCollection {#2099 …}
+votes: Doctrine\ORM\PersistentCollection {#2108 …}
+reports: Doctrine\ORM\PersistentCollection {#2101 …}
+favourites: Doctrine\ORM\PersistentCollection {#2109 …}
+notifications: Doctrine\ORM\PersistentCollection {#2106 …}
-id: 247324
-bodyTs: "'13':21 '240':2 'app':37 'basic':30 'calcul':68 'communic':64 'comput':19,44 'consumpt':66 'content':65 'coupl':35 'cut':13 'daili':61,73 'develop':33 'devic':4 'driver':74 'factor':71 'lag':32 'like':63 'limit':70 'linux':11 'made':45 'medium':42 'medium-ti':41 'million':3 'normal':57 'old':23 'optim':77 'point':54 'reach':52 'recent':49 'second':16 'softwar':76 'task':62 'think':6 'tier':43 'today':46 'truth':38 'use':27,58 'would':8 'year':22,50"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5884688"
+editedAt: null
+createdAt: DateTimeImmutable @1703296770 {#2125
date: 2023-12-23 02:59:30.0 +01:00
}
+"title": 247324
}
0 => App\Entity\EntryComment {#2114
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2118 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2346 …}
+body: """
And this is a huge barrier for a lot of users, a massive roadblock. But the article talk about houndres of millions of computers, my point was just about that even if millions like you cannot switch, still in this statistics are millions that can especially non-professional that do not make audio or video, but that are going to throw away a working machine.\n
\n
I feel like you might feel being personally directed by my comment, because of your respond with “YOU’re not compatible”. Maybe it was bad wording, sorry. What I ment was that it can be frustrating to see “Linux doesn’t support …” when actually it has everything needed to support this software and the burden to make it available is on the software developer. Like saying that USB-C doesn’t support iPhone 13. Lack of it still hurts the Linux side anyway, but I just don’t want misconsaptions about which side should make a port happen.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703387471 {#2107
date: 2023-12-24 04:11:11.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@BaldProphet@kbin.social"
"@Transcendant@lemmy.world"
"@smileyhead@discuss.tchncs.de"
]
+children: Doctrine\ORM\PersistentCollection {#2117 …}
+nested: Doctrine\ORM\PersistentCollection {#2122 …}
+votes: Doctrine\ORM\PersistentCollection {#2113 …}
+reports: Doctrine\ORM\PersistentCollection {#2119 …}
+favourites: Doctrine\ORM\PersistentCollection {#2120 …}
+notifications: Doctrine\ORM\PersistentCollection {#2160 …}
-id: 247694
-bodyTs: "'13':141 'actual':110 'anyway':150 'articl':17 'audio':54 'avail':125 'away':63 'bad':91 'barrier':6 'burden':121 'c':136 'cannot':36 'comment':78 'compat':87 'comput':24 'develop':130 'direct':75 'doesn':106,137 'especi':46 'even':31 'everyth':113 'feel':68,72 'frustrat':102 'go':60 'happen':165 'houndr':20 'huge':5 'hurt':146 'iphon':140 'lack':142 'like':34,69,131 'linux':105,148 'lot':9 'machin':66 'make':53,123,162 'massiv':13 'mayb':88 'ment':96 'might':71 'million':22,33,43 'misconsapt':157 'need':114 'non':48 'non-profession':47 'person':74 'point':26 'port':164 'profession':49 're':85 'respond':82 'roadblock':14 'say':132 'see':104 'side':149,160 'softwar':118,129 'sorri':93 'statist':41 'still':38,145 'support':108,116,139 'switch':37 'talk':18 'throw':62 'usb':135 'usb-c':134 'user':11 'video':56 'want':156 'word':92 'work':65"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5904342"
+editedAt: DateTimeImmutable @1707537983 {#2112
date: 2024-02-10 05:06:23.0 +01:00
}
+createdAt: DateTimeImmutable @1703387471 {#2124
date: 2023-12-24 04:11:11.0 +01:00
}
+"title": 247694
}
]
-id: 24104
-titleTs: "'10':5 '240':8 'comput':10 'could':6 'end':1 'instal':16 'landfil':13 'linux':17 'million':9 'send':7 'support':2 'window':4"
-bodyTs: "'10':6 '11':33 '240':18 'comput':56 'current':16 'desktop':10 'due':30 'end':3 'exorbit':35 'gnu/linux':52 'hope':59 'immedi':46 'landfil':26 'like':40 'mani':43 'may':21,53 'million':19 'most':29 'oper':11 'outdat':47 'pcs':20,44 'popular':9 'possibl':17 'prone':49 'requir':36 'result':41 'secur':58 'sent':23 'support':2 'system':12 'think':63 'virus':51 'window':5,32 'world':15"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1703366140
+visibility: "visible "
+apId: "https://lemmy.world/post/9873158"
+editedAt: DateTimeImmutable @1706576554 {#2956
date: 2024-01-30 02:02:34.0 +01:00
}
+createdAt: DateTimeImmutable @1703279740 {#2935
date: 2023-12-22 22:15:40.0 +01:00
}
+__isInitialized__: true
…2
}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2090 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2090 …}
+body: """
But a ton of people **can** open a PDF and will be able to select an USB stick from menu and click next, next, next… It’s not completely different, you still use a mouse, a keyboard, you click on things, you get some feedback from it… When a new kind of mobile app arrive, I can see someone using no more than 5 apps in life having problems, but this doesn’t mean only them exists, we do not talk about switching everyone here. People change houses, how are they figuring out where is the toilet if doors have different color and are in different positions?\n
\n
Also a reason why any software like Microsoft Windows or Office should be banned from public education, especially primary schools.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703295334 {#2095
date: 2023-12-23 02:35:34.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@derf82@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#2093 …}
+nested: Doctrine\ORM\PersistentCollection {#2094 …}
+votes: Doctrine\ORM\PersistentCollection {#2140 …}
+reports: Doctrine\ORM\PersistentCollection {#2133 …}
+favourites: Doctrine\ORM\PersistentCollection {#2131 …}
+notifications: Doctrine\ORM\PersistentCollection {#2138 …}
-id: 247319
-bodyTs: "'5':64 'abl':13 'also':108 'app':54,65 'arriv':55 'ban':121 'chang':87 'click':22,39 'color':102 'complet':29 'differ':30,101,106 'doesn':72 'door':99 'educ':124 'especi':125 'everyon':84 'exist':77 'feedback':45 'figur':92 'get':43 'hous':88 'keyboard':37 'kind':51 'life':67 'like':114 'mean':74 'menu':20 'microsoft':115 'mobil':53 'mous':35 'new':50 'next':23,24,25 'offic':118 'open':7 'pdf':9 'peopl':5,86 'posit':107 'primari':126 'problem':69 'public':123 'reason':110 'school':127 'see':58 'select':15 'softwar':113 'someon':59 'stick':18 'still':32 'switch':83 'talk':81 'thing':41 'toilet':97 'ton':3 'usb':17 'use':33,60 'window':116"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5884378"
+editedAt: null
+createdAt: DateTimeImmutable @1703295334 {#2087
date: 2023-12-23 02:35:34.0 +01:00
}
+"title": 247319
} |
|
Show voter details
|
64 |
DENIED
|
moderate
|
App\Entity\EntryComment {#2091
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086
+user: Proxies\__CG__\App\Entity\User {#2975 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: Proxies\__CG__\App\Entity\Image {#2977 …}
+domain: Proxies\__CG__\App\Entity\Domain {#2978 …}
+slug: "Ending-support-for-Windows-10-could-send-240-million-computers"
+title: "Ending support for Windows 10 could send 240 million computers to the landfill. Why not install Linux on them?"
+url: "https://gadgettendency.com/ending-support-for-windows-10-could-send-240-million-computers-to-the-landfill-a-stack-of-that-many-laptops-would-end-up-600-km-higher-than-the-moon/"
+body: "With support ending for Windows 10, the most popular desktop operating system in the world currently, possibly 240 million pcs may be sent to the landfill. This is mostly due to Windows 11’s exorbitant requirements. This will most likely result in many pcs being immediately outdated, and prone to viruses. GNU/Linux may be these computers’ only secure hope, what do you think?"
+type: "link"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 242
+favouriteCount: 748
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1711817575 {#2970
date: 2024-03-30 17:52:55.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#2979 …}
+votes: Doctrine\ORM\PersistentCollection {#2981 …}
+reports: Doctrine\ORM\PersistentCollection {#2983 …}
+favourites: Doctrine\ORM\PersistentCollection {#2985 …}
+notifications: Doctrine\ORM\PersistentCollection {#2987 …}
+badges: Doctrine\ORM\PersistentCollection {#2989 …}
+children: [
6 => App\Entity\EntryComment {#2091}
5 => App\Entity\EntryComment {#2330
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2348 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2346 …}
+body: "Marketing is monopolized with Google and Facebook. Manufacturers and Microsoft won’t make one-click installs happen. Tech support would be chicken and egg problem. Ugh…"
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703295471 {#2345
date: 2023-12-23 02:37:51.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@BaldProphet@kbin.social"
"@anon5621@lemmy.ml"
]
+children: Doctrine\ORM\PersistentCollection {#2351 …}
+nested: Doctrine\ORM\PersistentCollection {#2332 …}
+votes: Doctrine\ORM\PersistentCollection {#2349 …}
+reports: Doctrine\ORM\PersistentCollection {#2141 …}
+favourites: Doctrine\ORM\PersistentCollection {#2164 …}
+notifications: Doctrine\ORM\PersistentCollection {#2314 …}
-id: 247320
-bodyTs: "'chicken':23 'click':16 'egg':25 'facebook':7 'googl':5 'happen':18 'instal':17 'make':13 'manufactur':8 'market':1 'microsoft':10 'monopol':3 'one':15 'one-click':14 'problem':26 'support':20 'tech':19 'ugh':27 'won':11 'would':21"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5884407"
+editedAt: null
+createdAt: DateTimeImmutable @1703295471 {#2350
date: 2023-12-23 02:37:51.0 +01:00
}
+"title": 247320
}
4 => App\Entity\EntryComment {#2325
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2327 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2346 …}
+body: """
Your DAW and audio interface doesn’t support Linux.*\n
\n
Yeah, it’s a bummer, but you are in a small portion of effected computer users, still others can benefit from longer support.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 1
+score: 0
+lastActive: DateTime @1703295692 {#2328
date: 2023-12-23 02:41:32.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@BaldProphet@kbin.social"
"@Transcendant@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#2329 …}
+nested: Doctrine\ORM\PersistentCollection {#2323 …}
+votes: Doctrine\ORM\PersistentCollection {#2300 …}
+reports: Doctrine\ORM\PersistentCollection {#2340 …}
+favourites: Doctrine\ORM\PersistentCollection {#2342 …}
+notifications: Doctrine\ORM\PersistentCollection {#2343 …}
-id: 247321
-bodyTs: "'audio':4 'benefit':29 'bummer':14 'comput':24 'daw':2 'doesn':6 'effect':23 'interfac':5 'linux':9 'longer':31 'other':27 'portion':21 'small':20 'still':26 'support':8,32 'user':25 'yeah':10"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5884453"
+editedAt: DateTimeImmutable @1707175705 {#2326
date: 2024-02-06 00:28:25.0 +01:00
}
+createdAt: DateTimeImmutable @1703295692 {#2191
date: 2023-12-23 02:41:32.0 +01:00
}
+"title": 247321
}
3 => App\Entity\EntryComment {#2338
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2159 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2346 …}
+body: """
There are many many outdated patterns how to do things in Windows that are cemented in public knowledge. Running random executable installers from the web giving them superuser permissions is I thing the most popular one.\n
\n
How to share all user settings between system installations? How to change the logo in the desktop bar? How to add a directory to an applications bar? How to change system build-in keyboard shortcut? How to reinstall just the system keeping the programs? How to make a file run on a shortcut? Those are things I use daily, that are impossible or need some hacky programs to work on anything other than Linux, I would die if I had to switch back now.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703296199 {#2335
date: 2023-12-23 02:49:59.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@BaldProphet@kbin.social"
"@Wermhatswormhat@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#2143 …}
+nested: Doctrine\ORM\PersistentCollection {#2136 …}
+votes: Doctrine\ORM\PersistentCollection {#2073 …}
+reports: Doctrine\ORM\PersistentCollection {#2072 …}
+favourites: Doctrine\ORM\PersistentCollection {#2065 …}
+notifications: Doctrine\ORM\PersistentCollection {#2066 …}
-id: 247322
-bodyTs: "'add':57 'anyth':108 'applic':62 'back':120 'bar':54,63 'build':69 'build-in':68 'cement':15 'chang':48,66 'daili':96 'desktop':53 'die':114 'directori':59 'execut':21 'file':86 'give':26 'hacki':103 'imposs':99 'instal':22,45 'keep':79 'keyboard':71 'knowledg':18 'linux':111 'logo':50 'make':84 'mani':3,4 'need':101 'one':36 'outdat':5 'pattern':6 'permiss':29 'popular':35 'program':81,104 'public':17 'random':20 'reinstal':75 'run':19,87 'set':42 'share':39 'shortcut':72,90 'superus':28 'switch':119 'system':44,67,78 'thing':10,32,93 'use':95 'user':41 'web':25 'window':12 'work':106 'would':113"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5884570"
+editedAt: null
+createdAt: DateTimeImmutable @1703296199 {#2339
date: 2023-12-23 02:49:59.0 +01:00
}
+"title": 247322
}
2 => App\Entity\EntryComment {#2049
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2048 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2346 …}
+body: """
Use whatever is popular and has a cool logo. Distro is basically a software library, preinstalled programs and default settings. You can transform any distro to behave like the other one.\n
\n
KDE, Gnome, XFCE…? Which is looking better for you or which one was default. Init system? Which was the default. X11/Wayland? Wayland. Go with X11 only if Wayland is having problems with your graphics card.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703296544 {#2067
date: 2023-12-23 02:55:44.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@BaldProphet@kbin.social"
"@Deebster@programming.dev"
]
+children: Doctrine\ORM\PersistentCollection {#2051 …}
+nested: Doctrine\ORM\PersistentCollection {#2059 …}
+votes: Doctrine\ORM\PersistentCollection {#2047 …}
+reports: Doctrine\ORM\PersistentCollection {#2057 …}
+favourites: Doctrine\ORM\PersistentCollection {#2055 …}
+notifications: Doctrine\ORM\PersistentCollection {#2054 …}
-id: 247323
-bodyTs: "'basic':12 'behav':27 'better':38 'card':66 'cool':8 'default':19,45,51 'distro':10,25 'gnome':33 'go':54 'graphic':65 'init':46 'kde':32 'librari':15 'like':28 'logo':9 'look':37 'one':31,43 'popular':4 'preinstal':16 'problem':62 'program':17 'set':20 'softwar':14 'system':47 'transform':23 'use':1 'wayland':53,59 'whatev':2 'x11':56 'x11/wayland':52 'xfce':34"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5884646"
+editedAt: null
+createdAt: DateTimeImmutable @1703296544 {#2070
date: 2023-12-23 02:55:44.0 +01:00
}
+"title": 247323
}
1 => App\Entity\EntryComment {#2165
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2041 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2041 …}
+body: "For 240 million devices I think there would be some Linux can “cut it”. And second, no? My computer is 13+ years old and I am using it with basically no lagging, developing a couple of apps. Truth is all medium-tier computers made today and in recent years have reached the point where for normal use (that is daily tasks like communication, content consumption and calculations) only limiting factor for daily driver is software optimization."
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703296770 {#2053
date: 2023-12-23 02:59:30.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@TCB13@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#2104 …}
+nested: Doctrine\ORM\PersistentCollection {#2099 …}
+votes: Doctrine\ORM\PersistentCollection {#2108 …}
+reports: Doctrine\ORM\PersistentCollection {#2101 …}
+favourites: Doctrine\ORM\PersistentCollection {#2109 …}
+notifications: Doctrine\ORM\PersistentCollection {#2106 …}
-id: 247324
-bodyTs: "'13':21 '240':2 'app':37 'basic':30 'calcul':68 'communic':64 'comput':19,44 'consumpt':66 'content':65 'coupl':35 'cut':13 'daili':61,73 'develop':33 'devic':4 'driver':74 'factor':71 'lag':32 'like':63 'limit':70 'linux':11 'made':45 'medium':42 'medium-ti':41 'million':3 'normal':57 'old':23 'optim':77 'point':54 'reach':52 'recent':49 'second':16 'softwar':76 'task':62 'think':6 'tier':43 'today':46 'truth':38 'use':27,58 'would':8 'year':22,50"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5884688"
+editedAt: null
+createdAt: DateTimeImmutable @1703296770 {#2125
date: 2023-12-23 02:59:30.0 +01:00
}
+"title": 247324
}
0 => App\Entity\EntryComment {#2114
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2118 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2346 …}
+body: """
And this is a huge barrier for a lot of users, a massive roadblock. But the article talk about houndres of millions of computers, my point was just about that even if millions like you cannot switch, still in this statistics are millions that can especially non-professional that do not make audio or video, but that are going to throw away a working machine.\n
\n
I feel like you might feel being personally directed by my comment, because of your respond with “YOU’re not compatible”. Maybe it was bad wording, sorry. What I ment was that it can be frustrating to see “Linux doesn’t support …” when actually it has everything needed to support this software and the burden to make it available is on the software developer. Like saying that USB-C doesn’t support iPhone 13. Lack of it still hurts the Linux side anyway, but I just don’t want misconsaptions about which side should make a port happen.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703387471 {#2107
date: 2023-12-24 04:11:11.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@BaldProphet@kbin.social"
"@Transcendant@lemmy.world"
"@smileyhead@discuss.tchncs.de"
]
+children: Doctrine\ORM\PersistentCollection {#2117 …}
+nested: Doctrine\ORM\PersistentCollection {#2122 …}
+votes: Doctrine\ORM\PersistentCollection {#2113 …}
+reports: Doctrine\ORM\PersistentCollection {#2119 …}
+favourites: Doctrine\ORM\PersistentCollection {#2120 …}
+notifications: Doctrine\ORM\PersistentCollection {#2160 …}
-id: 247694
-bodyTs: "'13':141 'actual':110 'anyway':150 'articl':17 'audio':54 'avail':125 'away':63 'bad':91 'barrier':6 'burden':121 'c':136 'cannot':36 'comment':78 'compat':87 'comput':24 'develop':130 'direct':75 'doesn':106,137 'especi':46 'even':31 'everyth':113 'feel':68,72 'frustrat':102 'go':60 'happen':165 'houndr':20 'huge':5 'hurt':146 'iphon':140 'lack':142 'like':34,69,131 'linux':105,148 'lot':9 'machin':66 'make':53,123,162 'massiv':13 'mayb':88 'ment':96 'might':71 'million':22,33,43 'misconsapt':157 'need':114 'non':48 'non-profession':47 'person':74 'point':26 'port':164 'profession':49 're':85 'respond':82 'roadblock':14 'say':132 'see':104 'side':149,160 'softwar':118,129 'sorri':93 'statist':41 'still':38,145 'support':108,116,139 'switch':37 'talk':18 'throw':62 'usb':135 'usb-c':134 'user':11 'video':56 'want':156 'word':92 'work':65"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5904342"
+editedAt: DateTimeImmutable @1707537983 {#2112
date: 2024-02-10 05:06:23.0 +01:00
}
+createdAt: DateTimeImmutable @1703387471 {#2124
date: 2023-12-24 04:11:11.0 +01:00
}
+"title": 247694
}
]
-id: 24104
-titleTs: "'10':5 '240':8 'comput':10 'could':6 'end':1 'instal':16 'landfil':13 'linux':17 'million':9 'send':7 'support':2 'window':4"
-bodyTs: "'10':6 '11':33 '240':18 'comput':56 'current':16 'desktop':10 'due':30 'end':3 'exorbit':35 'gnu/linux':52 'hope':59 'immedi':46 'landfil':26 'like':40 'mani':43 'may':21,53 'million':19 'most':29 'oper':11 'outdat':47 'pcs':20,44 'popular':9 'possibl':17 'prone':49 'requir':36 'result':41 'secur':58 'sent':23 'support':2 'system':12 'think':63 'virus':51 'window':5,32 'world':15"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1703366140
+visibility: "visible "
+apId: "https://lemmy.world/post/9873158"
+editedAt: DateTimeImmutable @1706576554 {#2956
date: 2024-01-30 02:02:34.0 +01:00
}
+createdAt: DateTimeImmutable @1703279740 {#2935
date: 2023-12-22 22:15:40.0 +01:00
}
+__isInitialized__: true
…2
}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2090 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2090 …}
+body: """
But a ton of people **can** open a PDF and will be able to select an USB stick from menu and click next, next, next… It’s not completely different, you still use a mouse, a keyboard, you click on things, you get some feedback from it… When a new kind of mobile app arrive, I can see someone using no more than 5 apps in life having problems, but this doesn’t mean only them exists, we do not talk about switching everyone here. People change houses, how are they figuring out where is the toilet if doors have different color and are in different positions?\n
\n
Also a reason why any software like Microsoft Windows or Office should be banned from public education, especially primary schools.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703295334 {#2095
date: 2023-12-23 02:35:34.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@derf82@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#2093 …}
+nested: Doctrine\ORM\PersistentCollection {#2094 …}
+votes: Doctrine\ORM\PersistentCollection {#2140 …}
+reports: Doctrine\ORM\PersistentCollection {#2133 …}
+favourites: Doctrine\ORM\PersistentCollection {#2131 …}
+notifications: Doctrine\ORM\PersistentCollection {#2138 …}
-id: 247319
-bodyTs: "'5':64 'abl':13 'also':108 'app':54,65 'arriv':55 'ban':121 'chang':87 'click':22,39 'color':102 'complet':29 'differ':30,101,106 'doesn':72 'door':99 'educ':124 'especi':125 'everyon':84 'exist':77 'feedback':45 'figur':92 'get':43 'hous':88 'keyboard':37 'kind':51 'life':67 'like':114 'mean':74 'menu':20 'microsoft':115 'mobil':53 'mous':35 'new':50 'next':23,24,25 'offic':118 'open':7 'pdf':9 'peopl':5,86 'posit':107 'primari':126 'problem':69 'public':123 'reason':110 'school':127 'see':58 'select':15 'softwar':113 'someon':59 'stick':18 'still':32 'switch':83 'talk':81 'thing':41 'toilet':97 'ton':3 'usb':17 'use':33,60 'window':116"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5884378"
+editedAt: null
+createdAt: DateTimeImmutable @1703295334 {#2087
date: 2023-12-23 02:35:34.0 +01:00
}
+"title": 247319
} |
|
Show voter details
|
65 |
DENIED
|
ROLE_USER
|
null |
|
Show voter details
|
66 |
DENIED
|
moderate
|
App\Entity\EntryComment {#2330
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086
+user: Proxies\__CG__\App\Entity\User {#2975 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: Proxies\__CG__\App\Entity\Image {#2977 …}
+domain: Proxies\__CG__\App\Entity\Domain {#2978 …}
+slug: "Ending-support-for-Windows-10-could-send-240-million-computers"
+title: "Ending support for Windows 10 could send 240 million computers to the landfill. Why not install Linux on them?"
+url: "https://gadgettendency.com/ending-support-for-windows-10-could-send-240-million-computers-to-the-landfill-a-stack-of-that-many-laptops-would-end-up-600-km-higher-than-the-moon/"
+body: "With support ending for Windows 10, the most popular desktop operating system in the world currently, possibly 240 million pcs may be sent to the landfill. This is mostly due to Windows 11’s exorbitant requirements. This will most likely result in many pcs being immediately outdated, and prone to viruses. GNU/Linux may be these computers’ only secure hope, what do you think?"
+type: "link"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 242
+favouriteCount: 748
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1711817575 {#2970
date: 2024-03-30 17:52:55.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#2979 …}
+votes: Doctrine\ORM\PersistentCollection {#2981 …}
+reports: Doctrine\ORM\PersistentCollection {#2983 …}
+favourites: Doctrine\ORM\PersistentCollection {#2985 …}
+notifications: Doctrine\ORM\PersistentCollection {#2987 …}
+badges: Doctrine\ORM\PersistentCollection {#2989 …}
+children: [
6 => App\Entity\EntryComment {#2091
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2090 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2090 …}
+body: """
But a ton of people **can** open a PDF and will be able to select an USB stick from menu and click next, next, next… It’s not completely different, you still use a mouse, a keyboard, you click on things, you get some feedback from it… When a new kind of mobile app arrive, I can see someone using no more than 5 apps in life having problems, but this doesn’t mean only them exists, we do not talk about switching everyone here. People change houses, how are they figuring out where is the toilet if doors have different color and are in different positions?\n
\n
Also a reason why any software like Microsoft Windows or Office should be banned from public education, especially primary schools.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703295334 {#2095
date: 2023-12-23 02:35:34.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@derf82@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#2093 …}
+nested: Doctrine\ORM\PersistentCollection {#2094 …}
+votes: Doctrine\ORM\PersistentCollection {#2140 …}
+reports: Doctrine\ORM\PersistentCollection {#2133 …}
+favourites: Doctrine\ORM\PersistentCollection {#2131 …}
+notifications: Doctrine\ORM\PersistentCollection {#2138 …}
-id: 247319
-bodyTs: "'5':64 'abl':13 'also':108 'app':54,65 'arriv':55 'ban':121 'chang':87 'click':22,39 'color':102 'complet':29 'differ':30,101,106 'doesn':72 'door':99 'educ':124 'especi':125 'everyon':84 'exist':77 'feedback':45 'figur':92 'get':43 'hous':88 'keyboard':37 'kind':51 'life':67 'like':114 'mean':74 'menu':20 'microsoft':115 'mobil':53 'mous':35 'new':50 'next':23,24,25 'offic':118 'open':7 'pdf':9 'peopl':5,86 'posit':107 'primari':126 'problem':69 'public':123 'reason':110 'school':127 'see':58 'select':15 'softwar':113 'someon':59 'stick':18 'still':32 'switch':83 'talk':81 'thing':41 'toilet':97 'ton':3 'usb':17 'use':33,60 'window':116"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5884378"
+editedAt: null
+createdAt: DateTimeImmutable @1703295334 {#2087
date: 2023-12-23 02:35:34.0 +01:00
}
+"title": 247319
}
5 => App\Entity\EntryComment {#2330}
4 => App\Entity\EntryComment {#2325
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2327 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2346 …}
+body: """
Your DAW and audio interface doesn’t support Linux.*\n
\n
Yeah, it’s a bummer, but you are in a small portion of effected computer users, still others can benefit from longer support.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 1
+score: 0
+lastActive: DateTime @1703295692 {#2328
date: 2023-12-23 02:41:32.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@BaldProphet@kbin.social"
"@Transcendant@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#2329 …}
+nested: Doctrine\ORM\PersistentCollection {#2323 …}
+votes: Doctrine\ORM\PersistentCollection {#2300 …}
+reports: Doctrine\ORM\PersistentCollection {#2340 …}
+favourites: Doctrine\ORM\PersistentCollection {#2342 …}
+notifications: Doctrine\ORM\PersistentCollection {#2343 …}
-id: 247321
-bodyTs: "'audio':4 'benefit':29 'bummer':14 'comput':24 'daw':2 'doesn':6 'effect':23 'interfac':5 'linux':9 'longer':31 'other':27 'portion':21 'small':20 'still':26 'support':8,32 'user':25 'yeah':10"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5884453"
+editedAt: DateTimeImmutable @1707175705 {#2326
date: 2024-02-06 00:28:25.0 +01:00
}
+createdAt: DateTimeImmutable @1703295692 {#2191
date: 2023-12-23 02:41:32.0 +01:00
}
+"title": 247321
}
3 => App\Entity\EntryComment {#2338
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2159 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2346 …}
+body: """
There are many many outdated patterns how to do things in Windows that are cemented in public knowledge. Running random executable installers from the web giving them superuser permissions is I thing the most popular one.\n
\n
How to share all user settings between system installations? How to change the logo in the desktop bar? How to add a directory to an applications bar? How to change system build-in keyboard shortcut? How to reinstall just the system keeping the programs? How to make a file run on a shortcut? Those are things I use daily, that are impossible or need some hacky programs to work on anything other than Linux, I would die if I had to switch back now.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703296199 {#2335
date: 2023-12-23 02:49:59.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@BaldProphet@kbin.social"
"@Wermhatswormhat@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#2143 …}
+nested: Doctrine\ORM\PersistentCollection {#2136 …}
+votes: Doctrine\ORM\PersistentCollection {#2073 …}
+reports: Doctrine\ORM\PersistentCollection {#2072 …}
+favourites: Doctrine\ORM\PersistentCollection {#2065 …}
+notifications: Doctrine\ORM\PersistentCollection {#2066 …}
-id: 247322
-bodyTs: "'add':57 'anyth':108 'applic':62 'back':120 'bar':54,63 'build':69 'build-in':68 'cement':15 'chang':48,66 'daili':96 'desktop':53 'die':114 'directori':59 'execut':21 'file':86 'give':26 'hacki':103 'imposs':99 'instal':22,45 'keep':79 'keyboard':71 'knowledg':18 'linux':111 'logo':50 'make':84 'mani':3,4 'need':101 'one':36 'outdat':5 'pattern':6 'permiss':29 'popular':35 'program':81,104 'public':17 'random':20 'reinstal':75 'run':19,87 'set':42 'share':39 'shortcut':72,90 'superus':28 'switch':119 'system':44,67,78 'thing':10,32,93 'use':95 'user':41 'web':25 'window':12 'work':106 'would':113"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5884570"
+editedAt: null
+createdAt: DateTimeImmutable @1703296199 {#2339
date: 2023-12-23 02:49:59.0 +01:00
}
+"title": 247322
}
2 => App\Entity\EntryComment {#2049
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2048 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2346 …}
+body: """
Use whatever is popular and has a cool logo. Distro is basically a software library, preinstalled programs and default settings. You can transform any distro to behave like the other one.\n
\n
KDE, Gnome, XFCE…? Which is looking better for you or which one was default. Init system? Which was the default. X11/Wayland? Wayland. Go with X11 only if Wayland is having problems with your graphics card.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703296544 {#2067
date: 2023-12-23 02:55:44.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@BaldProphet@kbin.social"
"@Deebster@programming.dev"
]
+children: Doctrine\ORM\PersistentCollection {#2051 …}
+nested: Doctrine\ORM\PersistentCollection {#2059 …}
+votes: Doctrine\ORM\PersistentCollection {#2047 …}
+reports: Doctrine\ORM\PersistentCollection {#2057 …}
+favourites: Doctrine\ORM\PersistentCollection {#2055 …}
+notifications: Doctrine\ORM\PersistentCollection {#2054 …}
-id: 247323
-bodyTs: "'basic':12 'behav':27 'better':38 'card':66 'cool':8 'default':19,45,51 'distro':10,25 'gnome':33 'go':54 'graphic':65 'init':46 'kde':32 'librari':15 'like':28 'logo':9 'look':37 'one':31,43 'popular':4 'preinstal':16 'problem':62 'program':17 'set':20 'softwar':14 'system':47 'transform':23 'use':1 'wayland':53,59 'whatev':2 'x11':56 'x11/wayland':52 'xfce':34"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5884646"
+editedAt: null
+createdAt: DateTimeImmutable @1703296544 {#2070
date: 2023-12-23 02:55:44.0 +01:00
}
+"title": 247323
}
1 => App\Entity\EntryComment {#2165
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2041 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2041 …}
+body: "For 240 million devices I think there would be some Linux can “cut it”. And second, no? My computer is 13+ years old and I am using it with basically no lagging, developing a couple of apps. Truth is all medium-tier computers made today and in recent years have reached the point where for normal use (that is daily tasks like communication, content consumption and calculations) only limiting factor for daily driver is software optimization."
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703296770 {#2053
date: 2023-12-23 02:59:30.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@TCB13@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#2104 …}
+nested: Doctrine\ORM\PersistentCollection {#2099 …}
+votes: Doctrine\ORM\PersistentCollection {#2108 …}
+reports: Doctrine\ORM\PersistentCollection {#2101 …}
+favourites: Doctrine\ORM\PersistentCollection {#2109 …}
+notifications: Doctrine\ORM\PersistentCollection {#2106 …}
-id: 247324
-bodyTs: "'13':21 '240':2 'app':37 'basic':30 'calcul':68 'communic':64 'comput':19,44 'consumpt':66 'content':65 'coupl':35 'cut':13 'daili':61,73 'develop':33 'devic':4 'driver':74 'factor':71 'lag':32 'like':63 'limit':70 'linux':11 'made':45 'medium':42 'medium-ti':41 'million':3 'normal':57 'old':23 'optim':77 'point':54 'reach':52 'recent':49 'second':16 'softwar':76 'task':62 'think':6 'tier':43 'today':46 'truth':38 'use':27,58 'would':8 'year':22,50"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5884688"
+editedAt: null
+createdAt: DateTimeImmutable @1703296770 {#2125
date: 2023-12-23 02:59:30.0 +01:00
}
+"title": 247324
}
0 => App\Entity\EntryComment {#2114
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2118 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2346 …}
+body: """
And this is a huge barrier for a lot of users, a massive roadblock. But the article talk about houndres of millions of computers, my point was just about that even if millions like you cannot switch, still in this statistics are millions that can especially non-professional that do not make audio or video, but that are going to throw away a working machine.\n
\n
I feel like you might feel being personally directed by my comment, because of your respond with “YOU’re not compatible”. Maybe it was bad wording, sorry. What I ment was that it can be frustrating to see “Linux doesn’t support …” when actually it has everything needed to support this software and the burden to make it available is on the software developer. Like saying that USB-C doesn’t support iPhone 13. Lack of it still hurts the Linux side anyway, but I just don’t want misconsaptions about which side should make a port happen.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703387471 {#2107
date: 2023-12-24 04:11:11.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@BaldProphet@kbin.social"
"@Transcendant@lemmy.world"
"@smileyhead@discuss.tchncs.de"
]
+children: Doctrine\ORM\PersistentCollection {#2117 …}
+nested: Doctrine\ORM\PersistentCollection {#2122 …}
+votes: Doctrine\ORM\PersistentCollection {#2113 …}
+reports: Doctrine\ORM\PersistentCollection {#2119 …}
+favourites: Doctrine\ORM\PersistentCollection {#2120 …}
+notifications: Doctrine\ORM\PersistentCollection {#2160 …}
-id: 247694
-bodyTs: "'13':141 'actual':110 'anyway':150 'articl':17 'audio':54 'avail':125 'away':63 'bad':91 'barrier':6 'burden':121 'c':136 'cannot':36 'comment':78 'compat':87 'comput':24 'develop':130 'direct':75 'doesn':106,137 'especi':46 'even':31 'everyth':113 'feel':68,72 'frustrat':102 'go':60 'happen':165 'houndr':20 'huge':5 'hurt':146 'iphon':140 'lack':142 'like':34,69,131 'linux':105,148 'lot':9 'machin':66 'make':53,123,162 'massiv':13 'mayb':88 'ment':96 'might':71 'million':22,33,43 'misconsapt':157 'need':114 'non':48 'non-profession':47 'person':74 'point':26 'port':164 'profession':49 're':85 'respond':82 'roadblock':14 'say':132 'see':104 'side':149,160 'softwar':118,129 'sorri':93 'statist':41 'still':38,145 'support':108,116,139 'switch':37 'talk':18 'throw':62 'usb':135 'usb-c':134 'user':11 'video':56 'want':156 'word':92 'work':65"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5904342"
+editedAt: DateTimeImmutable @1707537983 {#2112
date: 2024-02-10 05:06:23.0 +01:00
}
+createdAt: DateTimeImmutable @1703387471 {#2124
date: 2023-12-24 04:11:11.0 +01:00
}
+"title": 247694
}
]
-id: 24104
-titleTs: "'10':5 '240':8 'comput':10 'could':6 'end':1 'instal':16 'landfil':13 'linux':17 'million':9 'send':7 'support':2 'window':4"
-bodyTs: "'10':6 '11':33 '240':18 'comput':56 'current':16 'desktop':10 'due':30 'end':3 'exorbit':35 'gnu/linux':52 'hope':59 'immedi':46 'landfil':26 'like':40 'mani':43 'may':21,53 'million':19 'most':29 'oper':11 'outdat':47 'pcs':20,44 'popular':9 'possibl':17 'prone':49 'requir':36 'result':41 'secur':58 'sent':23 'support':2 'system':12 'think':63 'virus':51 'window':5,32 'world':15"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1703366140
+visibility: "visible "
+apId: "https://lemmy.world/post/9873158"
+editedAt: DateTimeImmutable @1706576554 {#2956
date: 2024-01-30 02:02:34.0 +01:00
}
+createdAt: DateTimeImmutable @1703279740 {#2935
date: 2023-12-22 22:15:40.0 +01:00
}
+__isInitialized__: true
…2
}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2348 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2346 …}
+body: "Marketing is monopolized with Google and Facebook. Manufacturers and Microsoft won’t make one-click installs happen. Tech support would be chicken and egg problem. Ugh…"
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703295471 {#2345
date: 2023-12-23 02:37:51.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@BaldProphet@kbin.social"
"@anon5621@lemmy.ml"
]
+children: Doctrine\ORM\PersistentCollection {#2351 …}
+nested: Doctrine\ORM\PersistentCollection {#2332 …}
+votes: Doctrine\ORM\PersistentCollection {#2349 …}
+reports: Doctrine\ORM\PersistentCollection {#2141 …}
+favourites: Doctrine\ORM\PersistentCollection {#2164 …}
+notifications: Doctrine\ORM\PersistentCollection {#2314 …}
-id: 247320
-bodyTs: "'chicken':23 'click':16 'egg':25 'facebook':7 'googl':5 'happen':18 'instal':17 'make':13 'manufactur':8 'market':1 'microsoft':10 'monopol':3 'one':15 'one-click':14 'problem':26 'support':20 'tech':19 'ugh':27 'won':11 'would':21"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5884407"
+editedAt: null
+createdAt: DateTimeImmutable @1703295471 {#2350
date: 2023-12-23 02:37:51.0 +01:00
}
+"title": 247320
} |
|
Show voter details
|
67 |
DENIED
|
edit
|
App\Entity\EntryComment {#2330
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086
+user: Proxies\__CG__\App\Entity\User {#2975 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: Proxies\__CG__\App\Entity\Image {#2977 …}
+domain: Proxies\__CG__\App\Entity\Domain {#2978 …}
+slug: "Ending-support-for-Windows-10-could-send-240-million-computers"
+title: "Ending support for Windows 10 could send 240 million computers to the landfill. Why not install Linux on them?"
+url: "https://gadgettendency.com/ending-support-for-windows-10-could-send-240-million-computers-to-the-landfill-a-stack-of-that-many-laptops-would-end-up-600-km-higher-than-the-moon/"
+body: "With support ending for Windows 10, the most popular desktop operating system in the world currently, possibly 240 million pcs may be sent to the landfill. This is mostly due to Windows 11’s exorbitant requirements. This will most likely result in many pcs being immediately outdated, and prone to viruses. GNU/Linux may be these computers’ only secure hope, what do you think?"
+type: "link"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 242
+favouriteCount: 748
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1711817575 {#2970
date: 2024-03-30 17:52:55.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#2979 …}
+votes: Doctrine\ORM\PersistentCollection {#2981 …}
+reports: Doctrine\ORM\PersistentCollection {#2983 …}
+favourites: Doctrine\ORM\PersistentCollection {#2985 …}
+notifications: Doctrine\ORM\PersistentCollection {#2987 …}
+badges: Doctrine\ORM\PersistentCollection {#2989 …}
+children: [
6 => App\Entity\EntryComment {#2091
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2090 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2090 …}
+body: """
But a ton of people **can** open a PDF and will be able to select an USB stick from menu and click next, next, next… It’s not completely different, you still use a mouse, a keyboard, you click on things, you get some feedback from it… When a new kind of mobile app arrive, I can see someone using no more than 5 apps in life having problems, but this doesn’t mean only them exists, we do not talk about switching everyone here. People change houses, how are they figuring out where is the toilet if doors have different color and are in different positions?\n
\n
Also a reason why any software like Microsoft Windows or Office should be banned from public education, especially primary schools.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703295334 {#2095
date: 2023-12-23 02:35:34.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@derf82@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#2093 …}
+nested: Doctrine\ORM\PersistentCollection {#2094 …}
+votes: Doctrine\ORM\PersistentCollection {#2140 …}
+reports: Doctrine\ORM\PersistentCollection {#2133 …}
+favourites: Doctrine\ORM\PersistentCollection {#2131 …}
+notifications: Doctrine\ORM\PersistentCollection {#2138 …}
-id: 247319
-bodyTs: "'5':64 'abl':13 'also':108 'app':54,65 'arriv':55 'ban':121 'chang':87 'click':22,39 'color':102 'complet':29 'differ':30,101,106 'doesn':72 'door':99 'educ':124 'especi':125 'everyon':84 'exist':77 'feedback':45 'figur':92 'get':43 'hous':88 'keyboard':37 'kind':51 'life':67 'like':114 'mean':74 'menu':20 'microsoft':115 'mobil':53 'mous':35 'new':50 'next':23,24,25 'offic':118 'open':7 'pdf':9 'peopl':5,86 'posit':107 'primari':126 'problem':69 'public':123 'reason':110 'school':127 'see':58 'select':15 'softwar':113 'someon':59 'stick':18 'still':32 'switch':83 'talk':81 'thing':41 'toilet':97 'ton':3 'usb':17 'use':33,60 'window':116"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5884378"
+editedAt: null
+createdAt: DateTimeImmutable @1703295334 {#2087
date: 2023-12-23 02:35:34.0 +01:00
}
+"title": 247319
}
5 => App\Entity\EntryComment {#2330}
4 => App\Entity\EntryComment {#2325
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2327 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2346 …}
+body: """
Your DAW and audio interface doesn’t support Linux.*\n
\n
Yeah, it’s a bummer, but you are in a small portion of effected computer users, still others can benefit from longer support.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 1
+score: 0
+lastActive: DateTime @1703295692 {#2328
date: 2023-12-23 02:41:32.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@BaldProphet@kbin.social"
"@Transcendant@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#2329 …}
+nested: Doctrine\ORM\PersistentCollection {#2323 …}
+votes: Doctrine\ORM\PersistentCollection {#2300 …}
+reports: Doctrine\ORM\PersistentCollection {#2340 …}
+favourites: Doctrine\ORM\PersistentCollection {#2342 …}
+notifications: Doctrine\ORM\PersistentCollection {#2343 …}
-id: 247321
-bodyTs: "'audio':4 'benefit':29 'bummer':14 'comput':24 'daw':2 'doesn':6 'effect':23 'interfac':5 'linux':9 'longer':31 'other':27 'portion':21 'small':20 'still':26 'support':8,32 'user':25 'yeah':10"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5884453"
+editedAt: DateTimeImmutable @1707175705 {#2326
date: 2024-02-06 00:28:25.0 +01:00
}
+createdAt: DateTimeImmutable @1703295692 {#2191
date: 2023-12-23 02:41:32.0 +01:00
}
+"title": 247321
}
3 => App\Entity\EntryComment {#2338
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2159 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2346 …}
+body: """
There are many many outdated patterns how to do things in Windows that are cemented in public knowledge. Running random executable installers from the web giving them superuser permissions is I thing the most popular one.\n
\n
How to share all user settings between system installations? How to change the logo in the desktop bar? How to add a directory to an applications bar? How to change system build-in keyboard shortcut? How to reinstall just the system keeping the programs? How to make a file run on a shortcut? Those are things I use daily, that are impossible or need some hacky programs to work on anything other than Linux, I would die if I had to switch back now.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703296199 {#2335
date: 2023-12-23 02:49:59.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@BaldProphet@kbin.social"
"@Wermhatswormhat@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#2143 …}
+nested: Doctrine\ORM\PersistentCollection {#2136 …}
+votes: Doctrine\ORM\PersistentCollection {#2073 …}
+reports: Doctrine\ORM\PersistentCollection {#2072 …}
+favourites: Doctrine\ORM\PersistentCollection {#2065 …}
+notifications: Doctrine\ORM\PersistentCollection {#2066 …}
-id: 247322
-bodyTs: "'add':57 'anyth':108 'applic':62 'back':120 'bar':54,63 'build':69 'build-in':68 'cement':15 'chang':48,66 'daili':96 'desktop':53 'die':114 'directori':59 'execut':21 'file':86 'give':26 'hacki':103 'imposs':99 'instal':22,45 'keep':79 'keyboard':71 'knowledg':18 'linux':111 'logo':50 'make':84 'mani':3,4 'need':101 'one':36 'outdat':5 'pattern':6 'permiss':29 'popular':35 'program':81,104 'public':17 'random':20 'reinstal':75 'run':19,87 'set':42 'share':39 'shortcut':72,90 'superus':28 'switch':119 'system':44,67,78 'thing':10,32,93 'use':95 'user':41 'web':25 'window':12 'work':106 'would':113"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5884570"
+editedAt: null
+createdAt: DateTimeImmutable @1703296199 {#2339
date: 2023-12-23 02:49:59.0 +01:00
}
+"title": 247322
}
2 => App\Entity\EntryComment {#2049
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2048 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2346 …}
+body: """
Use whatever is popular and has a cool logo. Distro is basically a software library, preinstalled programs and default settings. You can transform any distro to behave like the other one.\n
\n
KDE, Gnome, XFCE…? Which is looking better for you or which one was default. Init system? Which was the default. X11/Wayland? Wayland. Go with X11 only if Wayland is having problems with your graphics card.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703296544 {#2067
date: 2023-12-23 02:55:44.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@BaldProphet@kbin.social"
"@Deebster@programming.dev"
]
+children: Doctrine\ORM\PersistentCollection {#2051 …}
+nested: Doctrine\ORM\PersistentCollection {#2059 …}
+votes: Doctrine\ORM\PersistentCollection {#2047 …}
+reports: Doctrine\ORM\PersistentCollection {#2057 …}
+favourites: Doctrine\ORM\PersistentCollection {#2055 …}
+notifications: Doctrine\ORM\PersistentCollection {#2054 …}
-id: 247323
-bodyTs: "'basic':12 'behav':27 'better':38 'card':66 'cool':8 'default':19,45,51 'distro':10,25 'gnome':33 'go':54 'graphic':65 'init':46 'kde':32 'librari':15 'like':28 'logo':9 'look':37 'one':31,43 'popular':4 'preinstal':16 'problem':62 'program':17 'set':20 'softwar':14 'system':47 'transform':23 'use':1 'wayland':53,59 'whatev':2 'x11':56 'x11/wayland':52 'xfce':34"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5884646"
+editedAt: null
+createdAt: DateTimeImmutable @1703296544 {#2070
date: 2023-12-23 02:55:44.0 +01:00
}
+"title": 247323
}
1 => App\Entity\EntryComment {#2165
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2041 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2041 …}
+body: "For 240 million devices I think there would be some Linux can “cut it”. And second, no? My computer is 13+ years old and I am using it with basically no lagging, developing a couple of apps. Truth is all medium-tier computers made today and in recent years have reached the point where for normal use (that is daily tasks like communication, content consumption and calculations) only limiting factor for daily driver is software optimization."
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703296770 {#2053
date: 2023-12-23 02:59:30.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@TCB13@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#2104 …}
+nested: Doctrine\ORM\PersistentCollection {#2099 …}
+votes: Doctrine\ORM\PersistentCollection {#2108 …}
+reports: Doctrine\ORM\PersistentCollection {#2101 …}
+favourites: Doctrine\ORM\PersistentCollection {#2109 …}
+notifications: Doctrine\ORM\PersistentCollection {#2106 …}
-id: 247324
-bodyTs: "'13':21 '240':2 'app':37 'basic':30 'calcul':68 'communic':64 'comput':19,44 'consumpt':66 'content':65 'coupl':35 'cut':13 'daili':61,73 'develop':33 'devic':4 'driver':74 'factor':71 'lag':32 'like':63 'limit':70 'linux':11 'made':45 'medium':42 'medium-ti':41 'million':3 'normal':57 'old':23 'optim':77 'point':54 'reach':52 'recent':49 'second':16 'softwar':76 'task':62 'think':6 'tier':43 'today':46 'truth':38 'use':27,58 'would':8 'year':22,50"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5884688"
+editedAt: null
+createdAt: DateTimeImmutable @1703296770 {#2125
date: 2023-12-23 02:59:30.0 +01:00
}
+"title": 247324
}
0 => App\Entity\EntryComment {#2114
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2118 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2346 …}
+body: """
And this is a huge barrier for a lot of users, a massive roadblock. But the article talk about houndres of millions of computers, my point was just about that even if millions like you cannot switch, still in this statistics are millions that can especially non-professional that do not make audio or video, but that are going to throw away a working machine.\n
\n
I feel like you might feel being personally directed by my comment, because of your respond with “YOU’re not compatible”. Maybe it was bad wording, sorry. What I ment was that it can be frustrating to see “Linux doesn’t support …” when actually it has everything needed to support this software and the burden to make it available is on the software developer. Like saying that USB-C doesn’t support iPhone 13. Lack of it still hurts the Linux side anyway, but I just don’t want misconsaptions about which side should make a port happen.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703387471 {#2107
date: 2023-12-24 04:11:11.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@BaldProphet@kbin.social"
"@Transcendant@lemmy.world"
"@smileyhead@discuss.tchncs.de"
]
+children: Doctrine\ORM\PersistentCollection {#2117 …}
+nested: Doctrine\ORM\PersistentCollection {#2122 …}
+votes: Doctrine\ORM\PersistentCollection {#2113 …}
+reports: Doctrine\ORM\PersistentCollection {#2119 …}
+favourites: Doctrine\ORM\PersistentCollection {#2120 …}
+notifications: Doctrine\ORM\PersistentCollection {#2160 …}
-id: 247694
-bodyTs: "'13':141 'actual':110 'anyway':150 'articl':17 'audio':54 'avail':125 'away':63 'bad':91 'barrier':6 'burden':121 'c':136 'cannot':36 'comment':78 'compat':87 'comput':24 'develop':130 'direct':75 'doesn':106,137 'especi':46 'even':31 'everyth':113 'feel':68,72 'frustrat':102 'go':60 'happen':165 'houndr':20 'huge':5 'hurt':146 'iphon':140 'lack':142 'like':34,69,131 'linux':105,148 'lot':9 'machin':66 'make':53,123,162 'massiv':13 'mayb':88 'ment':96 'might':71 'million':22,33,43 'misconsapt':157 'need':114 'non':48 'non-profession':47 'person':74 'point':26 'port':164 'profession':49 're':85 'respond':82 'roadblock':14 'say':132 'see':104 'side':149,160 'softwar':118,129 'sorri':93 'statist':41 'still':38,145 'support':108,116,139 'switch':37 'talk':18 'throw':62 'usb':135 'usb-c':134 'user':11 'video':56 'want':156 'word':92 'work':65"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5904342"
+editedAt: DateTimeImmutable @1707537983 {#2112
date: 2024-02-10 05:06:23.0 +01:00
}
+createdAt: DateTimeImmutable @1703387471 {#2124
date: 2023-12-24 04:11:11.0 +01:00
}
+"title": 247694
}
]
-id: 24104
-titleTs: "'10':5 '240':8 'comput':10 'could':6 'end':1 'instal':16 'landfil':13 'linux':17 'million':9 'send':7 'support':2 'window':4"
-bodyTs: "'10':6 '11':33 '240':18 'comput':56 'current':16 'desktop':10 'due':30 'end':3 'exorbit':35 'gnu/linux':52 'hope':59 'immedi':46 'landfil':26 'like':40 'mani':43 'may':21,53 'million':19 'most':29 'oper':11 'outdat':47 'pcs':20,44 'popular':9 'possibl':17 'prone':49 'requir':36 'result':41 'secur':58 'sent':23 'support':2 'system':12 'think':63 'virus':51 'window':5,32 'world':15"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1703366140
+visibility: "visible "
+apId: "https://lemmy.world/post/9873158"
+editedAt: DateTimeImmutable @1706576554 {#2956
date: 2024-01-30 02:02:34.0 +01:00
}
+createdAt: DateTimeImmutable @1703279740 {#2935
date: 2023-12-22 22:15:40.0 +01:00
}
+__isInitialized__: true
…2
}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2348 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2346 …}
+body: "Marketing is monopolized with Google and Facebook. Manufacturers and Microsoft won’t make one-click installs happen. Tech support would be chicken and egg problem. Ugh…"
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703295471 {#2345
date: 2023-12-23 02:37:51.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@BaldProphet@kbin.social"
"@anon5621@lemmy.ml"
]
+children: Doctrine\ORM\PersistentCollection {#2351 …}
+nested: Doctrine\ORM\PersistentCollection {#2332 …}
+votes: Doctrine\ORM\PersistentCollection {#2349 …}
+reports: Doctrine\ORM\PersistentCollection {#2141 …}
+favourites: Doctrine\ORM\PersistentCollection {#2164 …}
+notifications: Doctrine\ORM\PersistentCollection {#2314 …}
-id: 247320
-bodyTs: "'chicken':23 'click':16 'egg':25 'facebook':7 'googl':5 'happen':18 'instal':17 'make':13 'manufactur':8 'market':1 'microsoft':10 'monopol':3 'one':15 'one-click':14 'problem':26 'support':20 'tech':19 'ugh':27 'won':11 'would':21"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5884407"
+editedAt: null
+createdAt: DateTimeImmutable @1703295471 {#2350
date: 2023-12-23 02:37:51.0 +01:00
}
+"title": 247320
} |
|
Show voter details
|
68 |
DENIED
|
moderate
|
App\Entity\EntryComment {#2330
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086
+user: Proxies\__CG__\App\Entity\User {#2975 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: Proxies\__CG__\App\Entity\Image {#2977 …}
+domain: Proxies\__CG__\App\Entity\Domain {#2978 …}
+slug: "Ending-support-for-Windows-10-could-send-240-million-computers"
+title: "Ending support for Windows 10 could send 240 million computers to the landfill. Why not install Linux on them?"
+url: "https://gadgettendency.com/ending-support-for-windows-10-could-send-240-million-computers-to-the-landfill-a-stack-of-that-many-laptops-would-end-up-600-km-higher-than-the-moon/"
+body: "With support ending for Windows 10, the most popular desktop operating system in the world currently, possibly 240 million pcs may be sent to the landfill. This is mostly due to Windows 11’s exorbitant requirements. This will most likely result in many pcs being immediately outdated, and prone to viruses. GNU/Linux may be these computers’ only secure hope, what do you think?"
+type: "link"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 242
+favouriteCount: 748
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1711817575 {#2970
date: 2024-03-30 17:52:55.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#2979 …}
+votes: Doctrine\ORM\PersistentCollection {#2981 …}
+reports: Doctrine\ORM\PersistentCollection {#2983 …}
+favourites: Doctrine\ORM\PersistentCollection {#2985 …}
+notifications: Doctrine\ORM\PersistentCollection {#2987 …}
+badges: Doctrine\ORM\PersistentCollection {#2989 …}
+children: [
6 => App\Entity\EntryComment {#2091
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2090 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2090 …}
+body: """
But a ton of people **can** open a PDF and will be able to select an USB stick from menu and click next, next, next… It’s not completely different, you still use a mouse, a keyboard, you click on things, you get some feedback from it… When a new kind of mobile app arrive, I can see someone using no more than 5 apps in life having problems, but this doesn’t mean only them exists, we do not talk about switching everyone here. People change houses, how are they figuring out where is the toilet if doors have different color and are in different positions?\n
\n
Also a reason why any software like Microsoft Windows or Office should be banned from public education, especially primary schools.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703295334 {#2095
date: 2023-12-23 02:35:34.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@derf82@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#2093 …}
+nested: Doctrine\ORM\PersistentCollection {#2094 …}
+votes: Doctrine\ORM\PersistentCollection {#2140 …}
+reports: Doctrine\ORM\PersistentCollection {#2133 …}
+favourites: Doctrine\ORM\PersistentCollection {#2131 …}
+notifications: Doctrine\ORM\PersistentCollection {#2138 …}
-id: 247319
-bodyTs: "'5':64 'abl':13 'also':108 'app':54,65 'arriv':55 'ban':121 'chang':87 'click':22,39 'color':102 'complet':29 'differ':30,101,106 'doesn':72 'door':99 'educ':124 'especi':125 'everyon':84 'exist':77 'feedback':45 'figur':92 'get':43 'hous':88 'keyboard':37 'kind':51 'life':67 'like':114 'mean':74 'menu':20 'microsoft':115 'mobil':53 'mous':35 'new':50 'next':23,24,25 'offic':118 'open':7 'pdf':9 'peopl':5,86 'posit':107 'primari':126 'problem':69 'public':123 'reason':110 'school':127 'see':58 'select':15 'softwar':113 'someon':59 'stick':18 'still':32 'switch':83 'talk':81 'thing':41 'toilet':97 'ton':3 'usb':17 'use':33,60 'window':116"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5884378"
+editedAt: null
+createdAt: DateTimeImmutable @1703295334 {#2087
date: 2023-12-23 02:35:34.0 +01:00
}
+"title": 247319
}
5 => App\Entity\EntryComment {#2330}
4 => App\Entity\EntryComment {#2325
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2327 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2346 …}
+body: """
Your DAW and audio interface doesn’t support Linux.*\n
\n
Yeah, it’s a bummer, but you are in a small portion of effected computer users, still others can benefit from longer support.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 1
+score: 0
+lastActive: DateTime @1703295692 {#2328
date: 2023-12-23 02:41:32.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@BaldProphet@kbin.social"
"@Transcendant@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#2329 …}
+nested: Doctrine\ORM\PersistentCollection {#2323 …}
+votes: Doctrine\ORM\PersistentCollection {#2300 …}
+reports: Doctrine\ORM\PersistentCollection {#2340 …}
+favourites: Doctrine\ORM\PersistentCollection {#2342 …}
+notifications: Doctrine\ORM\PersistentCollection {#2343 …}
-id: 247321
-bodyTs: "'audio':4 'benefit':29 'bummer':14 'comput':24 'daw':2 'doesn':6 'effect':23 'interfac':5 'linux':9 'longer':31 'other':27 'portion':21 'small':20 'still':26 'support':8,32 'user':25 'yeah':10"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5884453"
+editedAt: DateTimeImmutable @1707175705 {#2326
date: 2024-02-06 00:28:25.0 +01:00
}
+createdAt: DateTimeImmutable @1703295692 {#2191
date: 2023-12-23 02:41:32.0 +01:00
}
+"title": 247321
}
3 => App\Entity\EntryComment {#2338
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2159 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2346 …}
+body: """
There are many many outdated patterns how to do things in Windows that are cemented in public knowledge. Running random executable installers from the web giving them superuser permissions is I thing the most popular one.\n
\n
How to share all user settings between system installations? How to change the logo in the desktop bar? How to add a directory to an applications bar? How to change system build-in keyboard shortcut? How to reinstall just the system keeping the programs? How to make a file run on a shortcut? Those are things I use daily, that are impossible or need some hacky programs to work on anything other than Linux, I would die if I had to switch back now.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703296199 {#2335
date: 2023-12-23 02:49:59.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@BaldProphet@kbin.social"
"@Wermhatswormhat@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#2143 …}
+nested: Doctrine\ORM\PersistentCollection {#2136 …}
+votes: Doctrine\ORM\PersistentCollection {#2073 …}
+reports: Doctrine\ORM\PersistentCollection {#2072 …}
+favourites: Doctrine\ORM\PersistentCollection {#2065 …}
+notifications: Doctrine\ORM\PersistentCollection {#2066 …}
-id: 247322
-bodyTs: "'add':57 'anyth':108 'applic':62 'back':120 'bar':54,63 'build':69 'build-in':68 'cement':15 'chang':48,66 'daili':96 'desktop':53 'die':114 'directori':59 'execut':21 'file':86 'give':26 'hacki':103 'imposs':99 'instal':22,45 'keep':79 'keyboard':71 'knowledg':18 'linux':111 'logo':50 'make':84 'mani':3,4 'need':101 'one':36 'outdat':5 'pattern':6 'permiss':29 'popular':35 'program':81,104 'public':17 'random':20 'reinstal':75 'run':19,87 'set':42 'share':39 'shortcut':72,90 'superus':28 'switch':119 'system':44,67,78 'thing':10,32,93 'use':95 'user':41 'web':25 'window':12 'work':106 'would':113"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5884570"
+editedAt: null
+createdAt: DateTimeImmutable @1703296199 {#2339
date: 2023-12-23 02:49:59.0 +01:00
}
+"title": 247322
}
2 => App\Entity\EntryComment {#2049
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2048 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2346 …}
+body: """
Use whatever is popular and has a cool logo. Distro is basically a software library, preinstalled programs and default settings. You can transform any distro to behave like the other one.\n
\n
KDE, Gnome, XFCE…? Which is looking better for you or which one was default. Init system? Which was the default. X11/Wayland? Wayland. Go with X11 only if Wayland is having problems with your graphics card.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703296544 {#2067
date: 2023-12-23 02:55:44.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@BaldProphet@kbin.social"
"@Deebster@programming.dev"
]
+children: Doctrine\ORM\PersistentCollection {#2051 …}
+nested: Doctrine\ORM\PersistentCollection {#2059 …}
+votes: Doctrine\ORM\PersistentCollection {#2047 …}
+reports: Doctrine\ORM\PersistentCollection {#2057 …}
+favourites: Doctrine\ORM\PersistentCollection {#2055 …}
+notifications: Doctrine\ORM\PersistentCollection {#2054 …}
-id: 247323
-bodyTs: "'basic':12 'behav':27 'better':38 'card':66 'cool':8 'default':19,45,51 'distro':10,25 'gnome':33 'go':54 'graphic':65 'init':46 'kde':32 'librari':15 'like':28 'logo':9 'look':37 'one':31,43 'popular':4 'preinstal':16 'problem':62 'program':17 'set':20 'softwar':14 'system':47 'transform':23 'use':1 'wayland':53,59 'whatev':2 'x11':56 'x11/wayland':52 'xfce':34"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5884646"
+editedAt: null
+createdAt: DateTimeImmutable @1703296544 {#2070
date: 2023-12-23 02:55:44.0 +01:00
}
+"title": 247323
}
1 => App\Entity\EntryComment {#2165
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2041 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2041 …}
+body: "For 240 million devices I think there would be some Linux can “cut it”. And second, no? My computer is 13+ years old and I am using it with basically no lagging, developing a couple of apps. Truth is all medium-tier computers made today and in recent years have reached the point where for normal use (that is daily tasks like communication, content consumption and calculations) only limiting factor for daily driver is software optimization."
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703296770 {#2053
date: 2023-12-23 02:59:30.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@TCB13@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#2104 …}
+nested: Doctrine\ORM\PersistentCollection {#2099 …}
+votes: Doctrine\ORM\PersistentCollection {#2108 …}
+reports: Doctrine\ORM\PersistentCollection {#2101 …}
+favourites: Doctrine\ORM\PersistentCollection {#2109 …}
+notifications: Doctrine\ORM\PersistentCollection {#2106 …}
-id: 247324
-bodyTs: "'13':21 '240':2 'app':37 'basic':30 'calcul':68 'communic':64 'comput':19,44 'consumpt':66 'content':65 'coupl':35 'cut':13 'daili':61,73 'develop':33 'devic':4 'driver':74 'factor':71 'lag':32 'like':63 'limit':70 'linux':11 'made':45 'medium':42 'medium-ti':41 'million':3 'normal':57 'old':23 'optim':77 'point':54 'reach':52 'recent':49 'second':16 'softwar':76 'task':62 'think':6 'tier':43 'today':46 'truth':38 'use':27,58 'would':8 'year':22,50"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5884688"
+editedAt: null
+createdAt: DateTimeImmutable @1703296770 {#2125
date: 2023-12-23 02:59:30.0 +01:00
}
+"title": 247324
}
0 => App\Entity\EntryComment {#2114
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2118 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2346 …}
+body: """
And this is a huge barrier for a lot of users, a massive roadblock. But the article talk about houndres of millions of computers, my point was just about that even if millions like you cannot switch, still in this statistics are millions that can especially non-professional that do not make audio or video, but that are going to throw away a working machine.\n
\n
I feel like you might feel being personally directed by my comment, because of your respond with “YOU’re not compatible”. Maybe it was bad wording, sorry. What I ment was that it can be frustrating to see “Linux doesn’t support …” when actually it has everything needed to support this software and the burden to make it available is on the software developer. Like saying that USB-C doesn’t support iPhone 13. Lack of it still hurts the Linux side anyway, but I just don’t want misconsaptions about which side should make a port happen.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703387471 {#2107
date: 2023-12-24 04:11:11.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@BaldProphet@kbin.social"
"@Transcendant@lemmy.world"
"@smileyhead@discuss.tchncs.de"
]
+children: Doctrine\ORM\PersistentCollection {#2117 …}
+nested: Doctrine\ORM\PersistentCollection {#2122 …}
+votes: Doctrine\ORM\PersistentCollection {#2113 …}
+reports: Doctrine\ORM\PersistentCollection {#2119 …}
+favourites: Doctrine\ORM\PersistentCollection {#2120 …}
+notifications: Doctrine\ORM\PersistentCollection {#2160 …}
-id: 247694
-bodyTs: "'13':141 'actual':110 'anyway':150 'articl':17 'audio':54 'avail':125 'away':63 'bad':91 'barrier':6 'burden':121 'c':136 'cannot':36 'comment':78 'compat':87 'comput':24 'develop':130 'direct':75 'doesn':106,137 'especi':46 'even':31 'everyth':113 'feel':68,72 'frustrat':102 'go':60 'happen':165 'houndr':20 'huge':5 'hurt':146 'iphon':140 'lack':142 'like':34,69,131 'linux':105,148 'lot':9 'machin':66 'make':53,123,162 'massiv':13 'mayb':88 'ment':96 'might':71 'million':22,33,43 'misconsapt':157 'need':114 'non':48 'non-profession':47 'person':74 'point':26 'port':164 'profession':49 're':85 'respond':82 'roadblock':14 'say':132 'see':104 'side':149,160 'softwar':118,129 'sorri':93 'statist':41 'still':38,145 'support':108,116,139 'switch':37 'talk':18 'throw':62 'usb':135 'usb-c':134 'user':11 'video':56 'want':156 'word':92 'work':65"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5904342"
+editedAt: DateTimeImmutable @1707537983 {#2112
date: 2024-02-10 05:06:23.0 +01:00
}
+createdAt: DateTimeImmutable @1703387471 {#2124
date: 2023-12-24 04:11:11.0 +01:00
}
+"title": 247694
}
]
-id: 24104
-titleTs: "'10':5 '240':8 'comput':10 'could':6 'end':1 'instal':16 'landfil':13 'linux':17 'million':9 'send':7 'support':2 'window':4"
-bodyTs: "'10':6 '11':33 '240':18 'comput':56 'current':16 'desktop':10 'due':30 'end':3 'exorbit':35 'gnu/linux':52 'hope':59 'immedi':46 'landfil':26 'like':40 'mani':43 'may':21,53 'million':19 'most':29 'oper':11 'outdat':47 'pcs':20,44 'popular':9 'possibl':17 'prone':49 'requir':36 'result':41 'secur':58 'sent':23 'support':2 'system':12 'think':63 'virus':51 'window':5,32 'world':15"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1703366140
+visibility: "visible "
+apId: "https://lemmy.world/post/9873158"
+editedAt: DateTimeImmutable @1706576554 {#2956
date: 2024-01-30 02:02:34.0 +01:00
}
+createdAt: DateTimeImmutable @1703279740 {#2935
date: 2023-12-22 22:15:40.0 +01:00
}
+__isInitialized__: true
…2
}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2348 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2346 …}
+body: "Marketing is monopolized with Google and Facebook. Manufacturers and Microsoft won’t make one-click installs happen. Tech support would be chicken and egg problem. Ugh…"
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703295471 {#2345
date: 2023-12-23 02:37:51.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@BaldProphet@kbin.social"
"@anon5621@lemmy.ml"
]
+children: Doctrine\ORM\PersistentCollection {#2351 …}
+nested: Doctrine\ORM\PersistentCollection {#2332 …}
+votes: Doctrine\ORM\PersistentCollection {#2349 …}
+reports: Doctrine\ORM\PersistentCollection {#2141 …}
+favourites: Doctrine\ORM\PersistentCollection {#2164 …}
+notifications: Doctrine\ORM\PersistentCollection {#2314 …}
-id: 247320
-bodyTs: "'chicken':23 'click':16 'egg':25 'facebook':7 'googl':5 'happen':18 'instal':17 'make':13 'manufactur':8 'market':1 'microsoft':10 'monopol':3 'one':15 'one-click':14 'problem':26 'support':20 'tech':19 'ugh':27 'won':11 'would':21"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5884407"
+editedAt: null
+createdAt: DateTimeImmutable @1703295471 {#2350
date: 2023-12-23 02:37:51.0 +01:00
}
+"title": 247320
} |
|
Show voter details
|
69 |
DENIED
|
ROLE_USER
|
null |
|
Show voter details
|
70 |
DENIED
|
moderate
|
App\Entity\EntryComment {#2325
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086
+user: Proxies\__CG__\App\Entity\User {#2975 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: Proxies\__CG__\App\Entity\Image {#2977 …}
+domain: Proxies\__CG__\App\Entity\Domain {#2978 …}
+slug: "Ending-support-for-Windows-10-could-send-240-million-computers"
+title: "Ending support for Windows 10 could send 240 million computers to the landfill. Why not install Linux on them?"
+url: "https://gadgettendency.com/ending-support-for-windows-10-could-send-240-million-computers-to-the-landfill-a-stack-of-that-many-laptops-would-end-up-600-km-higher-than-the-moon/"
+body: "With support ending for Windows 10, the most popular desktop operating system in the world currently, possibly 240 million pcs may be sent to the landfill. This is mostly due to Windows 11’s exorbitant requirements. This will most likely result in many pcs being immediately outdated, and prone to viruses. GNU/Linux may be these computers’ only secure hope, what do you think?"
+type: "link"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 242
+favouriteCount: 748
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1711817575 {#2970
date: 2024-03-30 17:52:55.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#2979 …}
+votes: Doctrine\ORM\PersistentCollection {#2981 …}
+reports: Doctrine\ORM\PersistentCollection {#2983 …}
+favourites: Doctrine\ORM\PersistentCollection {#2985 …}
+notifications: Doctrine\ORM\PersistentCollection {#2987 …}
+badges: Doctrine\ORM\PersistentCollection {#2989 …}
+children: [
6 => App\Entity\EntryComment {#2091
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2090 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2090 …}
+body: """
But a ton of people **can** open a PDF and will be able to select an USB stick from menu and click next, next, next… It’s not completely different, you still use a mouse, a keyboard, you click on things, you get some feedback from it… When a new kind of mobile app arrive, I can see someone using no more than 5 apps in life having problems, but this doesn’t mean only them exists, we do not talk about switching everyone here. People change houses, how are they figuring out where is the toilet if doors have different color and are in different positions?\n
\n
Also a reason why any software like Microsoft Windows or Office should be banned from public education, especially primary schools.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703295334 {#2095
date: 2023-12-23 02:35:34.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@derf82@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#2093 …}
+nested: Doctrine\ORM\PersistentCollection {#2094 …}
+votes: Doctrine\ORM\PersistentCollection {#2140 …}
+reports: Doctrine\ORM\PersistentCollection {#2133 …}
+favourites: Doctrine\ORM\PersistentCollection {#2131 …}
+notifications: Doctrine\ORM\PersistentCollection {#2138 …}
-id: 247319
-bodyTs: "'5':64 'abl':13 'also':108 'app':54,65 'arriv':55 'ban':121 'chang':87 'click':22,39 'color':102 'complet':29 'differ':30,101,106 'doesn':72 'door':99 'educ':124 'especi':125 'everyon':84 'exist':77 'feedback':45 'figur':92 'get':43 'hous':88 'keyboard':37 'kind':51 'life':67 'like':114 'mean':74 'menu':20 'microsoft':115 'mobil':53 'mous':35 'new':50 'next':23,24,25 'offic':118 'open':7 'pdf':9 'peopl':5,86 'posit':107 'primari':126 'problem':69 'public':123 'reason':110 'school':127 'see':58 'select':15 'softwar':113 'someon':59 'stick':18 'still':32 'switch':83 'talk':81 'thing':41 'toilet':97 'ton':3 'usb':17 'use':33,60 'window':116"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5884378"
+editedAt: null
+createdAt: DateTimeImmutable @1703295334 {#2087
date: 2023-12-23 02:35:34.0 +01:00
}
+"title": 247319
}
5 => App\Entity\EntryComment {#2330
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2348 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2346 …}
+body: "Marketing is monopolized with Google and Facebook. Manufacturers and Microsoft won’t make one-click installs happen. Tech support would be chicken and egg problem. Ugh…"
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703295471 {#2345
date: 2023-12-23 02:37:51.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@BaldProphet@kbin.social"
"@anon5621@lemmy.ml"
]
+children: Doctrine\ORM\PersistentCollection {#2351 …}
+nested: Doctrine\ORM\PersistentCollection {#2332 …}
+votes: Doctrine\ORM\PersistentCollection {#2349 …}
+reports: Doctrine\ORM\PersistentCollection {#2141 …}
+favourites: Doctrine\ORM\PersistentCollection {#2164 …}
+notifications: Doctrine\ORM\PersistentCollection {#2314 …}
-id: 247320
-bodyTs: "'chicken':23 'click':16 'egg':25 'facebook':7 'googl':5 'happen':18 'instal':17 'make':13 'manufactur':8 'market':1 'microsoft':10 'monopol':3 'one':15 'one-click':14 'problem':26 'support':20 'tech':19 'ugh':27 'won':11 'would':21"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5884407"
+editedAt: null
+createdAt: DateTimeImmutable @1703295471 {#2350
date: 2023-12-23 02:37:51.0 +01:00
}
+"title": 247320
}
4 => App\Entity\EntryComment {#2325}
3 => App\Entity\EntryComment {#2338
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2159 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2346 …}
+body: """
There are many many outdated patterns how to do things in Windows that are cemented in public knowledge. Running random executable installers from the web giving them superuser permissions is I thing the most popular one.\n
\n
How to share all user settings between system installations? How to change the logo in the desktop bar? How to add a directory to an applications bar? How to change system build-in keyboard shortcut? How to reinstall just the system keeping the programs? How to make a file run on a shortcut? Those are things I use daily, that are impossible or need some hacky programs to work on anything other than Linux, I would die if I had to switch back now.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703296199 {#2335
date: 2023-12-23 02:49:59.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@BaldProphet@kbin.social"
"@Wermhatswormhat@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#2143 …}
+nested: Doctrine\ORM\PersistentCollection {#2136 …}
+votes: Doctrine\ORM\PersistentCollection {#2073 …}
+reports: Doctrine\ORM\PersistentCollection {#2072 …}
+favourites: Doctrine\ORM\PersistentCollection {#2065 …}
+notifications: Doctrine\ORM\PersistentCollection {#2066 …}
-id: 247322
-bodyTs: "'add':57 'anyth':108 'applic':62 'back':120 'bar':54,63 'build':69 'build-in':68 'cement':15 'chang':48,66 'daili':96 'desktop':53 'die':114 'directori':59 'execut':21 'file':86 'give':26 'hacki':103 'imposs':99 'instal':22,45 'keep':79 'keyboard':71 'knowledg':18 'linux':111 'logo':50 'make':84 'mani':3,4 'need':101 'one':36 'outdat':5 'pattern':6 'permiss':29 'popular':35 'program':81,104 'public':17 'random':20 'reinstal':75 'run':19,87 'set':42 'share':39 'shortcut':72,90 'superus':28 'switch':119 'system':44,67,78 'thing':10,32,93 'use':95 'user':41 'web':25 'window':12 'work':106 'would':113"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5884570"
+editedAt: null
+createdAt: DateTimeImmutable @1703296199 {#2339
date: 2023-12-23 02:49:59.0 +01:00
}
+"title": 247322
}
2 => App\Entity\EntryComment {#2049
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2048 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2346 …}
+body: """
Use whatever is popular and has a cool logo. Distro is basically a software library, preinstalled programs and default settings. You can transform any distro to behave like the other one.\n
\n
KDE, Gnome, XFCE…? Which is looking better for you or which one was default. Init system? Which was the default. X11/Wayland? Wayland. Go with X11 only if Wayland is having problems with your graphics card.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703296544 {#2067
date: 2023-12-23 02:55:44.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@BaldProphet@kbin.social"
"@Deebster@programming.dev"
]
+children: Doctrine\ORM\PersistentCollection {#2051 …}
+nested: Doctrine\ORM\PersistentCollection {#2059 …}
+votes: Doctrine\ORM\PersistentCollection {#2047 …}
+reports: Doctrine\ORM\PersistentCollection {#2057 …}
+favourites: Doctrine\ORM\PersistentCollection {#2055 …}
+notifications: Doctrine\ORM\PersistentCollection {#2054 …}
-id: 247323
-bodyTs: "'basic':12 'behav':27 'better':38 'card':66 'cool':8 'default':19,45,51 'distro':10,25 'gnome':33 'go':54 'graphic':65 'init':46 'kde':32 'librari':15 'like':28 'logo':9 'look':37 'one':31,43 'popular':4 'preinstal':16 'problem':62 'program':17 'set':20 'softwar':14 'system':47 'transform':23 'use':1 'wayland':53,59 'whatev':2 'x11':56 'x11/wayland':52 'xfce':34"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5884646"
+editedAt: null
+createdAt: DateTimeImmutable @1703296544 {#2070
date: 2023-12-23 02:55:44.0 +01:00
}
+"title": 247323
}
1 => App\Entity\EntryComment {#2165
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2041 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2041 …}
+body: "For 240 million devices I think there would be some Linux can “cut it”. And second, no? My computer is 13+ years old and I am using it with basically no lagging, developing a couple of apps. Truth is all medium-tier computers made today and in recent years have reached the point where for normal use (that is daily tasks like communication, content consumption and calculations) only limiting factor for daily driver is software optimization."
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703296770 {#2053
date: 2023-12-23 02:59:30.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@TCB13@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#2104 …}
+nested: Doctrine\ORM\PersistentCollection {#2099 …}
+votes: Doctrine\ORM\PersistentCollection {#2108 …}
+reports: Doctrine\ORM\PersistentCollection {#2101 …}
+favourites: Doctrine\ORM\PersistentCollection {#2109 …}
+notifications: Doctrine\ORM\PersistentCollection {#2106 …}
-id: 247324
-bodyTs: "'13':21 '240':2 'app':37 'basic':30 'calcul':68 'communic':64 'comput':19,44 'consumpt':66 'content':65 'coupl':35 'cut':13 'daili':61,73 'develop':33 'devic':4 'driver':74 'factor':71 'lag':32 'like':63 'limit':70 'linux':11 'made':45 'medium':42 'medium-ti':41 'million':3 'normal':57 'old':23 'optim':77 'point':54 'reach':52 'recent':49 'second':16 'softwar':76 'task':62 'think':6 'tier':43 'today':46 'truth':38 'use':27,58 'would':8 'year':22,50"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5884688"
+editedAt: null
+createdAt: DateTimeImmutable @1703296770 {#2125
date: 2023-12-23 02:59:30.0 +01:00
}
+"title": 247324
}
0 => App\Entity\EntryComment {#2114
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2118 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2346 …}
+body: """
And this is a huge barrier for a lot of users, a massive roadblock. But the article talk about houndres of millions of computers, my point was just about that even if millions like you cannot switch, still in this statistics are millions that can especially non-professional that do not make audio or video, but that are going to throw away a working machine.\n
\n
I feel like you might feel being personally directed by my comment, because of your respond with “YOU’re not compatible”. Maybe it was bad wording, sorry. What I ment was that it can be frustrating to see “Linux doesn’t support …” when actually it has everything needed to support this software and the burden to make it available is on the software developer. Like saying that USB-C doesn’t support iPhone 13. Lack of it still hurts the Linux side anyway, but I just don’t want misconsaptions about which side should make a port happen.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703387471 {#2107
date: 2023-12-24 04:11:11.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@BaldProphet@kbin.social"
"@Transcendant@lemmy.world"
"@smileyhead@discuss.tchncs.de"
]
+children: Doctrine\ORM\PersistentCollection {#2117 …}
+nested: Doctrine\ORM\PersistentCollection {#2122 …}
+votes: Doctrine\ORM\PersistentCollection {#2113 …}
+reports: Doctrine\ORM\PersistentCollection {#2119 …}
+favourites: Doctrine\ORM\PersistentCollection {#2120 …}
+notifications: Doctrine\ORM\PersistentCollection {#2160 …}
-id: 247694
-bodyTs: "'13':141 'actual':110 'anyway':150 'articl':17 'audio':54 'avail':125 'away':63 'bad':91 'barrier':6 'burden':121 'c':136 'cannot':36 'comment':78 'compat':87 'comput':24 'develop':130 'direct':75 'doesn':106,137 'especi':46 'even':31 'everyth':113 'feel':68,72 'frustrat':102 'go':60 'happen':165 'houndr':20 'huge':5 'hurt':146 'iphon':140 'lack':142 'like':34,69,131 'linux':105,148 'lot':9 'machin':66 'make':53,123,162 'massiv':13 'mayb':88 'ment':96 'might':71 'million':22,33,43 'misconsapt':157 'need':114 'non':48 'non-profession':47 'person':74 'point':26 'port':164 'profession':49 're':85 'respond':82 'roadblock':14 'say':132 'see':104 'side':149,160 'softwar':118,129 'sorri':93 'statist':41 'still':38,145 'support':108,116,139 'switch':37 'talk':18 'throw':62 'usb':135 'usb-c':134 'user':11 'video':56 'want':156 'word':92 'work':65"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5904342"
+editedAt: DateTimeImmutable @1707537983 {#2112
date: 2024-02-10 05:06:23.0 +01:00
}
+createdAt: DateTimeImmutable @1703387471 {#2124
date: 2023-12-24 04:11:11.0 +01:00
}
+"title": 247694
}
]
-id: 24104
-titleTs: "'10':5 '240':8 'comput':10 'could':6 'end':1 'instal':16 'landfil':13 'linux':17 'million':9 'send':7 'support':2 'window':4"
-bodyTs: "'10':6 '11':33 '240':18 'comput':56 'current':16 'desktop':10 'due':30 'end':3 'exorbit':35 'gnu/linux':52 'hope':59 'immedi':46 'landfil':26 'like':40 'mani':43 'may':21,53 'million':19 'most':29 'oper':11 'outdat':47 'pcs':20,44 'popular':9 'possibl':17 'prone':49 'requir':36 'result':41 'secur':58 'sent':23 'support':2 'system':12 'think':63 'virus':51 'window':5,32 'world':15"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1703366140
+visibility: "visible "
+apId: "https://lemmy.world/post/9873158"
+editedAt: DateTimeImmutable @1706576554 {#2956
date: 2024-01-30 02:02:34.0 +01:00
}
+createdAt: DateTimeImmutable @1703279740 {#2935
date: 2023-12-22 22:15:40.0 +01:00
}
+__isInitialized__: true
…2
}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2327 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2346 …}
+body: """
Your DAW and audio interface doesn’t support Linux.*\n
\n
Yeah, it’s a bummer, but you are in a small portion of effected computer users, still others can benefit from longer support.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 1
+score: 0
+lastActive: DateTime @1703295692 {#2328
date: 2023-12-23 02:41:32.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@BaldProphet@kbin.social"
"@Transcendant@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#2329 …}
+nested: Doctrine\ORM\PersistentCollection {#2323 …}
+votes: Doctrine\ORM\PersistentCollection {#2300 …}
+reports: Doctrine\ORM\PersistentCollection {#2340 …}
+favourites: Doctrine\ORM\PersistentCollection {#2342 …}
+notifications: Doctrine\ORM\PersistentCollection {#2343 …}
-id: 247321
-bodyTs: "'audio':4 'benefit':29 'bummer':14 'comput':24 'daw':2 'doesn':6 'effect':23 'interfac':5 'linux':9 'longer':31 'other':27 'portion':21 'small':20 'still':26 'support':8,32 'user':25 'yeah':10"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5884453"
+editedAt: DateTimeImmutable @1707175705 {#2326
date: 2024-02-06 00:28:25.0 +01:00
}
+createdAt: DateTimeImmutable @1703295692 {#2191
date: 2023-12-23 02:41:32.0 +01:00
}
+"title": 247321
} |
|
Show voter details
|
71 |
DENIED
|
edit
|
App\Entity\EntryComment {#2325
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086
+user: Proxies\__CG__\App\Entity\User {#2975 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: Proxies\__CG__\App\Entity\Image {#2977 …}
+domain: Proxies\__CG__\App\Entity\Domain {#2978 …}
+slug: "Ending-support-for-Windows-10-could-send-240-million-computers"
+title: "Ending support for Windows 10 could send 240 million computers to the landfill. Why not install Linux on them?"
+url: "https://gadgettendency.com/ending-support-for-windows-10-could-send-240-million-computers-to-the-landfill-a-stack-of-that-many-laptops-would-end-up-600-km-higher-than-the-moon/"
+body: "With support ending for Windows 10, the most popular desktop operating system in the world currently, possibly 240 million pcs may be sent to the landfill. This is mostly due to Windows 11’s exorbitant requirements. This will most likely result in many pcs being immediately outdated, and prone to viruses. GNU/Linux may be these computers’ only secure hope, what do you think?"
+type: "link"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 242
+favouriteCount: 748
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1711817575 {#2970
date: 2024-03-30 17:52:55.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#2979 …}
+votes: Doctrine\ORM\PersistentCollection {#2981 …}
+reports: Doctrine\ORM\PersistentCollection {#2983 …}
+favourites: Doctrine\ORM\PersistentCollection {#2985 …}
+notifications: Doctrine\ORM\PersistentCollection {#2987 …}
+badges: Doctrine\ORM\PersistentCollection {#2989 …}
+children: [
6 => App\Entity\EntryComment {#2091
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2090 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2090 …}
+body: """
But a ton of people **can** open a PDF and will be able to select an USB stick from menu and click next, next, next… It’s not completely different, you still use a mouse, a keyboard, you click on things, you get some feedback from it… When a new kind of mobile app arrive, I can see someone using no more than 5 apps in life having problems, but this doesn’t mean only them exists, we do not talk about switching everyone here. People change houses, how are they figuring out where is the toilet if doors have different color and are in different positions?\n
\n
Also a reason why any software like Microsoft Windows or Office should be banned from public education, especially primary schools.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703295334 {#2095
date: 2023-12-23 02:35:34.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@derf82@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#2093 …}
+nested: Doctrine\ORM\PersistentCollection {#2094 …}
+votes: Doctrine\ORM\PersistentCollection {#2140 …}
+reports: Doctrine\ORM\PersistentCollection {#2133 …}
+favourites: Doctrine\ORM\PersistentCollection {#2131 …}
+notifications: Doctrine\ORM\PersistentCollection {#2138 …}
-id: 247319
-bodyTs: "'5':64 'abl':13 'also':108 'app':54,65 'arriv':55 'ban':121 'chang':87 'click':22,39 'color':102 'complet':29 'differ':30,101,106 'doesn':72 'door':99 'educ':124 'especi':125 'everyon':84 'exist':77 'feedback':45 'figur':92 'get':43 'hous':88 'keyboard':37 'kind':51 'life':67 'like':114 'mean':74 'menu':20 'microsoft':115 'mobil':53 'mous':35 'new':50 'next':23,24,25 'offic':118 'open':7 'pdf':9 'peopl':5,86 'posit':107 'primari':126 'problem':69 'public':123 'reason':110 'school':127 'see':58 'select':15 'softwar':113 'someon':59 'stick':18 'still':32 'switch':83 'talk':81 'thing':41 'toilet':97 'ton':3 'usb':17 'use':33,60 'window':116"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5884378"
+editedAt: null
+createdAt: DateTimeImmutable @1703295334 {#2087
date: 2023-12-23 02:35:34.0 +01:00
}
+"title": 247319
}
5 => App\Entity\EntryComment {#2330
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2348 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2346 …}
+body: "Marketing is monopolized with Google and Facebook. Manufacturers and Microsoft won’t make one-click installs happen. Tech support would be chicken and egg problem. Ugh…"
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703295471 {#2345
date: 2023-12-23 02:37:51.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@BaldProphet@kbin.social"
"@anon5621@lemmy.ml"
]
+children: Doctrine\ORM\PersistentCollection {#2351 …}
+nested: Doctrine\ORM\PersistentCollection {#2332 …}
+votes: Doctrine\ORM\PersistentCollection {#2349 …}
+reports: Doctrine\ORM\PersistentCollection {#2141 …}
+favourites: Doctrine\ORM\PersistentCollection {#2164 …}
+notifications: Doctrine\ORM\PersistentCollection {#2314 …}
-id: 247320
-bodyTs: "'chicken':23 'click':16 'egg':25 'facebook':7 'googl':5 'happen':18 'instal':17 'make':13 'manufactur':8 'market':1 'microsoft':10 'monopol':3 'one':15 'one-click':14 'problem':26 'support':20 'tech':19 'ugh':27 'won':11 'would':21"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5884407"
+editedAt: null
+createdAt: DateTimeImmutable @1703295471 {#2350
date: 2023-12-23 02:37:51.0 +01:00
}
+"title": 247320
}
4 => App\Entity\EntryComment {#2325}
3 => App\Entity\EntryComment {#2338
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2159 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2346 …}
+body: """
There are many many outdated patterns how to do things in Windows that are cemented in public knowledge. Running random executable installers from the web giving them superuser permissions is I thing the most popular one.\n
\n
How to share all user settings between system installations? How to change the logo in the desktop bar? How to add a directory to an applications bar? How to change system build-in keyboard shortcut? How to reinstall just the system keeping the programs? How to make a file run on a shortcut? Those are things I use daily, that are impossible or need some hacky programs to work on anything other than Linux, I would die if I had to switch back now.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703296199 {#2335
date: 2023-12-23 02:49:59.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@BaldProphet@kbin.social"
"@Wermhatswormhat@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#2143 …}
+nested: Doctrine\ORM\PersistentCollection {#2136 …}
+votes: Doctrine\ORM\PersistentCollection {#2073 …}
+reports: Doctrine\ORM\PersistentCollection {#2072 …}
+favourites: Doctrine\ORM\PersistentCollection {#2065 …}
+notifications: Doctrine\ORM\PersistentCollection {#2066 …}
-id: 247322
-bodyTs: "'add':57 'anyth':108 'applic':62 'back':120 'bar':54,63 'build':69 'build-in':68 'cement':15 'chang':48,66 'daili':96 'desktop':53 'die':114 'directori':59 'execut':21 'file':86 'give':26 'hacki':103 'imposs':99 'instal':22,45 'keep':79 'keyboard':71 'knowledg':18 'linux':111 'logo':50 'make':84 'mani':3,4 'need':101 'one':36 'outdat':5 'pattern':6 'permiss':29 'popular':35 'program':81,104 'public':17 'random':20 'reinstal':75 'run':19,87 'set':42 'share':39 'shortcut':72,90 'superus':28 'switch':119 'system':44,67,78 'thing':10,32,93 'use':95 'user':41 'web':25 'window':12 'work':106 'would':113"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5884570"
+editedAt: null
+createdAt: DateTimeImmutable @1703296199 {#2339
date: 2023-12-23 02:49:59.0 +01:00
}
+"title": 247322
}
2 => App\Entity\EntryComment {#2049
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2048 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2346 …}
+body: """
Use whatever is popular and has a cool logo. Distro is basically a software library, preinstalled programs and default settings. You can transform any distro to behave like the other one.\n
\n
KDE, Gnome, XFCE…? Which is looking better for you or which one was default. Init system? Which was the default. X11/Wayland? Wayland. Go with X11 only if Wayland is having problems with your graphics card.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703296544 {#2067
date: 2023-12-23 02:55:44.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@BaldProphet@kbin.social"
"@Deebster@programming.dev"
]
+children: Doctrine\ORM\PersistentCollection {#2051 …}
+nested: Doctrine\ORM\PersistentCollection {#2059 …}
+votes: Doctrine\ORM\PersistentCollection {#2047 …}
+reports: Doctrine\ORM\PersistentCollection {#2057 …}
+favourites: Doctrine\ORM\PersistentCollection {#2055 …}
+notifications: Doctrine\ORM\PersistentCollection {#2054 …}
-id: 247323
-bodyTs: "'basic':12 'behav':27 'better':38 'card':66 'cool':8 'default':19,45,51 'distro':10,25 'gnome':33 'go':54 'graphic':65 'init':46 'kde':32 'librari':15 'like':28 'logo':9 'look':37 'one':31,43 'popular':4 'preinstal':16 'problem':62 'program':17 'set':20 'softwar':14 'system':47 'transform':23 'use':1 'wayland':53,59 'whatev':2 'x11':56 'x11/wayland':52 'xfce':34"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5884646"
+editedAt: null
+createdAt: DateTimeImmutable @1703296544 {#2070
date: 2023-12-23 02:55:44.0 +01:00
}
+"title": 247323
}
1 => App\Entity\EntryComment {#2165
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2041 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2041 …}
+body: "For 240 million devices I think there would be some Linux can “cut it”. And second, no? My computer is 13+ years old and I am using it with basically no lagging, developing a couple of apps. Truth is all medium-tier computers made today and in recent years have reached the point where for normal use (that is daily tasks like communication, content consumption and calculations) only limiting factor for daily driver is software optimization."
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703296770 {#2053
date: 2023-12-23 02:59:30.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@TCB13@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#2104 …}
+nested: Doctrine\ORM\PersistentCollection {#2099 …}
+votes: Doctrine\ORM\PersistentCollection {#2108 …}
+reports: Doctrine\ORM\PersistentCollection {#2101 …}
+favourites: Doctrine\ORM\PersistentCollection {#2109 …}
+notifications: Doctrine\ORM\PersistentCollection {#2106 …}
-id: 247324
-bodyTs: "'13':21 '240':2 'app':37 'basic':30 'calcul':68 'communic':64 'comput':19,44 'consumpt':66 'content':65 'coupl':35 'cut':13 'daili':61,73 'develop':33 'devic':4 'driver':74 'factor':71 'lag':32 'like':63 'limit':70 'linux':11 'made':45 'medium':42 'medium-ti':41 'million':3 'normal':57 'old':23 'optim':77 'point':54 'reach':52 'recent':49 'second':16 'softwar':76 'task':62 'think':6 'tier':43 'today':46 'truth':38 'use':27,58 'would':8 'year':22,50"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5884688"
+editedAt: null
+createdAt: DateTimeImmutable @1703296770 {#2125
date: 2023-12-23 02:59:30.0 +01:00
}
+"title": 247324
}
0 => App\Entity\EntryComment {#2114
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2118 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2346 …}
+body: """
And this is a huge barrier for a lot of users, a massive roadblock. But the article talk about houndres of millions of computers, my point was just about that even if millions like you cannot switch, still in this statistics are millions that can especially non-professional that do not make audio or video, but that are going to throw away a working machine.\n
\n
I feel like you might feel being personally directed by my comment, because of your respond with “YOU’re not compatible”. Maybe it was bad wording, sorry. What I ment was that it can be frustrating to see “Linux doesn’t support …” when actually it has everything needed to support this software and the burden to make it available is on the software developer. Like saying that USB-C doesn’t support iPhone 13. Lack of it still hurts the Linux side anyway, but I just don’t want misconsaptions about which side should make a port happen.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703387471 {#2107
date: 2023-12-24 04:11:11.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@BaldProphet@kbin.social"
"@Transcendant@lemmy.world"
"@smileyhead@discuss.tchncs.de"
]
+children: Doctrine\ORM\PersistentCollection {#2117 …}
+nested: Doctrine\ORM\PersistentCollection {#2122 …}
+votes: Doctrine\ORM\PersistentCollection {#2113 …}
+reports: Doctrine\ORM\PersistentCollection {#2119 …}
+favourites: Doctrine\ORM\PersistentCollection {#2120 …}
+notifications: Doctrine\ORM\PersistentCollection {#2160 …}
-id: 247694
-bodyTs: "'13':141 'actual':110 'anyway':150 'articl':17 'audio':54 'avail':125 'away':63 'bad':91 'barrier':6 'burden':121 'c':136 'cannot':36 'comment':78 'compat':87 'comput':24 'develop':130 'direct':75 'doesn':106,137 'especi':46 'even':31 'everyth':113 'feel':68,72 'frustrat':102 'go':60 'happen':165 'houndr':20 'huge':5 'hurt':146 'iphon':140 'lack':142 'like':34,69,131 'linux':105,148 'lot':9 'machin':66 'make':53,123,162 'massiv':13 'mayb':88 'ment':96 'might':71 'million':22,33,43 'misconsapt':157 'need':114 'non':48 'non-profession':47 'person':74 'point':26 'port':164 'profession':49 're':85 'respond':82 'roadblock':14 'say':132 'see':104 'side':149,160 'softwar':118,129 'sorri':93 'statist':41 'still':38,145 'support':108,116,139 'switch':37 'talk':18 'throw':62 'usb':135 'usb-c':134 'user':11 'video':56 'want':156 'word':92 'work':65"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5904342"
+editedAt: DateTimeImmutable @1707537983 {#2112
date: 2024-02-10 05:06:23.0 +01:00
}
+createdAt: DateTimeImmutable @1703387471 {#2124
date: 2023-12-24 04:11:11.0 +01:00
}
+"title": 247694
}
]
-id: 24104
-titleTs: "'10':5 '240':8 'comput':10 'could':6 'end':1 'instal':16 'landfil':13 'linux':17 'million':9 'send':7 'support':2 'window':4"
-bodyTs: "'10':6 '11':33 '240':18 'comput':56 'current':16 'desktop':10 'due':30 'end':3 'exorbit':35 'gnu/linux':52 'hope':59 'immedi':46 'landfil':26 'like':40 'mani':43 'may':21,53 'million':19 'most':29 'oper':11 'outdat':47 'pcs':20,44 'popular':9 'possibl':17 'prone':49 'requir':36 'result':41 'secur':58 'sent':23 'support':2 'system':12 'think':63 'virus':51 'window':5,32 'world':15"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1703366140
+visibility: "visible "
+apId: "https://lemmy.world/post/9873158"
+editedAt: DateTimeImmutable @1706576554 {#2956
date: 2024-01-30 02:02:34.0 +01:00
}
+createdAt: DateTimeImmutable @1703279740 {#2935
date: 2023-12-22 22:15:40.0 +01:00
}
+__isInitialized__: true
…2
}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2327 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2346 …}
+body: """
Your DAW and audio interface doesn’t support Linux.*\n
\n
Yeah, it’s a bummer, but you are in a small portion of effected computer users, still others can benefit from longer support.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 1
+score: 0
+lastActive: DateTime @1703295692 {#2328
date: 2023-12-23 02:41:32.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@BaldProphet@kbin.social"
"@Transcendant@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#2329 …}
+nested: Doctrine\ORM\PersistentCollection {#2323 …}
+votes: Doctrine\ORM\PersistentCollection {#2300 …}
+reports: Doctrine\ORM\PersistentCollection {#2340 …}
+favourites: Doctrine\ORM\PersistentCollection {#2342 …}
+notifications: Doctrine\ORM\PersistentCollection {#2343 …}
-id: 247321
-bodyTs: "'audio':4 'benefit':29 'bummer':14 'comput':24 'daw':2 'doesn':6 'effect':23 'interfac':5 'linux':9 'longer':31 'other':27 'portion':21 'small':20 'still':26 'support':8,32 'user':25 'yeah':10"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5884453"
+editedAt: DateTimeImmutable @1707175705 {#2326
date: 2024-02-06 00:28:25.0 +01:00
}
+createdAt: DateTimeImmutable @1703295692 {#2191
date: 2023-12-23 02:41:32.0 +01:00
}
+"title": 247321
} |
|
Show voter details
|
72 |
DENIED
|
moderate
|
App\Entity\EntryComment {#2325
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086
+user: Proxies\__CG__\App\Entity\User {#2975 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: Proxies\__CG__\App\Entity\Image {#2977 …}
+domain: Proxies\__CG__\App\Entity\Domain {#2978 …}
+slug: "Ending-support-for-Windows-10-could-send-240-million-computers"
+title: "Ending support for Windows 10 could send 240 million computers to the landfill. Why not install Linux on them?"
+url: "https://gadgettendency.com/ending-support-for-windows-10-could-send-240-million-computers-to-the-landfill-a-stack-of-that-many-laptops-would-end-up-600-km-higher-than-the-moon/"
+body: "With support ending for Windows 10, the most popular desktop operating system in the world currently, possibly 240 million pcs may be sent to the landfill. This is mostly due to Windows 11’s exorbitant requirements. This will most likely result in many pcs being immediately outdated, and prone to viruses. GNU/Linux may be these computers’ only secure hope, what do you think?"
+type: "link"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 242
+favouriteCount: 748
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1711817575 {#2970
date: 2024-03-30 17:52:55.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#2979 …}
+votes: Doctrine\ORM\PersistentCollection {#2981 …}
+reports: Doctrine\ORM\PersistentCollection {#2983 …}
+favourites: Doctrine\ORM\PersistentCollection {#2985 …}
+notifications: Doctrine\ORM\PersistentCollection {#2987 …}
+badges: Doctrine\ORM\PersistentCollection {#2989 …}
+children: [
6 => App\Entity\EntryComment {#2091
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2090 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2090 …}
+body: """
But a ton of people **can** open a PDF and will be able to select an USB stick from menu and click next, next, next… It’s not completely different, you still use a mouse, a keyboard, you click on things, you get some feedback from it… When a new kind of mobile app arrive, I can see someone using no more than 5 apps in life having problems, but this doesn’t mean only them exists, we do not talk about switching everyone here. People change houses, how are they figuring out where is the toilet if doors have different color and are in different positions?\n
\n
Also a reason why any software like Microsoft Windows or Office should be banned from public education, especially primary schools.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703295334 {#2095
date: 2023-12-23 02:35:34.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@derf82@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#2093 …}
+nested: Doctrine\ORM\PersistentCollection {#2094 …}
+votes: Doctrine\ORM\PersistentCollection {#2140 …}
+reports: Doctrine\ORM\PersistentCollection {#2133 …}
+favourites: Doctrine\ORM\PersistentCollection {#2131 …}
+notifications: Doctrine\ORM\PersistentCollection {#2138 …}
-id: 247319
-bodyTs: "'5':64 'abl':13 'also':108 'app':54,65 'arriv':55 'ban':121 'chang':87 'click':22,39 'color':102 'complet':29 'differ':30,101,106 'doesn':72 'door':99 'educ':124 'especi':125 'everyon':84 'exist':77 'feedback':45 'figur':92 'get':43 'hous':88 'keyboard':37 'kind':51 'life':67 'like':114 'mean':74 'menu':20 'microsoft':115 'mobil':53 'mous':35 'new':50 'next':23,24,25 'offic':118 'open':7 'pdf':9 'peopl':5,86 'posit':107 'primari':126 'problem':69 'public':123 'reason':110 'school':127 'see':58 'select':15 'softwar':113 'someon':59 'stick':18 'still':32 'switch':83 'talk':81 'thing':41 'toilet':97 'ton':3 'usb':17 'use':33,60 'window':116"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5884378"
+editedAt: null
+createdAt: DateTimeImmutable @1703295334 {#2087
date: 2023-12-23 02:35:34.0 +01:00
}
+"title": 247319
}
5 => App\Entity\EntryComment {#2330
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2348 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2346 …}
+body: "Marketing is monopolized with Google and Facebook. Manufacturers and Microsoft won’t make one-click installs happen. Tech support would be chicken and egg problem. Ugh…"
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703295471 {#2345
date: 2023-12-23 02:37:51.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@BaldProphet@kbin.social"
"@anon5621@lemmy.ml"
]
+children: Doctrine\ORM\PersistentCollection {#2351 …}
+nested: Doctrine\ORM\PersistentCollection {#2332 …}
+votes: Doctrine\ORM\PersistentCollection {#2349 …}
+reports: Doctrine\ORM\PersistentCollection {#2141 …}
+favourites: Doctrine\ORM\PersistentCollection {#2164 …}
+notifications: Doctrine\ORM\PersistentCollection {#2314 …}
-id: 247320
-bodyTs: "'chicken':23 'click':16 'egg':25 'facebook':7 'googl':5 'happen':18 'instal':17 'make':13 'manufactur':8 'market':1 'microsoft':10 'monopol':3 'one':15 'one-click':14 'problem':26 'support':20 'tech':19 'ugh':27 'won':11 'would':21"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5884407"
+editedAt: null
+createdAt: DateTimeImmutable @1703295471 {#2350
date: 2023-12-23 02:37:51.0 +01:00
}
+"title": 247320
}
4 => App\Entity\EntryComment {#2325}
3 => App\Entity\EntryComment {#2338
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2159 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2346 …}
+body: """
There are many many outdated patterns how to do things in Windows that are cemented in public knowledge. Running random executable installers from the web giving them superuser permissions is I thing the most popular one.\n
\n
How to share all user settings between system installations? How to change the logo in the desktop bar? How to add a directory to an applications bar? How to change system build-in keyboard shortcut? How to reinstall just the system keeping the programs? How to make a file run on a shortcut? Those are things I use daily, that are impossible or need some hacky programs to work on anything other than Linux, I would die if I had to switch back now.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703296199 {#2335
date: 2023-12-23 02:49:59.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@BaldProphet@kbin.social"
"@Wermhatswormhat@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#2143 …}
+nested: Doctrine\ORM\PersistentCollection {#2136 …}
+votes: Doctrine\ORM\PersistentCollection {#2073 …}
+reports: Doctrine\ORM\PersistentCollection {#2072 …}
+favourites: Doctrine\ORM\PersistentCollection {#2065 …}
+notifications: Doctrine\ORM\PersistentCollection {#2066 …}
-id: 247322
-bodyTs: "'add':57 'anyth':108 'applic':62 'back':120 'bar':54,63 'build':69 'build-in':68 'cement':15 'chang':48,66 'daili':96 'desktop':53 'die':114 'directori':59 'execut':21 'file':86 'give':26 'hacki':103 'imposs':99 'instal':22,45 'keep':79 'keyboard':71 'knowledg':18 'linux':111 'logo':50 'make':84 'mani':3,4 'need':101 'one':36 'outdat':5 'pattern':6 'permiss':29 'popular':35 'program':81,104 'public':17 'random':20 'reinstal':75 'run':19,87 'set':42 'share':39 'shortcut':72,90 'superus':28 'switch':119 'system':44,67,78 'thing':10,32,93 'use':95 'user':41 'web':25 'window':12 'work':106 'would':113"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5884570"
+editedAt: null
+createdAt: DateTimeImmutable @1703296199 {#2339
date: 2023-12-23 02:49:59.0 +01:00
}
+"title": 247322
}
2 => App\Entity\EntryComment {#2049
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2048 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2346 …}
+body: """
Use whatever is popular and has a cool logo. Distro is basically a software library, preinstalled programs and default settings. You can transform any distro to behave like the other one.\n
\n
KDE, Gnome, XFCE…? Which is looking better for you or which one was default. Init system? Which was the default. X11/Wayland? Wayland. Go with X11 only if Wayland is having problems with your graphics card.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703296544 {#2067
date: 2023-12-23 02:55:44.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@BaldProphet@kbin.social"
"@Deebster@programming.dev"
]
+children: Doctrine\ORM\PersistentCollection {#2051 …}
+nested: Doctrine\ORM\PersistentCollection {#2059 …}
+votes: Doctrine\ORM\PersistentCollection {#2047 …}
+reports: Doctrine\ORM\PersistentCollection {#2057 …}
+favourites: Doctrine\ORM\PersistentCollection {#2055 …}
+notifications: Doctrine\ORM\PersistentCollection {#2054 …}
-id: 247323
-bodyTs: "'basic':12 'behav':27 'better':38 'card':66 'cool':8 'default':19,45,51 'distro':10,25 'gnome':33 'go':54 'graphic':65 'init':46 'kde':32 'librari':15 'like':28 'logo':9 'look':37 'one':31,43 'popular':4 'preinstal':16 'problem':62 'program':17 'set':20 'softwar':14 'system':47 'transform':23 'use':1 'wayland':53,59 'whatev':2 'x11':56 'x11/wayland':52 'xfce':34"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5884646"
+editedAt: null
+createdAt: DateTimeImmutable @1703296544 {#2070
date: 2023-12-23 02:55:44.0 +01:00
}
+"title": 247323
}
1 => App\Entity\EntryComment {#2165
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2041 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2041 …}
+body: "For 240 million devices I think there would be some Linux can “cut it”. And second, no? My computer is 13+ years old and I am using it with basically no lagging, developing a couple of apps. Truth is all medium-tier computers made today and in recent years have reached the point where for normal use (that is daily tasks like communication, content consumption and calculations) only limiting factor for daily driver is software optimization."
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703296770 {#2053
date: 2023-12-23 02:59:30.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@TCB13@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#2104 …}
+nested: Doctrine\ORM\PersistentCollection {#2099 …}
+votes: Doctrine\ORM\PersistentCollection {#2108 …}
+reports: Doctrine\ORM\PersistentCollection {#2101 …}
+favourites: Doctrine\ORM\PersistentCollection {#2109 …}
+notifications: Doctrine\ORM\PersistentCollection {#2106 …}
-id: 247324
-bodyTs: "'13':21 '240':2 'app':37 'basic':30 'calcul':68 'communic':64 'comput':19,44 'consumpt':66 'content':65 'coupl':35 'cut':13 'daili':61,73 'develop':33 'devic':4 'driver':74 'factor':71 'lag':32 'like':63 'limit':70 'linux':11 'made':45 'medium':42 'medium-ti':41 'million':3 'normal':57 'old':23 'optim':77 'point':54 'reach':52 'recent':49 'second':16 'softwar':76 'task':62 'think':6 'tier':43 'today':46 'truth':38 'use':27,58 'would':8 'year':22,50"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5884688"
+editedAt: null
+createdAt: DateTimeImmutable @1703296770 {#2125
date: 2023-12-23 02:59:30.0 +01:00
}
+"title": 247324
}
0 => App\Entity\EntryComment {#2114
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2118 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2346 …}
+body: """
And this is a huge barrier for a lot of users, a massive roadblock. But the article talk about houndres of millions of computers, my point was just about that even if millions like you cannot switch, still in this statistics are millions that can especially non-professional that do not make audio or video, but that are going to throw away a working machine.\n
\n
I feel like you might feel being personally directed by my comment, because of your respond with “YOU’re not compatible”. Maybe it was bad wording, sorry. What I ment was that it can be frustrating to see “Linux doesn’t support …” when actually it has everything needed to support this software and the burden to make it available is on the software developer. Like saying that USB-C doesn’t support iPhone 13. Lack of it still hurts the Linux side anyway, but I just don’t want misconsaptions about which side should make a port happen.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703387471 {#2107
date: 2023-12-24 04:11:11.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@BaldProphet@kbin.social"
"@Transcendant@lemmy.world"
"@smileyhead@discuss.tchncs.de"
]
+children: Doctrine\ORM\PersistentCollection {#2117 …}
+nested: Doctrine\ORM\PersistentCollection {#2122 …}
+votes: Doctrine\ORM\PersistentCollection {#2113 …}
+reports: Doctrine\ORM\PersistentCollection {#2119 …}
+favourites: Doctrine\ORM\PersistentCollection {#2120 …}
+notifications: Doctrine\ORM\PersistentCollection {#2160 …}
-id: 247694
-bodyTs: "'13':141 'actual':110 'anyway':150 'articl':17 'audio':54 'avail':125 'away':63 'bad':91 'barrier':6 'burden':121 'c':136 'cannot':36 'comment':78 'compat':87 'comput':24 'develop':130 'direct':75 'doesn':106,137 'especi':46 'even':31 'everyth':113 'feel':68,72 'frustrat':102 'go':60 'happen':165 'houndr':20 'huge':5 'hurt':146 'iphon':140 'lack':142 'like':34,69,131 'linux':105,148 'lot':9 'machin':66 'make':53,123,162 'massiv':13 'mayb':88 'ment':96 'might':71 'million':22,33,43 'misconsapt':157 'need':114 'non':48 'non-profession':47 'person':74 'point':26 'port':164 'profession':49 're':85 'respond':82 'roadblock':14 'say':132 'see':104 'side':149,160 'softwar':118,129 'sorri':93 'statist':41 'still':38,145 'support':108,116,139 'switch':37 'talk':18 'throw':62 'usb':135 'usb-c':134 'user':11 'video':56 'want':156 'word':92 'work':65"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5904342"
+editedAt: DateTimeImmutable @1707537983 {#2112
date: 2024-02-10 05:06:23.0 +01:00
}
+createdAt: DateTimeImmutable @1703387471 {#2124
date: 2023-12-24 04:11:11.0 +01:00
}
+"title": 247694
}
]
-id: 24104
-titleTs: "'10':5 '240':8 'comput':10 'could':6 'end':1 'instal':16 'landfil':13 'linux':17 'million':9 'send':7 'support':2 'window':4"
-bodyTs: "'10':6 '11':33 '240':18 'comput':56 'current':16 'desktop':10 'due':30 'end':3 'exorbit':35 'gnu/linux':52 'hope':59 'immedi':46 'landfil':26 'like':40 'mani':43 'may':21,53 'million':19 'most':29 'oper':11 'outdat':47 'pcs':20,44 'popular':9 'possibl':17 'prone':49 'requir':36 'result':41 'secur':58 'sent':23 'support':2 'system':12 'think':63 'virus':51 'window':5,32 'world':15"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1703366140
+visibility: "visible "
+apId: "https://lemmy.world/post/9873158"
+editedAt: DateTimeImmutable @1706576554 {#2956
date: 2024-01-30 02:02:34.0 +01:00
}
+createdAt: DateTimeImmutable @1703279740 {#2935
date: 2023-12-22 22:15:40.0 +01:00
}
+__isInitialized__: true
…2
}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2327 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2346 …}
+body: """
Your DAW and audio interface doesn’t support Linux.*\n
\n
Yeah, it’s a bummer, but you are in a small portion of effected computer users, still others can benefit from longer support.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 1
+score: 0
+lastActive: DateTime @1703295692 {#2328
date: 2023-12-23 02:41:32.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@BaldProphet@kbin.social"
"@Transcendant@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#2329 …}
+nested: Doctrine\ORM\PersistentCollection {#2323 …}
+votes: Doctrine\ORM\PersistentCollection {#2300 …}
+reports: Doctrine\ORM\PersistentCollection {#2340 …}
+favourites: Doctrine\ORM\PersistentCollection {#2342 …}
+notifications: Doctrine\ORM\PersistentCollection {#2343 …}
-id: 247321
-bodyTs: "'audio':4 'benefit':29 'bummer':14 'comput':24 'daw':2 'doesn':6 'effect':23 'interfac':5 'linux':9 'longer':31 'other':27 'portion':21 'small':20 'still':26 'support':8,32 'user':25 'yeah':10"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5884453"
+editedAt: DateTimeImmutable @1707175705 {#2326
date: 2024-02-06 00:28:25.0 +01:00
}
+createdAt: DateTimeImmutable @1703295692 {#2191
date: 2023-12-23 02:41:32.0 +01:00
}
+"title": 247321
} |
|
Show voter details
|
73 |
DENIED
|
ROLE_USER
|
null |
|
Show voter details
|
74 |
DENIED
|
moderate
|
App\Entity\EntryComment {#2338
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086
+user: Proxies\__CG__\App\Entity\User {#2975 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: Proxies\__CG__\App\Entity\Image {#2977 …}
+domain: Proxies\__CG__\App\Entity\Domain {#2978 …}
+slug: "Ending-support-for-Windows-10-could-send-240-million-computers"
+title: "Ending support for Windows 10 could send 240 million computers to the landfill. Why not install Linux on them?"
+url: "https://gadgettendency.com/ending-support-for-windows-10-could-send-240-million-computers-to-the-landfill-a-stack-of-that-many-laptops-would-end-up-600-km-higher-than-the-moon/"
+body: "With support ending for Windows 10, the most popular desktop operating system in the world currently, possibly 240 million pcs may be sent to the landfill. This is mostly due to Windows 11’s exorbitant requirements. This will most likely result in many pcs being immediately outdated, and prone to viruses. GNU/Linux may be these computers’ only secure hope, what do you think?"
+type: "link"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 242
+favouriteCount: 748
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1711817575 {#2970
date: 2024-03-30 17:52:55.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#2979 …}
+votes: Doctrine\ORM\PersistentCollection {#2981 …}
+reports: Doctrine\ORM\PersistentCollection {#2983 …}
+favourites: Doctrine\ORM\PersistentCollection {#2985 …}
+notifications: Doctrine\ORM\PersistentCollection {#2987 …}
+badges: Doctrine\ORM\PersistentCollection {#2989 …}
+children: [
6 => App\Entity\EntryComment {#2091
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2090 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2090 …}
+body: """
But a ton of people **can** open a PDF and will be able to select an USB stick from menu and click next, next, next… It’s not completely different, you still use a mouse, a keyboard, you click on things, you get some feedback from it… When a new kind of mobile app arrive, I can see someone using no more than 5 apps in life having problems, but this doesn’t mean only them exists, we do not talk about switching everyone here. People change houses, how are they figuring out where is the toilet if doors have different color and are in different positions?\n
\n
Also a reason why any software like Microsoft Windows or Office should be banned from public education, especially primary schools.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703295334 {#2095
date: 2023-12-23 02:35:34.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@derf82@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#2093 …}
+nested: Doctrine\ORM\PersistentCollection {#2094 …}
+votes: Doctrine\ORM\PersistentCollection {#2140 …}
+reports: Doctrine\ORM\PersistentCollection {#2133 …}
+favourites: Doctrine\ORM\PersistentCollection {#2131 …}
+notifications: Doctrine\ORM\PersistentCollection {#2138 …}
-id: 247319
-bodyTs: "'5':64 'abl':13 'also':108 'app':54,65 'arriv':55 'ban':121 'chang':87 'click':22,39 'color':102 'complet':29 'differ':30,101,106 'doesn':72 'door':99 'educ':124 'especi':125 'everyon':84 'exist':77 'feedback':45 'figur':92 'get':43 'hous':88 'keyboard':37 'kind':51 'life':67 'like':114 'mean':74 'menu':20 'microsoft':115 'mobil':53 'mous':35 'new':50 'next':23,24,25 'offic':118 'open':7 'pdf':9 'peopl':5,86 'posit':107 'primari':126 'problem':69 'public':123 'reason':110 'school':127 'see':58 'select':15 'softwar':113 'someon':59 'stick':18 'still':32 'switch':83 'talk':81 'thing':41 'toilet':97 'ton':3 'usb':17 'use':33,60 'window':116"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5884378"
+editedAt: null
+createdAt: DateTimeImmutable @1703295334 {#2087
date: 2023-12-23 02:35:34.0 +01:00
}
+"title": 247319
}
5 => App\Entity\EntryComment {#2330
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2348 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2346 …}
+body: "Marketing is monopolized with Google and Facebook. Manufacturers and Microsoft won’t make one-click installs happen. Tech support would be chicken and egg problem. Ugh…"
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703295471 {#2345
date: 2023-12-23 02:37:51.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@BaldProphet@kbin.social"
"@anon5621@lemmy.ml"
]
+children: Doctrine\ORM\PersistentCollection {#2351 …}
+nested: Doctrine\ORM\PersistentCollection {#2332 …}
+votes: Doctrine\ORM\PersistentCollection {#2349 …}
+reports: Doctrine\ORM\PersistentCollection {#2141 …}
+favourites: Doctrine\ORM\PersistentCollection {#2164 …}
+notifications: Doctrine\ORM\PersistentCollection {#2314 …}
-id: 247320
-bodyTs: "'chicken':23 'click':16 'egg':25 'facebook':7 'googl':5 'happen':18 'instal':17 'make':13 'manufactur':8 'market':1 'microsoft':10 'monopol':3 'one':15 'one-click':14 'problem':26 'support':20 'tech':19 'ugh':27 'won':11 'would':21"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5884407"
+editedAt: null
+createdAt: DateTimeImmutable @1703295471 {#2350
date: 2023-12-23 02:37:51.0 +01:00
}
+"title": 247320
}
4 => App\Entity\EntryComment {#2325
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2327 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2346 …}
+body: """
Your DAW and audio interface doesn’t support Linux.*\n
\n
Yeah, it’s a bummer, but you are in a small portion of effected computer users, still others can benefit from longer support.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 1
+score: 0
+lastActive: DateTime @1703295692 {#2328
date: 2023-12-23 02:41:32.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@BaldProphet@kbin.social"
"@Transcendant@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#2329 …}
+nested: Doctrine\ORM\PersistentCollection {#2323 …}
+votes: Doctrine\ORM\PersistentCollection {#2300 …}
+reports: Doctrine\ORM\PersistentCollection {#2340 …}
+favourites: Doctrine\ORM\PersistentCollection {#2342 …}
+notifications: Doctrine\ORM\PersistentCollection {#2343 …}
-id: 247321
-bodyTs: "'audio':4 'benefit':29 'bummer':14 'comput':24 'daw':2 'doesn':6 'effect':23 'interfac':5 'linux':9 'longer':31 'other':27 'portion':21 'small':20 'still':26 'support':8,32 'user':25 'yeah':10"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5884453"
+editedAt: DateTimeImmutable @1707175705 {#2326
date: 2024-02-06 00:28:25.0 +01:00
}
+createdAt: DateTimeImmutable @1703295692 {#2191
date: 2023-12-23 02:41:32.0 +01:00
}
+"title": 247321
}
3 => App\Entity\EntryComment {#2338}
2 => App\Entity\EntryComment {#2049
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2048 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2346 …}
+body: """
Use whatever is popular and has a cool logo. Distro is basically a software library, preinstalled programs and default settings. You can transform any distro to behave like the other one.\n
\n
KDE, Gnome, XFCE…? Which is looking better for you or which one was default. Init system? Which was the default. X11/Wayland? Wayland. Go with X11 only if Wayland is having problems with your graphics card.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703296544 {#2067
date: 2023-12-23 02:55:44.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@BaldProphet@kbin.social"
"@Deebster@programming.dev"
]
+children: Doctrine\ORM\PersistentCollection {#2051 …}
+nested: Doctrine\ORM\PersistentCollection {#2059 …}
+votes: Doctrine\ORM\PersistentCollection {#2047 …}
+reports: Doctrine\ORM\PersistentCollection {#2057 …}
+favourites: Doctrine\ORM\PersistentCollection {#2055 …}
+notifications: Doctrine\ORM\PersistentCollection {#2054 …}
-id: 247323
-bodyTs: "'basic':12 'behav':27 'better':38 'card':66 'cool':8 'default':19,45,51 'distro':10,25 'gnome':33 'go':54 'graphic':65 'init':46 'kde':32 'librari':15 'like':28 'logo':9 'look':37 'one':31,43 'popular':4 'preinstal':16 'problem':62 'program':17 'set':20 'softwar':14 'system':47 'transform':23 'use':1 'wayland':53,59 'whatev':2 'x11':56 'x11/wayland':52 'xfce':34"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5884646"
+editedAt: null
+createdAt: DateTimeImmutable @1703296544 {#2070
date: 2023-12-23 02:55:44.0 +01:00
}
+"title": 247323
}
1 => App\Entity\EntryComment {#2165
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2041 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2041 …}
+body: "For 240 million devices I think there would be some Linux can “cut it”. And second, no? My computer is 13+ years old and I am using it with basically no lagging, developing a couple of apps. Truth is all medium-tier computers made today and in recent years have reached the point where for normal use (that is daily tasks like communication, content consumption and calculations) only limiting factor for daily driver is software optimization."
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703296770 {#2053
date: 2023-12-23 02:59:30.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@TCB13@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#2104 …}
+nested: Doctrine\ORM\PersistentCollection {#2099 …}
+votes: Doctrine\ORM\PersistentCollection {#2108 …}
+reports: Doctrine\ORM\PersistentCollection {#2101 …}
+favourites: Doctrine\ORM\PersistentCollection {#2109 …}
+notifications: Doctrine\ORM\PersistentCollection {#2106 …}
-id: 247324
-bodyTs: "'13':21 '240':2 'app':37 'basic':30 'calcul':68 'communic':64 'comput':19,44 'consumpt':66 'content':65 'coupl':35 'cut':13 'daili':61,73 'develop':33 'devic':4 'driver':74 'factor':71 'lag':32 'like':63 'limit':70 'linux':11 'made':45 'medium':42 'medium-ti':41 'million':3 'normal':57 'old':23 'optim':77 'point':54 'reach':52 'recent':49 'second':16 'softwar':76 'task':62 'think':6 'tier':43 'today':46 'truth':38 'use':27,58 'would':8 'year':22,50"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5884688"
+editedAt: null
+createdAt: DateTimeImmutable @1703296770 {#2125
date: 2023-12-23 02:59:30.0 +01:00
}
+"title": 247324
}
0 => App\Entity\EntryComment {#2114
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2118 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2346 …}
+body: """
And this is a huge barrier for a lot of users, a massive roadblock. But the article talk about houndres of millions of computers, my point was just about that even if millions like you cannot switch, still in this statistics are millions that can especially non-professional that do not make audio or video, but that are going to throw away a working machine.\n
\n
I feel like you might feel being personally directed by my comment, because of your respond with “YOU’re not compatible”. Maybe it was bad wording, sorry. What I ment was that it can be frustrating to see “Linux doesn’t support …” when actually it has everything needed to support this software and the burden to make it available is on the software developer. Like saying that USB-C doesn’t support iPhone 13. Lack of it still hurts the Linux side anyway, but I just don’t want misconsaptions about which side should make a port happen.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703387471 {#2107
date: 2023-12-24 04:11:11.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@BaldProphet@kbin.social"
"@Transcendant@lemmy.world"
"@smileyhead@discuss.tchncs.de"
]
+children: Doctrine\ORM\PersistentCollection {#2117 …}
+nested: Doctrine\ORM\PersistentCollection {#2122 …}
+votes: Doctrine\ORM\PersistentCollection {#2113 …}
+reports: Doctrine\ORM\PersistentCollection {#2119 …}
+favourites: Doctrine\ORM\PersistentCollection {#2120 …}
+notifications: Doctrine\ORM\PersistentCollection {#2160 …}
-id: 247694
-bodyTs: "'13':141 'actual':110 'anyway':150 'articl':17 'audio':54 'avail':125 'away':63 'bad':91 'barrier':6 'burden':121 'c':136 'cannot':36 'comment':78 'compat':87 'comput':24 'develop':130 'direct':75 'doesn':106,137 'especi':46 'even':31 'everyth':113 'feel':68,72 'frustrat':102 'go':60 'happen':165 'houndr':20 'huge':5 'hurt':146 'iphon':140 'lack':142 'like':34,69,131 'linux':105,148 'lot':9 'machin':66 'make':53,123,162 'massiv':13 'mayb':88 'ment':96 'might':71 'million':22,33,43 'misconsapt':157 'need':114 'non':48 'non-profession':47 'person':74 'point':26 'port':164 'profession':49 're':85 'respond':82 'roadblock':14 'say':132 'see':104 'side':149,160 'softwar':118,129 'sorri':93 'statist':41 'still':38,145 'support':108,116,139 'switch':37 'talk':18 'throw':62 'usb':135 'usb-c':134 'user':11 'video':56 'want':156 'word':92 'work':65"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5904342"
+editedAt: DateTimeImmutable @1707537983 {#2112
date: 2024-02-10 05:06:23.0 +01:00
}
+createdAt: DateTimeImmutable @1703387471 {#2124
date: 2023-12-24 04:11:11.0 +01:00
}
+"title": 247694
}
]
-id: 24104
-titleTs: "'10':5 '240':8 'comput':10 'could':6 'end':1 'instal':16 'landfil':13 'linux':17 'million':9 'send':7 'support':2 'window':4"
-bodyTs: "'10':6 '11':33 '240':18 'comput':56 'current':16 'desktop':10 'due':30 'end':3 'exorbit':35 'gnu/linux':52 'hope':59 'immedi':46 'landfil':26 'like':40 'mani':43 'may':21,53 'million':19 'most':29 'oper':11 'outdat':47 'pcs':20,44 'popular':9 'possibl':17 'prone':49 'requir':36 'result':41 'secur':58 'sent':23 'support':2 'system':12 'think':63 'virus':51 'window':5,32 'world':15"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1703366140
+visibility: "visible "
+apId: "https://lemmy.world/post/9873158"
+editedAt: DateTimeImmutable @1706576554 {#2956
date: 2024-01-30 02:02:34.0 +01:00
}
+createdAt: DateTimeImmutable @1703279740 {#2935
date: 2023-12-22 22:15:40.0 +01:00
}
+__isInitialized__: true
…2
}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2159 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2346 …}
+body: """
There are many many outdated patterns how to do things in Windows that are cemented in public knowledge. Running random executable installers from the web giving them superuser permissions is I thing the most popular one.\n
\n
How to share all user settings between system installations? How to change the logo in the desktop bar? How to add a directory to an applications bar? How to change system build-in keyboard shortcut? How to reinstall just the system keeping the programs? How to make a file run on a shortcut? Those are things I use daily, that are impossible or need some hacky programs to work on anything other than Linux, I would die if I had to switch back now.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703296199 {#2335
date: 2023-12-23 02:49:59.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@BaldProphet@kbin.social"
"@Wermhatswormhat@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#2143 …}
+nested: Doctrine\ORM\PersistentCollection {#2136 …}
+votes: Doctrine\ORM\PersistentCollection {#2073 …}
+reports: Doctrine\ORM\PersistentCollection {#2072 …}
+favourites: Doctrine\ORM\PersistentCollection {#2065 …}
+notifications: Doctrine\ORM\PersistentCollection {#2066 …}
-id: 247322
-bodyTs: "'add':57 'anyth':108 'applic':62 'back':120 'bar':54,63 'build':69 'build-in':68 'cement':15 'chang':48,66 'daili':96 'desktop':53 'die':114 'directori':59 'execut':21 'file':86 'give':26 'hacki':103 'imposs':99 'instal':22,45 'keep':79 'keyboard':71 'knowledg':18 'linux':111 'logo':50 'make':84 'mani':3,4 'need':101 'one':36 'outdat':5 'pattern':6 'permiss':29 'popular':35 'program':81,104 'public':17 'random':20 'reinstal':75 'run':19,87 'set':42 'share':39 'shortcut':72,90 'superus':28 'switch':119 'system':44,67,78 'thing':10,32,93 'use':95 'user':41 'web':25 'window':12 'work':106 'would':113"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5884570"
+editedAt: null
+createdAt: DateTimeImmutable @1703296199 {#2339
date: 2023-12-23 02:49:59.0 +01:00
}
+"title": 247322
} |
|
Show voter details
|
75 |
DENIED
|
edit
|
App\Entity\EntryComment {#2338
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086
+user: Proxies\__CG__\App\Entity\User {#2975 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: Proxies\__CG__\App\Entity\Image {#2977 …}
+domain: Proxies\__CG__\App\Entity\Domain {#2978 …}
+slug: "Ending-support-for-Windows-10-could-send-240-million-computers"
+title: "Ending support for Windows 10 could send 240 million computers to the landfill. Why not install Linux on them?"
+url: "https://gadgettendency.com/ending-support-for-windows-10-could-send-240-million-computers-to-the-landfill-a-stack-of-that-many-laptops-would-end-up-600-km-higher-than-the-moon/"
+body: "With support ending for Windows 10, the most popular desktop operating system in the world currently, possibly 240 million pcs may be sent to the landfill. This is mostly due to Windows 11’s exorbitant requirements. This will most likely result in many pcs being immediately outdated, and prone to viruses. GNU/Linux may be these computers’ only secure hope, what do you think?"
+type: "link"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 242
+favouriteCount: 748
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1711817575 {#2970
date: 2024-03-30 17:52:55.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#2979 …}
+votes: Doctrine\ORM\PersistentCollection {#2981 …}
+reports: Doctrine\ORM\PersistentCollection {#2983 …}
+favourites: Doctrine\ORM\PersistentCollection {#2985 …}
+notifications: Doctrine\ORM\PersistentCollection {#2987 …}
+badges: Doctrine\ORM\PersistentCollection {#2989 …}
+children: [
6 => App\Entity\EntryComment {#2091
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2090 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2090 …}
+body: """
But a ton of people **can** open a PDF and will be able to select an USB stick from menu and click next, next, next… It’s not completely different, you still use a mouse, a keyboard, you click on things, you get some feedback from it… When a new kind of mobile app arrive, I can see someone using no more than 5 apps in life having problems, but this doesn’t mean only them exists, we do not talk about switching everyone here. People change houses, how are they figuring out where is the toilet if doors have different color and are in different positions?\n
\n
Also a reason why any software like Microsoft Windows or Office should be banned from public education, especially primary schools.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703295334 {#2095
date: 2023-12-23 02:35:34.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@derf82@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#2093 …}
+nested: Doctrine\ORM\PersistentCollection {#2094 …}
+votes: Doctrine\ORM\PersistentCollection {#2140 …}
+reports: Doctrine\ORM\PersistentCollection {#2133 …}
+favourites: Doctrine\ORM\PersistentCollection {#2131 …}
+notifications: Doctrine\ORM\PersistentCollection {#2138 …}
-id: 247319
-bodyTs: "'5':64 'abl':13 'also':108 'app':54,65 'arriv':55 'ban':121 'chang':87 'click':22,39 'color':102 'complet':29 'differ':30,101,106 'doesn':72 'door':99 'educ':124 'especi':125 'everyon':84 'exist':77 'feedback':45 'figur':92 'get':43 'hous':88 'keyboard':37 'kind':51 'life':67 'like':114 'mean':74 'menu':20 'microsoft':115 'mobil':53 'mous':35 'new':50 'next':23,24,25 'offic':118 'open':7 'pdf':9 'peopl':5,86 'posit':107 'primari':126 'problem':69 'public':123 'reason':110 'school':127 'see':58 'select':15 'softwar':113 'someon':59 'stick':18 'still':32 'switch':83 'talk':81 'thing':41 'toilet':97 'ton':3 'usb':17 'use':33,60 'window':116"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5884378"
+editedAt: null
+createdAt: DateTimeImmutable @1703295334 {#2087
date: 2023-12-23 02:35:34.0 +01:00
}
+"title": 247319
}
5 => App\Entity\EntryComment {#2330
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2348 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2346 …}
+body: "Marketing is monopolized with Google and Facebook. Manufacturers and Microsoft won’t make one-click installs happen. Tech support would be chicken and egg problem. Ugh…"
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703295471 {#2345
date: 2023-12-23 02:37:51.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@BaldProphet@kbin.social"
"@anon5621@lemmy.ml"
]
+children: Doctrine\ORM\PersistentCollection {#2351 …}
+nested: Doctrine\ORM\PersistentCollection {#2332 …}
+votes: Doctrine\ORM\PersistentCollection {#2349 …}
+reports: Doctrine\ORM\PersistentCollection {#2141 …}
+favourites: Doctrine\ORM\PersistentCollection {#2164 …}
+notifications: Doctrine\ORM\PersistentCollection {#2314 …}
-id: 247320
-bodyTs: "'chicken':23 'click':16 'egg':25 'facebook':7 'googl':5 'happen':18 'instal':17 'make':13 'manufactur':8 'market':1 'microsoft':10 'monopol':3 'one':15 'one-click':14 'problem':26 'support':20 'tech':19 'ugh':27 'won':11 'would':21"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5884407"
+editedAt: null
+createdAt: DateTimeImmutable @1703295471 {#2350
date: 2023-12-23 02:37:51.0 +01:00
}
+"title": 247320
}
4 => App\Entity\EntryComment {#2325
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2327 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2346 …}
+body: """
Your DAW and audio interface doesn’t support Linux.*\n
\n
Yeah, it’s a bummer, but you are in a small portion of effected computer users, still others can benefit from longer support.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 1
+score: 0
+lastActive: DateTime @1703295692 {#2328
date: 2023-12-23 02:41:32.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@BaldProphet@kbin.social"
"@Transcendant@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#2329 …}
+nested: Doctrine\ORM\PersistentCollection {#2323 …}
+votes: Doctrine\ORM\PersistentCollection {#2300 …}
+reports: Doctrine\ORM\PersistentCollection {#2340 …}
+favourites: Doctrine\ORM\PersistentCollection {#2342 …}
+notifications: Doctrine\ORM\PersistentCollection {#2343 …}
-id: 247321
-bodyTs: "'audio':4 'benefit':29 'bummer':14 'comput':24 'daw':2 'doesn':6 'effect':23 'interfac':5 'linux':9 'longer':31 'other':27 'portion':21 'small':20 'still':26 'support':8,32 'user':25 'yeah':10"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5884453"
+editedAt: DateTimeImmutable @1707175705 {#2326
date: 2024-02-06 00:28:25.0 +01:00
}
+createdAt: DateTimeImmutable @1703295692 {#2191
date: 2023-12-23 02:41:32.0 +01:00
}
+"title": 247321
}
3 => App\Entity\EntryComment {#2338}
2 => App\Entity\EntryComment {#2049
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2048 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2346 …}
+body: """
Use whatever is popular and has a cool logo. Distro is basically a software library, preinstalled programs and default settings. You can transform any distro to behave like the other one.\n
\n
KDE, Gnome, XFCE…? Which is looking better for you or which one was default. Init system? Which was the default. X11/Wayland? Wayland. Go with X11 only if Wayland is having problems with your graphics card.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703296544 {#2067
date: 2023-12-23 02:55:44.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@BaldProphet@kbin.social"
"@Deebster@programming.dev"
]
+children: Doctrine\ORM\PersistentCollection {#2051 …}
+nested: Doctrine\ORM\PersistentCollection {#2059 …}
+votes: Doctrine\ORM\PersistentCollection {#2047 …}
+reports: Doctrine\ORM\PersistentCollection {#2057 …}
+favourites: Doctrine\ORM\PersistentCollection {#2055 …}
+notifications: Doctrine\ORM\PersistentCollection {#2054 …}
-id: 247323
-bodyTs: "'basic':12 'behav':27 'better':38 'card':66 'cool':8 'default':19,45,51 'distro':10,25 'gnome':33 'go':54 'graphic':65 'init':46 'kde':32 'librari':15 'like':28 'logo':9 'look':37 'one':31,43 'popular':4 'preinstal':16 'problem':62 'program':17 'set':20 'softwar':14 'system':47 'transform':23 'use':1 'wayland':53,59 'whatev':2 'x11':56 'x11/wayland':52 'xfce':34"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5884646"
+editedAt: null
+createdAt: DateTimeImmutable @1703296544 {#2070
date: 2023-12-23 02:55:44.0 +01:00
}
+"title": 247323
}
1 => App\Entity\EntryComment {#2165
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2041 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2041 …}
+body: "For 240 million devices I think there would be some Linux can “cut it”. And second, no? My computer is 13+ years old and I am using it with basically no lagging, developing a couple of apps. Truth is all medium-tier computers made today and in recent years have reached the point where for normal use (that is daily tasks like communication, content consumption and calculations) only limiting factor for daily driver is software optimization."
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703296770 {#2053
date: 2023-12-23 02:59:30.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@TCB13@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#2104 …}
+nested: Doctrine\ORM\PersistentCollection {#2099 …}
+votes: Doctrine\ORM\PersistentCollection {#2108 …}
+reports: Doctrine\ORM\PersistentCollection {#2101 …}
+favourites: Doctrine\ORM\PersistentCollection {#2109 …}
+notifications: Doctrine\ORM\PersistentCollection {#2106 …}
-id: 247324
-bodyTs: "'13':21 '240':2 'app':37 'basic':30 'calcul':68 'communic':64 'comput':19,44 'consumpt':66 'content':65 'coupl':35 'cut':13 'daili':61,73 'develop':33 'devic':4 'driver':74 'factor':71 'lag':32 'like':63 'limit':70 'linux':11 'made':45 'medium':42 'medium-ti':41 'million':3 'normal':57 'old':23 'optim':77 'point':54 'reach':52 'recent':49 'second':16 'softwar':76 'task':62 'think':6 'tier':43 'today':46 'truth':38 'use':27,58 'would':8 'year':22,50"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5884688"
+editedAt: null
+createdAt: DateTimeImmutable @1703296770 {#2125
date: 2023-12-23 02:59:30.0 +01:00
}
+"title": 247324
}
0 => App\Entity\EntryComment {#2114
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2118 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2346 …}
+body: """
And this is a huge barrier for a lot of users, a massive roadblock. But the article talk about houndres of millions of computers, my point was just about that even if millions like you cannot switch, still in this statistics are millions that can especially non-professional that do not make audio or video, but that are going to throw away a working machine.\n
\n
I feel like you might feel being personally directed by my comment, because of your respond with “YOU’re not compatible”. Maybe it was bad wording, sorry. What I ment was that it can be frustrating to see “Linux doesn’t support …” when actually it has everything needed to support this software and the burden to make it available is on the software developer. Like saying that USB-C doesn’t support iPhone 13. Lack of it still hurts the Linux side anyway, but I just don’t want misconsaptions about which side should make a port happen.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703387471 {#2107
date: 2023-12-24 04:11:11.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@BaldProphet@kbin.social"
"@Transcendant@lemmy.world"
"@smileyhead@discuss.tchncs.de"
]
+children: Doctrine\ORM\PersistentCollection {#2117 …}
+nested: Doctrine\ORM\PersistentCollection {#2122 …}
+votes: Doctrine\ORM\PersistentCollection {#2113 …}
+reports: Doctrine\ORM\PersistentCollection {#2119 …}
+favourites: Doctrine\ORM\PersistentCollection {#2120 …}
+notifications: Doctrine\ORM\PersistentCollection {#2160 …}
-id: 247694
-bodyTs: "'13':141 'actual':110 'anyway':150 'articl':17 'audio':54 'avail':125 'away':63 'bad':91 'barrier':6 'burden':121 'c':136 'cannot':36 'comment':78 'compat':87 'comput':24 'develop':130 'direct':75 'doesn':106,137 'especi':46 'even':31 'everyth':113 'feel':68,72 'frustrat':102 'go':60 'happen':165 'houndr':20 'huge':5 'hurt':146 'iphon':140 'lack':142 'like':34,69,131 'linux':105,148 'lot':9 'machin':66 'make':53,123,162 'massiv':13 'mayb':88 'ment':96 'might':71 'million':22,33,43 'misconsapt':157 'need':114 'non':48 'non-profession':47 'person':74 'point':26 'port':164 'profession':49 're':85 'respond':82 'roadblock':14 'say':132 'see':104 'side':149,160 'softwar':118,129 'sorri':93 'statist':41 'still':38,145 'support':108,116,139 'switch':37 'talk':18 'throw':62 'usb':135 'usb-c':134 'user':11 'video':56 'want':156 'word':92 'work':65"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5904342"
+editedAt: DateTimeImmutable @1707537983 {#2112
date: 2024-02-10 05:06:23.0 +01:00
}
+createdAt: DateTimeImmutable @1703387471 {#2124
date: 2023-12-24 04:11:11.0 +01:00
}
+"title": 247694
}
]
-id: 24104
-titleTs: "'10':5 '240':8 'comput':10 'could':6 'end':1 'instal':16 'landfil':13 'linux':17 'million':9 'send':7 'support':2 'window':4"
-bodyTs: "'10':6 '11':33 '240':18 'comput':56 'current':16 'desktop':10 'due':30 'end':3 'exorbit':35 'gnu/linux':52 'hope':59 'immedi':46 'landfil':26 'like':40 'mani':43 'may':21,53 'million':19 'most':29 'oper':11 'outdat':47 'pcs':20,44 'popular':9 'possibl':17 'prone':49 'requir':36 'result':41 'secur':58 'sent':23 'support':2 'system':12 'think':63 'virus':51 'window':5,32 'world':15"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1703366140
+visibility: "visible "
+apId: "https://lemmy.world/post/9873158"
+editedAt: DateTimeImmutable @1706576554 {#2956
date: 2024-01-30 02:02:34.0 +01:00
}
+createdAt: DateTimeImmutable @1703279740 {#2935
date: 2023-12-22 22:15:40.0 +01:00
}
+__isInitialized__: true
…2
}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2159 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2346 …}
+body: """
There are many many outdated patterns how to do things in Windows that are cemented in public knowledge. Running random executable installers from the web giving them superuser permissions is I thing the most popular one.\n
\n
How to share all user settings between system installations? How to change the logo in the desktop bar? How to add a directory to an applications bar? How to change system build-in keyboard shortcut? How to reinstall just the system keeping the programs? How to make a file run on a shortcut? Those are things I use daily, that are impossible or need some hacky programs to work on anything other than Linux, I would die if I had to switch back now.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703296199 {#2335
date: 2023-12-23 02:49:59.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@BaldProphet@kbin.social"
"@Wermhatswormhat@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#2143 …}
+nested: Doctrine\ORM\PersistentCollection {#2136 …}
+votes: Doctrine\ORM\PersistentCollection {#2073 …}
+reports: Doctrine\ORM\PersistentCollection {#2072 …}
+favourites: Doctrine\ORM\PersistentCollection {#2065 …}
+notifications: Doctrine\ORM\PersistentCollection {#2066 …}
-id: 247322
-bodyTs: "'add':57 'anyth':108 'applic':62 'back':120 'bar':54,63 'build':69 'build-in':68 'cement':15 'chang':48,66 'daili':96 'desktop':53 'die':114 'directori':59 'execut':21 'file':86 'give':26 'hacki':103 'imposs':99 'instal':22,45 'keep':79 'keyboard':71 'knowledg':18 'linux':111 'logo':50 'make':84 'mani':3,4 'need':101 'one':36 'outdat':5 'pattern':6 'permiss':29 'popular':35 'program':81,104 'public':17 'random':20 'reinstal':75 'run':19,87 'set':42 'share':39 'shortcut':72,90 'superus':28 'switch':119 'system':44,67,78 'thing':10,32,93 'use':95 'user':41 'web':25 'window':12 'work':106 'would':113"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5884570"
+editedAt: null
+createdAt: DateTimeImmutable @1703296199 {#2339
date: 2023-12-23 02:49:59.0 +01:00
}
+"title": 247322
} |
|
Show voter details
|
76 |
DENIED
|
moderate
|
App\Entity\EntryComment {#2338
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086
+user: Proxies\__CG__\App\Entity\User {#2975 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: Proxies\__CG__\App\Entity\Image {#2977 …}
+domain: Proxies\__CG__\App\Entity\Domain {#2978 …}
+slug: "Ending-support-for-Windows-10-could-send-240-million-computers"
+title: "Ending support for Windows 10 could send 240 million computers to the landfill. Why not install Linux on them?"
+url: "https://gadgettendency.com/ending-support-for-windows-10-could-send-240-million-computers-to-the-landfill-a-stack-of-that-many-laptops-would-end-up-600-km-higher-than-the-moon/"
+body: "With support ending for Windows 10, the most popular desktop operating system in the world currently, possibly 240 million pcs may be sent to the landfill. This is mostly due to Windows 11’s exorbitant requirements. This will most likely result in many pcs being immediately outdated, and prone to viruses. GNU/Linux may be these computers’ only secure hope, what do you think?"
+type: "link"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 242
+favouriteCount: 748
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1711817575 {#2970
date: 2024-03-30 17:52:55.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#2979 …}
+votes: Doctrine\ORM\PersistentCollection {#2981 …}
+reports: Doctrine\ORM\PersistentCollection {#2983 …}
+favourites: Doctrine\ORM\PersistentCollection {#2985 …}
+notifications: Doctrine\ORM\PersistentCollection {#2987 …}
+badges: Doctrine\ORM\PersistentCollection {#2989 …}
+children: [
6 => App\Entity\EntryComment {#2091
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2090 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2090 …}
+body: """
But a ton of people **can** open a PDF and will be able to select an USB stick from menu and click next, next, next… It’s not completely different, you still use a mouse, a keyboard, you click on things, you get some feedback from it… When a new kind of mobile app arrive, I can see someone using no more than 5 apps in life having problems, but this doesn’t mean only them exists, we do not talk about switching everyone here. People change houses, how are they figuring out where is the toilet if doors have different color and are in different positions?\n
\n
Also a reason why any software like Microsoft Windows or Office should be banned from public education, especially primary schools.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703295334 {#2095
date: 2023-12-23 02:35:34.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@derf82@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#2093 …}
+nested: Doctrine\ORM\PersistentCollection {#2094 …}
+votes: Doctrine\ORM\PersistentCollection {#2140 …}
+reports: Doctrine\ORM\PersistentCollection {#2133 …}
+favourites: Doctrine\ORM\PersistentCollection {#2131 …}
+notifications: Doctrine\ORM\PersistentCollection {#2138 …}
-id: 247319
-bodyTs: "'5':64 'abl':13 'also':108 'app':54,65 'arriv':55 'ban':121 'chang':87 'click':22,39 'color':102 'complet':29 'differ':30,101,106 'doesn':72 'door':99 'educ':124 'especi':125 'everyon':84 'exist':77 'feedback':45 'figur':92 'get':43 'hous':88 'keyboard':37 'kind':51 'life':67 'like':114 'mean':74 'menu':20 'microsoft':115 'mobil':53 'mous':35 'new':50 'next':23,24,25 'offic':118 'open':7 'pdf':9 'peopl':5,86 'posit':107 'primari':126 'problem':69 'public':123 'reason':110 'school':127 'see':58 'select':15 'softwar':113 'someon':59 'stick':18 'still':32 'switch':83 'talk':81 'thing':41 'toilet':97 'ton':3 'usb':17 'use':33,60 'window':116"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5884378"
+editedAt: null
+createdAt: DateTimeImmutable @1703295334 {#2087
date: 2023-12-23 02:35:34.0 +01:00
}
+"title": 247319
}
5 => App\Entity\EntryComment {#2330
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2348 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2346 …}
+body: "Marketing is monopolized with Google and Facebook. Manufacturers and Microsoft won’t make one-click installs happen. Tech support would be chicken and egg problem. Ugh…"
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703295471 {#2345
date: 2023-12-23 02:37:51.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@BaldProphet@kbin.social"
"@anon5621@lemmy.ml"
]
+children: Doctrine\ORM\PersistentCollection {#2351 …}
+nested: Doctrine\ORM\PersistentCollection {#2332 …}
+votes: Doctrine\ORM\PersistentCollection {#2349 …}
+reports: Doctrine\ORM\PersistentCollection {#2141 …}
+favourites: Doctrine\ORM\PersistentCollection {#2164 …}
+notifications: Doctrine\ORM\PersistentCollection {#2314 …}
-id: 247320
-bodyTs: "'chicken':23 'click':16 'egg':25 'facebook':7 'googl':5 'happen':18 'instal':17 'make':13 'manufactur':8 'market':1 'microsoft':10 'monopol':3 'one':15 'one-click':14 'problem':26 'support':20 'tech':19 'ugh':27 'won':11 'would':21"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5884407"
+editedAt: null
+createdAt: DateTimeImmutable @1703295471 {#2350
date: 2023-12-23 02:37:51.0 +01:00
}
+"title": 247320
}
4 => App\Entity\EntryComment {#2325
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2327 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2346 …}
+body: """
Your DAW and audio interface doesn’t support Linux.*\n
\n
Yeah, it’s a bummer, but you are in a small portion of effected computer users, still others can benefit from longer support.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 1
+score: 0
+lastActive: DateTime @1703295692 {#2328
date: 2023-12-23 02:41:32.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@BaldProphet@kbin.social"
"@Transcendant@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#2329 …}
+nested: Doctrine\ORM\PersistentCollection {#2323 …}
+votes: Doctrine\ORM\PersistentCollection {#2300 …}
+reports: Doctrine\ORM\PersistentCollection {#2340 …}
+favourites: Doctrine\ORM\PersistentCollection {#2342 …}
+notifications: Doctrine\ORM\PersistentCollection {#2343 …}
-id: 247321
-bodyTs: "'audio':4 'benefit':29 'bummer':14 'comput':24 'daw':2 'doesn':6 'effect':23 'interfac':5 'linux':9 'longer':31 'other':27 'portion':21 'small':20 'still':26 'support':8,32 'user':25 'yeah':10"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5884453"
+editedAt: DateTimeImmutable @1707175705 {#2326
date: 2024-02-06 00:28:25.0 +01:00
}
+createdAt: DateTimeImmutable @1703295692 {#2191
date: 2023-12-23 02:41:32.0 +01:00
}
+"title": 247321
}
3 => App\Entity\EntryComment {#2338}
2 => App\Entity\EntryComment {#2049
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2048 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2346 …}
+body: """
Use whatever is popular and has a cool logo. Distro is basically a software library, preinstalled programs and default settings. You can transform any distro to behave like the other one.\n
\n
KDE, Gnome, XFCE…? Which is looking better for you or which one was default. Init system? Which was the default. X11/Wayland? Wayland. Go with X11 only if Wayland is having problems with your graphics card.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703296544 {#2067
date: 2023-12-23 02:55:44.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@BaldProphet@kbin.social"
"@Deebster@programming.dev"
]
+children: Doctrine\ORM\PersistentCollection {#2051 …}
+nested: Doctrine\ORM\PersistentCollection {#2059 …}
+votes: Doctrine\ORM\PersistentCollection {#2047 …}
+reports: Doctrine\ORM\PersistentCollection {#2057 …}
+favourites: Doctrine\ORM\PersistentCollection {#2055 …}
+notifications: Doctrine\ORM\PersistentCollection {#2054 …}
-id: 247323
-bodyTs: "'basic':12 'behav':27 'better':38 'card':66 'cool':8 'default':19,45,51 'distro':10,25 'gnome':33 'go':54 'graphic':65 'init':46 'kde':32 'librari':15 'like':28 'logo':9 'look':37 'one':31,43 'popular':4 'preinstal':16 'problem':62 'program':17 'set':20 'softwar':14 'system':47 'transform':23 'use':1 'wayland':53,59 'whatev':2 'x11':56 'x11/wayland':52 'xfce':34"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5884646"
+editedAt: null
+createdAt: DateTimeImmutable @1703296544 {#2070
date: 2023-12-23 02:55:44.0 +01:00
}
+"title": 247323
}
1 => App\Entity\EntryComment {#2165
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2041 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2041 …}
+body: "For 240 million devices I think there would be some Linux can “cut it”. And second, no? My computer is 13+ years old and I am using it with basically no lagging, developing a couple of apps. Truth is all medium-tier computers made today and in recent years have reached the point where for normal use (that is daily tasks like communication, content consumption and calculations) only limiting factor for daily driver is software optimization."
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703296770 {#2053
date: 2023-12-23 02:59:30.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@TCB13@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#2104 …}
+nested: Doctrine\ORM\PersistentCollection {#2099 …}
+votes: Doctrine\ORM\PersistentCollection {#2108 …}
+reports: Doctrine\ORM\PersistentCollection {#2101 …}
+favourites: Doctrine\ORM\PersistentCollection {#2109 …}
+notifications: Doctrine\ORM\PersistentCollection {#2106 …}
-id: 247324
-bodyTs: "'13':21 '240':2 'app':37 'basic':30 'calcul':68 'communic':64 'comput':19,44 'consumpt':66 'content':65 'coupl':35 'cut':13 'daili':61,73 'develop':33 'devic':4 'driver':74 'factor':71 'lag':32 'like':63 'limit':70 'linux':11 'made':45 'medium':42 'medium-ti':41 'million':3 'normal':57 'old':23 'optim':77 'point':54 'reach':52 'recent':49 'second':16 'softwar':76 'task':62 'think':6 'tier':43 'today':46 'truth':38 'use':27,58 'would':8 'year':22,50"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5884688"
+editedAt: null
+createdAt: DateTimeImmutable @1703296770 {#2125
date: 2023-12-23 02:59:30.0 +01:00
}
+"title": 247324
}
0 => App\Entity\EntryComment {#2114
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2118 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2346 …}
+body: """
And this is a huge barrier for a lot of users, a massive roadblock. But the article talk about houndres of millions of computers, my point was just about that even if millions like you cannot switch, still in this statistics are millions that can especially non-professional that do not make audio or video, but that are going to throw away a working machine.\n
\n
I feel like you might feel being personally directed by my comment, because of your respond with “YOU’re not compatible”. Maybe it was bad wording, sorry. What I ment was that it can be frustrating to see “Linux doesn’t support …” when actually it has everything needed to support this software and the burden to make it available is on the software developer. Like saying that USB-C doesn’t support iPhone 13. Lack of it still hurts the Linux side anyway, but I just don’t want misconsaptions about which side should make a port happen.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703387471 {#2107
date: 2023-12-24 04:11:11.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@BaldProphet@kbin.social"
"@Transcendant@lemmy.world"
"@smileyhead@discuss.tchncs.de"
]
+children: Doctrine\ORM\PersistentCollection {#2117 …}
+nested: Doctrine\ORM\PersistentCollection {#2122 …}
+votes: Doctrine\ORM\PersistentCollection {#2113 …}
+reports: Doctrine\ORM\PersistentCollection {#2119 …}
+favourites: Doctrine\ORM\PersistentCollection {#2120 …}
+notifications: Doctrine\ORM\PersistentCollection {#2160 …}
-id: 247694
-bodyTs: "'13':141 'actual':110 'anyway':150 'articl':17 'audio':54 'avail':125 'away':63 'bad':91 'barrier':6 'burden':121 'c':136 'cannot':36 'comment':78 'compat':87 'comput':24 'develop':130 'direct':75 'doesn':106,137 'especi':46 'even':31 'everyth':113 'feel':68,72 'frustrat':102 'go':60 'happen':165 'houndr':20 'huge':5 'hurt':146 'iphon':140 'lack':142 'like':34,69,131 'linux':105,148 'lot':9 'machin':66 'make':53,123,162 'massiv':13 'mayb':88 'ment':96 'might':71 'million':22,33,43 'misconsapt':157 'need':114 'non':48 'non-profession':47 'person':74 'point':26 'port':164 'profession':49 're':85 'respond':82 'roadblock':14 'say':132 'see':104 'side':149,160 'softwar':118,129 'sorri':93 'statist':41 'still':38,145 'support':108,116,139 'switch':37 'talk':18 'throw':62 'usb':135 'usb-c':134 'user':11 'video':56 'want':156 'word':92 'work':65"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5904342"
+editedAt: DateTimeImmutable @1707537983 {#2112
date: 2024-02-10 05:06:23.0 +01:00
}
+createdAt: DateTimeImmutable @1703387471 {#2124
date: 2023-12-24 04:11:11.0 +01:00
}
+"title": 247694
}
]
-id: 24104
-titleTs: "'10':5 '240':8 'comput':10 'could':6 'end':1 'instal':16 'landfil':13 'linux':17 'million':9 'send':7 'support':2 'window':4"
-bodyTs: "'10':6 '11':33 '240':18 'comput':56 'current':16 'desktop':10 'due':30 'end':3 'exorbit':35 'gnu/linux':52 'hope':59 'immedi':46 'landfil':26 'like':40 'mani':43 'may':21,53 'million':19 'most':29 'oper':11 'outdat':47 'pcs':20,44 'popular':9 'possibl':17 'prone':49 'requir':36 'result':41 'secur':58 'sent':23 'support':2 'system':12 'think':63 'virus':51 'window':5,32 'world':15"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1703366140
+visibility: "visible "
+apId: "https://lemmy.world/post/9873158"
+editedAt: DateTimeImmutable @1706576554 {#2956
date: 2024-01-30 02:02:34.0 +01:00
}
+createdAt: DateTimeImmutable @1703279740 {#2935
date: 2023-12-22 22:15:40.0 +01:00
}
+__isInitialized__: true
…2
}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2159 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2346 …}
+body: """
There are many many outdated patterns how to do things in Windows that are cemented in public knowledge. Running random executable installers from the web giving them superuser permissions is I thing the most popular one.\n
\n
How to share all user settings between system installations? How to change the logo in the desktop bar? How to add a directory to an applications bar? How to change system build-in keyboard shortcut? How to reinstall just the system keeping the programs? How to make a file run on a shortcut? Those are things I use daily, that are impossible or need some hacky programs to work on anything other than Linux, I would die if I had to switch back now.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703296199 {#2335
date: 2023-12-23 02:49:59.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@BaldProphet@kbin.social"
"@Wermhatswormhat@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#2143 …}
+nested: Doctrine\ORM\PersistentCollection {#2136 …}
+votes: Doctrine\ORM\PersistentCollection {#2073 …}
+reports: Doctrine\ORM\PersistentCollection {#2072 …}
+favourites: Doctrine\ORM\PersistentCollection {#2065 …}
+notifications: Doctrine\ORM\PersistentCollection {#2066 …}
-id: 247322
-bodyTs: "'add':57 'anyth':108 'applic':62 'back':120 'bar':54,63 'build':69 'build-in':68 'cement':15 'chang':48,66 'daili':96 'desktop':53 'die':114 'directori':59 'execut':21 'file':86 'give':26 'hacki':103 'imposs':99 'instal':22,45 'keep':79 'keyboard':71 'knowledg':18 'linux':111 'logo':50 'make':84 'mani':3,4 'need':101 'one':36 'outdat':5 'pattern':6 'permiss':29 'popular':35 'program':81,104 'public':17 'random':20 'reinstal':75 'run':19,87 'set':42 'share':39 'shortcut':72,90 'superus':28 'switch':119 'system':44,67,78 'thing':10,32,93 'use':95 'user':41 'web':25 'window':12 'work':106 'would':113"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5884570"
+editedAt: null
+createdAt: DateTimeImmutable @1703296199 {#2339
date: 2023-12-23 02:49:59.0 +01:00
}
+"title": 247322
} |
|
Show voter details
|
77 |
DENIED
|
ROLE_USER
|
null |
|
Show voter details
|
78 |
DENIED
|
moderate
|
App\Entity\EntryComment {#2049
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086
+user: Proxies\__CG__\App\Entity\User {#2975 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: Proxies\__CG__\App\Entity\Image {#2977 …}
+domain: Proxies\__CG__\App\Entity\Domain {#2978 …}
+slug: "Ending-support-for-Windows-10-could-send-240-million-computers"
+title: "Ending support for Windows 10 could send 240 million computers to the landfill. Why not install Linux on them?"
+url: "https://gadgettendency.com/ending-support-for-windows-10-could-send-240-million-computers-to-the-landfill-a-stack-of-that-many-laptops-would-end-up-600-km-higher-than-the-moon/"
+body: "With support ending for Windows 10, the most popular desktop operating system in the world currently, possibly 240 million pcs may be sent to the landfill. This is mostly due to Windows 11’s exorbitant requirements. This will most likely result in many pcs being immediately outdated, and prone to viruses. GNU/Linux may be these computers’ only secure hope, what do you think?"
+type: "link"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 242
+favouriteCount: 748
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1711817575 {#2970
date: 2024-03-30 17:52:55.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#2979 …}
+votes: Doctrine\ORM\PersistentCollection {#2981 …}
+reports: Doctrine\ORM\PersistentCollection {#2983 …}
+favourites: Doctrine\ORM\PersistentCollection {#2985 …}
+notifications: Doctrine\ORM\PersistentCollection {#2987 …}
+badges: Doctrine\ORM\PersistentCollection {#2989 …}
+children: [
6 => App\Entity\EntryComment {#2091
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2090 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2090 …}
+body: """
But a ton of people **can** open a PDF and will be able to select an USB stick from menu and click next, next, next… It’s not completely different, you still use a mouse, a keyboard, you click on things, you get some feedback from it… When a new kind of mobile app arrive, I can see someone using no more than 5 apps in life having problems, but this doesn’t mean only them exists, we do not talk about switching everyone here. People change houses, how are they figuring out where is the toilet if doors have different color and are in different positions?\n
\n
Also a reason why any software like Microsoft Windows or Office should be banned from public education, especially primary schools.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703295334 {#2095
date: 2023-12-23 02:35:34.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@derf82@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#2093 …}
+nested: Doctrine\ORM\PersistentCollection {#2094 …}
+votes: Doctrine\ORM\PersistentCollection {#2140 …}
+reports: Doctrine\ORM\PersistentCollection {#2133 …}
+favourites: Doctrine\ORM\PersistentCollection {#2131 …}
+notifications: Doctrine\ORM\PersistentCollection {#2138 …}
-id: 247319
-bodyTs: "'5':64 'abl':13 'also':108 'app':54,65 'arriv':55 'ban':121 'chang':87 'click':22,39 'color':102 'complet':29 'differ':30,101,106 'doesn':72 'door':99 'educ':124 'especi':125 'everyon':84 'exist':77 'feedback':45 'figur':92 'get':43 'hous':88 'keyboard':37 'kind':51 'life':67 'like':114 'mean':74 'menu':20 'microsoft':115 'mobil':53 'mous':35 'new':50 'next':23,24,25 'offic':118 'open':7 'pdf':9 'peopl':5,86 'posit':107 'primari':126 'problem':69 'public':123 'reason':110 'school':127 'see':58 'select':15 'softwar':113 'someon':59 'stick':18 'still':32 'switch':83 'talk':81 'thing':41 'toilet':97 'ton':3 'usb':17 'use':33,60 'window':116"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5884378"
+editedAt: null
+createdAt: DateTimeImmutable @1703295334 {#2087
date: 2023-12-23 02:35:34.0 +01:00
}
+"title": 247319
}
5 => App\Entity\EntryComment {#2330
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2348 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2346 …}
+body: "Marketing is monopolized with Google and Facebook. Manufacturers and Microsoft won’t make one-click installs happen. Tech support would be chicken and egg problem. Ugh…"
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703295471 {#2345
date: 2023-12-23 02:37:51.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@BaldProphet@kbin.social"
"@anon5621@lemmy.ml"
]
+children: Doctrine\ORM\PersistentCollection {#2351 …}
+nested: Doctrine\ORM\PersistentCollection {#2332 …}
+votes: Doctrine\ORM\PersistentCollection {#2349 …}
+reports: Doctrine\ORM\PersistentCollection {#2141 …}
+favourites: Doctrine\ORM\PersistentCollection {#2164 …}
+notifications: Doctrine\ORM\PersistentCollection {#2314 …}
-id: 247320
-bodyTs: "'chicken':23 'click':16 'egg':25 'facebook':7 'googl':5 'happen':18 'instal':17 'make':13 'manufactur':8 'market':1 'microsoft':10 'monopol':3 'one':15 'one-click':14 'problem':26 'support':20 'tech':19 'ugh':27 'won':11 'would':21"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5884407"
+editedAt: null
+createdAt: DateTimeImmutable @1703295471 {#2350
date: 2023-12-23 02:37:51.0 +01:00
}
+"title": 247320
}
4 => App\Entity\EntryComment {#2325
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2327 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2346 …}
+body: """
Your DAW and audio interface doesn’t support Linux.*\n
\n
Yeah, it’s a bummer, but you are in a small portion of effected computer users, still others can benefit from longer support.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 1
+score: 0
+lastActive: DateTime @1703295692 {#2328
date: 2023-12-23 02:41:32.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@BaldProphet@kbin.social"
"@Transcendant@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#2329 …}
+nested: Doctrine\ORM\PersistentCollection {#2323 …}
+votes: Doctrine\ORM\PersistentCollection {#2300 …}
+reports: Doctrine\ORM\PersistentCollection {#2340 …}
+favourites: Doctrine\ORM\PersistentCollection {#2342 …}
+notifications: Doctrine\ORM\PersistentCollection {#2343 …}
-id: 247321
-bodyTs: "'audio':4 'benefit':29 'bummer':14 'comput':24 'daw':2 'doesn':6 'effect':23 'interfac':5 'linux':9 'longer':31 'other':27 'portion':21 'small':20 'still':26 'support':8,32 'user':25 'yeah':10"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5884453"
+editedAt: DateTimeImmutable @1707175705 {#2326
date: 2024-02-06 00:28:25.0 +01:00
}
+createdAt: DateTimeImmutable @1703295692 {#2191
date: 2023-12-23 02:41:32.0 +01:00
}
+"title": 247321
}
3 => App\Entity\EntryComment {#2338
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2159 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2346 …}
+body: """
There are many many outdated patterns how to do things in Windows that are cemented in public knowledge. Running random executable installers from the web giving them superuser permissions is I thing the most popular one.\n
\n
How to share all user settings between system installations? How to change the logo in the desktop bar? How to add a directory to an applications bar? How to change system build-in keyboard shortcut? How to reinstall just the system keeping the programs? How to make a file run on a shortcut? Those are things I use daily, that are impossible or need some hacky programs to work on anything other than Linux, I would die if I had to switch back now.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703296199 {#2335
date: 2023-12-23 02:49:59.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@BaldProphet@kbin.social"
"@Wermhatswormhat@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#2143 …}
+nested: Doctrine\ORM\PersistentCollection {#2136 …}
+votes: Doctrine\ORM\PersistentCollection {#2073 …}
+reports: Doctrine\ORM\PersistentCollection {#2072 …}
+favourites: Doctrine\ORM\PersistentCollection {#2065 …}
+notifications: Doctrine\ORM\PersistentCollection {#2066 …}
-id: 247322
-bodyTs: "'add':57 'anyth':108 'applic':62 'back':120 'bar':54,63 'build':69 'build-in':68 'cement':15 'chang':48,66 'daili':96 'desktop':53 'die':114 'directori':59 'execut':21 'file':86 'give':26 'hacki':103 'imposs':99 'instal':22,45 'keep':79 'keyboard':71 'knowledg':18 'linux':111 'logo':50 'make':84 'mani':3,4 'need':101 'one':36 'outdat':5 'pattern':6 'permiss':29 'popular':35 'program':81,104 'public':17 'random':20 'reinstal':75 'run':19,87 'set':42 'share':39 'shortcut':72,90 'superus':28 'switch':119 'system':44,67,78 'thing':10,32,93 'use':95 'user':41 'web':25 'window':12 'work':106 'would':113"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5884570"
+editedAt: null
+createdAt: DateTimeImmutable @1703296199 {#2339
date: 2023-12-23 02:49:59.0 +01:00
}
+"title": 247322
}
2 => App\Entity\EntryComment {#2049}
1 => App\Entity\EntryComment {#2165
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2041 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2041 …}
+body: "For 240 million devices I think there would be some Linux can “cut it”. And second, no? My computer is 13+ years old and I am using it with basically no lagging, developing a couple of apps. Truth is all medium-tier computers made today and in recent years have reached the point where for normal use (that is daily tasks like communication, content consumption and calculations) only limiting factor for daily driver is software optimization."
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703296770 {#2053
date: 2023-12-23 02:59:30.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@TCB13@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#2104 …}
+nested: Doctrine\ORM\PersistentCollection {#2099 …}
+votes: Doctrine\ORM\PersistentCollection {#2108 …}
+reports: Doctrine\ORM\PersistentCollection {#2101 …}
+favourites: Doctrine\ORM\PersistentCollection {#2109 …}
+notifications: Doctrine\ORM\PersistentCollection {#2106 …}
-id: 247324
-bodyTs: "'13':21 '240':2 'app':37 'basic':30 'calcul':68 'communic':64 'comput':19,44 'consumpt':66 'content':65 'coupl':35 'cut':13 'daili':61,73 'develop':33 'devic':4 'driver':74 'factor':71 'lag':32 'like':63 'limit':70 'linux':11 'made':45 'medium':42 'medium-ti':41 'million':3 'normal':57 'old':23 'optim':77 'point':54 'reach':52 'recent':49 'second':16 'softwar':76 'task':62 'think':6 'tier':43 'today':46 'truth':38 'use':27,58 'would':8 'year':22,50"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5884688"
+editedAt: null
+createdAt: DateTimeImmutable @1703296770 {#2125
date: 2023-12-23 02:59:30.0 +01:00
}
+"title": 247324
}
0 => App\Entity\EntryComment {#2114
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2118 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2346 …}
+body: """
And this is a huge barrier for a lot of users, a massive roadblock. But the article talk about houndres of millions of computers, my point was just about that even if millions like you cannot switch, still in this statistics are millions that can especially non-professional that do not make audio or video, but that are going to throw away a working machine.\n
\n
I feel like you might feel being personally directed by my comment, because of your respond with “YOU’re not compatible”. Maybe it was bad wording, sorry. What I ment was that it can be frustrating to see “Linux doesn’t support …” when actually it has everything needed to support this software and the burden to make it available is on the software developer. Like saying that USB-C doesn’t support iPhone 13. Lack of it still hurts the Linux side anyway, but I just don’t want misconsaptions about which side should make a port happen.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703387471 {#2107
date: 2023-12-24 04:11:11.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@BaldProphet@kbin.social"
"@Transcendant@lemmy.world"
"@smileyhead@discuss.tchncs.de"
]
+children: Doctrine\ORM\PersistentCollection {#2117 …}
+nested: Doctrine\ORM\PersistentCollection {#2122 …}
+votes: Doctrine\ORM\PersistentCollection {#2113 …}
+reports: Doctrine\ORM\PersistentCollection {#2119 …}
+favourites: Doctrine\ORM\PersistentCollection {#2120 …}
+notifications: Doctrine\ORM\PersistentCollection {#2160 …}
-id: 247694
-bodyTs: "'13':141 'actual':110 'anyway':150 'articl':17 'audio':54 'avail':125 'away':63 'bad':91 'barrier':6 'burden':121 'c':136 'cannot':36 'comment':78 'compat':87 'comput':24 'develop':130 'direct':75 'doesn':106,137 'especi':46 'even':31 'everyth':113 'feel':68,72 'frustrat':102 'go':60 'happen':165 'houndr':20 'huge':5 'hurt':146 'iphon':140 'lack':142 'like':34,69,131 'linux':105,148 'lot':9 'machin':66 'make':53,123,162 'massiv':13 'mayb':88 'ment':96 'might':71 'million':22,33,43 'misconsapt':157 'need':114 'non':48 'non-profession':47 'person':74 'point':26 'port':164 'profession':49 're':85 'respond':82 'roadblock':14 'say':132 'see':104 'side':149,160 'softwar':118,129 'sorri':93 'statist':41 'still':38,145 'support':108,116,139 'switch':37 'talk':18 'throw':62 'usb':135 'usb-c':134 'user':11 'video':56 'want':156 'word':92 'work':65"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5904342"
+editedAt: DateTimeImmutable @1707537983 {#2112
date: 2024-02-10 05:06:23.0 +01:00
}
+createdAt: DateTimeImmutable @1703387471 {#2124
date: 2023-12-24 04:11:11.0 +01:00
}
+"title": 247694
}
]
-id: 24104
-titleTs: "'10':5 '240':8 'comput':10 'could':6 'end':1 'instal':16 'landfil':13 'linux':17 'million':9 'send':7 'support':2 'window':4"
-bodyTs: "'10':6 '11':33 '240':18 'comput':56 'current':16 'desktop':10 'due':30 'end':3 'exorbit':35 'gnu/linux':52 'hope':59 'immedi':46 'landfil':26 'like':40 'mani':43 'may':21,53 'million':19 'most':29 'oper':11 'outdat':47 'pcs':20,44 'popular':9 'possibl':17 'prone':49 'requir':36 'result':41 'secur':58 'sent':23 'support':2 'system':12 'think':63 'virus':51 'window':5,32 'world':15"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1703366140
+visibility: "visible "
+apId: "https://lemmy.world/post/9873158"
+editedAt: DateTimeImmutable @1706576554 {#2956
date: 2024-01-30 02:02:34.0 +01:00
}
+createdAt: DateTimeImmutable @1703279740 {#2935
date: 2023-12-22 22:15:40.0 +01:00
}
+__isInitialized__: true
…2
}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2048 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2346 …}
+body: """
Use whatever is popular and has a cool logo. Distro is basically a software library, preinstalled programs and default settings. You can transform any distro to behave like the other one.\n
\n
KDE, Gnome, XFCE…? Which is looking better for you or which one was default. Init system? Which was the default. X11/Wayland? Wayland. Go with X11 only if Wayland is having problems with your graphics card.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703296544 {#2067
date: 2023-12-23 02:55:44.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@BaldProphet@kbin.social"
"@Deebster@programming.dev"
]
+children: Doctrine\ORM\PersistentCollection {#2051 …}
+nested: Doctrine\ORM\PersistentCollection {#2059 …}
+votes: Doctrine\ORM\PersistentCollection {#2047 …}
+reports: Doctrine\ORM\PersistentCollection {#2057 …}
+favourites: Doctrine\ORM\PersistentCollection {#2055 …}
+notifications: Doctrine\ORM\PersistentCollection {#2054 …}
-id: 247323
-bodyTs: "'basic':12 'behav':27 'better':38 'card':66 'cool':8 'default':19,45,51 'distro':10,25 'gnome':33 'go':54 'graphic':65 'init':46 'kde':32 'librari':15 'like':28 'logo':9 'look':37 'one':31,43 'popular':4 'preinstal':16 'problem':62 'program':17 'set':20 'softwar':14 'system':47 'transform':23 'use':1 'wayland':53,59 'whatev':2 'x11':56 'x11/wayland':52 'xfce':34"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5884646"
+editedAt: null
+createdAt: DateTimeImmutable @1703296544 {#2070
date: 2023-12-23 02:55:44.0 +01:00
}
+"title": 247323
} |
|
Show voter details
|
79 |
DENIED
|
edit
|
App\Entity\EntryComment {#2049
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086
+user: Proxies\__CG__\App\Entity\User {#2975 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: Proxies\__CG__\App\Entity\Image {#2977 …}
+domain: Proxies\__CG__\App\Entity\Domain {#2978 …}
+slug: "Ending-support-for-Windows-10-could-send-240-million-computers"
+title: "Ending support for Windows 10 could send 240 million computers to the landfill. Why not install Linux on them?"
+url: "https://gadgettendency.com/ending-support-for-windows-10-could-send-240-million-computers-to-the-landfill-a-stack-of-that-many-laptops-would-end-up-600-km-higher-than-the-moon/"
+body: "With support ending for Windows 10, the most popular desktop operating system in the world currently, possibly 240 million pcs may be sent to the landfill. This is mostly due to Windows 11’s exorbitant requirements. This will most likely result in many pcs being immediately outdated, and prone to viruses. GNU/Linux may be these computers’ only secure hope, what do you think?"
+type: "link"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 242
+favouriteCount: 748
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1711817575 {#2970
date: 2024-03-30 17:52:55.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#2979 …}
+votes: Doctrine\ORM\PersistentCollection {#2981 …}
+reports: Doctrine\ORM\PersistentCollection {#2983 …}
+favourites: Doctrine\ORM\PersistentCollection {#2985 …}
+notifications: Doctrine\ORM\PersistentCollection {#2987 …}
+badges: Doctrine\ORM\PersistentCollection {#2989 …}
+children: [
6 => App\Entity\EntryComment {#2091
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2090 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2090 …}
+body: """
But a ton of people **can** open a PDF and will be able to select an USB stick from menu and click next, next, next… It’s not completely different, you still use a mouse, a keyboard, you click on things, you get some feedback from it… When a new kind of mobile app arrive, I can see someone using no more than 5 apps in life having problems, but this doesn’t mean only them exists, we do not talk about switching everyone here. People change houses, how are they figuring out where is the toilet if doors have different color and are in different positions?\n
\n
Also a reason why any software like Microsoft Windows or Office should be banned from public education, especially primary schools.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703295334 {#2095
date: 2023-12-23 02:35:34.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@derf82@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#2093 …}
+nested: Doctrine\ORM\PersistentCollection {#2094 …}
+votes: Doctrine\ORM\PersistentCollection {#2140 …}
+reports: Doctrine\ORM\PersistentCollection {#2133 …}
+favourites: Doctrine\ORM\PersistentCollection {#2131 …}
+notifications: Doctrine\ORM\PersistentCollection {#2138 …}
-id: 247319
-bodyTs: "'5':64 'abl':13 'also':108 'app':54,65 'arriv':55 'ban':121 'chang':87 'click':22,39 'color':102 'complet':29 'differ':30,101,106 'doesn':72 'door':99 'educ':124 'especi':125 'everyon':84 'exist':77 'feedback':45 'figur':92 'get':43 'hous':88 'keyboard':37 'kind':51 'life':67 'like':114 'mean':74 'menu':20 'microsoft':115 'mobil':53 'mous':35 'new':50 'next':23,24,25 'offic':118 'open':7 'pdf':9 'peopl':5,86 'posit':107 'primari':126 'problem':69 'public':123 'reason':110 'school':127 'see':58 'select':15 'softwar':113 'someon':59 'stick':18 'still':32 'switch':83 'talk':81 'thing':41 'toilet':97 'ton':3 'usb':17 'use':33,60 'window':116"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5884378"
+editedAt: null
+createdAt: DateTimeImmutable @1703295334 {#2087
date: 2023-12-23 02:35:34.0 +01:00
}
+"title": 247319
}
5 => App\Entity\EntryComment {#2330
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2348 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2346 …}
+body: "Marketing is monopolized with Google and Facebook. Manufacturers and Microsoft won’t make one-click installs happen. Tech support would be chicken and egg problem. Ugh…"
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703295471 {#2345
date: 2023-12-23 02:37:51.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@BaldProphet@kbin.social"
"@anon5621@lemmy.ml"
]
+children: Doctrine\ORM\PersistentCollection {#2351 …}
+nested: Doctrine\ORM\PersistentCollection {#2332 …}
+votes: Doctrine\ORM\PersistentCollection {#2349 …}
+reports: Doctrine\ORM\PersistentCollection {#2141 …}
+favourites: Doctrine\ORM\PersistentCollection {#2164 …}
+notifications: Doctrine\ORM\PersistentCollection {#2314 …}
-id: 247320
-bodyTs: "'chicken':23 'click':16 'egg':25 'facebook':7 'googl':5 'happen':18 'instal':17 'make':13 'manufactur':8 'market':1 'microsoft':10 'monopol':3 'one':15 'one-click':14 'problem':26 'support':20 'tech':19 'ugh':27 'won':11 'would':21"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5884407"
+editedAt: null
+createdAt: DateTimeImmutable @1703295471 {#2350
date: 2023-12-23 02:37:51.0 +01:00
}
+"title": 247320
}
4 => App\Entity\EntryComment {#2325
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2327 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2346 …}
+body: """
Your DAW and audio interface doesn’t support Linux.*\n
\n
Yeah, it’s a bummer, but you are in a small portion of effected computer users, still others can benefit from longer support.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 1
+score: 0
+lastActive: DateTime @1703295692 {#2328
date: 2023-12-23 02:41:32.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@BaldProphet@kbin.social"
"@Transcendant@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#2329 …}
+nested: Doctrine\ORM\PersistentCollection {#2323 …}
+votes: Doctrine\ORM\PersistentCollection {#2300 …}
+reports: Doctrine\ORM\PersistentCollection {#2340 …}
+favourites: Doctrine\ORM\PersistentCollection {#2342 …}
+notifications: Doctrine\ORM\PersistentCollection {#2343 …}
-id: 247321
-bodyTs: "'audio':4 'benefit':29 'bummer':14 'comput':24 'daw':2 'doesn':6 'effect':23 'interfac':5 'linux':9 'longer':31 'other':27 'portion':21 'small':20 'still':26 'support':8,32 'user':25 'yeah':10"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5884453"
+editedAt: DateTimeImmutable @1707175705 {#2326
date: 2024-02-06 00:28:25.0 +01:00
}
+createdAt: DateTimeImmutable @1703295692 {#2191
date: 2023-12-23 02:41:32.0 +01:00
}
+"title": 247321
}
3 => App\Entity\EntryComment {#2338
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2159 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2346 …}
+body: """
There are many many outdated patterns how to do things in Windows that are cemented in public knowledge. Running random executable installers from the web giving them superuser permissions is I thing the most popular one.\n
\n
How to share all user settings between system installations? How to change the logo in the desktop bar? How to add a directory to an applications bar? How to change system build-in keyboard shortcut? How to reinstall just the system keeping the programs? How to make a file run on a shortcut? Those are things I use daily, that are impossible or need some hacky programs to work on anything other than Linux, I would die if I had to switch back now.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703296199 {#2335
date: 2023-12-23 02:49:59.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@BaldProphet@kbin.social"
"@Wermhatswormhat@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#2143 …}
+nested: Doctrine\ORM\PersistentCollection {#2136 …}
+votes: Doctrine\ORM\PersistentCollection {#2073 …}
+reports: Doctrine\ORM\PersistentCollection {#2072 …}
+favourites: Doctrine\ORM\PersistentCollection {#2065 …}
+notifications: Doctrine\ORM\PersistentCollection {#2066 …}
-id: 247322
-bodyTs: "'add':57 'anyth':108 'applic':62 'back':120 'bar':54,63 'build':69 'build-in':68 'cement':15 'chang':48,66 'daili':96 'desktop':53 'die':114 'directori':59 'execut':21 'file':86 'give':26 'hacki':103 'imposs':99 'instal':22,45 'keep':79 'keyboard':71 'knowledg':18 'linux':111 'logo':50 'make':84 'mani':3,4 'need':101 'one':36 'outdat':5 'pattern':6 'permiss':29 'popular':35 'program':81,104 'public':17 'random':20 'reinstal':75 'run':19,87 'set':42 'share':39 'shortcut':72,90 'superus':28 'switch':119 'system':44,67,78 'thing':10,32,93 'use':95 'user':41 'web':25 'window':12 'work':106 'would':113"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5884570"
+editedAt: null
+createdAt: DateTimeImmutable @1703296199 {#2339
date: 2023-12-23 02:49:59.0 +01:00
}
+"title": 247322
}
2 => App\Entity\EntryComment {#2049}
1 => App\Entity\EntryComment {#2165
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2041 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2041 …}
+body: "For 240 million devices I think there would be some Linux can “cut it”. And second, no? My computer is 13+ years old and I am using it with basically no lagging, developing a couple of apps. Truth is all medium-tier computers made today and in recent years have reached the point where for normal use (that is daily tasks like communication, content consumption and calculations) only limiting factor for daily driver is software optimization."
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703296770 {#2053
date: 2023-12-23 02:59:30.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@TCB13@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#2104 …}
+nested: Doctrine\ORM\PersistentCollection {#2099 …}
+votes: Doctrine\ORM\PersistentCollection {#2108 …}
+reports: Doctrine\ORM\PersistentCollection {#2101 …}
+favourites: Doctrine\ORM\PersistentCollection {#2109 …}
+notifications: Doctrine\ORM\PersistentCollection {#2106 …}
-id: 247324
-bodyTs: "'13':21 '240':2 'app':37 'basic':30 'calcul':68 'communic':64 'comput':19,44 'consumpt':66 'content':65 'coupl':35 'cut':13 'daili':61,73 'develop':33 'devic':4 'driver':74 'factor':71 'lag':32 'like':63 'limit':70 'linux':11 'made':45 'medium':42 'medium-ti':41 'million':3 'normal':57 'old':23 'optim':77 'point':54 'reach':52 'recent':49 'second':16 'softwar':76 'task':62 'think':6 'tier':43 'today':46 'truth':38 'use':27,58 'would':8 'year':22,50"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5884688"
+editedAt: null
+createdAt: DateTimeImmutable @1703296770 {#2125
date: 2023-12-23 02:59:30.0 +01:00
}
+"title": 247324
}
0 => App\Entity\EntryComment {#2114
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2118 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2346 …}
+body: """
And this is a huge barrier for a lot of users, a massive roadblock. But the article talk about houndres of millions of computers, my point was just about that even if millions like you cannot switch, still in this statistics are millions that can especially non-professional that do not make audio or video, but that are going to throw away a working machine.\n
\n
I feel like you might feel being personally directed by my comment, because of your respond with “YOU’re not compatible”. Maybe it was bad wording, sorry. What I ment was that it can be frustrating to see “Linux doesn’t support …” when actually it has everything needed to support this software and the burden to make it available is on the software developer. Like saying that USB-C doesn’t support iPhone 13. Lack of it still hurts the Linux side anyway, but I just don’t want misconsaptions about which side should make a port happen.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703387471 {#2107
date: 2023-12-24 04:11:11.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@BaldProphet@kbin.social"
"@Transcendant@lemmy.world"
"@smileyhead@discuss.tchncs.de"
]
+children: Doctrine\ORM\PersistentCollection {#2117 …}
+nested: Doctrine\ORM\PersistentCollection {#2122 …}
+votes: Doctrine\ORM\PersistentCollection {#2113 …}
+reports: Doctrine\ORM\PersistentCollection {#2119 …}
+favourites: Doctrine\ORM\PersistentCollection {#2120 …}
+notifications: Doctrine\ORM\PersistentCollection {#2160 …}
-id: 247694
-bodyTs: "'13':141 'actual':110 'anyway':150 'articl':17 'audio':54 'avail':125 'away':63 'bad':91 'barrier':6 'burden':121 'c':136 'cannot':36 'comment':78 'compat':87 'comput':24 'develop':130 'direct':75 'doesn':106,137 'especi':46 'even':31 'everyth':113 'feel':68,72 'frustrat':102 'go':60 'happen':165 'houndr':20 'huge':5 'hurt':146 'iphon':140 'lack':142 'like':34,69,131 'linux':105,148 'lot':9 'machin':66 'make':53,123,162 'massiv':13 'mayb':88 'ment':96 'might':71 'million':22,33,43 'misconsapt':157 'need':114 'non':48 'non-profession':47 'person':74 'point':26 'port':164 'profession':49 're':85 'respond':82 'roadblock':14 'say':132 'see':104 'side':149,160 'softwar':118,129 'sorri':93 'statist':41 'still':38,145 'support':108,116,139 'switch':37 'talk':18 'throw':62 'usb':135 'usb-c':134 'user':11 'video':56 'want':156 'word':92 'work':65"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5904342"
+editedAt: DateTimeImmutable @1707537983 {#2112
date: 2024-02-10 05:06:23.0 +01:00
}
+createdAt: DateTimeImmutable @1703387471 {#2124
date: 2023-12-24 04:11:11.0 +01:00
}
+"title": 247694
}
]
-id: 24104
-titleTs: "'10':5 '240':8 'comput':10 'could':6 'end':1 'instal':16 'landfil':13 'linux':17 'million':9 'send':7 'support':2 'window':4"
-bodyTs: "'10':6 '11':33 '240':18 'comput':56 'current':16 'desktop':10 'due':30 'end':3 'exorbit':35 'gnu/linux':52 'hope':59 'immedi':46 'landfil':26 'like':40 'mani':43 'may':21,53 'million':19 'most':29 'oper':11 'outdat':47 'pcs':20,44 'popular':9 'possibl':17 'prone':49 'requir':36 'result':41 'secur':58 'sent':23 'support':2 'system':12 'think':63 'virus':51 'window':5,32 'world':15"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1703366140
+visibility: "visible "
+apId: "https://lemmy.world/post/9873158"
+editedAt: DateTimeImmutable @1706576554 {#2956
date: 2024-01-30 02:02:34.0 +01:00
}
+createdAt: DateTimeImmutable @1703279740 {#2935
date: 2023-12-22 22:15:40.0 +01:00
}
+__isInitialized__: true
…2
}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2048 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2346 …}
+body: """
Use whatever is popular and has a cool logo. Distro is basically a software library, preinstalled programs and default settings. You can transform any distro to behave like the other one.\n
\n
KDE, Gnome, XFCE…? Which is looking better for you or which one was default. Init system? Which was the default. X11/Wayland? Wayland. Go with X11 only if Wayland is having problems with your graphics card.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703296544 {#2067
date: 2023-12-23 02:55:44.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@BaldProphet@kbin.social"
"@Deebster@programming.dev"
]
+children: Doctrine\ORM\PersistentCollection {#2051 …}
+nested: Doctrine\ORM\PersistentCollection {#2059 …}
+votes: Doctrine\ORM\PersistentCollection {#2047 …}
+reports: Doctrine\ORM\PersistentCollection {#2057 …}
+favourites: Doctrine\ORM\PersistentCollection {#2055 …}
+notifications: Doctrine\ORM\PersistentCollection {#2054 …}
-id: 247323
-bodyTs: "'basic':12 'behav':27 'better':38 'card':66 'cool':8 'default':19,45,51 'distro':10,25 'gnome':33 'go':54 'graphic':65 'init':46 'kde':32 'librari':15 'like':28 'logo':9 'look':37 'one':31,43 'popular':4 'preinstal':16 'problem':62 'program':17 'set':20 'softwar':14 'system':47 'transform':23 'use':1 'wayland':53,59 'whatev':2 'x11':56 'x11/wayland':52 'xfce':34"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5884646"
+editedAt: null
+createdAt: DateTimeImmutable @1703296544 {#2070
date: 2023-12-23 02:55:44.0 +01:00
}
+"title": 247323
} |
|
Show voter details
|
80 |
DENIED
|
moderate
|
App\Entity\EntryComment {#2049
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086
+user: Proxies\__CG__\App\Entity\User {#2975 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: Proxies\__CG__\App\Entity\Image {#2977 …}
+domain: Proxies\__CG__\App\Entity\Domain {#2978 …}
+slug: "Ending-support-for-Windows-10-could-send-240-million-computers"
+title: "Ending support for Windows 10 could send 240 million computers to the landfill. Why not install Linux on them?"
+url: "https://gadgettendency.com/ending-support-for-windows-10-could-send-240-million-computers-to-the-landfill-a-stack-of-that-many-laptops-would-end-up-600-km-higher-than-the-moon/"
+body: "With support ending for Windows 10, the most popular desktop operating system in the world currently, possibly 240 million pcs may be sent to the landfill. This is mostly due to Windows 11’s exorbitant requirements. This will most likely result in many pcs being immediately outdated, and prone to viruses. GNU/Linux may be these computers’ only secure hope, what do you think?"
+type: "link"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 242
+favouriteCount: 748
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1711817575 {#2970
date: 2024-03-30 17:52:55.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#2979 …}
+votes: Doctrine\ORM\PersistentCollection {#2981 …}
+reports: Doctrine\ORM\PersistentCollection {#2983 …}
+favourites: Doctrine\ORM\PersistentCollection {#2985 …}
+notifications: Doctrine\ORM\PersistentCollection {#2987 …}
+badges: Doctrine\ORM\PersistentCollection {#2989 …}
+children: [
6 => App\Entity\EntryComment {#2091
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2090 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2090 …}
+body: """
But a ton of people **can** open a PDF and will be able to select an USB stick from menu and click next, next, next… It’s not completely different, you still use a mouse, a keyboard, you click on things, you get some feedback from it… When a new kind of mobile app arrive, I can see someone using no more than 5 apps in life having problems, but this doesn’t mean only them exists, we do not talk about switching everyone here. People change houses, how are they figuring out where is the toilet if doors have different color and are in different positions?\n
\n
Also a reason why any software like Microsoft Windows or Office should be banned from public education, especially primary schools.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703295334 {#2095
date: 2023-12-23 02:35:34.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@derf82@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#2093 …}
+nested: Doctrine\ORM\PersistentCollection {#2094 …}
+votes: Doctrine\ORM\PersistentCollection {#2140 …}
+reports: Doctrine\ORM\PersistentCollection {#2133 …}
+favourites: Doctrine\ORM\PersistentCollection {#2131 …}
+notifications: Doctrine\ORM\PersistentCollection {#2138 …}
-id: 247319
-bodyTs: "'5':64 'abl':13 'also':108 'app':54,65 'arriv':55 'ban':121 'chang':87 'click':22,39 'color':102 'complet':29 'differ':30,101,106 'doesn':72 'door':99 'educ':124 'especi':125 'everyon':84 'exist':77 'feedback':45 'figur':92 'get':43 'hous':88 'keyboard':37 'kind':51 'life':67 'like':114 'mean':74 'menu':20 'microsoft':115 'mobil':53 'mous':35 'new':50 'next':23,24,25 'offic':118 'open':7 'pdf':9 'peopl':5,86 'posit':107 'primari':126 'problem':69 'public':123 'reason':110 'school':127 'see':58 'select':15 'softwar':113 'someon':59 'stick':18 'still':32 'switch':83 'talk':81 'thing':41 'toilet':97 'ton':3 'usb':17 'use':33,60 'window':116"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5884378"
+editedAt: null
+createdAt: DateTimeImmutable @1703295334 {#2087
date: 2023-12-23 02:35:34.0 +01:00
}
+"title": 247319
}
5 => App\Entity\EntryComment {#2330
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2348 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2346 …}
+body: "Marketing is monopolized with Google and Facebook. Manufacturers and Microsoft won’t make one-click installs happen. Tech support would be chicken and egg problem. Ugh…"
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703295471 {#2345
date: 2023-12-23 02:37:51.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@BaldProphet@kbin.social"
"@anon5621@lemmy.ml"
]
+children: Doctrine\ORM\PersistentCollection {#2351 …}
+nested: Doctrine\ORM\PersistentCollection {#2332 …}
+votes: Doctrine\ORM\PersistentCollection {#2349 …}
+reports: Doctrine\ORM\PersistentCollection {#2141 …}
+favourites: Doctrine\ORM\PersistentCollection {#2164 …}
+notifications: Doctrine\ORM\PersistentCollection {#2314 …}
-id: 247320
-bodyTs: "'chicken':23 'click':16 'egg':25 'facebook':7 'googl':5 'happen':18 'instal':17 'make':13 'manufactur':8 'market':1 'microsoft':10 'monopol':3 'one':15 'one-click':14 'problem':26 'support':20 'tech':19 'ugh':27 'won':11 'would':21"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5884407"
+editedAt: null
+createdAt: DateTimeImmutable @1703295471 {#2350
date: 2023-12-23 02:37:51.0 +01:00
}
+"title": 247320
}
4 => App\Entity\EntryComment {#2325
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2327 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2346 …}
+body: """
Your DAW and audio interface doesn’t support Linux.*\n
\n
Yeah, it’s a bummer, but you are in a small portion of effected computer users, still others can benefit from longer support.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 1
+score: 0
+lastActive: DateTime @1703295692 {#2328
date: 2023-12-23 02:41:32.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@BaldProphet@kbin.social"
"@Transcendant@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#2329 …}
+nested: Doctrine\ORM\PersistentCollection {#2323 …}
+votes: Doctrine\ORM\PersistentCollection {#2300 …}
+reports: Doctrine\ORM\PersistentCollection {#2340 …}
+favourites: Doctrine\ORM\PersistentCollection {#2342 …}
+notifications: Doctrine\ORM\PersistentCollection {#2343 …}
-id: 247321
-bodyTs: "'audio':4 'benefit':29 'bummer':14 'comput':24 'daw':2 'doesn':6 'effect':23 'interfac':5 'linux':9 'longer':31 'other':27 'portion':21 'small':20 'still':26 'support':8,32 'user':25 'yeah':10"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5884453"
+editedAt: DateTimeImmutable @1707175705 {#2326
date: 2024-02-06 00:28:25.0 +01:00
}
+createdAt: DateTimeImmutable @1703295692 {#2191
date: 2023-12-23 02:41:32.0 +01:00
}
+"title": 247321
}
3 => App\Entity\EntryComment {#2338
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2159 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2346 …}
+body: """
There are many many outdated patterns how to do things in Windows that are cemented in public knowledge. Running random executable installers from the web giving them superuser permissions is I thing the most popular one.\n
\n
How to share all user settings between system installations? How to change the logo in the desktop bar? How to add a directory to an applications bar? How to change system build-in keyboard shortcut? How to reinstall just the system keeping the programs? How to make a file run on a shortcut? Those are things I use daily, that are impossible or need some hacky programs to work on anything other than Linux, I would die if I had to switch back now.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703296199 {#2335
date: 2023-12-23 02:49:59.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@BaldProphet@kbin.social"
"@Wermhatswormhat@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#2143 …}
+nested: Doctrine\ORM\PersistentCollection {#2136 …}
+votes: Doctrine\ORM\PersistentCollection {#2073 …}
+reports: Doctrine\ORM\PersistentCollection {#2072 …}
+favourites: Doctrine\ORM\PersistentCollection {#2065 …}
+notifications: Doctrine\ORM\PersistentCollection {#2066 …}
-id: 247322
-bodyTs: "'add':57 'anyth':108 'applic':62 'back':120 'bar':54,63 'build':69 'build-in':68 'cement':15 'chang':48,66 'daili':96 'desktop':53 'die':114 'directori':59 'execut':21 'file':86 'give':26 'hacki':103 'imposs':99 'instal':22,45 'keep':79 'keyboard':71 'knowledg':18 'linux':111 'logo':50 'make':84 'mani':3,4 'need':101 'one':36 'outdat':5 'pattern':6 'permiss':29 'popular':35 'program':81,104 'public':17 'random':20 'reinstal':75 'run':19,87 'set':42 'share':39 'shortcut':72,90 'superus':28 'switch':119 'system':44,67,78 'thing':10,32,93 'use':95 'user':41 'web':25 'window':12 'work':106 'would':113"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5884570"
+editedAt: null
+createdAt: DateTimeImmutable @1703296199 {#2339
date: 2023-12-23 02:49:59.0 +01:00
}
+"title": 247322
}
2 => App\Entity\EntryComment {#2049}
1 => App\Entity\EntryComment {#2165
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2041 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2041 …}
+body: "For 240 million devices I think there would be some Linux can “cut it”. And second, no? My computer is 13+ years old and I am using it with basically no lagging, developing a couple of apps. Truth is all medium-tier computers made today and in recent years have reached the point where for normal use (that is daily tasks like communication, content consumption and calculations) only limiting factor for daily driver is software optimization."
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703296770 {#2053
date: 2023-12-23 02:59:30.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@TCB13@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#2104 …}
+nested: Doctrine\ORM\PersistentCollection {#2099 …}
+votes: Doctrine\ORM\PersistentCollection {#2108 …}
+reports: Doctrine\ORM\PersistentCollection {#2101 …}
+favourites: Doctrine\ORM\PersistentCollection {#2109 …}
+notifications: Doctrine\ORM\PersistentCollection {#2106 …}
-id: 247324
-bodyTs: "'13':21 '240':2 'app':37 'basic':30 'calcul':68 'communic':64 'comput':19,44 'consumpt':66 'content':65 'coupl':35 'cut':13 'daili':61,73 'develop':33 'devic':4 'driver':74 'factor':71 'lag':32 'like':63 'limit':70 'linux':11 'made':45 'medium':42 'medium-ti':41 'million':3 'normal':57 'old':23 'optim':77 'point':54 'reach':52 'recent':49 'second':16 'softwar':76 'task':62 'think':6 'tier':43 'today':46 'truth':38 'use':27,58 'would':8 'year':22,50"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5884688"
+editedAt: null
+createdAt: DateTimeImmutable @1703296770 {#2125
date: 2023-12-23 02:59:30.0 +01:00
}
+"title": 247324
}
0 => App\Entity\EntryComment {#2114
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2118 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2346 …}
+body: """
And this is a huge barrier for a lot of users, a massive roadblock. But the article talk about houndres of millions of computers, my point was just about that even if millions like you cannot switch, still in this statistics are millions that can especially non-professional that do not make audio or video, but that are going to throw away a working machine.\n
\n
I feel like you might feel being personally directed by my comment, because of your respond with “YOU’re not compatible”. Maybe it was bad wording, sorry. What I ment was that it can be frustrating to see “Linux doesn’t support …” when actually it has everything needed to support this software and the burden to make it available is on the software developer. Like saying that USB-C doesn’t support iPhone 13. Lack of it still hurts the Linux side anyway, but I just don’t want misconsaptions about which side should make a port happen.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703387471 {#2107
date: 2023-12-24 04:11:11.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@BaldProphet@kbin.social"
"@Transcendant@lemmy.world"
"@smileyhead@discuss.tchncs.de"
]
+children: Doctrine\ORM\PersistentCollection {#2117 …}
+nested: Doctrine\ORM\PersistentCollection {#2122 …}
+votes: Doctrine\ORM\PersistentCollection {#2113 …}
+reports: Doctrine\ORM\PersistentCollection {#2119 …}
+favourites: Doctrine\ORM\PersistentCollection {#2120 …}
+notifications: Doctrine\ORM\PersistentCollection {#2160 …}
-id: 247694
-bodyTs: "'13':141 'actual':110 'anyway':150 'articl':17 'audio':54 'avail':125 'away':63 'bad':91 'barrier':6 'burden':121 'c':136 'cannot':36 'comment':78 'compat':87 'comput':24 'develop':130 'direct':75 'doesn':106,137 'especi':46 'even':31 'everyth':113 'feel':68,72 'frustrat':102 'go':60 'happen':165 'houndr':20 'huge':5 'hurt':146 'iphon':140 'lack':142 'like':34,69,131 'linux':105,148 'lot':9 'machin':66 'make':53,123,162 'massiv':13 'mayb':88 'ment':96 'might':71 'million':22,33,43 'misconsapt':157 'need':114 'non':48 'non-profession':47 'person':74 'point':26 'port':164 'profession':49 're':85 'respond':82 'roadblock':14 'say':132 'see':104 'side':149,160 'softwar':118,129 'sorri':93 'statist':41 'still':38,145 'support':108,116,139 'switch':37 'talk':18 'throw':62 'usb':135 'usb-c':134 'user':11 'video':56 'want':156 'word':92 'work':65"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5904342"
+editedAt: DateTimeImmutable @1707537983 {#2112
date: 2024-02-10 05:06:23.0 +01:00
}
+createdAt: DateTimeImmutable @1703387471 {#2124
date: 2023-12-24 04:11:11.0 +01:00
}
+"title": 247694
}
]
-id: 24104
-titleTs: "'10':5 '240':8 'comput':10 'could':6 'end':1 'instal':16 'landfil':13 'linux':17 'million':9 'send':7 'support':2 'window':4"
-bodyTs: "'10':6 '11':33 '240':18 'comput':56 'current':16 'desktop':10 'due':30 'end':3 'exorbit':35 'gnu/linux':52 'hope':59 'immedi':46 'landfil':26 'like':40 'mani':43 'may':21,53 'million':19 'most':29 'oper':11 'outdat':47 'pcs':20,44 'popular':9 'possibl':17 'prone':49 'requir':36 'result':41 'secur':58 'sent':23 'support':2 'system':12 'think':63 'virus':51 'window':5,32 'world':15"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1703366140
+visibility: "visible "
+apId: "https://lemmy.world/post/9873158"
+editedAt: DateTimeImmutable @1706576554 {#2956
date: 2024-01-30 02:02:34.0 +01:00
}
+createdAt: DateTimeImmutable @1703279740 {#2935
date: 2023-12-22 22:15:40.0 +01:00
}
+__isInitialized__: true
…2
}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2048 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2346 …}
+body: """
Use whatever is popular and has a cool logo. Distro is basically a software library, preinstalled programs and default settings. You can transform any distro to behave like the other one.\n
\n
KDE, Gnome, XFCE…? Which is looking better for you or which one was default. Init system? Which was the default. X11/Wayland? Wayland. Go with X11 only if Wayland is having problems with your graphics card.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703296544 {#2067
date: 2023-12-23 02:55:44.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@BaldProphet@kbin.social"
"@Deebster@programming.dev"
]
+children: Doctrine\ORM\PersistentCollection {#2051 …}
+nested: Doctrine\ORM\PersistentCollection {#2059 …}
+votes: Doctrine\ORM\PersistentCollection {#2047 …}
+reports: Doctrine\ORM\PersistentCollection {#2057 …}
+favourites: Doctrine\ORM\PersistentCollection {#2055 …}
+notifications: Doctrine\ORM\PersistentCollection {#2054 …}
-id: 247323
-bodyTs: "'basic':12 'behav':27 'better':38 'card':66 'cool':8 'default':19,45,51 'distro':10,25 'gnome':33 'go':54 'graphic':65 'init':46 'kde':32 'librari':15 'like':28 'logo':9 'look':37 'one':31,43 'popular':4 'preinstal':16 'problem':62 'program':17 'set':20 'softwar':14 'system':47 'transform':23 'use':1 'wayland':53,59 'whatev':2 'x11':56 'x11/wayland':52 'xfce':34"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5884646"
+editedAt: null
+createdAt: DateTimeImmutable @1703296544 {#2070
date: 2023-12-23 02:55:44.0 +01:00
}
+"title": 247323
} |
|
Show voter details
|
81 |
DENIED
|
ROLE_USER
|
null |
|
Show voter details
|
82 |
DENIED
|
moderate
|
App\Entity\EntryComment {#2165
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086
+user: Proxies\__CG__\App\Entity\User {#2975 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: Proxies\__CG__\App\Entity\Image {#2977 …}
+domain: Proxies\__CG__\App\Entity\Domain {#2978 …}
+slug: "Ending-support-for-Windows-10-could-send-240-million-computers"
+title: "Ending support for Windows 10 could send 240 million computers to the landfill. Why not install Linux on them?"
+url: "https://gadgettendency.com/ending-support-for-windows-10-could-send-240-million-computers-to-the-landfill-a-stack-of-that-many-laptops-would-end-up-600-km-higher-than-the-moon/"
+body: "With support ending for Windows 10, the most popular desktop operating system in the world currently, possibly 240 million pcs may be sent to the landfill. This is mostly due to Windows 11’s exorbitant requirements. This will most likely result in many pcs being immediately outdated, and prone to viruses. GNU/Linux may be these computers’ only secure hope, what do you think?"
+type: "link"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 242
+favouriteCount: 748
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1711817575 {#2970
date: 2024-03-30 17:52:55.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#2979 …}
+votes: Doctrine\ORM\PersistentCollection {#2981 …}
+reports: Doctrine\ORM\PersistentCollection {#2983 …}
+favourites: Doctrine\ORM\PersistentCollection {#2985 …}
+notifications: Doctrine\ORM\PersistentCollection {#2987 …}
+badges: Doctrine\ORM\PersistentCollection {#2989 …}
+children: [
6 => App\Entity\EntryComment {#2091
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2090 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2090 …}
+body: """
But a ton of people **can** open a PDF and will be able to select an USB stick from menu and click next, next, next… It’s not completely different, you still use a mouse, a keyboard, you click on things, you get some feedback from it… When a new kind of mobile app arrive, I can see someone using no more than 5 apps in life having problems, but this doesn’t mean only them exists, we do not talk about switching everyone here. People change houses, how are they figuring out where is the toilet if doors have different color and are in different positions?\n
\n
Also a reason why any software like Microsoft Windows or Office should be banned from public education, especially primary schools.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703295334 {#2095
date: 2023-12-23 02:35:34.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@derf82@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#2093 …}
+nested: Doctrine\ORM\PersistentCollection {#2094 …}
+votes: Doctrine\ORM\PersistentCollection {#2140 …}
+reports: Doctrine\ORM\PersistentCollection {#2133 …}
+favourites: Doctrine\ORM\PersistentCollection {#2131 …}
+notifications: Doctrine\ORM\PersistentCollection {#2138 …}
-id: 247319
-bodyTs: "'5':64 'abl':13 'also':108 'app':54,65 'arriv':55 'ban':121 'chang':87 'click':22,39 'color':102 'complet':29 'differ':30,101,106 'doesn':72 'door':99 'educ':124 'especi':125 'everyon':84 'exist':77 'feedback':45 'figur':92 'get':43 'hous':88 'keyboard':37 'kind':51 'life':67 'like':114 'mean':74 'menu':20 'microsoft':115 'mobil':53 'mous':35 'new':50 'next':23,24,25 'offic':118 'open':7 'pdf':9 'peopl':5,86 'posit':107 'primari':126 'problem':69 'public':123 'reason':110 'school':127 'see':58 'select':15 'softwar':113 'someon':59 'stick':18 'still':32 'switch':83 'talk':81 'thing':41 'toilet':97 'ton':3 'usb':17 'use':33,60 'window':116"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5884378"
+editedAt: null
+createdAt: DateTimeImmutable @1703295334 {#2087
date: 2023-12-23 02:35:34.0 +01:00
}
+"title": 247319
}
5 => App\Entity\EntryComment {#2330
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2348 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2346 …}
+body: "Marketing is monopolized with Google and Facebook. Manufacturers and Microsoft won’t make one-click installs happen. Tech support would be chicken and egg problem. Ugh…"
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703295471 {#2345
date: 2023-12-23 02:37:51.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@BaldProphet@kbin.social"
"@anon5621@lemmy.ml"
]
+children: Doctrine\ORM\PersistentCollection {#2351 …}
+nested: Doctrine\ORM\PersistentCollection {#2332 …}
+votes: Doctrine\ORM\PersistentCollection {#2349 …}
+reports: Doctrine\ORM\PersistentCollection {#2141 …}
+favourites: Doctrine\ORM\PersistentCollection {#2164 …}
+notifications: Doctrine\ORM\PersistentCollection {#2314 …}
-id: 247320
-bodyTs: "'chicken':23 'click':16 'egg':25 'facebook':7 'googl':5 'happen':18 'instal':17 'make':13 'manufactur':8 'market':1 'microsoft':10 'monopol':3 'one':15 'one-click':14 'problem':26 'support':20 'tech':19 'ugh':27 'won':11 'would':21"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5884407"
+editedAt: null
+createdAt: DateTimeImmutable @1703295471 {#2350
date: 2023-12-23 02:37:51.0 +01:00
}
+"title": 247320
}
4 => App\Entity\EntryComment {#2325
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2327 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2346 …}
+body: """
Your DAW and audio interface doesn’t support Linux.*\n
\n
Yeah, it’s a bummer, but you are in a small portion of effected computer users, still others can benefit from longer support.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 1
+score: 0
+lastActive: DateTime @1703295692 {#2328
date: 2023-12-23 02:41:32.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@BaldProphet@kbin.social"
"@Transcendant@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#2329 …}
+nested: Doctrine\ORM\PersistentCollection {#2323 …}
+votes: Doctrine\ORM\PersistentCollection {#2300 …}
+reports: Doctrine\ORM\PersistentCollection {#2340 …}
+favourites: Doctrine\ORM\PersistentCollection {#2342 …}
+notifications: Doctrine\ORM\PersistentCollection {#2343 …}
-id: 247321
-bodyTs: "'audio':4 'benefit':29 'bummer':14 'comput':24 'daw':2 'doesn':6 'effect':23 'interfac':5 'linux':9 'longer':31 'other':27 'portion':21 'small':20 'still':26 'support':8,32 'user':25 'yeah':10"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5884453"
+editedAt: DateTimeImmutable @1707175705 {#2326
date: 2024-02-06 00:28:25.0 +01:00
}
+createdAt: DateTimeImmutable @1703295692 {#2191
date: 2023-12-23 02:41:32.0 +01:00
}
+"title": 247321
}
3 => App\Entity\EntryComment {#2338
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2159 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2346 …}
+body: """
There are many many outdated patterns how to do things in Windows that are cemented in public knowledge. Running random executable installers from the web giving them superuser permissions is I thing the most popular one.\n
\n
How to share all user settings between system installations? How to change the logo in the desktop bar? How to add a directory to an applications bar? How to change system build-in keyboard shortcut? How to reinstall just the system keeping the programs? How to make a file run on a shortcut? Those are things I use daily, that are impossible or need some hacky programs to work on anything other than Linux, I would die if I had to switch back now.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703296199 {#2335
date: 2023-12-23 02:49:59.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@BaldProphet@kbin.social"
"@Wermhatswormhat@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#2143 …}
+nested: Doctrine\ORM\PersistentCollection {#2136 …}
+votes: Doctrine\ORM\PersistentCollection {#2073 …}
+reports: Doctrine\ORM\PersistentCollection {#2072 …}
+favourites: Doctrine\ORM\PersistentCollection {#2065 …}
+notifications: Doctrine\ORM\PersistentCollection {#2066 …}
-id: 247322
-bodyTs: "'add':57 'anyth':108 'applic':62 'back':120 'bar':54,63 'build':69 'build-in':68 'cement':15 'chang':48,66 'daili':96 'desktop':53 'die':114 'directori':59 'execut':21 'file':86 'give':26 'hacki':103 'imposs':99 'instal':22,45 'keep':79 'keyboard':71 'knowledg':18 'linux':111 'logo':50 'make':84 'mani':3,4 'need':101 'one':36 'outdat':5 'pattern':6 'permiss':29 'popular':35 'program':81,104 'public':17 'random':20 'reinstal':75 'run':19,87 'set':42 'share':39 'shortcut':72,90 'superus':28 'switch':119 'system':44,67,78 'thing':10,32,93 'use':95 'user':41 'web':25 'window':12 'work':106 'would':113"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5884570"
+editedAt: null
+createdAt: DateTimeImmutable @1703296199 {#2339
date: 2023-12-23 02:49:59.0 +01:00
}
+"title": 247322
}
2 => App\Entity\EntryComment {#2049
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2048 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2346 …}
+body: """
Use whatever is popular and has a cool logo. Distro is basically a software library, preinstalled programs and default settings. You can transform any distro to behave like the other one.\n
\n
KDE, Gnome, XFCE…? Which is looking better for you or which one was default. Init system? Which was the default. X11/Wayland? Wayland. Go with X11 only if Wayland is having problems with your graphics card.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703296544 {#2067
date: 2023-12-23 02:55:44.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@BaldProphet@kbin.social"
"@Deebster@programming.dev"
]
+children: Doctrine\ORM\PersistentCollection {#2051 …}
+nested: Doctrine\ORM\PersistentCollection {#2059 …}
+votes: Doctrine\ORM\PersistentCollection {#2047 …}
+reports: Doctrine\ORM\PersistentCollection {#2057 …}
+favourites: Doctrine\ORM\PersistentCollection {#2055 …}
+notifications: Doctrine\ORM\PersistentCollection {#2054 …}
-id: 247323
-bodyTs: "'basic':12 'behav':27 'better':38 'card':66 'cool':8 'default':19,45,51 'distro':10,25 'gnome':33 'go':54 'graphic':65 'init':46 'kde':32 'librari':15 'like':28 'logo':9 'look':37 'one':31,43 'popular':4 'preinstal':16 'problem':62 'program':17 'set':20 'softwar':14 'system':47 'transform':23 'use':1 'wayland':53,59 'whatev':2 'x11':56 'x11/wayland':52 'xfce':34"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5884646"
+editedAt: null
+createdAt: DateTimeImmutable @1703296544 {#2070
date: 2023-12-23 02:55:44.0 +01:00
}
+"title": 247323
}
1 => App\Entity\EntryComment {#2165}
0 => App\Entity\EntryComment {#2114
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2118 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2346 …}
+body: """
And this is a huge barrier for a lot of users, a massive roadblock. But the article talk about houndres of millions of computers, my point was just about that even if millions like you cannot switch, still in this statistics are millions that can especially non-professional that do not make audio or video, but that are going to throw away a working machine.\n
\n
I feel like you might feel being personally directed by my comment, because of your respond with “YOU’re not compatible”. Maybe it was bad wording, sorry. What I ment was that it can be frustrating to see “Linux doesn’t support …” when actually it has everything needed to support this software and the burden to make it available is on the software developer. Like saying that USB-C doesn’t support iPhone 13. Lack of it still hurts the Linux side anyway, but I just don’t want misconsaptions about which side should make a port happen.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703387471 {#2107
date: 2023-12-24 04:11:11.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@BaldProphet@kbin.social"
"@Transcendant@lemmy.world"
"@smileyhead@discuss.tchncs.de"
]
+children: Doctrine\ORM\PersistentCollection {#2117 …}
+nested: Doctrine\ORM\PersistentCollection {#2122 …}
+votes: Doctrine\ORM\PersistentCollection {#2113 …}
+reports: Doctrine\ORM\PersistentCollection {#2119 …}
+favourites: Doctrine\ORM\PersistentCollection {#2120 …}
+notifications: Doctrine\ORM\PersistentCollection {#2160 …}
-id: 247694
-bodyTs: "'13':141 'actual':110 'anyway':150 'articl':17 'audio':54 'avail':125 'away':63 'bad':91 'barrier':6 'burden':121 'c':136 'cannot':36 'comment':78 'compat':87 'comput':24 'develop':130 'direct':75 'doesn':106,137 'especi':46 'even':31 'everyth':113 'feel':68,72 'frustrat':102 'go':60 'happen':165 'houndr':20 'huge':5 'hurt':146 'iphon':140 'lack':142 'like':34,69,131 'linux':105,148 'lot':9 'machin':66 'make':53,123,162 'massiv':13 'mayb':88 'ment':96 'might':71 'million':22,33,43 'misconsapt':157 'need':114 'non':48 'non-profession':47 'person':74 'point':26 'port':164 'profession':49 're':85 'respond':82 'roadblock':14 'say':132 'see':104 'side':149,160 'softwar':118,129 'sorri':93 'statist':41 'still':38,145 'support':108,116,139 'switch':37 'talk':18 'throw':62 'usb':135 'usb-c':134 'user':11 'video':56 'want':156 'word':92 'work':65"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5904342"
+editedAt: DateTimeImmutable @1707537983 {#2112
date: 2024-02-10 05:06:23.0 +01:00
}
+createdAt: DateTimeImmutable @1703387471 {#2124
date: 2023-12-24 04:11:11.0 +01:00
}
+"title": 247694
}
]
-id: 24104
-titleTs: "'10':5 '240':8 'comput':10 'could':6 'end':1 'instal':16 'landfil':13 'linux':17 'million':9 'send':7 'support':2 'window':4"
-bodyTs: "'10':6 '11':33 '240':18 'comput':56 'current':16 'desktop':10 'due':30 'end':3 'exorbit':35 'gnu/linux':52 'hope':59 'immedi':46 'landfil':26 'like':40 'mani':43 'may':21,53 'million':19 'most':29 'oper':11 'outdat':47 'pcs':20,44 'popular':9 'possibl':17 'prone':49 'requir':36 'result':41 'secur':58 'sent':23 'support':2 'system':12 'think':63 'virus':51 'window':5,32 'world':15"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1703366140
+visibility: "visible "
+apId: "https://lemmy.world/post/9873158"
+editedAt: DateTimeImmutable @1706576554 {#2956
date: 2024-01-30 02:02:34.0 +01:00
}
+createdAt: DateTimeImmutable @1703279740 {#2935
date: 2023-12-22 22:15:40.0 +01:00
}
+__isInitialized__: true
…2
}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2041 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2041 …}
+body: "For 240 million devices I think there would be some Linux can “cut it”. And second, no? My computer is 13+ years old and I am using it with basically no lagging, developing a couple of apps. Truth is all medium-tier computers made today and in recent years have reached the point where for normal use (that is daily tasks like communication, content consumption and calculations) only limiting factor for daily driver is software optimization."
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703296770 {#2053
date: 2023-12-23 02:59:30.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@TCB13@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#2104 …}
+nested: Doctrine\ORM\PersistentCollection {#2099 …}
+votes: Doctrine\ORM\PersistentCollection {#2108 …}
+reports: Doctrine\ORM\PersistentCollection {#2101 …}
+favourites: Doctrine\ORM\PersistentCollection {#2109 …}
+notifications: Doctrine\ORM\PersistentCollection {#2106 …}
-id: 247324
-bodyTs: "'13':21 '240':2 'app':37 'basic':30 'calcul':68 'communic':64 'comput':19,44 'consumpt':66 'content':65 'coupl':35 'cut':13 'daili':61,73 'develop':33 'devic':4 'driver':74 'factor':71 'lag':32 'like':63 'limit':70 'linux':11 'made':45 'medium':42 'medium-ti':41 'million':3 'normal':57 'old':23 'optim':77 'point':54 'reach':52 'recent':49 'second':16 'softwar':76 'task':62 'think':6 'tier':43 'today':46 'truth':38 'use':27,58 'would':8 'year':22,50"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5884688"
+editedAt: null
+createdAt: DateTimeImmutable @1703296770 {#2125
date: 2023-12-23 02:59:30.0 +01:00
}
+"title": 247324
} |
|
Show voter details
|
83 |
DENIED
|
edit
|
App\Entity\EntryComment {#2165
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086
+user: Proxies\__CG__\App\Entity\User {#2975 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: Proxies\__CG__\App\Entity\Image {#2977 …}
+domain: Proxies\__CG__\App\Entity\Domain {#2978 …}
+slug: "Ending-support-for-Windows-10-could-send-240-million-computers"
+title: "Ending support for Windows 10 could send 240 million computers to the landfill. Why not install Linux on them?"
+url: "https://gadgettendency.com/ending-support-for-windows-10-could-send-240-million-computers-to-the-landfill-a-stack-of-that-many-laptops-would-end-up-600-km-higher-than-the-moon/"
+body: "With support ending for Windows 10, the most popular desktop operating system in the world currently, possibly 240 million pcs may be sent to the landfill. This is mostly due to Windows 11’s exorbitant requirements. This will most likely result in many pcs being immediately outdated, and prone to viruses. GNU/Linux may be these computers’ only secure hope, what do you think?"
+type: "link"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 242
+favouriteCount: 748
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1711817575 {#2970
date: 2024-03-30 17:52:55.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#2979 …}
+votes: Doctrine\ORM\PersistentCollection {#2981 …}
+reports: Doctrine\ORM\PersistentCollection {#2983 …}
+favourites: Doctrine\ORM\PersistentCollection {#2985 …}
+notifications: Doctrine\ORM\PersistentCollection {#2987 …}
+badges: Doctrine\ORM\PersistentCollection {#2989 …}
+children: [
6 => App\Entity\EntryComment {#2091
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2090 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2090 …}
+body: """
But a ton of people **can** open a PDF and will be able to select an USB stick from menu and click next, next, next… It’s not completely different, you still use a mouse, a keyboard, you click on things, you get some feedback from it… When a new kind of mobile app arrive, I can see someone using no more than 5 apps in life having problems, but this doesn’t mean only them exists, we do not talk about switching everyone here. People change houses, how are they figuring out where is the toilet if doors have different color and are in different positions?\n
\n
Also a reason why any software like Microsoft Windows or Office should be banned from public education, especially primary schools.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703295334 {#2095
date: 2023-12-23 02:35:34.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@derf82@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#2093 …}
+nested: Doctrine\ORM\PersistentCollection {#2094 …}
+votes: Doctrine\ORM\PersistentCollection {#2140 …}
+reports: Doctrine\ORM\PersistentCollection {#2133 …}
+favourites: Doctrine\ORM\PersistentCollection {#2131 …}
+notifications: Doctrine\ORM\PersistentCollection {#2138 …}
-id: 247319
-bodyTs: "'5':64 'abl':13 'also':108 'app':54,65 'arriv':55 'ban':121 'chang':87 'click':22,39 'color':102 'complet':29 'differ':30,101,106 'doesn':72 'door':99 'educ':124 'especi':125 'everyon':84 'exist':77 'feedback':45 'figur':92 'get':43 'hous':88 'keyboard':37 'kind':51 'life':67 'like':114 'mean':74 'menu':20 'microsoft':115 'mobil':53 'mous':35 'new':50 'next':23,24,25 'offic':118 'open':7 'pdf':9 'peopl':5,86 'posit':107 'primari':126 'problem':69 'public':123 'reason':110 'school':127 'see':58 'select':15 'softwar':113 'someon':59 'stick':18 'still':32 'switch':83 'talk':81 'thing':41 'toilet':97 'ton':3 'usb':17 'use':33,60 'window':116"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5884378"
+editedAt: null
+createdAt: DateTimeImmutable @1703295334 {#2087
date: 2023-12-23 02:35:34.0 +01:00
}
+"title": 247319
}
5 => App\Entity\EntryComment {#2330
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2348 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2346 …}
+body: "Marketing is monopolized with Google and Facebook. Manufacturers and Microsoft won’t make one-click installs happen. Tech support would be chicken and egg problem. Ugh…"
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703295471 {#2345
date: 2023-12-23 02:37:51.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@BaldProphet@kbin.social"
"@anon5621@lemmy.ml"
]
+children: Doctrine\ORM\PersistentCollection {#2351 …}
+nested: Doctrine\ORM\PersistentCollection {#2332 …}
+votes: Doctrine\ORM\PersistentCollection {#2349 …}
+reports: Doctrine\ORM\PersistentCollection {#2141 …}
+favourites: Doctrine\ORM\PersistentCollection {#2164 …}
+notifications: Doctrine\ORM\PersistentCollection {#2314 …}
-id: 247320
-bodyTs: "'chicken':23 'click':16 'egg':25 'facebook':7 'googl':5 'happen':18 'instal':17 'make':13 'manufactur':8 'market':1 'microsoft':10 'monopol':3 'one':15 'one-click':14 'problem':26 'support':20 'tech':19 'ugh':27 'won':11 'would':21"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5884407"
+editedAt: null
+createdAt: DateTimeImmutable @1703295471 {#2350
date: 2023-12-23 02:37:51.0 +01:00
}
+"title": 247320
}
4 => App\Entity\EntryComment {#2325
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2327 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2346 …}
+body: """
Your DAW and audio interface doesn’t support Linux.*\n
\n
Yeah, it’s a bummer, but you are in a small portion of effected computer users, still others can benefit from longer support.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 1
+score: 0
+lastActive: DateTime @1703295692 {#2328
date: 2023-12-23 02:41:32.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@BaldProphet@kbin.social"
"@Transcendant@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#2329 …}
+nested: Doctrine\ORM\PersistentCollection {#2323 …}
+votes: Doctrine\ORM\PersistentCollection {#2300 …}
+reports: Doctrine\ORM\PersistentCollection {#2340 …}
+favourites: Doctrine\ORM\PersistentCollection {#2342 …}
+notifications: Doctrine\ORM\PersistentCollection {#2343 …}
-id: 247321
-bodyTs: "'audio':4 'benefit':29 'bummer':14 'comput':24 'daw':2 'doesn':6 'effect':23 'interfac':5 'linux':9 'longer':31 'other':27 'portion':21 'small':20 'still':26 'support':8,32 'user':25 'yeah':10"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5884453"
+editedAt: DateTimeImmutable @1707175705 {#2326
date: 2024-02-06 00:28:25.0 +01:00
}
+createdAt: DateTimeImmutable @1703295692 {#2191
date: 2023-12-23 02:41:32.0 +01:00
}
+"title": 247321
}
3 => App\Entity\EntryComment {#2338
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2159 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2346 …}
+body: """
There are many many outdated patterns how to do things in Windows that are cemented in public knowledge. Running random executable installers from the web giving them superuser permissions is I thing the most popular one.\n
\n
How to share all user settings between system installations? How to change the logo in the desktop bar? How to add a directory to an applications bar? How to change system build-in keyboard shortcut? How to reinstall just the system keeping the programs? How to make a file run on a shortcut? Those are things I use daily, that are impossible or need some hacky programs to work on anything other than Linux, I would die if I had to switch back now.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703296199 {#2335
date: 2023-12-23 02:49:59.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@BaldProphet@kbin.social"
"@Wermhatswormhat@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#2143 …}
+nested: Doctrine\ORM\PersistentCollection {#2136 …}
+votes: Doctrine\ORM\PersistentCollection {#2073 …}
+reports: Doctrine\ORM\PersistentCollection {#2072 …}
+favourites: Doctrine\ORM\PersistentCollection {#2065 …}
+notifications: Doctrine\ORM\PersistentCollection {#2066 …}
-id: 247322
-bodyTs: "'add':57 'anyth':108 'applic':62 'back':120 'bar':54,63 'build':69 'build-in':68 'cement':15 'chang':48,66 'daili':96 'desktop':53 'die':114 'directori':59 'execut':21 'file':86 'give':26 'hacki':103 'imposs':99 'instal':22,45 'keep':79 'keyboard':71 'knowledg':18 'linux':111 'logo':50 'make':84 'mani':3,4 'need':101 'one':36 'outdat':5 'pattern':6 'permiss':29 'popular':35 'program':81,104 'public':17 'random':20 'reinstal':75 'run':19,87 'set':42 'share':39 'shortcut':72,90 'superus':28 'switch':119 'system':44,67,78 'thing':10,32,93 'use':95 'user':41 'web':25 'window':12 'work':106 'would':113"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5884570"
+editedAt: null
+createdAt: DateTimeImmutable @1703296199 {#2339
date: 2023-12-23 02:49:59.0 +01:00
}
+"title": 247322
}
2 => App\Entity\EntryComment {#2049
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2048 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2346 …}
+body: """
Use whatever is popular and has a cool logo. Distro is basically a software library, preinstalled programs and default settings. You can transform any distro to behave like the other one.\n
\n
KDE, Gnome, XFCE…? Which is looking better for you or which one was default. Init system? Which was the default. X11/Wayland? Wayland. Go with X11 only if Wayland is having problems with your graphics card.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703296544 {#2067
date: 2023-12-23 02:55:44.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@BaldProphet@kbin.social"
"@Deebster@programming.dev"
]
+children: Doctrine\ORM\PersistentCollection {#2051 …}
+nested: Doctrine\ORM\PersistentCollection {#2059 …}
+votes: Doctrine\ORM\PersistentCollection {#2047 …}
+reports: Doctrine\ORM\PersistentCollection {#2057 …}
+favourites: Doctrine\ORM\PersistentCollection {#2055 …}
+notifications: Doctrine\ORM\PersistentCollection {#2054 …}
-id: 247323
-bodyTs: "'basic':12 'behav':27 'better':38 'card':66 'cool':8 'default':19,45,51 'distro':10,25 'gnome':33 'go':54 'graphic':65 'init':46 'kde':32 'librari':15 'like':28 'logo':9 'look':37 'one':31,43 'popular':4 'preinstal':16 'problem':62 'program':17 'set':20 'softwar':14 'system':47 'transform':23 'use':1 'wayland':53,59 'whatev':2 'x11':56 'x11/wayland':52 'xfce':34"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5884646"
+editedAt: null
+createdAt: DateTimeImmutable @1703296544 {#2070
date: 2023-12-23 02:55:44.0 +01:00
}
+"title": 247323
}
1 => App\Entity\EntryComment {#2165}
0 => App\Entity\EntryComment {#2114
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2118 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2346 …}
+body: """
And this is a huge barrier for a lot of users, a massive roadblock. But the article talk about houndres of millions of computers, my point was just about that even if millions like you cannot switch, still in this statistics are millions that can especially non-professional that do not make audio or video, but that are going to throw away a working machine.\n
\n
I feel like you might feel being personally directed by my comment, because of your respond with “YOU’re not compatible”. Maybe it was bad wording, sorry. What I ment was that it can be frustrating to see “Linux doesn’t support …” when actually it has everything needed to support this software and the burden to make it available is on the software developer. Like saying that USB-C doesn’t support iPhone 13. Lack of it still hurts the Linux side anyway, but I just don’t want misconsaptions about which side should make a port happen.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703387471 {#2107
date: 2023-12-24 04:11:11.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@BaldProphet@kbin.social"
"@Transcendant@lemmy.world"
"@smileyhead@discuss.tchncs.de"
]
+children: Doctrine\ORM\PersistentCollection {#2117 …}
+nested: Doctrine\ORM\PersistentCollection {#2122 …}
+votes: Doctrine\ORM\PersistentCollection {#2113 …}
+reports: Doctrine\ORM\PersistentCollection {#2119 …}
+favourites: Doctrine\ORM\PersistentCollection {#2120 …}
+notifications: Doctrine\ORM\PersistentCollection {#2160 …}
-id: 247694
-bodyTs: "'13':141 'actual':110 'anyway':150 'articl':17 'audio':54 'avail':125 'away':63 'bad':91 'barrier':6 'burden':121 'c':136 'cannot':36 'comment':78 'compat':87 'comput':24 'develop':130 'direct':75 'doesn':106,137 'especi':46 'even':31 'everyth':113 'feel':68,72 'frustrat':102 'go':60 'happen':165 'houndr':20 'huge':5 'hurt':146 'iphon':140 'lack':142 'like':34,69,131 'linux':105,148 'lot':9 'machin':66 'make':53,123,162 'massiv':13 'mayb':88 'ment':96 'might':71 'million':22,33,43 'misconsapt':157 'need':114 'non':48 'non-profession':47 'person':74 'point':26 'port':164 'profession':49 're':85 'respond':82 'roadblock':14 'say':132 'see':104 'side':149,160 'softwar':118,129 'sorri':93 'statist':41 'still':38,145 'support':108,116,139 'switch':37 'talk':18 'throw':62 'usb':135 'usb-c':134 'user':11 'video':56 'want':156 'word':92 'work':65"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5904342"
+editedAt: DateTimeImmutable @1707537983 {#2112
date: 2024-02-10 05:06:23.0 +01:00
}
+createdAt: DateTimeImmutable @1703387471 {#2124
date: 2023-12-24 04:11:11.0 +01:00
}
+"title": 247694
}
]
-id: 24104
-titleTs: "'10':5 '240':8 'comput':10 'could':6 'end':1 'instal':16 'landfil':13 'linux':17 'million':9 'send':7 'support':2 'window':4"
-bodyTs: "'10':6 '11':33 '240':18 'comput':56 'current':16 'desktop':10 'due':30 'end':3 'exorbit':35 'gnu/linux':52 'hope':59 'immedi':46 'landfil':26 'like':40 'mani':43 'may':21,53 'million':19 'most':29 'oper':11 'outdat':47 'pcs':20,44 'popular':9 'possibl':17 'prone':49 'requir':36 'result':41 'secur':58 'sent':23 'support':2 'system':12 'think':63 'virus':51 'window':5,32 'world':15"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1703366140
+visibility: "visible "
+apId: "https://lemmy.world/post/9873158"
+editedAt: DateTimeImmutable @1706576554 {#2956
date: 2024-01-30 02:02:34.0 +01:00
}
+createdAt: DateTimeImmutable @1703279740 {#2935
date: 2023-12-22 22:15:40.0 +01:00
}
+__isInitialized__: true
…2
}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2041 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2041 …}
+body: "For 240 million devices I think there would be some Linux can “cut it”. And second, no? My computer is 13+ years old and I am using it with basically no lagging, developing a couple of apps. Truth is all medium-tier computers made today and in recent years have reached the point where for normal use (that is daily tasks like communication, content consumption and calculations) only limiting factor for daily driver is software optimization."
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703296770 {#2053
date: 2023-12-23 02:59:30.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@TCB13@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#2104 …}
+nested: Doctrine\ORM\PersistentCollection {#2099 …}
+votes: Doctrine\ORM\PersistentCollection {#2108 …}
+reports: Doctrine\ORM\PersistentCollection {#2101 …}
+favourites: Doctrine\ORM\PersistentCollection {#2109 …}
+notifications: Doctrine\ORM\PersistentCollection {#2106 …}
-id: 247324
-bodyTs: "'13':21 '240':2 'app':37 'basic':30 'calcul':68 'communic':64 'comput':19,44 'consumpt':66 'content':65 'coupl':35 'cut':13 'daili':61,73 'develop':33 'devic':4 'driver':74 'factor':71 'lag':32 'like':63 'limit':70 'linux':11 'made':45 'medium':42 'medium-ti':41 'million':3 'normal':57 'old':23 'optim':77 'point':54 'reach':52 'recent':49 'second':16 'softwar':76 'task':62 'think':6 'tier':43 'today':46 'truth':38 'use':27,58 'would':8 'year':22,50"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5884688"
+editedAt: null
+createdAt: DateTimeImmutable @1703296770 {#2125
date: 2023-12-23 02:59:30.0 +01:00
}
+"title": 247324
} |
|
Show voter details
|
84 |
DENIED
|
moderate
|
App\Entity\EntryComment {#2165
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086
+user: Proxies\__CG__\App\Entity\User {#2975 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: Proxies\__CG__\App\Entity\Image {#2977 …}
+domain: Proxies\__CG__\App\Entity\Domain {#2978 …}
+slug: "Ending-support-for-Windows-10-could-send-240-million-computers"
+title: "Ending support for Windows 10 could send 240 million computers to the landfill. Why not install Linux on them?"
+url: "https://gadgettendency.com/ending-support-for-windows-10-could-send-240-million-computers-to-the-landfill-a-stack-of-that-many-laptops-would-end-up-600-km-higher-than-the-moon/"
+body: "With support ending for Windows 10, the most popular desktop operating system in the world currently, possibly 240 million pcs may be sent to the landfill. This is mostly due to Windows 11’s exorbitant requirements. This will most likely result in many pcs being immediately outdated, and prone to viruses. GNU/Linux may be these computers’ only secure hope, what do you think?"
+type: "link"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 242
+favouriteCount: 748
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1711817575 {#2970
date: 2024-03-30 17:52:55.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#2979 …}
+votes: Doctrine\ORM\PersistentCollection {#2981 …}
+reports: Doctrine\ORM\PersistentCollection {#2983 …}
+favourites: Doctrine\ORM\PersistentCollection {#2985 …}
+notifications: Doctrine\ORM\PersistentCollection {#2987 …}
+badges: Doctrine\ORM\PersistentCollection {#2989 …}
+children: [
6 => App\Entity\EntryComment {#2091
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2090 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2090 …}
+body: """
But a ton of people **can** open a PDF and will be able to select an USB stick from menu and click next, next, next… It’s not completely different, you still use a mouse, a keyboard, you click on things, you get some feedback from it… When a new kind of mobile app arrive, I can see someone using no more than 5 apps in life having problems, but this doesn’t mean only them exists, we do not talk about switching everyone here. People change houses, how are they figuring out where is the toilet if doors have different color and are in different positions?\n
\n
Also a reason why any software like Microsoft Windows or Office should be banned from public education, especially primary schools.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703295334 {#2095
date: 2023-12-23 02:35:34.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@derf82@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#2093 …}
+nested: Doctrine\ORM\PersistentCollection {#2094 …}
+votes: Doctrine\ORM\PersistentCollection {#2140 …}
+reports: Doctrine\ORM\PersistentCollection {#2133 …}
+favourites: Doctrine\ORM\PersistentCollection {#2131 …}
+notifications: Doctrine\ORM\PersistentCollection {#2138 …}
-id: 247319
-bodyTs: "'5':64 'abl':13 'also':108 'app':54,65 'arriv':55 'ban':121 'chang':87 'click':22,39 'color':102 'complet':29 'differ':30,101,106 'doesn':72 'door':99 'educ':124 'especi':125 'everyon':84 'exist':77 'feedback':45 'figur':92 'get':43 'hous':88 'keyboard':37 'kind':51 'life':67 'like':114 'mean':74 'menu':20 'microsoft':115 'mobil':53 'mous':35 'new':50 'next':23,24,25 'offic':118 'open':7 'pdf':9 'peopl':5,86 'posit':107 'primari':126 'problem':69 'public':123 'reason':110 'school':127 'see':58 'select':15 'softwar':113 'someon':59 'stick':18 'still':32 'switch':83 'talk':81 'thing':41 'toilet':97 'ton':3 'usb':17 'use':33,60 'window':116"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5884378"
+editedAt: null
+createdAt: DateTimeImmutable @1703295334 {#2087
date: 2023-12-23 02:35:34.0 +01:00
}
+"title": 247319
}
5 => App\Entity\EntryComment {#2330
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2348 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2346 …}
+body: "Marketing is monopolized with Google and Facebook. Manufacturers and Microsoft won’t make one-click installs happen. Tech support would be chicken and egg problem. Ugh…"
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703295471 {#2345
date: 2023-12-23 02:37:51.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@BaldProphet@kbin.social"
"@anon5621@lemmy.ml"
]
+children: Doctrine\ORM\PersistentCollection {#2351 …}
+nested: Doctrine\ORM\PersistentCollection {#2332 …}
+votes: Doctrine\ORM\PersistentCollection {#2349 …}
+reports: Doctrine\ORM\PersistentCollection {#2141 …}
+favourites: Doctrine\ORM\PersistentCollection {#2164 …}
+notifications: Doctrine\ORM\PersistentCollection {#2314 …}
-id: 247320
-bodyTs: "'chicken':23 'click':16 'egg':25 'facebook':7 'googl':5 'happen':18 'instal':17 'make':13 'manufactur':8 'market':1 'microsoft':10 'monopol':3 'one':15 'one-click':14 'problem':26 'support':20 'tech':19 'ugh':27 'won':11 'would':21"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5884407"
+editedAt: null
+createdAt: DateTimeImmutable @1703295471 {#2350
date: 2023-12-23 02:37:51.0 +01:00
}
+"title": 247320
}
4 => App\Entity\EntryComment {#2325
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2327 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2346 …}
+body: """
Your DAW and audio interface doesn’t support Linux.*\n
\n
Yeah, it’s a bummer, but you are in a small portion of effected computer users, still others can benefit from longer support.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 1
+score: 0
+lastActive: DateTime @1703295692 {#2328
date: 2023-12-23 02:41:32.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@BaldProphet@kbin.social"
"@Transcendant@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#2329 …}
+nested: Doctrine\ORM\PersistentCollection {#2323 …}
+votes: Doctrine\ORM\PersistentCollection {#2300 …}
+reports: Doctrine\ORM\PersistentCollection {#2340 …}
+favourites: Doctrine\ORM\PersistentCollection {#2342 …}
+notifications: Doctrine\ORM\PersistentCollection {#2343 …}
-id: 247321
-bodyTs: "'audio':4 'benefit':29 'bummer':14 'comput':24 'daw':2 'doesn':6 'effect':23 'interfac':5 'linux':9 'longer':31 'other':27 'portion':21 'small':20 'still':26 'support':8,32 'user':25 'yeah':10"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5884453"
+editedAt: DateTimeImmutable @1707175705 {#2326
date: 2024-02-06 00:28:25.0 +01:00
}
+createdAt: DateTimeImmutable @1703295692 {#2191
date: 2023-12-23 02:41:32.0 +01:00
}
+"title": 247321
}
3 => App\Entity\EntryComment {#2338
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2159 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2346 …}
+body: """
There are many many outdated patterns how to do things in Windows that are cemented in public knowledge. Running random executable installers from the web giving them superuser permissions is I thing the most popular one.\n
\n
How to share all user settings between system installations? How to change the logo in the desktop bar? How to add a directory to an applications bar? How to change system build-in keyboard shortcut? How to reinstall just the system keeping the programs? How to make a file run on a shortcut? Those are things I use daily, that are impossible or need some hacky programs to work on anything other than Linux, I would die if I had to switch back now.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703296199 {#2335
date: 2023-12-23 02:49:59.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@BaldProphet@kbin.social"
"@Wermhatswormhat@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#2143 …}
+nested: Doctrine\ORM\PersistentCollection {#2136 …}
+votes: Doctrine\ORM\PersistentCollection {#2073 …}
+reports: Doctrine\ORM\PersistentCollection {#2072 …}
+favourites: Doctrine\ORM\PersistentCollection {#2065 …}
+notifications: Doctrine\ORM\PersistentCollection {#2066 …}
-id: 247322
-bodyTs: "'add':57 'anyth':108 'applic':62 'back':120 'bar':54,63 'build':69 'build-in':68 'cement':15 'chang':48,66 'daili':96 'desktop':53 'die':114 'directori':59 'execut':21 'file':86 'give':26 'hacki':103 'imposs':99 'instal':22,45 'keep':79 'keyboard':71 'knowledg':18 'linux':111 'logo':50 'make':84 'mani':3,4 'need':101 'one':36 'outdat':5 'pattern':6 'permiss':29 'popular':35 'program':81,104 'public':17 'random':20 'reinstal':75 'run':19,87 'set':42 'share':39 'shortcut':72,90 'superus':28 'switch':119 'system':44,67,78 'thing':10,32,93 'use':95 'user':41 'web':25 'window':12 'work':106 'would':113"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5884570"
+editedAt: null
+createdAt: DateTimeImmutable @1703296199 {#2339
date: 2023-12-23 02:49:59.0 +01:00
}
+"title": 247322
}
2 => App\Entity\EntryComment {#2049
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2048 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2346 …}
+body: """
Use whatever is popular and has a cool logo. Distro is basically a software library, preinstalled programs and default settings. You can transform any distro to behave like the other one.\n
\n
KDE, Gnome, XFCE…? Which is looking better for you or which one was default. Init system? Which was the default. X11/Wayland? Wayland. Go with X11 only if Wayland is having problems with your graphics card.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703296544 {#2067
date: 2023-12-23 02:55:44.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@BaldProphet@kbin.social"
"@Deebster@programming.dev"
]
+children: Doctrine\ORM\PersistentCollection {#2051 …}
+nested: Doctrine\ORM\PersistentCollection {#2059 …}
+votes: Doctrine\ORM\PersistentCollection {#2047 …}
+reports: Doctrine\ORM\PersistentCollection {#2057 …}
+favourites: Doctrine\ORM\PersistentCollection {#2055 …}
+notifications: Doctrine\ORM\PersistentCollection {#2054 …}
-id: 247323
-bodyTs: "'basic':12 'behav':27 'better':38 'card':66 'cool':8 'default':19,45,51 'distro':10,25 'gnome':33 'go':54 'graphic':65 'init':46 'kde':32 'librari':15 'like':28 'logo':9 'look':37 'one':31,43 'popular':4 'preinstal':16 'problem':62 'program':17 'set':20 'softwar':14 'system':47 'transform':23 'use':1 'wayland':53,59 'whatev':2 'x11':56 'x11/wayland':52 'xfce':34"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5884646"
+editedAt: null
+createdAt: DateTimeImmutable @1703296544 {#2070
date: 2023-12-23 02:55:44.0 +01:00
}
+"title": 247323
}
1 => App\Entity\EntryComment {#2165}
0 => App\Entity\EntryComment {#2114
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2118 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2346 …}
+body: """
And this is a huge barrier for a lot of users, a massive roadblock. But the article talk about houndres of millions of computers, my point was just about that even if millions like you cannot switch, still in this statistics are millions that can especially non-professional that do not make audio or video, but that are going to throw away a working machine.\n
\n
I feel like you might feel being personally directed by my comment, because of your respond with “YOU’re not compatible”. Maybe it was bad wording, sorry. What I ment was that it can be frustrating to see “Linux doesn’t support …” when actually it has everything needed to support this software and the burden to make it available is on the software developer. Like saying that USB-C doesn’t support iPhone 13. Lack of it still hurts the Linux side anyway, but I just don’t want misconsaptions about which side should make a port happen.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703387471 {#2107
date: 2023-12-24 04:11:11.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@BaldProphet@kbin.social"
"@Transcendant@lemmy.world"
"@smileyhead@discuss.tchncs.de"
]
+children: Doctrine\ORM\PersistentCollection {#2117 …}
+nested: Doctrine\ORM\PersistentCollection {#2122 …}
+votes: Doctrine\ORM\PersistentCollection {#2113 …}
+reports: Doctrine\ORM\PersistentCollection {#2119 …}
+favourites: Doctrine\ORM\PersistentCollection {#2120 …}
+notifications: Doctrine\ORM\PersistentCollection {#2160 …}
-id: 247694
-bodyTs: "'13':141 'actual':110 'anyway':150 'articl':17 'audio':54 'avail':125 'away':63 'bad':91 'barrier':6 'burden':121 'c':136 'cannot':36 'comment':78 'compat':87 'comput':24 'develop':130 'direct':75 'doesn':106,137 'especi':46 'even':31 'everyth':113 'feel':68,72 'frustrat':102 'go':60 'happen':165 'houndr':20 'huge':5 'hurt':146 'iphon':140 'lack':142 'like':34,69,131 'linux':105,148 'lot':9 'machin':66 'make':53,123,162 'massiv':13 'mayb':88 'ment':96 'might':71 'million':22,33,43 'misconsapt':157 'need':114 'non':48 'non-profession':47 'person':74 'point':26 'port':164 'profession':49 're':85 'respond':82 'roadblock':14 'say':132 'see':104 'side':149,160 'softwar':118,129 'sorri':93 'statist':41 'still':38,145 'support':108,116,139 'switch':37 'talk':18 'throw':62 'usb':135 'usb-c':134 'user':11 'video':56 'want':156 'word':92 'work':65"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5904342"
+editedAt: DateTimeImmutable @1707537983 {#2112
date: 2024-02-10 05:06:23.0 +01:00
}
+createdAt: DateTimeImmutable @1703387471 {#2124
date: 2023-12-24 04:11:11.0 +01:00
}
+"title": 247694
}
]
-id: 24104
-titleTs: "'10':5 '240':8 'comput':10 'could':6 'end':1 'instal':16 'landfil':13 'linux':17 'million':9 'send':7 'support':2 'window':4"
-bodyTs: "'10':6 '11':33 '240':18 'comput':56 'current':16 'desktop':10 'due':30 'end':3 'exorbit':35 'gnu/linux':52 'hope':59 'immedi':46 'landfil':26 'like':40 'mani':43 'may':21,53 'million':19 'most':29 'oper':11 'outdat':47 'pcs':20,44 'popular':9 'possibl':17 'prone':49 'requir':36 'result':41 'secur':58 'sent':23 'support':2 'system':12 'think':63 'virus':51 'window':5,32 'world':15"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1703366140
+visibility: "visible "
+apId: "https://lemmy.world/post/9873158"
+editedAt: DateTimeImmutable @1706576554 {#2956
date: 2024-01-30 02:02:34.0 +01:00
}
+createdAt: DateTimeImmutable @1703279740 {#2935
date: 2023-12-22 22:15:40.0 +01:00
}
+__isInitialized__: true
…2
}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2041 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2041 …}
+body: "For 240 million devices I think there would be some Linux can “cut it”. And second, no? My computer is 13+ years old and I am using it with basically no lagging, developing a couple of apps. Truth is all medium-tier computers made today and in recent years have reached the point where for normal use (that is daily tasks like communication, content consumption and calculations) only limiting factor for daily driver is software optimization."
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703296770 {#2053
date: 2023-12-23 02:59:30.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@TCB13@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#2104 …}
+nested: Doctrine\ORM\PersistentCollection {#2099 …}
+votes: Doctrine\ORM\PersistentCollection {#2108 …}
+reports: Doctrine\ORM\PersistentCollection {#2101 …}
+favourites: Doctrine\ORM\PersistentCollection {#2109 …}
+notifications: Doctrine\ORM\PersistentCollection {#2106 …}
-id: 247324
-bodyTs: "'13':21 '240':2 'app':37 'basic':30 'calcul':68 'communic':64 'comput':19,44 'consumpt':66 'content':65 'coupl':35 'cut':13 'daili':61,73 'develop':33 'devic':4 'driver':74 'factor':71 'lag':32 'like':63 'limit':70 'linux':11 'made':45 'medium':42 'medium-ti':41 'million':3 'normal':57 'old':23 'optim':77 'point':54 'reach':52 'recent':49 'second':16 'softwar':76 'task':62 'think':6 'tier':43 'today':46 'truth':38 'use':27,58 'would':8 'year':22,50"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5884688"
+editedAt: null
+createdAt: DateTimeImmutable @1703296770 {#2125
date: 2023-12-23 02:59:30.0 +01:00
}
+"title": 247324
} |
|
Show voter details
|
85 |
DENIED
|
ROLE_USER
|
null |
|
Show voter details
|
86 |
DENIED
|
moderate
|
App\Entity\EntryComment {#2114
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086
+user: Proxies\__CG__\App\Entity\User {#2975 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: Proxies\__CG__\App\Entity\Image {#2977 …}
+domain: Proxies\__CG__\App\Entity\Domain {#2978 …}
+slug: "Ending-support-for-Windows-10-could-send-240-million-computers"
+title: "Ending support for Windows 10 could send 240 million computers to the landfill. Why not install Linux on them?"
+url: "https://gadgettendency.com/ending-support-for-windows-10-could-send-240-million-computers-to-the-landfill-a-stack-of-that-many-laptops-would-end-up-600-km-higher-than-the-moon/"
+body: "With support ending for Windows 10, the most popular desktop operating system in the world currently, possibly 240 million pcs may be sent to the landfill. This is mostly due to Windows 11’s exorbitant requirements. This will most likely result in many pcs being immediately outdated, and prone to viruses. GNU/Linux may be these computers’ only secure hope, what do you think?"
+type: "link"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 242
+favouriteCount: 748
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1711817575 {#2970
date: 2024-03-30 17:52:55.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#2979 …}
+votes: Doctrine\ORM\PersistentCollection {#2981 …}
+reports: Doctrine\ORM\PersistentCollection {#2983 …}
+favourites: Doctrine\ORM\PersistentCollection {#2985 …}
+notifications: Doctrine\ORM\PersistentCollection {#2987 …}
+badges: Doctrine\ORM\PersistentCollection {#2989 …}
+children: [
6 => App\Entity\EntryComment {#2091
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2090 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2090 …}
+body: """
But a ton of people **can** open a PDF and will be able to select an USB stick from menu and click next, next, next… It’s not completely different, you still use a mouse, a keyboard, you click on things, you get some feedback from it… When a new kind of mobile app arrive, I can see someone using no more than 5 apps in life having problems, but this doesn’t mean only them exists, we do not talk about switching everyone here. People change houses, how are they figuring out where is the toilet if doors have different color and are in different positions?\n
\n
Also a reason why any software like Microsoft Windows or Office should be banned from public education, especially primary schools.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703295334 {#2095
date: 2023-12-23 02:35:34.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@derf82@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#2093 …}
+nested: Doctrine\ORM\PersistentCollection {#2094 …}
+votes: Doctrine\ORM\PersistentCollection {#2140 …}
+reports: Doctrine\ORM\PersistentCollection {#2133 …}
+favourites: Doctrine\ORM\PersistentCollection {#2131 …}
+notifications: Doctrine\ORM\PersistentCollection {#2138 …}
-id: 247319
-bodyTs: "'5':64 'abl':13 'also':108 'app':54,65 'arriv':55 'ban':121 'chang':87 'click':22,39 'color':102 'complet':29 'differ':30,101,106 'doesn':72 'door':99 'educ':124 'especi':125 'everyon':84 'exist':77 'feedback':45 'figur':92 'get':43 'hous':88 'keyboard':37 'kind':51 'life':67 'like':114 'mean':74 'menu':20 'microsoft':115 'mobil':53 'mous':35 'new':50 'next':23,24,25 'offic':118 'open':7 'pdf':9 'peopl':5,86 'posit':107 'primari':126 'problem':69 'public':123 'reason':110 'school':127 'see':58 'select':15 'softwar':113 'someon':59 'stick':18 'still':32 'switch':83 'talk':81 'thing':41 'toilet':97 'ton':3 'usb':17 'use':33,60 'window':116"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5884378"
+editedAt: null
+createdAt: DateTimeImmutable @1703295334 {#2087
date: 2023-12-23 02:35:34.0 +01:00
}
+"title": 247319
}
5 => App\Entity\EntryComment {#2330
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2348 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2346 …}
+body: "Marketing is monopolized with Google and Facebook. Manufacturers and Microsoft won’t make one-click installs happen. Tech support would be chicken and egg problem. Ugh…"
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703295471 {#2345
date: 2023-12-23 02:37:51.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@BaldProphet@kbin.social"
"@anon5621@lemmy.ml"
]
+children: Doctrine\ORM\PersistentCollection {#2351 …}
+nested: Doctrine\ORM\PersistentCollection {#2332 …}
+votes: Doctrine\ORM\PersistentCollection {#2349 …}
+reports: Doctrine\ORM\PersistentCollection {#2141 …}
+favourites: Doctrine\ORM\PersistentCollection {#2164 …}
+notifications: Doctrine\ORM\PersistentCollection {#2314 …}
-id: 247320
-bodyTs: "'chicken':23 'click':16 'egg':25 'facebook':7 'googl':5 'happen':18 'instal':17 'make':13 'manufactur':8 'market':1 'microsoft':10 'monopol':3 'one':15 'one-click':14 'problem':26 'support':20 'tech':19 'ugh':27 'won':11 'would':21"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5884407"
+editedAt: null
+createdAt: DateTimeImmutable @1703295471 {#2350
date: 2023-12-23 02:37:51.0 +01:00
}
+"title": 247320
}
4 => App\Entity\EntryComment {#2325
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2327 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2346 …}
+body: """
Your DAW and audio interface doesn’t support Linux.*\n
\n
Yeah, it’s a bummer, but you are in a small portion of effected computer users, still others can benefit from longer support.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 1
+score: 0
+lastActive: DateTime @1703295692 {#2328
date: 2023-12-23 02:41:32.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@BaldProphet@kbin.social"
"@Transcendant@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#2329 …}
+nested: Doctrine\ORM\PersistentCollection {#2323 …}
+votes: Doctrine\ORM\PersistentCollection {#2300 …}
+reports: Doctrine\ORM\PersistentCollection {#2340 …}
+favourites: Doctrine\ORM\PersistentCollection {#2342 …}
+notifications: Doctrine\ORM\PersistentCollection {#2343 …}
-id: 247321
-bodyTs: "'audio':4 'benefit':29 'bummer':14 'comput':24 'daw':2 'doesn':6 'effect':23 'interfac':5 'linux':9 'longer':31 'other':27 'portion':21 'small':20 'still':26 'support':8,32 'user':25 'yeah':10"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5884453"
+editedAt: DateTimeImmutable @1707175705 {#2326
date: 2024-02-06 00:28:25.0 +01:00
}
+createdAt: DateTimeImmutable @1703295692 {#2191
date: 2023-12-23 02:41:32.0 +01:00
}
+"title": 247321
}
3 => App\Entity\EntryComment {#2338
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2159 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2346 …}
+body: """
There are many many outdated patterns how to do things in Windows that are cemented in public knowledge. Running random executable installers from the web giving them superuser permissions is I thing the most popular one.\n
\n
How to share all user settings between system installations? How to change the logo in the desktop bar? How to add a directory to an applications bar? How to change system build-in keyboard shortcut? How to reinstall just the system keeping the programs? How to make a file run on a shortcut? Those are things I use daily, that are impossible or need some hacky programs to work on anything other than Linux, I would die if I had to switch back now.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703296199 {#2335
date: 2023-12-23 02:49:59.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@BaldProphet@kbin.social"
"@Wermhatswormhat@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#2143 …}
+nested: Doctrine\ORM\PersistentCollection {#2136 …}
+votes: Doctrine\ORM\PersistentCollection {#2073 …}
+reports: Doctrine\ORM\PersistentCollection {#2072 …}
+favourites: Doctrine\ORM\PersistentCollection {#2065 …}
+notifications: Doctrine\ORM\PersistentCollection {#2066 …}
-id: 247322
-bodyTs: "'add':57 'anyth':108 'applic':62 'back':120 'bar':54,63 'build':69 'build-in':68 'cement':15 'chang':48,66 'daili':96 'desktop':53 'die':114 'directori':59 'execut':21 'file':86 'give':26 'hacki':103 'imposs':99 'instal':22,45 'keep':79 'keyboard':71 'knowledg':18 'linux':111 'logo':50 'make':84 'mani':3,4 'need':101 'one':36 'outdat':5 'pattern':6 'permiss':29 'popular':35 'program':81,104 'public':17 'random':20 'reinstal':75 'run':19,87 'set':42 'share':39 'shortcut':72,90 'superus':28 'switch':119 'system':44,67,78 'thing':10,32,93 'use':95 'user':41 'web':25 'window':12 'work':106 'would':113"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5884570"
+editedAt: null
+createdAt: DateTimeImmutable @1703296199 {#2339
date: 2023-12-23 02:49:59.0 +01:00
}
+"title": 247322
}
2 => App\Entity\EntryComment {#2049
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2048 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2346 …}
+body: """
Use whatever is popular and has a cool logo. Distro is basically a software library, preinstalled programs and default settings. You can transform any distro to behave like the other one.\n
\n
KDE, Gnome, XFCE…? Which is looking better for you or which one was default. Init system? Which was the default. X11/Wayland? Wayland. Go with X11 only if Wayland is having problems with your graphics card.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703296544 {#2067
date: 2023-12-23 02:55:44.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@BaldProphet@kbin.social"
"@Deebster@programming.dev"
]
+children: Doctrine\ORM\PersistentCollection {#2051 …}
+nested: Doctrine\ORM\PersistentCollection {#2059 …}
+votes: Doctrine\ORM\PersistentCollection {#2047 …}
+reports: Doctrine\ORM\PersistentCollection {#2057 …}
+favourites: Doctrine\ORM\PersistentCollection {#2055 …}
+notifications: Doctrine\ORM\PersistentCollection {#2054 …}
-id: 247323
-bodyTs: "'basic':12 'behav':27 'better':38 'card':66 'cool':8 'default':19,45,51 'distro':10,25 'gnome':33 'go':54 'graphic':65 'init':46 'kde':32 'librari':15 'like':28 'logo':9 'look':37 'one':31,43 'popular':4 'preinstal':16 'problem':62 'program':17 'set':20 'softwar':14 'system':47 'transform':23 'use':1 'wayland':53,59 'whatev':2 'x11':56 'x11/wayland':52 'xfce':34"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5884646"
+editedAt: null
+createdAt: DateTimeImmutable @1703296544 {#2070
date: 2023-12-23 02:55:44.0 +01:00
}
+"title": 247323
}
1 => App\Entity\EntryComment {#2165
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2041 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2041 …}
+body: "For 240 million devices I think there would be some Linux can “cut it”. And second, no? My computer is 13+ years old and I am using it with basically no lagging, developing a couple of apps. Truth is all medium-tier computers made today and in recent years have reached the point where for normal use (that is daily tasks like communication, content consumption and calculations) only limiting factor for daily driver is software optimization."
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703296770 {#2053
date: 2023-12-23 02:59:30.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@TCB13@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#2104 …}
+nested: Doctrine\ORM\PersistentCollection {#2099 …}
+votes: Doctrine\ORM\PersistentCollection {#2108 …}
+reports: Doctrine\ORM\PersistentCollection {#2101 …}
+favourites: Doctrine\ORM\PersistentCollection {#2109 …}
+notifications: Doctrine\ORM\PersistentCollection {#2106 …}
-id: 247324
-bodyTs: "'13':21 '240':2 'app':37 'basic':30 'calcul':68 'communic':64 'comput':19,44 'consumpt':66 'content':65 'coupl':35 'cut':13 'daili':61,73 'develop':33 'devic':4 'driver':74 'factor':71 'lag':32 'like':63 'limit':70 'linux':11 'made':45 'medium':42 'medium-ti':41 'million':3 'normal':57 'old':23 'optim':77 'point':54 'reach':52 'recent':49 'second':16 'softwar':76 'task':62 'think':6 'tier':43 'today':46 'truth':38 'use':27,58 'would':8 'year':22,50"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5884688"
+editedAt: null
+createdAt: DateTimeImmutable @1703296770 {#2125
date: 2023-12-23 02:59:30.0 +01:00
}
+"title": 247324
}
0 => App\Entity\EntryComment {#2114}
]
-id: 24104
-titleTs: "'10':5 '240':8 'comput':10 'could':6 'end':1 'instal':16 'landfil':13 'linux':17 'million':9 'send':7 'support':2 'window':4"
-bodyTs: "'10':6 '11':33 '240':18 'comput':56 'current':16 'desktop':10 'due':30 'end':3 'exorbit':35 'gnu/linux':52 'hope':59 'immedi':46 'landfil':26 'like':40 'mani':43 'may':21,53 'million':19 'most':29 'oper':11 'outdat':47 'pcs':20,44 'popular':9 'possibl':17 'prone':49 'requir':36 'result':41 'secur':58 'sent':23 'support':2 'system':12 'think':63 'virus':51 'window':5,32 'world':15"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1703366140
+visibility: "visible "
+apId: "https://lemmy.world/post/9873158"
+editedAt: DateTimeImmutable @1706576554 {#2956
date: 2024-01-30 02:02:34.0 +01:00
}
+createdAt: DateTimeImmutable @1703279740 {#2935
date: 2023-12-22 22:15:40.0 +01:00
}
+__isInitialized__: true
…2
}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2118 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2346 …}
+body: """
And this is a huge barrier for a lot of users, a massive roadblock. But the article talk about houndres of millions of computers, my point was just about that even if millions like you cannot switch, still in this statistics are millions that can especially non-professional that do not make audio or video, but that are going to throw away a working machine.\n
\n
I feel like you might feel being personally directed by my comment, because of your respond with “YOU’re not compatible”. Maybe it was bad wording, sorry. What I ment was that it can be frustrating to see “Linux doesn’t support …” when actually it has everything needed to support this software and the burden to make it available is on the software developer. Like saying that USB-C doesn’t support iPhone 13. Lack of it still hurts the Linux side anyway, but I just don’t want misconsaptions about which side should make a port happen.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703387471 {#2107
date: 2023-12-24 04:11:11.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@BaldProphet@kbin.social"
"@Transcendant@lemmy.world"
"@smileyhead@discuss.tchncs.de"
]
+children: Doctrine\ORM\PersistentCollection {#2117 …}
+nested: Doctrine\ORM\PersistentCollection {#2122 …}
+votes: Doctrine\ORM\PersistentCollection {#2113 …}
+reports: Doctrine\ORM\PersistentCollection {#2119 …}
+favourites: Doctrine\ORM\PersistentCollection {#2120 …}
+notifications: Doctrine\ORM\PersistentCollection {#2160 …}
-id: 247694
-bodyTs: "'13':141 'actual':110 'anyway':150 'articl':17 'audio':54 'avail':125 'away':63 'bad':91 'barrier':6 'burden':121 'c':136 'cannot':36 'comment':78 'compat':87 'comput':24 'develop':130 'direct':75 'doesn':106,137 'especi':46 'even':31 'everyth':113 'feel':68,72 'frustrat':102 'go':60 'happen':165 'houndr':20 'huge':5 'hurt':146 'iphon':140 'lack':142 'like':34,69,131 'linux':105,148 'lot':9 'machin':66 'make':53,123,162 'massiv':13 'mayb':88 'ment':96 'might':71 'million':22,33,43 'misconsapt':157 'need':114 'non':48 'non-profession':47 'person':74 'point':26 'port':164 'profession':49 're':85 'respond':82 'roadblock':14 'say':132 'see':104 'side':149,160 'softwar':118,129 'sorri':93 'statist':41 'still':38,145 'support':108,116,139 'switch':37 'talk':18 'throw':62 'usb':135 'usb-c':134 'user':11 'video':56 'want':156 'word':92 'work':65"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5904342"
+editedAt: DateTimeImmutable @1707537983 {#2112
date: 2024-02-10 05:06:23.0 +01:00
}
+createdAt: DateTimeImmutable @1703387471 {#2124
date: 2023-12-24 04:11:11.0 +01:00
}
+"title": 247694
} |
|
Show voter details
|
87 |
DENIED
|
edit
|
App\Entity\EntryComment {#2114
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086
+user: Proxies\__CG__\App\Entity\User {#2975 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: Proxies\__CG__\App\Entity\Image {#2977 …}
+domain: Proxies\__CG__\App\Entity\Domain {#2978 …}
+slug: "Ending-support-for-Windows-10-could-send-240-million-computers"
+title: "Ending support for Windows 10 could send 240 million computers to the landfill. Why not install Linux on them?"
+url: "https://gadgettendency.com/ending-support-for-windows-10-could-send-240-million-computers-to-the-landfill-a-stack-of-that-many-laptops-would-end-up-600-km-higher-than-the-moon/"
+body: "With support ending for Windows 10, the most popular desktop operating system in the world currently, possibly 240 million pcs may be sent to the landfill. This is mostly due to Windows 11’s exorbitant requirements. This will most likely result in many pcs being immediately outdated, and prone to viruses. GNU/Linux may be these computers’ only secure hope, what do you think?"
+type: "link"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 242
+favouriteCount: 748
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1711817575 {#2970
date: 2024-03-30 17:52:55.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#2979 …}
+votes: Doctrine\ORM\PersistentCollection {#2981 …}
+reports: Doctrine\ORM\PersistentCollection {#2983 …}
+favourites: Doctrine\ORM\PersistentCollection {#2985 …}
+notifications: Doctrine\ORM\PersistentCollection {#2987 …}
+badges: Doctrine\ORM\PersistentCollection {#2989 …}
+children: [
6 => App\Entity\EntryComment {#2091
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2090 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2090 …}
+body: """
But a ton of people **can** open a PDF and will be able to select an USB stick from menu and click next, next, next… It’s not completely different, you still use a mouse, a keyboard, you click on things, you get some feedback from it… When a new kind of mobile app arrive, I can see someone using no more than 5 apps in life having problems, but this doesn’t mean only them exists, we do not talk about switching everyone here. People change houses, how are they figuring out where is the toilet if doors have different color and are in different positions?\n
\n
Also a reason why any software like Microsoft Windows or Office should be banned from public education, especially primary schools.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703295334 {#2095
date: 2023-12-23 02:35:34.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@derf82@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#2093 …}
+nested: Doctrine\ORM\PersistentCollection {#2094 …}
+votes: Doctrine\ORM\PersistentCollection {#2140 …}
+reports: Doctrine\ORM\PersistentCollection {#2133 …}
+favourites: Doctrine\ORM\PersistentCollection {#2131 …}
+notifications: Doctrine\ORM\PersistentCollection {#2138 …}
-id: 247319
-bodyTs: "'5':64 'abl':13 'also':108 'app':54,65 'arriv':55 'ban':121 'chang':87 'click':22,39 'color':102 'complet':29 'differ':30,101,106 'doesn':72 'door':99 'educ':124 'especi':125 'everyon':84 'exist':77 'feedback':45 'figur':92 'get':43 'hous':88 'keyboard':37 'kind':51 'life':67 'like':114 'mean':74 'menu':20 'microsoft':115 'mobil':53 'mous':35 'new':50 'next':23,24,25 'offic':118 'open':7 'pdf':9 'peopl':5,86 'posit':107 'primari':126 'problem':69 'public':123 'reason':110 'school':127 'see':58 'select':15 'softwar':113 'someon':59 'stick':18 'still':32 'switch':83 'talk':81 'thing':41 'toilet':97 'ton':3 'usb':17 'use':33,60 'window':116"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5884378"
+editedAt: null
+createdAt: DateTimeImmutable @1703295334 {#2087
date: 2023-12-23 02:35:34.0 +01:00
}
+"title": 247319
}
5 => App\Entity\EntryComment {#2330
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2348 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2346 …}
+body: "Marketing is monopolized with Google and Facebook. Manufacturers and Microsoft won’t make one-click installs happen. Tech support would be chicken and egg problem. Ugh…"
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703295471 {#2345
date: 2023-12-23 02:37:51.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@BaldProphet@kbin.social"
"@anon5621@lemmy.ml"
]
+children: Doctrine\ORM\PersistentCollection {#2351 …}
+nested: Doctrine\ORM\PersistentCollection {#2332 …}
+votes: Doctrine\ORM\PersistentCollection {#2349 …}
+reports: Doctrine\ORM\PersistentCollection {#2141 …}
+favourites: Doctrine\ORM\PersistentCollection {#2164 …}
+notifications: Doctrine\ORM\PersistentCollection {#2314 …}
-id: 247320
-bodyTs: "'chicken':23 'click':16 'egg':25 'facebook':7 'googl':5 'happen':18 'instal':17 'make':13 'manufactur':8 'market':1 'microsoft':10 'monopol':3 'one':15 'one-click':14 'problem':26 'support':20 'tech':19 'ugh':27 'won':11 'would':21"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5884407"
+editedAt: null
+createdAt: DateTimeImmutable @1703295471 {#2350
date: 2023-12-23 02:37:51.0 +01:00
}
+"title": 247320
}
4 => App\Entity\EntryComment {#2325
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2327 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2346 …}
+body: """
Your DAW and audio interface doesn’t support Linux.*\n
\n
Yeah, it’s a bummer, but you are in a small portion of effected computer users, still others can benefit from longer support.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 1
+score: 0
+lastActive: DateTime @1703295692 {#2328
date: 2023-12-23 02:41:32.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@BaldProphet@kbin.social"
"@Transcendant@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#2329 …}
+nested: Doctrine\ORM\PersistentCollection {#2323 …}
+votes: Doctrine\ORM\PersistentCollection {#2300 …}
+reports: Doctrine\ORM\PersistentCollection {#2340 …}
+favourites: Doctrine\ORM\PersistentCollection {#2342 …}
+notifications: Doctrine\ORM\PersistentCollection {#2343 …}
-id: 247321
-bodyTs: "'audio':4 'benefit':29 'bummer':14 'comput':24 'daw':2 'doesn':6 'effect':23 'interfac':5 'linux':9 'longer':31 'other':27 'portion':21 'small':20 'still':26 'support':8,32 'user':25 'yeah':10"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5884453"
+editedAt: DateTimeImmutable @1707175705 {#2326
date: 2024-02-06 00:28:25.0 +01:00
}
+createdAt: DateTimeImmutable @1703295692 {#2191
date: 2023-12-23 02:41:32.0 +01:00
}
+"title": 247321
}
3 => App\Entity\EntryComment {#2338
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2159 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2346 …}
+body: """
There are many many outdated patterns how to do things in Windows that are cemented in public knowledge. Running random executable installers from the web giving them superuser permissions is I thing the most popular one.\n
\n
How to share all user settings between system installations? How to change the logo in the desktop bar? How to add a directory to an applications bar? How to change system build-in keyboard shortcut? How to reinstall just the system keeping the programs? How to make a file run on a shortcut? Those are things I use daily, that are impossible or need some hacky programs to work on anything other than Linux, I would die if I had to switch back now.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703296199 {#2335
date: 2023-12-23 02:49:59.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@BaldProphet@kbin.social"
"@Wermhatswormhat@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#2143 …}
+nested: Doctrine\ORM\PersistentCollection {#2136 …}
+votes: Doctrine\ORM\PersistentCollection {#2073 …}
+reports: Doctrine\ORM\PersistentCollection {#2072 …}
+favourites: Doctrine\ORM\PersistentCollection {#2065 …}
+notifications: Doctrine\ORM\PersistentCollection {#2066 …}
-id: 247322
-bodyTs: "'add':57 'anyth':108 'applic':62 'back':120 'bar':54,63 'build':69 'build-in':68 'cement':15 'chang':48,66 'daili':96 'desktop':53 'die':114 'directori':59 'execut':21 'file':86 'give':26 'hacki':103 'imposs':99 'instal':22,45 'keep':79 'keyboard':71 'knowledg':18 'linux':111 'logo':50 'make':84 'mani':3,4 'need':101 'one':36 'outdat':5 'pattern':6 'permiss':29 'popular':35 'program':81,104 'public':17 'random':20 'reinstal':75 'run':19,87 'set':42 'share':39 'shortcut':72,90 'superus':28 'switch':119 'system':44,67,78 'thing':10,32,93 'use':95 'user':41 'web':25 'window':12 'work':106 'would':113"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5884570"
+editedAt: null
+createdAt: DateTimeImmutable @1703296199 {#2339
date: 2023-12-23 02:49:59.0 +01:00
}
+"title": 247322
}
2 => App\Entity\EntryComment {#2049
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2048 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2346 …}
+body: """
Use whatever is popular and has a cool logo. Distro is basically a software library, preinstalled programs and default settings. You can transform any distro to behave like the other one.\n
\n
KDE, Gnome, XFCE…? Which is looking better for you or which one was default. Init system? Which was the default. X11/Wayland? Wayland. Go with X11 only if Wayland is having problems with your graphics card.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703296544 {#2067
date: 2023-12-23 02:55:44.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@BaldProphet@kbin.social"
"@Deebster@programming.dev"
]
+children: Doctrine\ORM\PersistentCollection {#2051 …}
+nested: Doctrine\ORM\PersistentCollection {#2059 …}
+votes: Doctrine\ORM\PersistentCollection {#2047 …}
+reports: Doctrine\ORM\PersistentCollection {#2057 …}
+favourites: Doctrine\ORM\PersistentCollection {#2055 …}
+notifications: Doctrine\ORM\PersistentCollection {#2054 …}
-id: 247323
-bodyTs: "'basic':12 'behav':27 'better':38 'card':66 'cool':8 'default':19,45,51 'distro':10,25 'gnome':33 'go':54 'graphic':65 'init':46 'kde':32 'librari':15 'like':28 'logo':9 'look':37 'one':31,43 'popular':4 'preinstal':16 'problem':62 'program':17 'set':20 'softwar':14 'system':47 'transform':23 'use':1 'wayland':53,59 'whatev':2 'x11':56 'x11/wayland':52 'xfce':34"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5884646"
+editedAt: null
+createdAt: DateTimeImmutable @1703296544 {#2070
date: 2023-12-23 02:55:44.0 +01:00
}
+"title": 247323
}
1 => App\Entity\EntryComment {#2165
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2041 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2041 …}
+body: "For 240 million devices I think there would be some Linux can “cut it”. And second, no? My computer is 13+ years old and I am using it with basically no lagging, developing a couple of apps. Truth is all medium-tier computers made today and in recent years have reached the point where for normal use (that is daily tasks like communication, content consumption and calculations) only limiting factor for daily driver is software optimization."
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703296770 {#2053
date: 2023-12-23 02:59:30.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@TCB13@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#2104 …}
+nested: Doctrine\ORM\PersistentCollection {#2099 …}
+votes: Doctrine\ORM\PersistentCollection {#2108 …}
+reports: Doctrine\ORM\PersistentCollection {#2101 …}
+favourites: Doctrine\ORM\PersistentCollection {#2109 …}
+notifications: Doctrine\ORM\PersistentCollection {#2106 …}
-id: 247324
-bodyTs: "'13':21 '240':2 'app':37 'basic':30 'calcul':68 'communic':64 'comput':19,44 'consumpt':66 'content':65 'coupl':35 'cut':13 'daili':61,73 'develop':33 'devic':4 'driver':74 'factor':71 'lag':32 'like':63 'limit':70 'linux':11 'made':45 'medium':42 'medium-ti':41 'million':3 'normal':57 'old':23 'optim':77 'point':54 'reach':52 'recent':49 'second':16 'softwar':76 'task':62 'think':6 'tier':43 'today':46 'truth':38 'use':27,58 'would':8 'year':22,50"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5884688"
+editedAt: null
+createdAt: DateTimeImmutable @1703296770 {#2125
date: 2023-12-23 02:59:30.0 +01:00
}
+"title": 247324
}
0 => App\Entity\EntryComment {#2114}
]
-id: 24104
-titleTs: "'10':5 '240':8 'comput':10 'could':6 'end':1 'instal':16 'landfil':13 'linux':17 'million':9 'send':7 'support':2 'window':4"
-bodyTs: "'10':6 '11':33 '240':18 'comput':56 'current':16 'desktop':10 'due':30 'end':3 'exorbit':35 'gnu/linux':52 'hope':59 'immedi':46 'landfil':26 'like':40 'mani':43 'may':21,53 'million':19 'most':29 'oper':11 'outdat':47 'pcs':20,44 'popular':9 'possibl':17 'prone':49 'requir':36 'result':41 'secur':58 'sent':23 'support':2 'system':12 'think':63 'virus':51 'window':5,32 'world':15"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1703366140
+visibility: "visible "
+apId: "https://lemmy.world/post/9873158"
+editedAt: DateTimeImmutable @1706576554 {#2956
date: 2024-01-30 02:02:34.0 +01:00
}
+createdAt: DateTimeImmutable @1703279740 {#2935
date: 2023-12-22 22:15:40.0 +01:00
}
+__isInitialized__: true
…2
}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2118 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2346 …}
+body: """
And this is a huge barrier for a lot of users, a massive roadblock. But the article talk about houndres of millions of computers, my point was just about that even if millions like you cannot switch, still in this statistics are millions that can especially non-professional that do not make audio or video, but that are going to throw away a working machine.\n
\n
I feel like you might feel being personally directed by my comment, because of your respond with “YOU’re not compatible”. Maybe it was bad wording, sorry. What I ment was that it can be frustrating to see “Linux doesn’t support …” when actually it has everything needed to support this software and the burden to make it available is on the software developer. Like saying that USB-C doesn’t support iPhone 13. Lack of it still hurts the Linux side anyway, but I just don’t want misconsaptions about which side should make a port happen.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703387471 {#2107
date: 2023-12-24 04:11:11.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@BaldProphet@kbin.social"
"@Transcendant@lemmy.world"
"@smileyhead@discuss.tchncs.de"
]
+children: Doctrine\ORM\PersistentCollection {#2117 …}
+nested: Doctrine\ORM\PersistentCollection {#2122 …}
+votes: Doctrine\ORM\PersistentCollection {#2113 …}
+reports: Doctrine\ORM\PersistentCollection {#2119 …}
+favourites: Doctrine\ORM\PersistentCollection {#2120 …}
+notifications: Doctrine\ORM\PersistentCollection {#2160 …}
-id: 247694
-bodyTs: "'13':141 'actual':110 'anyway':150 'articl':17 'audio':54 'avail':125 'away':63 'bad':91 'barrier':6 'burden':121 'c':136 'cannot':36 'comment':78 'compat':87 'comput':24 'develop':130 'direct':75 'doesn':106,137 'especi':46 'even':31 'everyth':113 'feel':68,72 'frustrat':102 'go':60 'happen':165 'houndr':20 'huge':5 'hurt':146 'iphon':140 'lack':142 'like':34,69,131 'linux':105,148 'lot':9 'machin':66 'make':53,123,162 'massiv':13 'mayb':88 'ment':96 'might':71 'million':22,33,43 'misconsapt':157 'need':114 'non':48 'non-profession':47 'person':74 'point':26 'port':164 'profession':49 're':85 'respond':82 'roadblock':14 'say':132 'see':104 'side':149,160 'softwar':118,129 'sorri':93 'statist':41 'still':38,145 'support':108,116,139 'switch':37 'talk':18 'throw':62 'usb':135 'usb-c':134 'user':11 'video':56 'want':156 'word':92 'work':65"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5904342"
+editedAt: DateTimeImmutable @1707537983 {#2112
date: 2024-02-10 05:06:23.0 +01:00
}
+createdAt: DateTimeImmutable @1703387471 {#2124
date: 2023-12-24 04:11:11.0 +01:00
}
+"title": 247694
} |
|
Show voter details
|
88 |
DENIED
|
moderate
|
App\Entity\EntryComment {#2114
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086
+user: Proxies\__CG__\App\Entity\User {#2975 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: Proxies\__CG__\App\Entity\Image {#2977 …}
+domain: Proxies\__CG__\App\Entity\Domain {#2978 …}
+slug: "Ending-support-for-Windows-10-could-send-240-million-computers"
+title: "Ending support for Windows 10 could send 240 million computers to the landfill. Why not install Linux on them?"
+url: "https://gadgettendency.com/ending-support-for-windows-10-could-send-240-million-computers-to-the-landfill-a-stack-of-that-many-laptops-would-end-up-600-km-higher-than-the-moon/"
+body: "With support ending for Windows 10, the most popular desktop operating system in the world currently, possibly 240 million pcs may be sent to the landfill. This is mostly due to Windows 11’s exorbitant requirements. This will most likely result in many pcs being immediately outdated, and prone to viruses. GNU/Linux may be these computers’ only secure hope, what do you think?"
+type: "link"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 242
+favouriteCount: 748
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1711817575 {#2970
date: 2024-03-30 17:52:55.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#2979 …}
+votes: Doctrine\ORM\PersistentCollection {#2981 …}
+reports: Doctrine\ORM\PersistentCollection {#2983 …}
+favourites: Doctrine\ORM\PersistentCollection {#2985 …}
+notifications: Doctrine\ORM\PersistentCollection {#2987 …}
+badges: Doctrine\ORM\PersistentCollection {#2989 …}
+children: [
6 => App\Entity\EntryComment {#2091
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2090 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2090 …}
+body: """
But a ton of people **can** open a PDF and will be able to select an USB stick from menu and click next, next, next… It’s not completely different, you still use a mouse, a keyboard, you click on things, you get some feedback from it… When a new kind of mobile app arrive, I can see someone using no more than 5 apps in life having problems, but this doesn’t mean only them exists, we do not talk about switching everyone here. People change houses, how are they figuring out where is the toilet if doors have different color and are in different positions?\n
\n
Also a reason why any software like Microsoft Windows or Office should be banned from public education, especially primary schools.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703295334 {#2095
date: 2023-12-23 02:35:34.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@derf82@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#2093 …}
+nested: Doctrine\ORM\PersistentCollection {#2094 …}
+votes: Doctrine\ORM\PersistentCollection {#2140 …}
+reports: Doctrine\ORM\PersistentCollection {#2133 …}
+favourites: Doctrine\ORM\PersistentCollection {#2131 …}
+notifications: Doctrine\ORM\PersistentCollection {#2138 …}
-id: 247319
-bodyTs: "'5':64 'abl':13 'also':108 'app':54,65 'arriv':55 'ban':121 'chang':87 'click':22,39 'color':102 'complet':29 'differ':30,101,106 'doesn':72 'door':99 'educ':124 'especi':125 'everyon':84 'exist':77 'feedback':45 'figur':92 'get':43 'hous':88 'keyboard':37 'kind':51 'life':67 'like':114 'mean':74 'menu':20 'microsoft':115 'mobil':53 'mous':35 'new':50 'next':23,24,25 'offic':118 'open':7 'pdf':9 'peopl':5,86 'posit':107 'primari':126 'problem':69 'public':123 'reason':110 'school':127 'see':58 'select':15 'softwar':113 'someon':59 'stick':18 'still':32 'switch':83 'talk':81 'thing':41 'toilet':97 'ton':3 'usb':17 'use':33,60 'window':116"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5884378"
+editedAt: null
+createdAt: DateTimeImmutable @1703295334 {#2087
date: 2023-12-23 02:35:34.0 +01:00
}
+"title": 247319
}
5 => App\Entity\EntryComment {#2330
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2348 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2346 …}
+body: "Marketing is monopolized with Google and Facebook. Manufacturers and Microsoft won’t make one-click installs happen. Tech support would be chicken and egg problem. Ugh…"
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703295471 {#2345
date: 2023-12-23 02:37:51.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@BaldProphet@kbin.social"
"@anon5621@lemmy.ml"
]
+children: Doctrine\ORM\PersistentCollection {#2351 …}
+nested: Doctrine\ORM\PersistentCollection {#2332 …}
+votes: Doctrine\ORM\PersistentCollection {#2349 …}
+reports: Doctrine\ORM\PersistentCollection {#2141 …}
+favourites: Doctrine\ORM\PersistentCollection {#2164 …}
+notifications: Doctrine\ORM\PersistentCollection {#2314 …}
-id: 247320
-bodyTs: "'chicken':23 'click':16 'egg':25 'facebook':7 'googl':5 'happen':18 'instal':17 'make':13 'manufactur':8 'market':1 'microsoft':10 'monopol':3 'one':15 'one-click':14 'problem':26 'support':20 'tech':19 'ugh':27 'won':11 'would':21"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5884407"
+editedAt: null
+createdAt: DateTimeImmutable @1703295471 {#2350
date: 2023-12-23 02:37:51.0 +01:00
}
+"title": 247320
}
4 => App\Entity\EntryComment {#2325
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2327 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2346 …}
+body: """
Your DAW and audio interface doesn’t support Linux.*\n
\n
Yeah, it’s a bummer, but you are in a small portion of effected computer users, still others can benefit from longer support.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 1
+score: 0
+lastActive: DateTime @1703295692 {#2328
date: 2023-12-23 02:41:32.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@BaldProphet@kbin.social"
"@Transcendant@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#2329 …}
+nested: Doctrine\ORM\PersistentCollection {#2323 …}
+votes: Doctrine\ORM\PersistentCollection {#2300 …}
+reports: Doctrine\ORM\PersistentCollection {#2340 …}
+favourites: Doctrine\ORM\PersistentCollection {#2342 …}
+notifications: Doctrine\ORM\PersistentCollection {#2343 …}
-id: 247321
-bodyTs: "'audio':4 'benefit':29 'bummer':14 'comput':24 'daw':2 'doesn':6 'effect':23 'interfac':5 'linux':9 'longer':31 'other':27 'portion':21 'small':20 'still':26 'support':8,32 'user':25 'yeah':10"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5884453"
+editedAt: DateTimeImmutable @1707175705 {#2326
date: 2024-02-06 00:28:25.0 +01:00
}
+createdAt: DateTimeImmutable @1703295692 {#2191
date: 2023-12-23 02:41:32.0 +01:00
}
+"title": 247321
}
3 => App\Entity\EntryComment {#2338
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2159 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2346 …}
+body: """
There are many many outdated patterns how to do things in Windows that are cemented in public knowledge. Running random executable installers from the web giving them superuser permissions is I thing the most popular one.\n
\n
How to share all user settings between system installations? How to change the logo in the desktop bar? How to add a directory to an applications bar? How to change system build-in keyboard shortcut? How to reinstall just the system keeping the programs? How to make a file run on a shortcut? Those are things I use daily, that are impossible or need some hacky programs to work on anything other than Linux, I would die if I had to switch back now.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703296199 {#2335
date: 2023-12-23 02:49:59.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@BaldProphet@kbin.social"
"@Wermhatswormhat@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#2143 …}
+nested: Doctrine\ORM\PersistentCollection {#2136 …}
+votes: Doctrine\ORM\PersistentCollection {#2073 …}
+reports: Doctrine\ORM\PersistentCollection {#2072 …}
+favourites: Doctrine\ORM\PersistentCollection {#2065 …}
+notifications: Doctrine\ORM\PersistentCollection {#2066 …}
-id: 247322
-bodyTs: "'add':57 'anyth':108 'applic':62 'back':120 'bar':54,63 'build':69 'build-in':68 'cement':15 'chang':48,66 'daili':96 'desktop':53 'die':114 'directori':59 'execut':21 'file':86 'give':26 'hacki':103 'imposs':99 'instal':22,45 'keep':79 'keyboard':71 'knowledg':18 'linux':111 'logo':50 'make':84 'mani':3,4 'need':101 'one':36 'outdat':5 'pattern':6 'permiss':29 'popular':35 'program':81,104 'public':17 'random':20 'reinstal':75 'run':19,87 'set':42 'share':39 'shortcut':72,90 'superus':28 'switch':119 'system':44,67,78 'thing':10,32,93 'use':95 'user':41 'web':25 'window':12 'work':106 'would':113"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5884570"
+editedAt: null
+createdAt: DateTimeImmutable @1703296199 {#2339
date: 2023-12-23 02:49:59.0 +01:00
}
+"title": 247322
}
2 => App\Entity\EntryComment {#2049
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2048 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2346 …}
+body: """
Use whatever is popular and has a cool logo. Distro is basically a software library, preinstalled programs and default settings. You can transform any distro to behave like the other one.\n
\n
KDE, Gnome, XFCE…? Which is looking better for you or which one was default. Init system? Which was the default. X11/Wayland? Wayland. Go with X11 only if Wayland is having problems with your graphics card.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703296544 {#2067
date: 2023-12-23 02:55:44.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@BaldProphet@kbin.social"
"@Deebster@programming.dev"
]
+children: Doctrine\ORM\PersistentCollection {#2051 …}
+nested: Doctrine\ORM\PersistentCollection {#2059 …}
+votes: Doctrine\ORM\PersistentCollection {#2047 …}
+reports: Doctrine\ORM\PersistentCollection {#2057 …}
+favourites: Doctrine\ORM\PersistentCollection {#2055 …}
+notifications: Doctrine\ORM\PersistentCollection {#2054 …}
-id: 247323
-bodyTs: "'basic':12 'behav':27 'better':38 'card':66 'cool':8 'default':19,45,51 'distro':10,25 'gnome':33 'go':54 'graphic':65 'init':46 'kde':32 'librari':15 'like':28 'logo':9 'look':37 'one':31,43 'popular':4 'preinstal':16 'problem':62 'program':17 'set':20 'softwar':14 'system':47 'transform':23 'use':1 'wayland':53,59 'whatev':2 'x11':56 'x11/wayland':52 'xfce':34"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5884646"
+editedAt: null
+createdAt: DateTimeImmutable @1703296544 {#2070
date: 2023-12-23 02:55:44.0 +01:00
}
+"title": 247323
}
1 => App\Entity\EntryComment {#2165
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2086 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2041 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2041 …}
+body: "For 240 million devices I think there would be some Linux can “cut it”. And second, no? My computer is 13+ years old and I am using it with basically no lagging, developing a couple of apps. Truth is all medium-tier computers made today and in recent years have reached the point where for normal use (that is daily tasks like communication, content consumption and calculations) only limiting factor for daily driver is software optimization."
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703296770 {#2053
date: 2023-12-23 02:59:30.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@TCB13@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#2104 …}
+nested: Doctrine\ORM\PersistentCollection {#2099 …}
+votes: Doctrine\ORM\PersistentCollection {#2108 …}
+reports: Doctrine\ORM\PersistentCollection {#2101 …}
+favourites: Doctrine\ORM\PersistentCollection {#2109 …}
+notifications: Doctrine\ORM\PersistentCollection {#2106 …}
-id: 247324
-bodyTs: "'13':21 '240':2 'app':37 'basic':30 'calcul':68 'communic':64 'comput':19,44 'consumpt':66 'content':65 'coupl':35 'cut':13 'daili':61,73 'develop':33 'devic':4 'driver':74 'factor':71 'lag':32 'like':63 'limit':70 'linux':11 'made':45 'medium':42 'medium-ti':41 'million':3 'normal':57 'old':23 'optim':77 'point':54 'reach':52 'recent':49 'second':16 'softwar':76 'task':62 'think':6 'tier':43 'today':46 'truth':38 'use':27,58 'would':8 'year':22,50"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5884688"
+editedAt: null
+createdAt: DateTimeImmutable @1703296770 {#2125
date: 2023-12-23 02:59:30.0 +01:00
}
+"title": 247324
}
0 => App\Entity\EntryComment {#2114}
]
-id: 24104
-titleTs: "'10':5 '240':8 'comput':10 'could':6 'end':1 'instal':16 'landfil':13 'linux':17 'million':9 'send':7 'support':2 'window':4"
-bodyTs: "'10':6 '11':33 '240':18 'comput':56 'current':16 'desktop':10 'due':30 'end':3 'exorbit':35 'gnu/linux':52 'hope':59 'immedi':46 'landfil':26 'like':40 'mani':43 'may':21,53 'million':19 'most':29 'oper':11 'outdat':47 'pcs':20,44 'popular':9 'possibl':17 'prone':49 'requir':36 'result':41 'secur':58 'sent':23 'support':2 'system':12 'think':63 'virus':51 'window':5,32 'world':15"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1703366140
+visibility: "visible "
+apId: "https://lemmy.world/post/9873158"
+editedAt: DateTimeImmutable @1706576554 {#2956
date: 2024-01-30 02:02:34.0 +01:00
}
+createdAt: DateTimeImmutable @1703279740 {#2935
date: 2023-12-22 22:15:40.0 +01:00
}
+__isInitialized__: true
…2
}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2118 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2346 …}
+body: """
And this is a huge barrier for a lot of users, a massive roadblock. But the article talk about houndres of millions of computers, my point was just about that even if millions like you cannot switch, still in this statistics are millions that can especially non-professional that do not make audio or video, but that are going to throw away a working machine.\n
\n
I feel like you might feel being personally directed by my comment, because of your respond with “YOU’re not compatible”. Maybe it was bad wording, sorry. What I ment was that it can be frustrating to see “Linux doesn’t support …” when actually it has everything needed to support this software and the burden to make it available is on the software developer. Like saying that USB-C doesn’t support iPhone 13. Lack of it still hurts the Linux side anyway, but I just don’t want misconsaptions about which side should make a port happen.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703387471 {#2107
date: 2023-12-24 04:11:11.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Gemini24601@lemmy.world"
"@BaldProphet@kbin.social"
"@Transcendant@lemmy.world"
"@smileyhead@discuss.tchncs.de"
]
+children: Doctrine\ORM\PersistentCollection {#2117 …}
+nested: Doctrine\ORM\PersistentCollection {#2122 …}
+votes: Doctrine\ORM\PersistentCollection {#2113 …}
+reports: Doctrine\ORM\PersistentCollection {#2119 …}
+favourites: Doctrine\ORM\PersistentCollection {#2120 …}
+notifications: Doctrine\ORM\PersistentCollection {#2160 …}
-id: 247694
-bodyTs: "'13':141 'actual':110 'anyway':150 'articl':17 'audio':54 'avail':125 'away':63 'bad':91 'barrier':6 'burden':121 'c':136 'cannot':36 'comment':78 'compat':87 'comput':24 'develop':130 'direct':75 'doesn':106,137 'especi':46 'even':31 'everyth':113 'feel':68,72 'frustrat':102 'go':60 'happen':165 'houndr':20 'huge':5 'hurt':146 'iphon':140 'lack':142 'like':34,69,131 'linux':105,148 'lot':9 'machin':66 'make':53,123,162 'massiv':13 'mayb':88 'ment':96 'might':71 'million':22,33,43 'misconsapt':157 'need':114 'non':48 'non-profession':47 'person':74 'point':26 'port':164 'profession':49 're':85 'respond':82 'roadblock':14 'say':132 'see':104 'side':149,160 'softwar':118,129 'sorri':93 'statist':41 'still':38,145 'support':108,116,139 'switch':37 'talk':18 'throw':62 'usb':135 'usb-c':134 'user':11 'video':56 'want':156 'word':92 'work':65"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5904342"
+editedAt: DateTimeImmutable @1707537983 {#2112
date: 2024-02-10 05:06:23.0 +01:00
}
+createdAt: DateTimeImmutable @1703387471 {#2124
date: 2023-12-24 04:11:11.0 +01:00
}
+"title": 247694
} |
|
Show voter details
|
89 |
DENIED
|
ROLE_USER
|
null |
|
Show voter details
|
90 |
DENIED
|
moderate
|
Proxies\__CG__\App\Entity\Entry {#2321
+user: Proxies\__CG__\App\Entity\User {#2894 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+domain: Proxies\__CG__\App\Entity\Domain {#1647 …}
+slug: "Make-Inkscape-installed-through-Flatpak-callable-in-the-terminal-as"
+title: "Make Inkscape installed through Flatpak callable in the terminal as 'inkscape'?"
+url: null
+body: """
I have a Python-package that calls Inkscape as part of a conversion process. I have it installed, but through Flatpak. This means that calling `inkscape` does not work in the terminal, but rather `flatpak run org.inkscape.Inkscape`. I need the package to be able to call it as `inkscape`.\n
\n
What is the best way to go about this?
"""
+type: "article"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 24
+favouriteCount: 61
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1710594812 {#2932
date: 2024-03-16 14:13:32.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#2937 …}
+votes: Doctrine\ORM\PersistentCollection {#2940 …}
+reports: Doctrine\ORM\PersistentCollection {#2942 …}
+favourites: Doctrine\ORM\PersistentCollection {#2944 …}
+notifications: Doctrine\ORM\PersistentCollection {#2946 …}
+badges: Doctrine\ORM\PersistentCollection {#2948 …}
+children: [
App\Entity\EntryComment {#2322
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2321 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: null
+root: null
+body: """
You can do an alias for the shell you use or make a symlink to /usr/local/bin/ for the entire system.\n
\n
There are importany reasons why this is not the default, but you can do it as long as you are away you have done it. Like when programs installed via package manager and flatpak starts conflicting, you’ll know why.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 4
+score: 0
+lastActive: DateTime @1704078230 {#2320
date: 2024-01-01 04:03:50.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@cyberwolfie@lemmy.ml"
]
+children: Doctrine\ORM\PersistentCollection {#2312 …}
+nested: Doctrine\ORM\PersistentCollection {#2307 …}
+votes: Doctrine\ORM\PersistentCollection {#2308 …}
+reports: Doctrine\ORM\PersistentCollection {#2304 …}
+favourites: Doctrine\ORM\PersistentCollection {#2319 …}
+notifications: Doctrine\ORM\PersistentCollection {#2318 …}
-id: 269093
-bodyTs: "'/usr/local/bin':16 'alia':5 'away':41 'conflict':56 'default':30 'done':44 'entir':19 'flatpak':54 'importani':23 'instal':49 'know':59 'like':46 'll':58 'long':37 'make':12 'manag':52 'packag':51 'program':48 'reason':24 'shell':8 'start':55 'symlink':14 'system':20 'use':10 'via':50"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/6040952"
+editedAt: null
+createdAt: DateTimeImmutable @1704078230 {#2315
date: 2024-01-01 04:03:50.0 +01:00
}
+"title": 269093
}
]
-id: 26231
-titleTs: "'callabl':6 'flatpak':5 'inkscap':2,11 'instal':3 'make':1 'termin':9"
-bodyTs: "'abl':45 'best':54 'call':8,26,47 'convers':14 'flatpak':22,36 'go':57 'inkscap':9,27,50 'instal':19 'mean':24 'need':40 'org.inkscape.inkscape':38 'packag':6,42 'part':11 'process':15 'python':5 'python-packag':4 'rather':35 'run':37 'termin':33 'way':55 'work':30"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1704115924
+visibility: "visible "
+apId: "https://lemmy.ml/post/9945157"
+editedAt: null
+createdAt: DateTimeImmutable @1704029524 {#2918
date: 2023-12-31 14:32:04.0 +01:00
}
+__isInitialized__: true
…2
} |
|
Show voter details
|
91 |
DENIED
|
edit
|
Proxies\__CG__\App\Entity\Entry {#2321
+user: Proxies\__CG__\App\Entity\User {#2894 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+domain: Proxies\__CG__\App\Entity\Domain {#1647 …}
+slug: "Make-Inkscape-installed-through-Flatpak-callable-in-the-terminal-as"
+title: "Make Inkscape installed through Flatpak callable in the terminal as 'inkscape'?"
+url: null
+body: """
I have a Python-package that calls Inkscape as part of a conversion process. I have it installed, but through Flatpak. This means that calling `inkscape` does not work in the terminal, but rather `flatpak run org.inkscape.Inkscape`. I need the package to be able to call it as `inkscape`.\n
\n
What is the best way to go about this?
"""
+type: "article"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 24
+favouriteCount: 61
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1710594812 {#2932
date: 2024-03-16 14:13:32.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#2937 …}
+votes: Doctrine\ORM\PersistentCollection {#2940 …}
+reports: Doctrine\ORM\PersistentCollection {#2942 …}
+favourites: Doctrine\ORM\PersistentCollection {#2944 …}
+notifications: Doctrine\ORM\PersistentCollection {#2946 …}
+badges: Doctrine\ORM\PersistentCollection {#2948 …}
+children: [
App\Entity\EntryComment {#2322
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2321 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: null
+root: null
+body: """
You can do an alias for the shell you use or make a symlink to /usr/local/bin/ for the entire system.\n
\n
There are importany reasons why this is not the default, but you can do it as long as you are away you have done it. Like when programs installed via package manager and flatpak starts conflicting, you’ll know why.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 4
+score: 0
+lastActive: DateTime @1704078230 {#2320
date: 2024-01-01 04:03:50.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@cyberwolfie@lemmy.ml"
]
+children: Doctrine\ORM\PersistentCollection {#2312 …}
+nested: Doctrine\ORM\PersistentCollection {#2307 …}
+votes: Doctrine\ORM\PersistentCollection {#2308 …}
+reports: Doctrine\ORM\PersistentCollection {#2304 …}
+favourites: Doctrine\ORM\PersistentCollection {#2319 …}
+notifications: Doctrine\ORM\PersistentCollection {#2318 …}
-id: 269093
-bodyTs: "'/usr/local/bin':16 'alia':5 'away':41 'conflict':56 'default':30 'done':44 'entir':19 'flatpak':54 'importani':23 'instal':49 'know':59 'like':46 'll':58 'long':37 'make':12 'manag':52 'packag':51 'program':48 'reason':24 'shell':8 'start':55 'symlink':14 'system':20 'use':10 'via':50"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/6040952"
+editedAt: null
+createdAt: DateTimeImmutable @1704078230 {#2315
date: 2024-01-01 04:03:50.0 +01:00
}
+"title": 269093
}
]
-id: 26231
-titleTs: "'callabl':6 'flatpak':5 'inkscap':2,11 'instal':3 'make':1 'termin':9"
-bodyTs: "'abl':45 'best':54 'call':8,26,47 'convers':14 'flatpak':22,36 'go':57 'inkscap':9,27,50 'instal':19 'mean':24 'need':40 'org.inkscape.inkscape':38 'packag':6,42 'part':11 'process':15 'python':5 'python-packag':4 'rather':35 'run':37 'termin':33 'way':55 'work':30"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1704115924
+visibility: "visible "
+apId: "https://lemmy.ml/post/9945157"
+editedAt: null
+createdAt: DateTimeImmutable @1704029524 {#2918
date: 2023-12-31 14:32:04.0 +01:00
}
+__isInitialized__: true
…2
} |
|
Show voter details
|
92 |
DENIED
|
moderate
|
Proxies\__CG__\App\Entity\Entry {#2321
+user: Proxies\__CG__\App\Entity\User {#2894 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+domain: Proxies\__CG__\App\Entity\Domain {#1647 …}
+slug: "Make-Inkscape-installed-through-Flatpak-callable-in-the-terminal-as"
+title: "Make Inkscape installed through Flatpak callable in the terminal as 'inkscape'?"
+url: null
+body: """
I have a Python-package that calls Inkscape as part of a conversion process. I have it installed, but through Flatpak. This means that calling `inkscape` does not work in the terminal, but rather `flatpak run org.inkscape.Inkscape`. I need the package to be able to call it as `inkscape`.\n
\n
What is the best way to go about this?
"""
+type: "article"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 24
+favouriteCount: 61
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1710594812 {#2932
date: 2024-03-16 14:13:32.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#2937 …}
+votes: Doctrine\ORM\PersistentCollection {#2940 …}
+reports: Doctrine\ORM\PersistentCollection {#2942 …}
+favourites: Doctrine\ORM\PersistentCollection {#2944 …}
+notifications: Doctrine\ORM\PersistentCollection {#2946 …}
+badges: Doctrine\ORM\PersistentCollection {#2948 …}
+children: [
App\Entity\EntryComment {#2322
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2321 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: null
+root: null
+body: """
You can do an alias for the shell you use or make a symlink to /usr/local/bin/ for the entire system.\n
\n
There are importany reasons why this is not the default, but you can do it as long as you are away you have done it. Like when programs installed via package manager and flatpak starts conflicting, you’ll know why.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 4
+score: 0
+lastActive: DateTime @1704078230 {#2320
date: 2024-01-01 04:03:50.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@cyberwolfie@lemmy.ml"
]
+children: Doctrine\ORM\PersistentCollection {#2312 …}
+nested: Doctrine\ORM\PersistentCollection {#2307 …}
+votes: Doctrine\ORM\PersistentCollection {#2308 …}
+reports: Doctrine\ORM\PersistentCollection {#2304 …}
+favourites: Doctrine\ORM\PersistentCollection {#2319 …}
+notifications: Doctrine\ORM\PersistentCollection {#2318 …}
-id: 269093
-bodyTs: "'/usr/local/bin':16 'alia':5 'away':41 'conflict':56 'default':30 'done':44 'entir':19 'flatpak':54 'importani':23 'instal':49 'know':59 'like':46 'll':58 'long':37 'make':12 'manag':52 'packag':51 'program':48 'reason':24 'shell':8 'start':55 'symlink':14 'system':20 'use':10 'via':50"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/6040952"
+editedAt: null
+createdAt: DateTimeImmutable @1704078230 {#2315
date: 2024-01-01 04:03:50.0 +01:00
}
+"title": 269093
}
]
-id: 26231
-titleTs: "'callabl':6 'flatpak':5 'inkscap':2,11 'instal':3 'make':1 'termin':9"
-bodyTs: "'abl':45 'best':54 'call':8,26,47 'convers':14 'flatpak':22,36 'go':57 'inkscap':9,27,50 'instal':19 'mean':24 'need':40 'org.inkscape.inkscape':38 'packag':6,42 'part':11 'process':15 'python':5 'python-packag':4 'rather':35 'run':37 'termin':33 'way':55 'work':30"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1704115924
+visibility: "visible "
+apId: "https://lemmy.ml/post/9945157"
+editedAt: null
+createdAt: DateTimeImmutable @1704029524 {#2918
date: 2023-12-31 14:32:04.0 +01:00
}
+__isInitialized__: true
…2
} |
|
Show voter details
|
93 |
DENIED
|
ROLE_USER
|
null |
|
Show voter details
|
94 |
DENIED
|
moderate
|
App\Entity\EntryComment {#2322
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2321
+user: Proxies\__CG__\App\Entity\User {#2894 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+domain: Proxies\__CG__\App\Entity\Domain {#1647 …}
+slug: "Make-Inkscape-installed-through-Flatpak-callable-in-the-terminal-as"
+title: "Make Inkscape installed through Flatpak callable in the terminal as 'inkscape'?"
+url: null
+body: """
I have a Python-package that calls Inkscape as part of a conversion process. I have it installed, but through Flatpak. This means that calling `inkscape` does not work in the terminal, but rather `flatpak run org.inkscape.Inkscape`. I need the package to be able to call it as `inkscape`.\n
\n
What is the best way to go about this?
"""
+type: "article"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 24
+favouriteCount: 61
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1710594812 {#2932
date: 2024-03-16 14:13:32.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#2937 …}
+votes: Doctrine\ORM\PersistentCollection {#2940 …}
+reports: Doctrine\ORM\PersistentCollection {#2942 …}
+favourites: Doctrine\ORM\PersistentCollection {#2944 …}
+notifications: Doctrine\ORM\PersistentCollection {#2946 …}
+badges: Doctrine\ORM\PersistentCollection {#2948 …}
+children: [
App\Entity\EntryComment {#2322}
]
-id: 26231
-titleTs: "'callabl':6 'flatpak':5 'inkscap':2,11 'instal':3 'make':1 'termin':9"
-bodyTs: "'abl':45 'best':54 'call':8,26,47 'convers':14 'flatpak':22,36 'go':57 'inkscap':9,27,50 'instal':19 'mean':24 'need':40 'org.inkscape.inkscape':38 'packag':6,42 'part':11 'process':15 'python':5 'python-packag':4 'rather':35 'run':37 'termin':33 'way':55 'work':30"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1704115924
+visibility: "visible "
+apId: "https://lemmy.ml/post/9945157"
+editedAt: null
+createdAt: DateTimeImmutable @1704029524 {#2918
date: 2023-12-31 14:32:04.0 +01:00
}
+__isInitialized__: true
…2
}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: null
+root: null
+body: """
You can do an alias for the shell you use or make a symlink to /usr/local/bin/ for the entire system.\n
\n
There are importany reasons why this is not the default, but you can do it as long as you are away you have done it. Like when programs installed via package manager and flatpak starts conflicting, you’ll know why.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 4
+score: 0
+lastActive: DateTime @1704078230 {#2320
date: 2024-01-01 04:03:50.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@cyberwolfie@lemmy.ml"
]
+children: Doctrine\ORM\PersistentCollection {#2312 …}
+nested: Doctrine\ORM\PersistentCollection {#2307 …}
+votes: Doctrine\ORM\PersistentCollection {#2308 …}
+reports: Doctrine\ORM\PersistentCollection {#2304 …}
+favourites: Doctrine\ORM\PersistentCollection {#2319 …}
+notifications: Doctrine\ORM\PersistentCollection {#2318 …}
-id: 269093
-bodyTs: "'/usr/local/bin':16 'alia':5 'away':41 'conflict':56 'default':30 'done':44 'entir':19 'flatpak':54 'importani':23 'instal':49 'know':59 'like':46 'll':58 'long':37 'make':12 'manag':52 'packag':51 'program':48 'reason':24 'shell':8 'start':55 'symlink':14 'system':20 'use':10 'via':50"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/6040952"
+editedAt: null
+createdAt: DateTimeImmutable @1704078230 {#2315
date: 2024-01-01 04:03:50.0 +01:00
}
+"title": 269093
} |
|
Show voter details
|
95 |
DENIED
|
edit
|
App\Entity\EntryComment {#2322
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2321
+user: Proxies\__CG__\App\Entity\User {#2894 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+domain: Proxies\__CG__\App\Entity\Domain {#1647 …}
+slug: "Make-Inkscape-installed-through-Flatpak-callable-in-the-terminal-as"
+title: "Make Inkscape installed through Flatpak callable in the terminal as 'inkscape'?"
+url: null
+body: """
I have a Python-package that calls Inkscape as part of a conversion process. I have it installed, but through Flatpak. This means that calling `inkscape` does not work in the terminal, but rather `flatpak run org.inkscape.Inkscape`. I need the package to be able to call it as `inkscape`.\n
\n
What is the best way to go about this?
"""
+type: "article"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 24
+favouriteCount: 61
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1710594812 {#2932
date: 2024-03-16 14:13:32.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#2937 …}
+votes: Doctrine\ORM\PersistentCollection {#2940 …}
+reports: Doctrine\ORM\PersistentCollection {#2942 …}
+favourites: Doctrine\ORM\PersistentCollection {#2944 …}
+notifications: Doctrine\ORM\PersistentCollection {#2946 …}
+badges: Doctrine\ORM\PersistentCollection {#2948 …}
+children: [
App\Entity\EntryComment {#2322}
]
-id: 26231
-titleTs: "'callabl':6 'flatpak':5 'inkscap':2,11 'instal':3 'make':1 'termin':9"
-bodyTs: "'abl':45 'best':54 'call':8,26,47 'convers':14 'flatpak':22,36 'go':57 'inkscap':9,27,50 'instal':19 'mean':24 'need':40 'org.inkscape.inkscape':38 'packag':6,42 'part':11 'process':15 'python':5 'python-packag':4 'rather':35 'run':37 'termin':33 'way':55 'work':30"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1704115924
+visibility: "visible "
+apId: "https://lemmy.ml/post/9945157"
+editedAt: null
+createdAt: DateTimeImmutable @1704029524 {#2918
date: 2023-12-31 14:32:04.0 +01:00
}
+__isInitialized__: true
…2
}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: null
+root: null
+body: """
You can do an alias for the shell you use or make a symlink to /usr/local/bin/ for the entire system.\n
\n
There are importany reasons why this is not the default, but you can do it as long as you are away you have done it. Like when programs installed via package manager and flatpak starts conflicting, you’ll know why.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 4
+score: 0
+lastActive: DateTime @1704078230 {#2320
date: 2024-01-01 04:03:50.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@cyberwolfie@lemmy.ml"
]
+children: Doctrine\ORM\PersistentCollection {#2312 …}
+nested: Doctrine\ORM\PersistentCollection {#2307 …}
+votes: Doctrine\ORM\PersistentCollection {#2308 …}
+reports: Doctrine\ORM\PersistentCollection {#2304 …}
+favourites: Doctrine\ORM\PersistentCollection {#2319 …}
+notifications: Doctrine\ORM\PersistentCollection {#2318 …}
-id: 269093
-bodyTs: "'/usr/local/bin':16 'alia':5 'away':41 'conflict':56 'default':30 'done':44 'entir':19 'flatpak':54 'importani':23 'instal':49 'know':59 'like':46 'll':58 'long':37 'make':12 'manag':52 'packag':51 'program':48 'reason':24 'shell':8 'start':55 'symlink':14 'system':20 'use':10 'via':50"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/6040952"
+editedAt: null
+createdAt: DateTimeImmutable @1704078230 {#2315
date: 2024-01-01 04:03:50.0 +01:00
}
+"title": 269093
} |
|
Show voter details
|
96 |
DENIED
|
moderate
|
App\Entity\EntryComment {#2322
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2321
+user: Proxies\__CG__\App\Entity\User {#2894 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+domain: Proxies\__CG__\App\Entity\Domain {#1647 …}
+slug: "Make-Inkscape-installed-through-Flatpak-callable-in-the-terminal-as"
+title: "Make Inkscape installed through Flatpak callable in the terminal as 'inkscape'?"
+url: null
+body: """
I have a Python-package that calls Inkscape as part of a conversion process. I have it installed, but through Flatpak. This means that calling `inkscape` does not work in the terminal, but rather `flatpak run org.inkscape.Inkscape`. I need the package to be able to call it as `inkscape`.\n
\n
What is the best way to go about this?
"""
+type: "article"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 24
+favouriteCount: 61
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1710594812 {#2932
date: 2024-03-16 14:13:32.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#2937 …}
+votes: Doctrine\ORM\PersistentCollection {#2940 …}
+reports: Doctrine\ORM\PersistentCollection {#2942 …}
+favourites: Doctrine\ORM\PersistentCollection {#2944 …}
+notifications: Doctrine\ORM\PersistentCollection {#2946 …}
+badges: Doctrine\ORM\PersistentCollection {#2948 …}
+children: [
App\Entity\EntryComment {#2322}
]
-id: 26231
-titleTs: "'callabl':6 'flatpak':5 'inkscap':2,11 'instal':3 'make':1 'termin':9"
-bodyTs: "'abl':45 'best':54 'call':8,26,47 'convers':14 'flatpak':22,36 'go':57 'inkscap':9,27,50 'instal':19 'mean':24 'need':40 'org.inkscape.inkscape':38 'packag':6,42 'part':11 'process':15 'python':5 'python-packag':4 'rather':35 'run':37 'termin':33 'way':55 'work':30"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1704115924
+visibility: "visible "
+apId: "https://lemmy.ml/post/9945157"
+editedAt: null
+createdAt: DateTimeImmutable @1704029524 {#2918
date: 2023-12-31 14:32:04.0 +01:00
}
+__isInitialized__: true
…2
}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: null
+root: null
+body: """
You can do an alias for the shell you use or make a symlink to /usr/local/bin/ for the entire system.\n
\n
There are importany reasons why this is not the default, but you can do it as long as you are away you have done it. Like when programs installed via package manager and flatpak starts conflicting, you’ll know why.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 4
+score: 0
+lastActive: DateTime @1704078230 {#2320
date: 2024-01-01 04:03:50.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@cyberwolfie@lemmy.ml"
]
+children: Doctrine\ORM\PersistentCollection {#2312 …}
+nested: Doctrine\ORM\PersistentCollection {#2307 …}
+votes: Doctrine\ORM\PersistentCollection {#2308 …}
+reports: Doctrine\ORM\PersistentCollection {#2304 …}
+favourites: Doctrine\ORM\PersistentCollection {#2319 …}
+notifications: Doctrine\ORM\PersistentCollection {#2318 …}
-id: 269093
-bodyTs: "'/usr/local/bin':16 'alia':5 'away':41 'conflict':56 'default':30 'done':44 'entir':19 'flatpak':54 'importani':23 'instal':49 'know':59 'like':46 'll':58 'long':37 'make':12 'manag':52 'packag':51 'program':48 'reason':24 'shell':8 'start':55 'symlink':14 'system':20 'use':10 'via':50"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/6040952"
+editedAt: null
+createdAt: DateTimeImmutable @1704078230 {#2315
date: 2024-01-01 04:03:50.0 +01:00
}
+"title": 269093
} |
|
Show voter details
|
97 |
DENIED
|
ROLE_USER
|
null |
|
Show voter details
|
98 |
DENIED
|
moderate
|
App\Entity\Entry {#1435
+user: App\Entity\User {#260 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+domain: Proxies\__CG__\App\Entity\Domain {#1647 …}
+slug: "Looking-for-a-WYSIWYG-note-taking-app-that-is-not"
+title: "Looking for a WYSIWYG note taking app that is not Electron."
+url: null
+body: "Like in the title. Some way of sync to Android would be nice."
+type: "article"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 2
+favouriteCount: 8
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1710468370 {#1466
date: 2024-03-15 03:06:10.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#1645 …}
+votes: Doctrine\ORM\PersistentCollection {#1641 …}
+reports: Doctrine\ORM\PersistentCollection {#1675 …}
+favourites: Doctrine\ORM\PersistentCollection {#1583 …}
+notifications: Doctrine\ORM\PersistentCollection {#1589 …}
+badges: Doctrine\ORM\PersistentCollection {#1585 …}
+children: []
-id: 24324
-titleTs: "'app':7 'electron':11 'look':1 'note':5 'take':6 'wysiwyg':4"
-bodyTs: "'android':10 'like':1 'nice':13 'sync':8 'titl':4 'way':6 'would':11"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1703284367
+visibility: "visible "
+apId: "https://discuss.tchncs.de/post/8146552"
+editedAt: null
+createdAt: DateTimeImmutable @1703253367 {#1638
date: 2023-12-22 14:56:07.0 +01:00
}
} |
|
Show voter details
|
99 |
DENIED
|
edit
|
App\Entity\Entry {#1435
+user: App\Entity\User {#260 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+domain: Proxies\__CG__\App\Entity\Domain {#1647 …}
+slug: "Looking-for-a-WYSIWYG-note-taking-app-that-is-not"
+title: "Looking for a WYSIWYG note taking app that is not Electron."
+url: null
+body: "Like in the title. Some way of sync to Android would be nice."
+type: "article"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 2
+favouriteCount: 8
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1710468370 {#1466
date: 2024-03-15 03:06:10.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#1645 …}
+votes: Doctrine\ORM\PersistentCollection {#1641 …}
+reports: Doctrine\ORM\PersistentCollection {#1675 …}
+favourites: Doctrine\ORM\PersistentCollection {#1583 …}
+notifications: Doctrine\ORM\PersistentCollection {#1589 …}
+badges: Doctrine\ORM\PersistentCollection {#1585 …}
+children: []
-id: 24324
-titleTs: "'app':7 'electron':11 'look':1 'note':5 'take':6 'wysiwyg':4"
-bodyTs: "'android':10 'like':1 'nice':13 'sync':8 'titl':4 'way':6 'would':11"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1703284367
+visibility: "visible "
+apId: "https://discuss.tchncs.de/post/8146552"
+editedAt: null
+createdAt: DateTimeImmutable @1703253367 {#1638
date: 2023-12-22 14:56:07.0 +01:00
}
} |
|
Show voter details
|
100 |
DENIED
|
moderate
|
App\Entity\Entry {#1435
+user: App\Entity\User {#260 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+domain: Proxies\__CG__\App\Entity\Domain {#1647 …}
+slug: "Looking-for-a-WYSIWYG-note-taking-app-that-is-not"
+title: "Looking for a WYSIWYG note taking app that is not Electron."
+url: null
+body: "Like in the title. Some way of sync to Android would be nice."
+type: "article"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 2
+favouriteCount: 8
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1710468370 {#1466
date: 2024-03-15 03:06:10.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#1645 …}
+votes: Doctrine\ORM\PersistentCollection {#1641 …}
+reports: Doctrine\ORM\PersistentCollection {#1675 …}
+favourites: Doctrine\ORM\PersistentCollection {#1583 …}
+notifications: Doctrine\ORM\PersistentCollection {#1589 …}
+badges: Doctrine\ORM\PersistentCollection {#1585 …}
+children: []
-id: 24324
-titleTs: "'app':7 'electron':11 'look':1 'note':5 'take':6 'wysiwyg':4"
-bodyTs: "'android':10 'like':1 'nice':13 'sync':8 'titl':4 'way':6 'would':11"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1703284367
+visibility: "visible "
+apId: "https://discuss.tchncs.de/post/8146552"
+editedAt: null
+createdAt: DateTimeImmutable @1703253367 {#1638
date: 2023-12-22 14:56:07.0 +01:00
}
} |
|
Show voter details
|
101 |
DENIED
|
ROLE_USER
|
null |
|
Show voter details
|
102 |
DENIED
|
moderate
|
App\Entity\EntryComment {#2128
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2127 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2126 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2126 …}
+body: """
The amount of help on forums and chats says otherwise.\n
\n
How they could help with this? Oh, I paid some company for approval to use their software I don’t have rights to change or use how I want, can you guys somehow make it work they way we want? I know the licence makes it illegal, but why aren’t *you* guys doing it?
"""
+lang: "en"
+isAdult: false
+favouriteCount: 3
+score: 0
+lastActive: DateTime @1703592544 {#2162
date: 2023-12-26 13:09:04.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Dalek@hexbear.net"
"@Grownbravy@hexbear.net"
]
+children: Doctrine\ORM\PersistentCollection {#2043 …}
+nested: Doctrine\ORM\PersistentCollection {#2215 …}
+votes: Doctrine\ORM\PersistentCollection {#2198 …}
+reports: Doctrine\ORM\PersistentCollection {#2227 …}
+favourites: Doctrine\ORM\PersistentCollection {#2214 …}
+notifications: Doctrine\ORM\PersistentCollection {#2225 …}
-id: 253400
-bodyTs: "'amount':2 'approv':23 'aren':60 'chang':34 'chat':8 'compani':21 'could':13 'forum':6 'guy':42,63 'help':4,14 'illeg':57 'know':52 'licenc':54 'make':44,55 'oh':17 'otherwis':10 'paid':19 'right':32 'say':9 'softwar':27 'somehow':43 'use':25,36 'want':39,50 'way':48 'work':46"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5942338"
+editedAt: null
+createdAt: DateTimeImmutable @1703592544 {#2044
date: 2023-12-26 13:09:04.0 +01:00
}
+"title": 253400
} |
|
Show voter details
|
103 |
DENIED
|
edit
|
App\Entity\EntryComment {#2128
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2127 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2126 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2126 …}
+body: """
The amount of help on forums and chats says otherwise.\n
\n
How they could help with this? Oh, I paid some company for approval to use their software I don’t have rights to change or use how I want, can you guys somehow make it work they way we want? I know the licence makes it illegal, but why aren’t *you* guys doing it?
"""
+lang: "en"
+isAdult: false
+favouriteCount: 3
+score: 0
+lastActive: DateTime @1703592544 {#2162
date: 2023-12-26 13:09:04.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Dalek@hexbear.net"
"@Grownbravy@hexbear.net"
]
+children: Doctrine\ORM\PersistentCollection {#2043 …}
+nested: Doctrine\ORM\PersistentCollection {#2215 …}
+votes: Doctrine\ORM\PersistentCollection {#2198 …}
+reports: Doctrine\ORM\PersistentCollection {#2227 …}
+favourites: Doctrine\ORM\PersistentCollection {#2214 …}
+notifications: Doctrine\ORM\PersistentCollection {#2225 …}
-id: 253400
-bodyTs: "'amount':2 'approv':23 'aren':60 'chang':34 'chat':8 'compani':21 'could':13 'forum':6 'guy':42,63 'help':4,14 'illeg':57 'know':52 'licenc':54 'make':44,55 'oh':17 'otherwis':10 'paid':19 'right':32 'say':9 'softwar':27 'somehow':43 'use':25,36 'want':39,50 'way':48 'work':46"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5942338"
+editedAt: null
+createdAt: DateTimeImmutable @1703592544 {#2044
date: 2023-12-26 13:09:04.0 +01:00
}
+"title": 253400
} |
|
Show voter details
|
104 |
DENIED
|
moderate
|
App\Entity\EntryComment {#2128
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2127 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2126 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2126 …}
+body: """
The amount of help on forums and chats says otherwise.\n
\n
How they could help with this? Oh, I paid some company for approval to use their software I don’t have rights to change or use how I want, can you guys somehow make it work they way we want? I know the licence makes it illegal, but why aren’t *you* guys doing it?
"""
+lang: "en"
+isAdult: false
+favouriteCount: 3
+score: 0
+lastActive: DateTime @1703592544 {#2162
date: 2023-12-26 13:09:04.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Dalek@hexbear.net"
"@Grownbravy@hexbear.net"
]
+children: Doctrine\ORM\PersistentCollection {#2043 …}
+nested: Doctrine\ORM\PersistentCollection {#2215 …}
+votes: Doctrine\ORM\PersistentCollection {#2198 …}
+reports: Doctrine\ORM\PersistentCollection {#2227 …}
+favourites: Doctrine\ORM\PersistentCollection {#2214 …}
+notifications: Doctrine\ORM\PersistentCollection {#2225 …}
-id: 253400
-bodyTs: "'amount':2 'approv':23 'aren':60 'chang':34 'chat':8 'compani':21 'could':13 'forum':6 'guy':42,63 'help':4,14 'illeg':57 'know':52 'licenc':54 'make':44,55 'oh':17 'otherwis':10 'paid':19 'right':32 'say':9 'softwar':27 'somehow':43 'use':25,36 'want':39,50 'way':48 'work':46"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5942338"
+editedAt: null
+createdAt: DateTimeImmutable @1703592544 {#2044
date: 2023-12-26 13:09:04.0 +01:00
}
+"title": 253400
} |
|
Show voter details
|
105 |
DENIED
|
ROLE_USER
|
null |
|
Show voter details
|
106 |
DENIED
|
moderate
|
Proxies\__CG__\App\Entity\Entry {#2097
+user: Proxies\__CG__\App\Entity\User {#2953 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: Proxies\__CG__\App\Entity\Image {#2996 …}
+domain: Proxies\__CG__\App\Entity\Domain {#2998 …}
+slug: "Poll-GUI-framework-for-widgets-apps-in-Wayland"
+title: "Poll: GUI framework for widgets/apps in Wayland"
+url: "https://lemmy.dbzer0.com/pictrs/image/07d3db42-1030-4eff-ae3f-3ff337f7ed23.png"
+body: """
Hello everyone! I’ve been playing around with Wayland for a bit and was hoping to start learning some more about it. For example, I would be interested in making a lock screen, similar to Swaylock, as a toy project.\n
\n
What GUI toolkit would you use to develop apps on Wayland? I’ve added a little poll below with some of the popular choices I’ve seen thrown around. Feel free to add your own suggestions and maybe leave a comment as to why you’d use that!\n
\n
[Link to poll](https://strawpoll.com/ajnEO33mBZW)
"""
+type: "image"
+lang: "en"
+isOc: false
+hasEmbed: true
+commentCount: 12
+favouriteCount: 162
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1703175584 {#2991
date: 2023-12-21 17:19:44.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#2999 …}
+votes: Doctrine\ORM\PersistentCollection {#3001 …}
+reports: Doctrine\ORM\PersistentCollection {#3003 …}
+favourites: Doctrine\ORM\PersistentCollection {#3005 …}
+notifications: Doctrine\ORM\PersistentCollection {#3007 …}
+badges: Doctrine\ORM\PersistentCollection {#3009 …}
+children: [
App\Entity\EntryComment {#2076
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2097 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2083 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2083 …}
+body: "FIREFOX!"
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703102298 {#2084
date: 2023-12-20 20:58:18.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@andrew0@lemmy.dbzer0.com"
"@jsh@sh.itjust.works"
]
+children: Doctrine\ORM\PersistentCollection {#2082 …}
+nested: Doctrine\ORM\PersistentCollection {#2096 …}
+votes: Doctrine\ORM\PersistentCollection {#2081 …}
+reports: Doctrine\ORM\PersistentCollection {#2098 …}
+favourites: Doctrine\ORM\PersistentCollection {#2080 …}
+notifications: Doctrine\ORM\PersistentCollection {#2089 …}
-id: 240062
-bodyTs: "'firefox':1"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5832272"
+editedAt: null
+createdAt: DateTimeImmutable @1703102298 {#2078
date: 2023-12-20 20:58:18.0 +01:00
}
+"title": 240062
}
]
-id: 22844
-titleTs: "'framework':3 'gui':2 'poll':1 'wayland':7 'widgets/apps':5"
-bodyTs: "'/ajneo33mbzw)':94 'ad':54 'add':73 'app':49 'around':7,69 'bit':12 'choic':64 'comment':81 'd':86 'develop':48 'everyon':2 'exampl':24 'feel':70 'free':71 'gui':42 'hello':1 'hope':15 'interest':28 'learn':18 'leav':79 'link':89 'littl':56 'lock':32 'make':30 'mayb':78 'play':6 'poll':57,91 'popular':63 'project':40 'screen':33 'seen':67 'similar':34 'start':17 'strawpoll.com':93 'strawpoll.com/ajneo33mbzw)':92 'suggest':76 'swaylock':36 'thrown':68 'toolkit':43 'toy':39 'use':46,87 've':4,53,66 'wayland':9,51 'would':26,44"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1702913731
+visibility: "visible "
+apId: "https://lemmy.dbzer0.com/post/10567578"
+editedAt: null
+createdAt: DateTimeImmutable @1702827331 {#2976
date: 2023-12-17 16:35:31.0 +01:00
}
+__isInitialized__: true
…2
} |
|
Show voter details
|
107 |
DENIED
|
edit
|
Proxies\__CG__\App\Entity\Entry {#2097
+user: Proxies\__CG__\App\Entity\User {#2953 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: Proxies\__CG__\App\Entity\Image {#2996 …}
+domain: Proxies\__CG__\App\Entity\Domain {#2998 …}
+slug: "Poll-GUI-framework-for-widgets-apps-in-Wayland"
+title: "Poll: GUI framework for widgets/apps in Wayland"
+url: "https://lemmy.dbzer0.com/pictrs/image/07d3db42-1030-4eff-ae3f-3ff337f7ed23.png"
+body: """
Hello everyone! I’ve been playing around with Wayland for a bit and was hoping to start learning some more about it. For example, I would be interested in making a lock screen, similar to Swaylock, as a toy project.\n
\n
What GUI toolkit would you use to develop apps on Wayland? I’ve added a little poll below with some of the popular choices I’ve seen thrown around. Feel free to add your own suggestions and maybe leave a comment as to why you’d use that!\n
\n
[Link to poll](https://strawpoll.com/ajnEO33mBZW)
"""
+type: "image"
+lang: "en"
+isOc: false
+hasEmbed: true
+commentCount: 12
+favouriteCount: 162
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1703175584 {#2991
date: 2023-12-21 17:19:44.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#2999 …}
+votes: Doctrine\ORM\PersistentCollection {#3001 …}
+reports: Doctrine\ORM\PersistentCollection {#3003 …}
+favourites: Doctrine\ORM\PersistentCollection {#3005 …}
+notifications: Doctrine\ORM\PersistentCollection {#3007 …}
+badges: Doctrine\ORM\PersistentCollection {#3009 …}
+children: [
App\Entity\EntryComment {#2076
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2097 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2083 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2083 …}
+body: "FIREFOX!"
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703102298 {#2084
date: 2023-12-20 20:58:18.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@andrew0@lemmy.dbzer0.com"
"@jsh@sh.itjust.works"
]
+children: Doctrine\ORM\PersistentCollection {#2082 …}
+nested: Doctrine\ORM\PersistentCollection {#2096 …}
+votes: Doctrine\ORM\PersistentCollection {#2081 …}
+reports: Doctrine\ORM\PersistentCollection {#2098 …}
+favourites: Doctrine\ORM\PersistentCollection {#2080 …}
+notifications: Doctrine\ORM\PersistentCollection {#2089 …}
-id: 240062
-bodyTs: "'firefox':1"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5832272"
+editedAt: null
+createdAt: DateTimeImmutable @1703102298 {#2078
date: 2023-12-20 20:58:18.0 +01:00
}
+"title": 240062
}
]
-id: 22844
-titleTs: "'framework':3 'gui':2 'poll':1 'wayland':7 'widgets/apps':5"
-bodyTs: "'/ajneo33mbzw)':94 'ad':54 'add':73 'app':49 'around':7,69 'bit':12 'choic':64 'comment':81 'd':86 'develop':48 'everyon':2 'exampl':24 'feel':70 'free':71 'gui':42 'hello':1 'hope':15 'interest':28 'learn':18 'leav':79 'link':89 'littl':56 'lock':32 'make':30 'mayb':78 'play':6 'poll':57,91 'popular':63 'project':40 'screen':33 'seen':67 'similar':34 'start':17 'strawpoll.com':93 'strawpoll.com/ajneo33mbzw)':92 'suggest':76 'swaylock':36 'thrown':68 'toolkit':43 'toy':39 'use':46,87 've':4,53,66 'wayland':9,51 'would':26,44"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1702913731
+visibility: "visible "
+apId: "https://lemmy.dbzer0.com/post/10567578"
+editedAt: null
+createdAt: DateTimeImmutable @1702827331 {#2976
date: 2023-12-17 16:35:31.0 +01:00
}
+__isInitialized__: true
…2
} |
|
Show voter details
|
108 |
DENIED
|
moderate
|
Proxies\__CG__\App\Entity\Entry {#2097
+user: Proxies\__CG__\App\Entity\User {#2953 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: Proxies\__CG__\App\Entity\Image {#2996 …}
+domain: Proxies\__CG__\App\Entity\Domain {#2998 …}
+slug: "Poll-GUI-framework-for-widgets-apps-in-Wayland"
+title: "Poll: GUI framework for widgets/apps in Wayland"
+url: "https://lemmy.dbzer0.com/pictrs/image/07d3db42-1030-4eff-ae3f-3ff337f7ed23.png"
+body: """
Hello everyone! I’ve been playing around with Wayland for a bit and was hoping to start learning some more about it. For example, I would be interested in making a lock screen, similar to Swaylock, as a toy project.\n
\n
What GUI toolkit would you use to develop apps on Wayland? I’ve added a little poll below with some of the popular choices I’ve seen thrown around. Feel free to add your own suggestions and maybe leave a comment as to why you’d use that!\n
\n
[Link to poll](https://strawpoll.com/ajnEO33mBZW)
"""
+type: "image"
+lang: "en"
+isOc: false
+hasEmbed: true
+commentCount: 12
+favouriteCount: 162
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1703175584 {#2991
date: 2023-12-21 17:19:44.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#2999 …}
+votes: Doctrine\ORM\PersistentCollection {#3001 …}
+reports: Doctrine\ORM\PersistentCollection {#3003 …}
+favourites: Doctrine\ORM\PersistentCollection {#3005 …}
+notifications: Doctrine\ORM\PersistentCollection {#3007 …}
+badges: Doctrine\ORM\PersistentCollection {#3009 …}
+children: [
App\Entity\EntryComment {#2076
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2097 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2083 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2083 …}
+body: "FIREFOX!"
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703102298 {#2084
date: 2023-12-20 20:58:18.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@andrew0@lemmy.dbzer0.com"
"@jsh@sh.itjust.works"
]
+children: Doctrine\ORM\PersistentCollection {#2082 …}
+nested: Doctrine\ORM\PersistentCollection {#2096 …}
+votes: Doctrine\ORM\PersistentCollection {#2081 …}
+reports: Doctrine\ORM\PersistentCollection {#2098 …}
+favourites: Doctrine\ORM\PersistentCollection {#2080 …}
+notifications: Doctrine\ORM\PersistentCollection {#2089 …}
-id: 240062
-bodyTs: "'firefox':1"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5832272"
+editedAt: null
+createdAt: DateTimeImmutable @1703102298 {#2078
date: 2023-12-20 20:58:18.0 +01:00
}
+"title": 240062
}
]
-id: 22844
-titleTs: "'framework':3 'gui':2 'poll':1 'wayland':7 'widgets/apps':5"
-bodyTs: "'/ajneo33mbzw)':94 'ad':54 'add':73 'app':49 'around':7,69 'bit':12 'choic':64 'comment':81 'd':86 'develop':48 'everyon':2 'exampl':24 'feel':70 'free':71 'gui':42 'hello':1 'hope':15 'interest':28 'learn':18 'leav':79 'link':89 'littl':56 'lock':32 'make':30 'mayb':78 'play':6 'poll':57,91 'popular':63 'project':40 'screen':33 'seen':67 'similar':34 'start':17 'strawpoll.com':93 'strawpoll.com/ajneo33mbzw)':92 'suggest':76 'swaylock':36 'thrown':68 'toolkit':43 'toy':39 'use':46,87 've':4,53,66 'wayland':9,51 'would':26,44"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1702913731
+visibility: "visible "
+apId: "https://lemmy.dbzer0.com/post/10567578"
+editedAt: null
+createdAt: DateTimeImmutable @1702827331 {#2976
date: 2023-12-17 16:35:31.0 +01:00
}
+__isInitialized__: true
…2
} |
|
Show voter details
|
109 |
DENIED
|
ROLE_USER
|
null |
|
Show voter details
|
110 |
DENIED
|
moderate
|
App\Entity\EntryComment {#2076
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2097
+user: Proxies\__CG__\App\Entity\User {#2953 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: Proxies\__CG__\App\Entity\Image {#2996 …}
+domain: Proxies\__CG__\App\Entity\Domain {#2998 …}
+slug: "Poll-GUI-framework-for-widgets-apps-in-Wayland"
+title: "Poll: GUI framework for widgets/apps in Wayland"
+url: "https://lemmy.dbzer0.com/pictrs/image/07d3db42-1030-4eff-ae3f-3ff337f7ed23.png"
+body: """
Hello everyone! I’ve been playing around with Wayland for a bit and was hoping to start learning some more about it. For example, I would be interested in making a lock screen, similar to Swaylock, as a toy project.\n
\n
What GUI toolkit would you use to develop apps on Wayland? I’ve added a little poll below with some of the popular choices I’ve seen thrown around. Feel free to add your own suggestions and maybe leave a comment as to why you’d use that!\n
\n
[Link to poll](https://strawpoll.com/ajnEO33mBZW)
"""
+type: "image"
+lang: "en"
+isOc: false
+hasEmbed: true
+commentCount: 12
+favouriteCount: 162
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1703175584 {#2991
date: 2023-12-21 17:19:44.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#2999 …}
+votes: Doctrine\ORM\PersistentCollection {#3001 …}
+reports: Doctrine\ORM\PersistentCollection {#3003 …}
+favourites: Doctrine\ORM\PersistentCollection {#3005 …}
+notifications: Doctrine\ORM\PersistentCollection {#3007 …}
+badges: Doctrine\ORM\PersistentCollection {#3009 …}
+children: [
App\Entity\EntryComment {#2076}
]
-id: 22844
-titleTs: "'framework':3 'gui':2 'poll':1 'wayland':7 'widgets/apps':5"
-bodyTs: "'/ajneo33mbzw)':94 'ad':54 'add':73 'app':49 'around':7,69 'bit':12 'choic':64 'comment':81 'd':86 'develop':48 'everyon':2 'exampl':24 'feel':70 'free':71 'gui':42 'hello':1 'hope':15 'interest':28 'learn':18 'leav':79 'link':89 'littl':56 'lock':32 'make':30 'mayb':78 'play':6 'poll':57,91 'popular':63 'project':40 'screen':33 'seen':67 'similar':34 'start':17 'strawpoll.com':93 'strawpoll.com/ajneo33mbzw)':92 'suggest':76 'swaylock':36 'thrown':68 'toolkit':43 'toy':39 'use':46,87 've':4,53,66 'wayland':9,51 'would':26,44"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1702913731
+visibility: "visible "
+apId: "https://lemmy.dbzer0.com/post/10567578"
+editedAt: null
+createdAt: DateTimeImmutable @1702827331 {#2976
date: 2023-12-17 16:35:31.0 +01:00
}
+__isInitialized__: true
…2
}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2083 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2083 …}
+body: "FIREFOX!"
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703102298 {#2084
date: 2023-12-20 20:58:18.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@andrew0@lemmy.dbzer0.com"
"@jsh@sh.itjust.works"
]
+children: Doctrine\ORM\PersistentCollection {#2082 …}
+nested: Doctrine\ORM\PersistentCollection {#2096 …}
+votes: Doctrine\ORM\PersistentCollection {#2081 …}
+reports: Doctrine\ORM\PersistentCollection {#2098 …}
+favourites: Doctrine\ORM\PersistentCollection {#2080 …}
+notifications: Doctrine\ORM\PersistentCollection {#2089 …}
-id: 240062
-bodyTs: "'firefox':1"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5832272"
+editedAt: null
+createdAt: DateTimeImmutable @1703102298 {#2078
date: 2023-12-20 20:58:18.0 +01:00
}
+"title": 240062
} |
|
Show voter details
|
111 |
DENIED
|
edit
|
App\Entity\EntryComment {#2076
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2097
+user: Proxies\__CG__\App\Entity\User {#2953 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: Proxies\__CG__\App\Entity\Image {#2996 …}
+domain: Proxies\__CG__\App\Entity\Domain {#2998 …}
+slug: "Poll-GUI-framework-for-widgets-apps-in-Wayland"
+title: "Poll: GUI framework for widgets/apps in Wayland"
+url: "https://lemmy.dbzer0.com/pictrs/image/07d3db42-1030-4eff-ae3f-3ff337f7ed23.png"
+body: """
Hello everyone! I’ve been playing around with Wayland for a bit and was hoping to start learning some more about it. For example, I would be interested in making a lock screen, similar to Swaylock, as a toy project.\n
\n
What GUI toolkit would you use to develop apps on Wayland? I’ve added a little poll below with some of the popular choices I’ve seen thrown around. Feel free to add your own suggestions and maybe leave a comment as to why you’d use that!\n
\n
[Link to poll](https://strawpoll.com/ajnEO33mBZW)
"""
+type: "image"
+lang: "en"
+isOc: false
+hasEmbed: true
+commentCount: 12
+favouriteCount: 162
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1703175584 {#2991
date: 2023-12-21 17:19:44.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#2999 …}
+votes: Doctrine\ORM\PersistentCollection {#3001 …}
+reports: Doctrine\ORM\PersistentCollection {#3003 …}
+favourites: Doctrine\ORM\PersistentCollection {#3005 …}
+notifications: Doctrine\ORM\PersistentCollection {#3007 …}
+badges: Doctrine\ORM\PersistentCollection {#3009 …}
+children: [
App\Entity\EntryComment {#2076}
]
-id: 22844
-titleTs: "'framework':3 'gui':2 'poll':1 'wayland':7 'widgets/apps':5"
-bodyTs: "'/ajneo33mbzw)':94 'ad':54 'add':73 'app':49 'around':7,69 'bit':12 'choic':64 'comment':81 'd':86 'develop':48 'everyon':2 'exampl':24 'feel':70 'free':71 'gui':42 'hello':1 'hope':15 'interest':28 'learn':18 'leav':79 'link':89 'littl':56 'lock':32 'make':30 'mayb':78 'play':6 'poll':57,91 'popular':63 'project':40 'screen':33 'seen':67 'similar':34 'start':17 'strawpoll.com':93 'strawpoll.com/ajneo33mbzw)':92 'suggest':76 'swaylock':36 'thrown':68 'toolkit':43 'toy':39 'use':46,87 've':4,53,66 'wayland':9,51 'would':26,44"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1702913731
+visibility: "visible "
+apId: "https://lemmy.dbzer0.com/post/10567578"
+editedAt: null
+createdAt: DateTimeImmutable @1702827331 {#2976
date: 2023-12-17 16:35:31.0 +01:00
}
+__isInitialized__: true
…2
}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2083 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2083 …}
+body: "FIREFOX!"
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703102298 {#2084
date: 2023-12-20 20:58:18.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@andrew0@lemmy.dbzer0.com"
"@jsh@sh.itjust.works"
]
+children: Doctrine\ORM\PersistentCollection {#2082 …}
+nested: Doctrine\ORM\PersistentCollection {#2096 …}
+votes: Doctrine\ORM\PersistentCollection {#2081 …}
+reports: Doctrine\ORM\PersistentCollection {#2098 …}
+favourites: Doctrine\ORM\PersistentCollection {#2080 …}
+notifications: Doctrine\ORM\PersistentCollection {#2089 …}
-id: 240062
-bodyTs: "'firefox':1"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5832272"
+editedAt: null
+createdAt: DateTimeImmutable @1703102298 {#2078
date: 2023-12-20 20:58:18.0 +01:00
}
+"title": 240062
} |
|
Show voter details
|
112 |
DENIED
|
moderate
|
App\Entity\EntryComment {#2076
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2097
+user: Proxies\__CG__\App\Entity\User {#2953 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: Proxies\__CG__\App\Entity\Image {#2996 …}
+domain: Proxies\__CG__\App\Entity\Domain {#2998 …}
+slug: "Poll-GUI-framework-for-widgets-apps-in-Wayland"
+title: "Poll: GUI framework for widgets/apps in Wayland"
+url: "https://lemmy.dbzer0.com/pictrs/image/07d3db42-1030-4eff-ae3f-3ff337f7ed23.png"
+body: """
Hello everyone! I’ve been playing around with Wayland for a bit and was hoping to start learning some more about it. For example, I would be interested in making a lock screen, similar to Swaylock, as a toy project.\n
\n
What GUI toolkit would you use to develop apps on Wayland? I’ve added a little poll below with some of the popular choices I’ve seen thrown around. Feel free to add your own suggestions and maybe leave a comment as to why you’d use that!\n
\n
[Link to poll](https://strawpoll.com/ajnEO33mBZW)
"""
+type: "image"
+lang: "en"
+isOc: false
+hasEmbed: true
+commentCount: 12
+favouriteCount: 162
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1703175584 {#2991
date: 2023-12-21 17:19:44.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#2999 …}
+votes: Doctrine\ORM\PersistentCollection {#3001 …}
+reports: Doctrine\ORM\PersistentCollection {#3003 …}
+favourites: Doctrine\ORM\PersistentCollection {#3005 …}
+notifications: Doctrine\ORM\PersistentCollection {#3007 …}
+badges: Doctrine\ORM\PersistentCollection {#3009 …}
+children: [
App\Entity\EntryComment {#2076}
]
-id: 22844
-titleTs: "'framework':3 'gui':2 'poll':1 'wayland':7 'widgets/apps':5"
-bodyTs: "'/ajneo33mbzw)':94 'ad':54 'add':73 'app':49 'around':7,69 'bit':12 'choic':64 'comment':81 'd':86 'develop':48 'everyon':2 'exampl':24 'feel':70 'free':71 'gui':42 'hello':1 'hope':15 'interest':28 'learn':18 'leav':79 'link':89 'littl':56 'lock':32 'make':30 'mayb':78 'play':6 'poll':57,91 'popular':63 'project':40 'screen':33 'seen':67 'similar':34 'start':17 'strawpoll.com':93 'strawpoll.com/ajneo33mbzw)':92 'suggest':76 'swaylock':36 'thrown':68 'toolkit':43 'toy':39 'use':46,87 've':4,53,66 'wayland':9,51 'would':26,44"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1702913731
+visibility: "visible "
+apId: "https://lemmy.dbzer0.com/post/10567578"
+editedAt: null
+createdAt: DateTimeImmutable @1702827331 {#2976
date: 2023-12-17 16:35:31.0 +01:00
}
+__isInitialized__: true
…2
}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2083 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2083 …}
+body: "FIREFOX!"
+lang: "en"
+isAdult: false
+favouriteCount: 0
+score: 0
+lastActive: DateTime @1703102298 {#2084
date: 2023-12-20 20:58:18.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@andrew0@lemmy.dbzer0.com"
"@jsh@sh.itjust.works"
]
+children: Doctrine\ORM\PersistentCollection {#2082 …}
+nested: Doctrine\ORM\PersistentCollection {#2096 …}
+votes: Doctrine\ORM\PersistentCollection {#2081 …}
+reports: Doctrine\ORM\PersistentCollection {#2098 …}
+favourites: Doctrine\ORM\PersistentCollection {#2080 …}
+notifications: Doctrine\ORM\PersistentCollection {#2089 …}
-id: 240062
-bodyTs: "'firefox':1"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5832272"
+editedAt: null
+createdAt: DateTimeImmutable @1703102298 {#2078
date: 2023-12-20 20:58:18.0 +01:00
}
+"title": 240062
} |
|
Show voter details
|
113 |
DENIED
|
ROLE_USER
|
null |
|
Show voter details
|
114 |
DENIED
|
moderate
|
Proxies\__CG__\App\Entity\Entry {#1361
+user: Proxies\__CG__\App\Entity\User {#2973 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: Proxies\__CG__\App\Entity\Image {#3016 …}
+domain: Proxies\__CG__\App\Entity\Domain {#3018 …}
+slug: "openSUSE-Logo-Contest-Concludes-With-Winners-Selected"
+title: "openSUSE Logo Contest Concludes With Winners Selected"
+url: "https://www.phoronix.com/news/openSUSE-New-Logo"
+body: "> For those that were interested in the openSUSE logo contest, the voting wrapped up on Tuesday and the results of this logo contest for new openSUSE branding have been selected."
+type: "link"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 47
+favouriteCount: 191
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1702797759 {#3011
date: 2023-12-17 08:22:39.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#3019 …}
+votes: Doctrine\ORM\PersistentCollection {#3021 …}
+reports: Doctrine\ORM\PersistentCollection {#3023 …}
+favourites: Doctrine\ORM\PersistentCollection {#3025 …}
+notifications: Doctrine\ORM\PersistentCollection {#3027 …}
+badges: Doctrine\ORM\PersistentCollection {#3029 …}
+children: [
App\Entity\EntryComment {#1363
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#1361 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: null
+root: null
+body: "I am glad logo on which we knows what animal is on it won."
+lang: "en"
+isAdult: false
+favouriteCount: 4
+score: 0
+lastActive: DateTime @1702562553 {#1401
date: 2023-12-14 15:02:33.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@pnutzh4x0r@lemmy.ndlug.org"
]
+children: Doctrine\ORM\PersistentCollection {#1362 …}
+nested: Doctrine\ORM\PersistentCollection {#2019 …}
+votes: Doctrine\ORM\PersistentCollection {#2030 …}
+reports: Doctrine\ORM\PersistentCollection {#2026 …}
+favourites: Doctrine\ORM\PersistentCollection {#2022 …}
+notifications: Doctrine\ORM\PersistentCollection {#2025 …}
-id: 221465
-bodyTs: "'anim':10 'glad':3 'know':8 'logo':4 'won':14"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5705088"
+editedAt: null
+createdAt: DateTimeImmutable @1702562553 {#1404
date: 2023-12-14 15:02:33.0 +01:00
}
+"title": 221465
}
]
-id: 22173
-titleTs: "'conclud':4 'contest':3 'logo':2 'opensus':1 'select':7 'winner':6"
-bodyTs: "'brand':27 'contest':10,23 'interest':5 'logo':9,22 'new':25 'opensus':8,26 'result':19 'select':30 'tuesday':16 'vote':12 'wrap':13"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1702641281
+visibility: "visible "
+apId: "https://lemmy.ndlug.org/post/477330"
+editedAt: null
+createdAt: DateTimeImmutable @1702554881 {#2997
date: 2023-12-14 12:54:41.0 +01:00
}
+__isInitialized__: true
…2
} |
|
Show voter details
|
115 |
DENIED
|
edit
|
Proxies\__CG__\App\Entity\Entry {#1361
+user: Proxies\__CG__\App\Entity\User {#2973 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: Proxies\__CG__\App\Entity\Image {#3016 …}
+domain: Proxies\__CG__\App\Entity\Domain {#3018 …}
+slug: "openSUSE-Logo-Contest-Concludes-With-Winners-Selected"
+title: "openSUSE Logo Contest Concludes With Winners Selected"
+url: "https://www.phoronix.com/news/openSUSE-New-Logo"
+body: "> For those that were interested in the openSUSE logo contest, the voting wrapped up on Tuesday and the results of this logo contest for new openSUSE branding have been selected."
+type: "link"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 47
+favouriteCount: 191
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1702797759 {#3011
date: 2023-12-17 08:22:39.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#3019 …}
+votes: Doctrine\ORM\PersistentCollection {#3021 …}
+reports: Doctrine\ORM\PersistentCollection {#3023 …}
+favourites: Doctrine\ORM\PersistentCollection {#3025 …}
+notifications: Doctrine\ORM\PersistentCollection {#3027 …}
+badges: Doctrine\ORM\PersistentCollection {#3029 …}
+children: [
App\Entity\EntryComment {#1363
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#1361 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: null
+root: null
+body: "I am glad logo on which we knows what animal is on it won."
+lang: "en"
+isAdult: false
+favouriteCount: 4
+score: 0
+lastActive: DateTime @1702562553 {#1401
date: 2023-12-14 15:02:33.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@pnutzh4x0r@lemmy.ndlug.org"
]
+children: Doctrine\ORM\PersistentCollection {#1362 …}
+nested: Doctrine\ORM\PersistentCollection {#2019 …}
+votes: Doctrine\ORM\PersistentCollection {#2030 …}
+reports: Doctrine\ORM\PersistentCollection {#2026 …}
+favourites: Doctrine\ORM\PersistentCollection {#2022 …}
+notifications: Doctrine\ORM\PersistentCollection {#2025 …}
-id: 221465
-bodyTs: "'anim':10 'glad':3 'know':8 'logo':4 'won':14"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5705088"
+editedAt: null
+createdAt: DateTimeImmutable @1702562553 {#1404
date: 2023-12-14 15:02:33.0 +01:00
}
+"title": 221465
}
]
-id: 22173
-titleTs: "'conclud':4 'contest':3 'logo':2 'opensus':1 'select':7 'winner':6"
-bodyTs: "'brand':27 'contest':10,23 'interest':5 'logo':9,22 'new':25 'opensus':8,26 'result':19 'select':30 'tuesday':16 'vote':12 'wrap':13"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1702641281
+visibility: "visible "
+apId: "https://lemmy.ndlug.org/post/477330"
+editedAt: null
+createdAt: DateTimeImmutable @1702554881 {#2997
date: 2023-12-14 12:54:41.0 +01:00
}
+__isInitialized__: true
…2
} |
|
Show voter details
|
116 |
DENIED
|
moderate
|
Proxies\__CG__\App\Entity\Entry {#1361
+user: Proxies\__CG__\App\Entity\User {#2973 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: Proxies\__CG__\App\Entity\Image {#3016 …}
+domain: Proxies\__CG__\App\Entity\Domain {#3018 …}
+slug: "openSUSE-Logo-Contest-Concludes-With-Winners-Selected"
+title: "openSUSE Logo Contest Concludes With Winners Selected"
+url: "https://www.phoronix.com/news/openSUSE-New-Logo"
+body: "> For those that were interested in the openSUSE logo contest, the voting wrapped up on Tuesday and the results of this logo contest for new openSUSE branding have been selected."
+type: "link"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 47
+favouriteCount: 191
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1702797759 {#3011
date: 2023-12-17 08:22:39.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#3019 …}
+votes: Doctrine\ORM\PersistentCollection {#3021 …}
+reports: Doctrine\ORM\PersistentCollection {#3023 …}
+favourites: Doctrine\ORM\PersistentCollection {#3025 …}
+notifications: Doctrine\ORM\PersistentCollection {#3027 …}
+badges: Doctrine\ORM\PersistentCollection {#3029 …}
+children: [
App\Entity\EntryComment {#1363
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#1361 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: null
+root: null
+body: "I am glad logo on which we knows what animal is on it won."
+lang: "en"
+isAdult: false
+favouriteCount: 4
+score: 0
+lastActive: DateTime @1702562553 {#1401
date: 2023-12-14 15:02:33.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@pnutzh4x0r@lemmy.ndlug.org"
]
+children: Doctrine\ORM\PersistentCollection {#1362 …}
+nested: Doctrine\ORM\PersistentCollection {#2019 …}
+votes: Doctrine\ORM\PersistentCollection {#2030 …}
+reports: Doctrine\ORM\PersistentCollection {#2026 …}
+favourites: Doctrine\ORM\PersistentCollection {#2022 …}
+notifications: Doctrine\ORM\PersistentCollection {#2025 …}
-id: 221465
-bodyTs: "'anim':10 'glad':3 'know':8 'logo':4 'won':14"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5705088"
+editedAt: null
+createdAt: DateTimeImmutable @1702562553 {#1404
date: 2023-12-14 15:02:33.0 +01:00
}
+"title": 221465
}
]
-id: 22173
-titleTs: "'conclud':4 'contest':3 'logo':2 'opensus':1 'select':7 'winner':6"
-bodyTs: "'brand':27 'contest':10,23 'interest':5 'logo':9,22 'new':25 'opensus':8,26 'result':19 'select':30 'tuesday':16 'vote':12 'wrap':13"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1702641281
+visibility: "visible "
+apId: "https://lemmy.ndlug.org/post/477330"
+editedAt: null
+createdAt: DateTimeImmutable @1702554881 {#2997
date: 2023-12-14 12:54:41.0 +01:00
}
+__isInitialized__: true
…2
} |
|
Show voter details
|
117 |
DENIED
|
ROLE_USER
|
null |
|
Show voter details
|
118 |
DENIED
|
moderate
|
App\Entity\EntryComment {#1363
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#1361
+user: Proxies\__CG__\App\Entity\User {#2973 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: Proxies\__CG__\App\Entity\Image {#3016 …}
+domain: Proxies\__CG__\App\Entity\Domain {#3018 …}
+slug: "openSUSE-Logo-Contest-Concludes-With-Winners-Selected"
+title: "openSUSE Logo Contest Concludes With Winners Selected"
+url: "https://www.phoronix.com/news/openSUSE-New-Logo"
+body: "> For those that were interested in the openSUSE logo contest, the voting wrapped up on Tuesday and the results of this logo contest for new openSUSE branding have been selected."
+type: "link"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 47
+favouriteCount: 191
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1702797759 {#3011
date: 2023-12-17 08:22:39.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#3019 …}
+votes: Doctrine\ORM\PersistentCollection {#3021 …}
+reports: Doctrine\ORM\PersistentCollection {#3023 …}
+favourites: Doctrine\ORM\PersistentCollection {#3025 …}
+notifications: Doctrine\ORM\PersistentCollection {#3027 …}
+badges: Doctrine\ORM\PersistentCollection {#3029 …}
+children: [
App\Entity\EntryComment {#1363}
]
-id: 22173
-titleTs: "'conclud':4 'contest':3 'logo':2 'opensus':1 'select':7 'winner':6"
-bodyTs: "'brand':27 'contest':10,23 'interest':5 'logo':9,22 'new':25 'opensus':8,26 'result':19 'select':30 'tuesday':16 'vote':12 'wrap':13"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1702641281
+visibility: "visible "
+apId: "https://lemmy.ndlug.org/post/477330"
+editedAt: null
+createdAt: DateTimeImmutable @1702554881 {#2997
date: 2023-12-14 12:54:41.0 +01:00
}
+__isInitialized__: true
…2
}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: null
+root: null
+body: "I am glad logo on which we knows what animal is on it won."
+lang: "en"
+isAdult: false
+favouriteCount: 4
+score: 0
+lastActive: DateTime @1702562553 {#1401
date: 2023-12-14 15:02:33.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@pnutzh4x0r@lemmy.ndlug.org"
]
+children: Doctrine\ORM\PersistentCollection {#1362 …}
+nested: Doctrine\ORM\PersistentCollection {#2019 …}
+votes: Doctrine\ORM\PersistentCollection {#2030 …}
+reports: Doctrine\ORM\PersistentCollection {#2026 …}
+favourites: Doctrine\ORM\PersistentCollection {#2022 …}
+notifications: Doctrine\ORM\PersistentCollection {#2025 …}
-id: 221465
-bodyTs: "'anim':10 'glad':3 'know':8 'logo':4 'won':14"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5705088"
+editedAt: null
+createdAt: DateTimeImmutable @1702562553 {#1404
date: 2023-12-14 15:02:33.0 +01:00
}
+"title": 221465
} |
|
Show voter details
|
119 |
DENIED
|
edit
|
App\Entity\EntryComment {#1363
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#1361
+user: Proxies\__CG__\App\Entity\User {#2973 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: Proxies\__CG__\App\Entity\Image {#3016 …}
+domain: Proxies\__CG__\App\Entity\Domain {#3018 …}
+slug: "openSUSE-Logo-Contest-Concludes-With-Winners-Selected"
+title: "openSUSE Logo Contest Concludes With Winners Selected"
+url: "https://www.phoronix.com/news/openSUSE-New-Logo"
+body: "> For those that were interested in the openSUSE logo contest, the voting wrapped up on Tuesday and the results of this logo contest for new openSUSE branding have been selected."
+type: "link"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 47
+favouriteCount: 191
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1702797759 {#3011
date: 2023-12-17 08:22:39.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#3019 …}
+votes: Doctrine\ORM\PersistentCollection {#3021 …}
+reports: Doctrine\ORM\PersistentCollection {#3023 …}
+favourites: Doctrine\ORM\PersistentCollection {#3025 …}
+notifications: Doctrine\ORM\PersistentCollection {#3027 …}
+badges: Doctrine\ORM\PersistentCollection {#3029 …}
+children: [
App\Entity\EntryComment {#1363}
]
-id: 22173
-titleTs: "'conclud':4 'contest':3 'logo':2 'opensus':1 'select':7 'winner':6"
-bodyTs: "'brand':27 'contest':10,23 'interest':5 'logo':9,22 'new':25 'opensus':8,26 'result':19 'select':30 'tuesday':16 'vote':12 'wrap':13"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1702641281
+visibility: "visible "
+apId: "https://lemmy.ndlug.org/post/477330"
+editedAt: null
+createdAt: DateTimeImmutable @1702554881 {#2997
date: 2023-12-14 12:54:41.0 +01:00
}
+__isInitialized__: true
…2
}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: null
+root: null
+body: "I am glad logo on which we knows what animal is on it won."
+lang: "en"
+isAdult: false
+favouriteCount: 4
+score: 0
+lastActive: DateTime @1702562553 {#1401
date: 2023-12-14 15:02:33.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@pnutzh4x0r@lemmy.ndlug.org"
]
+children: Doctrine\ORM\PersistentCollection {#1362 …}
+nested: Doctrine\ORM\PersistentCollection {#2019 …}
+votes: Doctrine\ORM\PersistentCollection {#2030 …}
+reports: Doctrine\ORM\PersistentCollection {#2026 …}
+favourites: Doctrine\ORM\PersistentCollection {#2022 …}
+notifications: Doctrine\ORM\PersistentCollection {#2025 …}
-id: 221465
-bodyTs: "'anim':10 'glad':3 'know':8 'logo':4 'won':14"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5705088"
+editedAt: null
+createdAt: DateTimeImmutable @1702562553 {#1404
date: 2023-12-14 15:02:33.0 +01:00
}
+"title": 221465
} |
|
Show voter details
|
120 |
DENIED
|
moderate
|
App\Entity\EntryComment {#1363
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#1361
+user: Proxies\__CG__\App\Entity\User {#2973 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: Proxies\__CG__\App\Entity\Image {#3016 …}
+domain: Proxies\__CG__\App\Entity\Domain {#3018 …}
+slug: "openSUSE-Logo-Contest-Concludes-With-Winners-Selected"
+title: "openSUSE Logo Contest Concludes With Winners Selected"
+url: "https://www.phoronix.com/news/openSUSE-New-Logo"
+body: "> For those that were interested in the openSUSE logo contest, the voting wrapped up on Tuesday and the results of this logo contest for new openSUSE branding have been selected."
+type: "link"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 47
+favouriteCount: 191
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1702797759 {#3011
date: 2023-12-17 08:22:39.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#3019 …}
+votes: Doctrine\ORM\PersistentCollection {#3021 …}
+reports: Doctrine\ORM\PersistentCollection {#3023 …}
+favourites: Doctrine\ORM\PersistentCollection {#3025 …}
+notifications: Doctrine\ORM\PersistentCollection {#3027 …}
+badges: Doctrine\ORM\PersistentCollection {#3029 …}
+children: [
App\Entity\EntryComment {#1363}
]
-id: 22173
-titleTs: "'conclud':4 'contest':3 'logo':2 'opensus':1 'select':7 'winner':6"
-bodyTs: "'brand':27 'contest':10,23 'interest':5 'logo':9,22 'new':25 'opensus':8,26 'result':19 'select':30 'tuesday':16 'vote':12 'wrap':13"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1702641281
+visibility: "visible "
+apId: "https://lemmy.ndlug.org/post/477330"
+editedAt: null
+createdAt: DateTimeImmutable @1702554881 {#2997
date: 2023-12-14 12:54:41.0 +01:00
}
+__isInitialized__: true
…2
}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: null
+root: null
+body: "I am glad logo on which we knows what animal is on it won."
+lang: "en"
+isAdult: false
+favouriteCount: 4
+score: 0
+lastActive: DateTime @1702562553 {#1401
date: 2023-12-14 15:02:33.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@pnutzh4x0r@lemmy.ndlug.org"
]
+children: Doctrine\ORM\PersistentCollection {#1362 …}
+nested: Doctrine\ORM\PersistentCollection {#2019 …}
+votes: Doctrine\ORM\PersistentCollection {#2030 …}
+reports: Doctrine\ORM\PersistentCollection {#2026 …}
+favourites: Doctrine\ORM\PersistentCollection {#2022 …}
+notifications: Doctrine\ORM\PersistentCollection {#2025 …}
-id: 221465
-bodyTs: "'anim':10 'glad':3 'know':8 'logo':4 'won':14"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5705088"
+editedAt: null
+createdAt: DateTimeImmutable @1702562553 {#1404
date: 2023-12-14 15:02:33.0 +01:00
}
+"title": 221465
} |
|
Show voter details
|
121 |
DENIED
|
ROLE_USER
|
null |
|
Show voter details
|
122 |
DENIED
|
moderate
|
Proxies\__CG__\App\Entity\Entry {#2378
+user: Proxies\__CG__\App\Entity\User {#2994 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: Proxies\__CG__\App\Entity\Image {#3036 …}
+domain: Proxies\__CG__\App\Entity\Domain {#3038 …}
+slug: "Mobile-App-redesign-new-dev-promotion-let-s-build-a-bright"
+title: "Mobile App, redesign, new dev, promotion… let’s build a bright future for PeerTube!"
+url: "https://framablog.org/2023/12/12/mobile-app-redesign-new-dev-promotion-lets-build-a-bright-future-for-peertube/"
+body: """
cross-posted from: [lemmy.world/post/9483559](https://lemmy.world/post/9483559)\n
\n
> PeerTube is a decentralized and federated alternative to YouTube. The goal of PeerTube is not to replace YouTube but to offer a viable alternative using the strength of ActivityPub and P2P protocols.\n
> \n
> Being built on ActivityPub means PeerTube is able to be part of a bigger social network, the [Fediverse](https://en.wikipedia.org/wiki/Fediverse) (the Federated Universe). On the other hand, P2P technologies help PeerTube to solve the issue of money, inbound with all streaming platform : With PeerTube, you don’t need to have a lot of bandwidth available on your server to host a PeerTube platform because all users (which didn’t disable the feature) watching a video on PeerTube will be able to share this same video to other viewers.\n
> \n
> If you are curious about PeerTube, I can’t recommend you enough to check [the official website](https://joinpeertube.org) to learn more about the project. If after that you want to try to use PeerTube as a content creator, you can try to find a platform available there to register or host yourself your own PeerTube platform on your own server.\n
> \n
> The development of PeerTube is actually sponsored by [Framasoft](https://framasoft.org/en/), a french non-for-profit popular educational organization, a group of friends convinced that an emancipating digital world is possible, convinced that it will arise through actual actions on real world and online with and for you!\n
> \n
> Framasoft is also involved in the development of [Mobilizon](https://joinmobilizon.org/en/), a decentralized and federated alternative to Facebook Events and Meetup.\n
> \n
> If you want to contribute to PeerTube, feel free to:\n
> \n
> - report bugs and give your feedback on [Github](https://github.com/Chocobozzz/PeerTube/) or on [our forums](https://framacolibri.org/c/peertube/38)\n
> - submit your brillant ideas on our [Feedback platform](https://ideas.joinpeertube.org/)\n
> - Help to translate the software, following [the contributing guide](https://docs.joinpeertube.org/contribute-getting-started?id=translate)\n
> - [Make a donation](https://support.joinpeertube.org/en/) to help to pay bills inbound in the development of PeerTube.
"""
+type: "link"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 12
+favouriteCount: 167
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1702583776 {#3031
date: 2023-12-14 20:56:16.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#3039 …}
+votes: Doctrine\ORM\PersistentCollection {#3041 …}
+reports: Doctrine\ORM\PersistentCollection {#3043 …}
+favourites: Doctrine\ORM\PersistentCollection {#3045 …}
+notifications: Doctrine\ORM\PersistentCollection {#3047 …}
+badges: Doctrine\ORM\PersistentCollection {#3049 …}
+children: [
1 => App\Entity\EntryComment {#2384
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2378 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2379 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2379 …}
+body: """
It is part od the Fediverse, so commenting, likes, following, etc. should regarless of what ActivityPub-enabled service you use for interactions (for example can comment from Mastodon account).\n
\n
The “Peer” part of “PeerTube” means that the video player itself is based on torrent technology. It is not saved on your device (unless you decide to), just when you watch you also send the video to cut off some of the server’s bandwidth. Videos are not shared between servers, only the information that they exists, only on uploader’s server and between user’s devices.\n
\n
It is not to preserve videos online, for that we have other tools like proper torrents, this is ment to be alternative to YouTube. TLDR Here ActivityPub is for statuses, Torrent is for helping the servers.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 5
+score: 0
+lastActive: DateTime @1702413211 {#2448
date: 2023-12-12 21:33:31.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Framasoft@lemmy.world"
"@penquin@lemm.ee"
]
+children: Doctrine\ORM\PersistentCollection {#2381 …}
+nested: Doctrine\ORM\PersistentCollection {#1910 …}
+votes: Doctrine\ORM\PersistentCollection {#1909 …}
+reports: Doctrine\ORM\PersistentCollection {#1926 …}
+favourites: Doctrine\ORM\PersistentCollection {#1874 …}
+notifications: Doctrine\ORM\PersistentCollection {#1908 …}
-id: 219224
-bodyTs: "'account':30 'activitypub':17,124 'activitypub-en':16 'also':63 'altern':119 'bandwidth':75 'base':43 'comment':8,27 'cut':68 'decid':56 'devic':53,97 'enabl':18 'etc':11 'exampl':25 'exist':87 'fedivers':6 'follow':10 'help':131 'inform':84 'interact':23 'like':9,111 'mastodon':29 'mean':36 'ment':116 'od':4 'onlin':104 'part':3,33 'peer':32 'peertub':35 'player':40 'preserv':102 'proper':112 'regarless':13 'save':50 'send':64 'server':73,81,92,133 'servic':19 'share':79 'status':127 'technolog':46 'tldr':122 'tool':110 'torrent':45,113,128 'unless':54 'upload':90 'use':21 'user':95 'video':39,66,76,103 'watch':61 'youtub':121"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5660777"
+editedAt: null
+createdAt: DateTimeImmutable @1702413211 {#2386
date: 2023-12-12 21:33:31.0 +01:00
}
+"title": 219224
}
0 => App\Entity\EntryComment {#2389
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2378 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2369 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2379 …}
+body: "It uses just the same as other video sites **plus** some upload bandwidth that is usually unused anyway. Also there is an option to download the video purely by HTTP without torrenting if someone wants to."
+lang: "en"
+isAdult: false
+favouriteCount: 2
+score: 0
+lastActive: DateTime @1702423109 {#1883
date: 2023-12-13 00:18:29.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Framasoft@lemmy.world"
"@penquin@lemm.ee"
"@smileyhead@discuss.tchncs.de"
]
+children: Doctrine\ORM\PersistentCollection {#2387 …}
+nested: Doctrine\ORM\PersistentCollection {#2394 …}
+votes: Doctrine\ORM\PersistentCollection {#2393 …}
+reports: Doctrine\ORM\PersistentCollection {#1381 …}
+favourites: Doctrine\ORM\PersistentCollection {#1402 …}
+notifications: Doctrine\ORM\PersistentCollection {#1385 …}
-id: 219632
-bodyTs: "'also':19 'anyway':18 'bandwidth':13 'download':25 'http':30 'option':23 'plus':10 'pure':28 'site':9 'someon':34 'torrent':32 'unus':17 'upload':12 'use':2 'usual':16 'video':8,27 'want':35 'without':31"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5664486"
+editedAt: null
+createdAt: DateTimeImmutable @1702423109 {#2391
date: 2023-12-13 00:18:29.0 +01:00
}
+"title": 219632
}
]
-id: 21880
-titleTs: "'app':2 'bright':11 'build':9 'dev':5 'futur':12 'let':7 'mobil':1 'new':4 'peertub':14 'promot':6 'redesign':3"
-bodyTs: "'/)':299 '/c/peertube/38)':288 '/chocobozzz/peertube/)':281 '/contribute-getting-started?id=translate)':311 '/en/)':317 '/en/),':200,250 '/post/9483559](https://lemmy.world/post/9483559)':7 '/wiki/fediverse)':60 'abl':47,120 'action':229 'activitypub':36,43 'actual':194,228 'also':241 'altern':14,31,255 'aris':226 'avail':95,174 'bandwidth':94 'bigger':53 'bill':322 'brillant':291 'bug':272 'built':41 'check':142 'content':165 'contribut':265,307 'convinc':214,222 'creator':166 'cross':2 'cross-post':1 'curious':132 'decentr':11,252 'develop':190,245,326 'didn':108 'digit':218 'disabl':110 'docs.joinpeertube.org':310 'docs.joinpeertube.org/contribute-getting-started?id=translate)':309 'donat':314 'educ':208 'emancip':217 'en.wikipedia.org':59 'en.wikipedia.org/wiki/fediverse)':58 'enough':140 'event':258 'facebook':257 'featur':112 'feder':13,62,254 'fedivers':57 'feedback':276,295 'feel':268 'find':171 'follow':305 'forum':285 'framacolibri.org':287 'framacolibri.org/c/peertube/38)':286 'framasoft':197,239 'framasoft.org':199 'framasoft.org/en/),':198 'free':269 'french':202 'friend':213 'github':278 'github.com':280 'github.com/chocobozzz/peertube/)':279 'give':274 'goal':18 'group':211 'guid':308 'hand':67 'help':70,300,319 'host':100,179 'idea':292 'ideas.joinpeertube.org':298 'ideas.joinpeertube.org/)':297 'inbound':78,323 'involv':242 'issu':75 'joinmobilizon.org':249 'joinmobilizon.org/en/),':248 'joinpeertube.org':146 'learn':148 'lemmy.world':6 'lemmy.world/post/9483559](https://lemmy.world/post/9483559)':5 'lot':92 'make':312 'mean':44 'meetup':260 'mobilizon':247 'money':77 'need':88 'network':55 'non':204 'non-for-profit':203 'offer':28 'offici':144 'onlin':234 'organ':209 'p2p':38,68 'part':50 'pay':321 'peertub':8,20,45,71,84,102,117,134,162,183,192,267,328 'platform':82,103,173,184,296 'popular':207 'possibl':221 'post':3 'profit':206 'project':152 'protocol':39 'real':231 'recommend':138 'regist':177 'replac':24 'report':271 'server':98,188 'share':122 'social':54 'softwar':304 'solv':73 'sponsor':195 'stream':81 'strength':34 'submit':289 'support.joinpeertube.org':316 'support.joinpeertube.org/en/)':315 'technolog':69 'translat':302 'tri':159,169 'univers':63 'use':32,161 'user':106 'viabl':30 'video':115,125 'viewer':128 'want':157,263 'watch':113 'websit':145 'world':219,232 'youtub':16,25"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1702486230
+visibility: "visible "
+apId: "https://lemmy.world/post/9483617"
+editedAt: null
+createdAt: DateTimeImmutable @1702399830 {#3017
date: 2023-12-12 17:50:30.0 +01:00
}
+__isInitialized__: true
…2
} |
|
Show voter details
|
123 |
DENIED
|
edit
|
Proxies\__CG__\App\Entity\Entry {#2378
+user: Proxies\__CG__\App\Entity\User {#2994 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: Proxies\__CG__\App\Entity\Image {#3036 …}
+domain: Proxies\__CG__\App\Entity\Domain {#3038 …}
+slug: "Mobile-App-redesign-new-dev-promotion-let-s-build-a-bright"
+title: "Mobile App, redesign, new dev, promotion… let’s build a bright future for PeerTube!"
+url: "https://framablog.org/2023/12/12/mobile-app-redesign-new-dev-promotion-lets-build-a-bright-future-for-peertube/"
+body: """
cross-posted from: [lemmy.world/post/9483559](https://lemmy.world/post/9483559)\n
\n
> PeerTube is a decentralized and federated alternative to YouTube. The goal of PeerTube is not to replace YouTube but to offer a viable alternative using the strength of ActivityPub and P2P protocols.\n
> \n
> Being built on ActivityPub means PeerTube is able to be part of a bigger social network, the [Fediverse](https://en.wikipedia.org/wiki/Fediverse) (the Federated Universe). On the other hand, P2P technologies help PeerTube to solve the issue of money, inbound with all streaming platform : With PeerTube, you don’t need to have a lot of bandwidth available on your server to host a PeerTube platform because all users (which didn’t disable the feature) watching a video on PeerTube will be able to share this same video to other viewers.\n
> \n
> If you are curious about PeerTube, I can’t recommend you enough to check [the official website](https://joinpeertube.org) to learn more about the project. If after that you want to try to use PeerTube as a content creator, you can try to find a platform available there to register or host yourself your own PeerTube platform on your own server.\n
> \n
> The development of PeerTube is actually sponsored by [Framasoft](https://framasoft.org/en/), a french non-for-profit popular educational organization, a group of friends convinced that an emancipating digital world is possible, convinced that it will arise through actual actions on real world and online with and for you!\n
> \n
> Framasoft is also involved in the development of [Mobilizon](https://joinmobilizon.org/en/), a decentralized and federated alternative to Facebook Events and Meetup.\n
> \n
> If you want to contribute to PeerTube, feel free to:\n
> \n
> - report bugs and give your feedback on [Github](https://github.com/Chocobozzz/PeerTube/) or on [our forums](https://framacolibri.org/c/peertube/38)\n
> - submit your brillant ideas on our [Feedback platform](https://ideas.joinpeertube.org/)\n
> - Help to translate the software, following [the contributing guide](https://docs.joinpeertube.org/contribute-getting-started?id=translate)\n
> - [Make a donation](https://support.joinpeertube.org/en/) to help to pay bills inbound in the development of PeerTube.
"""
+type: "link"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 12
+favouriteCount: 167
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1702583776 {#3031
date: 2023-12-14 20:56:16.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#3039 …}
+votes: Doctrine\ORM\PersistentCollection {#3041 …}
+reports: Doctrine\ORM\PersistentCollection {#3043 …}
+favourites: Doctrine\ORM\PersistentCollection {#3045 …}
+notifications: Doctrine\ORM\PersistentCollection {#3047 …}
+badges: Doctrine\ORM\PersistentCollection {#3049 …}
+children: [
1 => App\Entity\EntryComment {#2384
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2378 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2379 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2379 …}
+body: """
It is part od the Fediverse, so commenting, likes, following, etc. should regarless of what ActivityPub-enabled service you use for interactions (for example can comment from Mastodon account).\n
\n
The “Peer” part of “PeerTube” means that the video player itself is based on torrent technology. It is not saved on your device (unless you decide to), just when you watch you also send the video to cut off some of the server’s bandwidth. Videos are not shared between servers, only the information that they exists, only on uploader’s server and between user’s devices.\n
\n
It is not to preserve videos online, for that we have other tools like proper torrents, this is ment to be alternative to YouTube. TLDR Here ActivityPub is for statuses, Torrent is for helping the servers.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 5
+score: 0
+lastActive: DateTime @1702413211 {#2448
date: 2023-12-12 21:33:31.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Framasoft@lemmy.world"
"@penquin@lemm.ee"
]
+children: Doctrine\ORM\PersistentCollection {#2381 …}
+nested: Doctrine\ORM\PersistentCollection {#1910 …}
+votes: Doctrine\ORM\PersistentCollection {#1909 …}
+reports: Doctrine\ORM\PersistentCollection {#1926 …}
+favourites: Doctrine\ORM\PersistentCollection {#1874 …}
+notifications: Doctrine\ORM\PersistentCollection {#1908 …}
-id: 219224
-bodyTs: "'account':30 'activitypub':17,124 'activitypub-en':16 'also':63 'altern':119 'bandwidth':75 'base':43 'comment':8,27 'cut':68 'decid':56 'devic':53,97 'enabl':18 'etc':11 'exampl':25 'exist':87 'fedivers':6 'follow':10 'help':131 'inform':84 'interact':23 'like':9,111 'mastodon':29 'mean':36 'ment':116 'od':4 'onlin':104 'part':3,33 'peer':32 'peertub':35 'player':40 'preserv':102 'proper':112 'regarless':13 'save':50 'send':64 'server':73,81,92,133 'servic':19 'share':79 'status':127 'technolog':46 'tldr':122 'tool':110 'torrent':45,113,128 'unless':54 'upload':90 'use':21 'user':95 'video':39,66,76,103 'watch':61 'youtub':121"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5660777"
+editedAt: null
+createdAt: DateTimeImmutable @1702413211 {#2386
date: 2023-12-12 21:33:31.0 +01:00
}
+"title": 219224
}
0 => App\Entity\EntryComment {#2389
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2378 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2369 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2379 …}
+body: "It uses just the same as other video sites **plus** some upload bandwidth that is usually unused anyway. Also there is an option to download the video purely by HTTP without torrenting if someone wants to."
+lang: "en"
+isAdult: false
+favouriteCount: 2
+score: 0
+lastActive: DateTime @1702423109 {#1883
date: 2023-12-13 00:18:29.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Framasoft@lemmy.world"
"@penquin@lemm.ee"
"@smileyhead@discuss.tchncs.de"
]
+children: Doctrine\ORM\PersistentCollection {#2387 …}
+nested: Doctrine\ORM\PersistentCollection {#2394 …}
+votes: Doctrine\ORM\PersistentCollection {#2393 …}
+reports: Doctrine\ORM\PersistentCollection {#1381 …}
+favourites: Doctrine\ORM\PersistentCollection {#1402 …}
+notifications: Doctrine\ORM\PersistentCollection {#1385 …}
-id: 219632
-bodyTs: "'also':19 'anyway':18 'bandwidth':13 'download':25 'http':30 'option':23 'plus':10 'pure':28 'site':9 'someon':34 'torrent':32 'unus':17 'upload':12 'use':2 'usual':16 'video':8,27 'want':35 'without':31"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5664486"
+editedAt: null
+createdAt: DateTimeImmutable @1702423109 {#2391
date: 2023-12-13 00:18:29.0 +01:00
}
+"title": 219632
}
]
-id: 21880
-titleTs: "'app':2 'bright':11 'build':9 'dev':5 'futur':12 'let':7 'mobil':1 'new':4 'peertub':14 'promot':6 'redesign':3"
-bodyTs: "'/)':299 '/c/peertube/38)':288 '/chocobozzz/peertube/)':281 '/contribute-getting-started?id=translate)':311 '/en/)':317 '/en/),':200,250 '/post/9483559](https://lemmy.world/post/9483559)':7 '/wiki/fediverse)':60 'abl':47,120 'action':229 'activitypub':36,43 'actual':194,228 'also':241 'altern':14,31,255 'aris':226 'avail':95,174 'bandwidth':94 'bigger':53 'bill':322 'brillant':291 'bug':272 'built':41 'check':142 'content':165 'contribut':265,307 'convinc':214,222 'creator':166 'cross':2 'cross-post':1 'curious':132 'decentr':11,252 'develop':190,245,326 'didn':108 'digit':218 'disabl':110 'docs.joinpeertube.org':310 'docs.joinpeertube.org/contribute-getting-started?id=translate)':309 'donat':314 'educ':208 'emancip':217 'en.wikipedia.org':59 'en.wikipedia.org/wiki/fediverse)':58 'enough':140 'event':258 'facebook':257 'featur':112 'feder':13,62,254 'fedivers':57 'feedback':276,295 'feel':268 'find':171 'follow':305 'forum':285 'framacolibri.org':287 'framacolibri.org/c/peertube/38)':286 'framasoft':197,239 'framasoft.org':199 'framasoft.org/en/),':198 'free':269 'french':202 'friend':213 'github':278 'github.com':280 'github.com/chocobozzz/peertube/)':279 'give':274 'goal':18 'group':211 'guid':308 'hand':67 'help':70,300,319 'host':100,179 'idea':292 'ideas.joinpeertube.org':298 'ideas.joinpeertube.org/)':297 'inbound':78,323 'involv':242 'issu':75 'joinmobilizon.org':249 'joinmobilizon.org/en/),':248 'joinpeertube.org':146 'learn':148 'lemmy.world':6 'lemmy.world/post/9483559](https://lemmy.world/post/9483559)':5 'lot':92 'make':312 'mean':44 'meetup':260 'mobilizon':247 'money':77 'need':88 'network':55 'non':204 'non-for-profit':203 'offer':28 'offici':144 'onlin':234 'organ':209 'p2p':38,68 'part':50 'pay':321 'peertub':8,20,45,71,84,102,117,134,162,183,192,267,328 'platform':82,103,173,184,296 'popular':207 'possibl':221 'post':3 'profit':206 'project':152 'protocol':39 'real':231 'recommend':138 'regist':177 'replac':24 'report':271 'server':98,188 'share':122 'social':54 'softwar':304 'solv':73 'sponsor':195 'stream':81 'strength':34 'submit':289 'support.joinpeertube.org':316 'support.joinpeertube.org/en/)':315 'technolog':69 'translat':302 'tri':159,169 'univers':63 'use':32,161 'user':106 'viabl':30 'video':115,125 'viewer':128 'want':157,263 'watch':113 'websit':145 'world':219,232 'youtub':16,25"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1702486230
+visibility: "visible "
+apId: "https://lemmy.world/post/9483617"
+editedAt: null
+createdAt: DateTimeImmutable @1702399830 {#3017
date: 2023-12-12 17:50:30.0 +01:00
}
+__isInitialized__: true
…2
} |
|
Show voter details
|
124 |
DENIED
|
moderate
|
Proxies\__CG__\App\Entity\Entry {#2378
+user: Proxies\__CG__\App\Entity\User {#2994 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: Proxies\__CG__\App\Entity\Image {#3036 …}
+domain: Proxies\__CG__\App\Entity\Domain {#3038 …}
+slug: "Mobile-App-redesign-new-dev-promotion-let-s-build-a-bright"
+title: "Mobile App, redesign, new dev, promotion… let’s build a bright future for PeerTube!"
+url: "https://framablog.org/2023/12/12/mobile-app-redesign-new-dev-promotion-lets-build-a-bright-future-for-peertube/"
+body: """
cross-posted from: [lemmy.world/post/9483559](https://lemmy.world/post/9483559)\n
\n
> PeerTube is a decentralized and federated alternative to YouTube. The goal of PeerTube is not to replace YouTube but to offer a viable alternative using the strength of ActivityPub and P2P protocols.\n
> \n
> Being built on ActivityPub means PeerTube is able to be part of a bigger social network, the [Fediverse](https://en.wikipedia.org/wiki/Fediverse) (the Federated Universe). On the other hand, P2P technologies help PeerTube to solve the issue of money, inbound with all streaming platform : With PeerTube, you don’t need to have a lot of bandwidth available on your server to host a PeerTube platform because all users (which didn’t disable the feature) watching a video on PeerTube will be able to share this same video to other viewers.\n
> \n
> If you are curious about PeerTube, I can’t recommend you enough to check [the official website](https://joinpeertube.org) to learn more about the project. If after that you want to try to use PeerTube as a content creator, you can try to find a platform available there to register or host yourself your own PeerTube platform on your own server.\n
> \n
> The development of PeerTube is actually sponsored by [Framasoft](https://framasoft.org/en/), a french non-for-profit popular educational organization, a group of friends convinced that an emancipating digital world is possible, convinced that it will arise through actual actions on real world and online with and for you!\n
> \n
> Framasoft is also involved in the development of [Mobilizon](https://joinmobilizon.org/en/), a decentralized and federated alternative to Facebook Events and Meetup.\n
> \n
> If you want to contribute to PeerTube, feel free to:\n
> \n
> - report bugs and give your feedback on [Github](https://github.com/Chocobozzz/PeerTube/) or on [our forums](https://framacolibri.org/c/peertube/38)\n
> - submit your brillant ideas on our [Feedback platform](https://ideas.joinpeertube.org/)\n
> - Help to translate the software, following [the contributing guide](https://docs.joinpeertube.org/contribute-getting-started?id=translate)\n
> - [Make a donation](https://support.joinpeertube.org/en/) to help to pay bills inbound in the development of PeerTube.
"""
+type: "link"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 12
+favouriteCount: 167
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1702583776 {#3031
date: 2023-12-14 20:56:16.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#3039 …}
+votes: Doctrine\ORM\PersistentCollection {#3041 …}
+reports: Doctrine\ORM\PersistentCollection {#3043 …}
+favourites: Doctrine\ORM\PersistentCollection {#3045 …}
+notifications: Doctrine\ORM\PersistentCollection {#3047 …}
+badges: Doctrine\ORM\PersistentCollection {#3049 …}
+children: [
1 => App\Entity\EntryComment {#2384
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2378 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2379 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2379 …}
+body: """
It is part od the Fediverse, so commenting, likes, following, etc. should regarless of what ActivityPub-enabled service you use for interactions (for example can comment from Mastodon account).\n
\n
The “Peer” part of “PeerTube” means that the video player itself is based on torrent technology. It is not saved on your device (unless you decide to), just when you watch you also send the video to cut off some of the server’s bandwidth. Videos are not shared between servers, only the information that they exists, only on uploader’s server and between user’s devices.\n
\n
It is not to preserve videos online, for that we have other tools like proper torrents, this is ment to be alternative to YouTube. TLDR Here ActivityPub is for statuses, Torrent is for helping the servers.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 5
+score: 0
+lastActive: DateTime @1702413211 {#2448
date: 2023-12-12 21:33:31.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Framasoft@lemmy.world"
"@penquin@lemm.ee"
]
+children: Doctrine\ORM\PersistentCollection {#2381 …}
+nested: Doctrine\ORM\PersistentCollection {#1910 …}
+votes: Doctrine\ORM\PersistentCollection {#1909 …}
+reports: Doctrine\ORM\PersistentCollection {#1926 …}
+favourites: Doctrine\ORM\PersistentCollection {#1874 …}
+notifications: Doctrine\ORM\PersistentCollection {#1908 …}
-id: 219224
-bodyTs: "'account':30 'activitypub':17,124 'activitypub-en':16 'also':63 'altern':119 'bandwidth':75 'base':43 'comment':8,27 'cut':68 'decid':56 'devic':53,97 'enabl':18 'etc':11 'exampl':25 'exist':87 'fedivers':6 'follow':10 'help':131 'inform':84 'interact':23 'like':9,111 'mastodon':29 'mean':36 'ment':116 'od':4 'onlin':104 'part':3,33 'peer':32 'peertub':35 'player':40 'preserv':102 'proper':112 'regarless':13 'save':50 'send':64 'server':73,81,92,133 'servic':19 'share':79 'status':127 'technolog':46 'tldr':122 'tool':110 'torrent':45,113,128 'unless':54 'upload':90 'use':21 'user':95 'video':39,66,76,103 'watch':61 'youtub':121"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5660777"
+editedAt: null
+createdAt: DateTimeImmutable @1702413211 {#2386
date: 2023-12-12 21:33:31.0 +01:00
}
+"title": 219224
}
0 => App\Entity\EntryComment {#2389
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2378 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2369 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2379 …}
+body: "It uses just the same as other video sites **plus** some upload bandwidth that is usually unused anyway. Also there is an option to download the video purely by HTTP without torrenting if someone wants to."
+lang: "en"
+isAdult: false
+favouriteCount: 2
+score: 0
+lastActive: DateTime @1702423109 {#1883
date: 2023-12-13 00:18:29.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Framasoft@lemmy.world"
"@penquin@lemm.ee"
"@smileyhead@discuss.tchncs.de"
]
+children: Doctrine\ORM\PersistentCollection {#2387 …}
+nested: Doctrine\ORM\PersistentCollection {#2394 …}
+votes: Doctrine\ORM\PersistentCollection {#2393 …}
+reports: Doctrine\ORM\PersistentCollection {#1381 …}
+favourites: Doctrine\ORM\PersistentCollection {#1402 …}
+notifications: Doctrine\ORM\PersistentCollection {#1385 …}
-id: 219632
-bodyTs: "'also':19 'anyway':18 'bandwidth':13 'download':25 'http':30 'option':23 'plus':10 'pure':28 'site':9 'someon':34 'torrent':32 'unus':17 'upload':12 'use':2 'usual':16 'video':8,27 'want':35 'without':31"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5664486"
+editedAt: null
+createdAt: DateTimeImmutable @1702423109 {#2391
date: 2023-12-13 00:18:29.0 +01:00
}
+"title": 219632
}
]
-id: 21880
-titleTs: "'app':2 'bright':11 'build':9 'dev':5 'futur':12 'let':7 'mobil':1 'new':4 'peertub':14 'promot':6 'redesign':3"
-bodyTs: "'/)':299 '/c/peertube/38)':288 '/chocobozzz/peertube/)':281 '/contribute-getting-started?id=translate)':311 '/en/)':317 '/en/),':200,250 '/post/9483559](https://lemmy.world/post/9483559)':7 '/wiki/fediverse)':60 'abl':47,120 'action':229 'activitypub':36,43 'actual':194,228 'also':241 'altern':14,31,255 'aris':226 'avail':95,174 'bandwidth':94 'bigger':53 'bill':322 'brillant':291 'bug':272 'built':41 'check':142 'content':165 'contribut':265,307 'convinc':214,222 'creator':166 'cross':2 'cross-post':1 'curious':132 'decentr':11,252 'develop':190,245,326 'didn':108 'digit':218 'disabl':110 'docs.joinpeertube.org':310 'docs.joinpeertube.org/contribute-getting-started?id=translate)':309 'donat':314 'educ':208 'emancip':217 'en.wikipedia.org':59 'en.wikipedia.org/wiki/fediverse)':58 'enough':140 'event':258 'facebook':257 'featur':112 'feder':13,62,254 'fedivers':57 'feedback':276,295 'feel':268 'find':171 'follow':305 'forum':285 'framacolibri.org':287 'framacolibri.org/c/peertube/38)':286 'framasoft':197,239 'framasoft.org':199 'framasoft.org/en/),':198 'free':269 'french':202 'friend':213 'github':278 'github.com':280 'github.com/chocobozzz/peertube/)':279 'give':274 'goal':18 'group':211 'guid':308 'hand':67 'help':70,300,319 'host':100,179 'idea':292 'ideas.joinpeertube.org':298 'ideas.joinpeertube.org/)':297 'inbound':78,323 'involv':242 'issu':75 'joinmobilizon.org':249 'joinmobilizon.org/en/),':248 'joinpeertube.org':146 'learn':148 'lemmy.world':6 'lemmy.world/post/9483559](https://lemmy.world/post/9483559)':5 'lot':92 'make':312 'mean':44 'meetup':260 'mobilizon':247 'money':77 'need':88 'network':55 'non':204 'non-for-profit':203 'offer':28 'offici':144 'onlin':234 'organ':209 'p2p':38,68 'part':50 'pay':321 'peertub':8,20,45,71,84,102,117,134,162,183,192,267,328 'platform':82,103,173,184,296 'popular':207 'possibl':221 'post':3 'profit':206 'project':152 'protocol':39 'real':231 'recommend':138 'regist':177 'replac':24 'report':271 'server':98,188 'share':122 'social':54 'softwar':304 'solv':73 'sponsor':195 'stream':81 'strength':34 'submit':289 'support.joinpeertube.org':316 'support.joinpeertube.org/en/)':315 'technolog':69 'translat':302 'tri':159,169 'univers':63 'use':32,161 'user':106 'viabl':30 'video':115,125 'viewer':128 'want':157,263 'watch':113 'websit':145 'world':219,232 'youtub':16,25"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1702486230
+visibility: "visible "
+apId: "https://lemmy.world/post/9483617"
+editedAt: null
+createdAt: DateTimeImmutable @1702399830 {#3017
date: 2023-12-12 17:50:30.0 +01:00
}
+__isInitialized__: true
…2
} |
|
Show voter details
|
125 |
DENIED
|
ROLE_USER
|
null |
|
Show voter details
|
126 |
DENIED
|
moderate
|
App\Entity\EntryComment {#2384
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2378
+user: Proxies\__CG__\App\Entity\User {#2994 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: Proxies\__CG__\App\Entity\Image {#3036 …}
+domain: Proxies\__CG__\App\Entity\Domain {#3038 …}
+slug: "Mobile-App-redesign-new-dev-promotion-let-s-build-a-bright"
+title: "Mobile App, redesign, new dev, promotion… let’s build a bright future for PeerTube!"
+url: "https://framablog.org/2023/12/12/mobile-app-redesign-new-dev-promotion-lets-build-a-bright-future-for-peertube/"
+body: """
cross-posted from: [lemmy.world/post/9483559](https://lemmy.world/post/9483559)\n
\n
> PeerTube is a decentralized and federated alternative to YouTube. The goal of PeerTube is not to replace YouTube but to offer a viable alternative using the strength of ActivityPub and P2P protocols.\n
> \n
> Being built on ActivityPub means PeerTube is able to be part of a bigger social network, the [Fediverse](https://en.wikipedia.org/wiki/Fediverse) (the Federated Universe). On the other hand, P2P technologies help PeerTube to solve the issue of money, inbound with all streaming platform : With PeerTube, you don’t need to have a lot of bandwidth available on your server to host a PeerTube platform because all users (which didn’t disable the feature) watching a video on PeerTube will be able to share this same video to other viewers.\n
> \n
> If you are curious about PeerTube, I can’t recommend you enough to check [the official website](https://joinpeertube.org) to learn more about the project. If after that you want to try to use PeerTube as a content creator, you can try to find a platform available there to register or host yourself your own PeerTube platform on your own server.\n
> \n
> The development of PeerTube is actually sponsored by [Framasoft](https://framasoft.org/en/), a french non-for-profit popular educational organization, a group of friends convinced that an emancipating digital world is possible, convinced that it will arise through actual actions on real world and online with and for you!\n
> \n
> Framasoft is also involved in the development of [Mobilizon](https://joinmobilizon.org/en/), a decentralized and federated alternative to Facebook Events and Meetup.\n
> \n
> If you want to contribute to PeerTube, feel free to:\n
> \n
> - report bugs and give your feedback on [Github](https://github.com/Chocobozzz/PeerTube/) or on [our forums](https://framacolibri.org/c/peertube/38)\n
> - submit your brillant ideas on our [Feedback platform](https://ideas.joinpeertube.org/)\n
> - Help to translate the software, following [the contributing guide](https://docs.joinpeertube.org/contribute-getting-started?id=translate)\n
> - [Make a donation](https://support.joinpeertube.org/en/) to help to pay bills inbound in the development of PeerTube.
"""
+type: "link"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 12
+favouriteCount: 167
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1702583776 {#3031
date: 2023-12-14 20:56:16.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#3039 …}
+votes: Doctrine\ORM\PersistentCollection {#3041 …}
+reports: Doctrine\ORM\PersistentCollection {#3043 …}
+favourites: Doctrine\ORM\PersistentCollection {#3045 …}
+notifications: Doctrine\ORM\PersistentCollection {#3047 …}
+badges: Doctrine\ORM\PersistentCollection {#3049 …}
+children: [
1 => App\Entity\EntryComment {#2384}
0 => App\Entity\EntryComment {#2389
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2378 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2369 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2379 …}
+body: "It uses just the same as other video sites **plus** some upload bandwidth that is usually unused anyway. Also there is an option to download the video purely by HTTP without torrenting if someone wants to."
+lang: "en"
+isAdult: false
+favouriteCount: 2
+score: 0
+lastActive: DateTime @1702423109 {#1883
date: 2023-12-13 00:18:29.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Framasoft@lemmy.world"
"@penquin@lemm.ee"
"@smileyhead@discuss.tchncs.de"
]
+children: Doctrine\ORM\PersistentCollection {#2387 …}
+nested: Doctrine\ORM\PersistentCollection {#2394 …}
+votes: Doctrine\ORM\PersistentCollection {#2393 …}
+reports: Doctrine\ORM\PersistentCollection {#1381 …}
+favourites: Doctrine\ORM\PersistentCollection {#1402 …}
+notifications: Doctrine\ORM\PersistentCollection {#1385 …}
-id: 219632
-bodyTs: "'also':19 'anyway':18 'bandwidth':13 'download':25 'http':30 'option':23 'plus':10 'pure':28 'site':9 'someon':34 'torrent':32 'unus':17 'upload':12 'use':2 'usual':16 'video':8,27 'want':35 'without':31"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5664486"
+editedAt: null
+createdAt: DateTimeImmutable @1702423109 {#2391
date: 2023-12-13 00:18:29.0 +01:00
}
+"title": 219632
}
]
-id: 21880
-titleTs: "'app':2 'bright':11 'build':9 'dev':5 'futur':12 'let':7 'mobil':1 'new':4 'peertub':14 'promot':6 'redesign':3"
-bodyTs: "'/)':299 '/c/peertube/38)':288 '/chocobozzz/peertube/)':281 '/contribute-getting-started?id=translate)':311 '/en/)':317 '/en/),':200,250 '/post/9483559](https://lemmy.world/post/9483559)':7 '/wiki/fediverse)':60 'abl':47,120 'action':229 'activitypub':36,43 'actual':194,228 'also':241 'altern':14,31,255 'aris':226 'avail':95,174 'bandwidth':94 'bigger':53 'bill':322 'brillant':291 'bug':272 'built':41 'check':142 'content':165 'contribut':265,307 'convinc':214,222 'creator':166 'cross':2 'cross-post':1 'curious':132 'decentr':11,252 'develop':190,245,326 'didn':108 'digit':218 'disabl':110 'docs.joinpeertube.org':310 'docs.joinpeertube.org/contribute-getting-started?id=translate)':309 'donat':314 'educ':208 'emancip':217 'en.wikipedia.org':59 'en.wikipedia.org/wiki/fediverse)':58 'enough':140 'event':258 'facebook':257 'featur':112 'feder':13,62,254 'fedivers':57 'feedback':276,295 'feel':268 'find':171 'follow':305 'forum':285 'framacolibri.org':287 'framacolibri.org/c/peertube/38)':286 'framasoft':197,239 'framasoft.org':199 'framasoft.org/en/),':198 'free':269 'french':202 'friend':213 'github':278 'github.com':280 'github.com/chocobozzz/peertube/)':279 'give':274 'goal':18 'group':211 'guid':308 'hand':67 'help':70,300,319 'host':100,179 'idea':292 'ideas.joinpeertube.org':298 'ideas.joinpeertube.org/)':297 'inbound':78,323 'involv':242 'issu':75 'joinmobilizon.org':249 'joinmobilizon.org/en/),':248 'joinpeertube.org':146 'learn':148 'lemmy.world':6 'lemmy.world/post/9483559](https://lemmy.world/post/9483559)':5 'lot':92 'make':312 'mean':44 'meetup':260 'mobilizon':247 'money':77 'need':88 'network':55 'non':204 'non-for-profit':203 'offer':28 'offici':144 'onlin':234 'organ':209 'p2p':38,68 'part':50 'pay':321 'peertub':8,20,45,71,84,102,117,134,162,183,192,267,328 'platform':82,103,173,184,296 'popular':207 'possibl':221 'post':3 'profit':206 'project':152 'protocol':39 'real':231 'recommend':138 'regist':177 'replac':24 'report':271 'server':98,188 'share':122 'social':54 'softwar':304 'solv':73 'sponsor':195 'stream':81 'strength':34 'submit':289 'support.joinpeertube.org':316 'support.joinpeertube.org/en/)':315 'technolog':69 'translat':302 'tri':159,169 'univers':63 'use':32,161 'user':106 'viabl':30 'video':115,125 'viewer':128 'want':157,263 'watch':113 'websit':145 'world':219,232 'youtub':16,25"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1702486230
+visibility: "visible "
+apId: "https://lemmy.world/post/9483617"
+editedAt: null
+createdAt: DateTimeImmutable @1702399830 {#3017
date: 2023-12-12 17:50:30.0 +01:00
}
+__isInitialized__: true
…2
}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2379 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2379 …}
+body: """
It is part od the Fediverse, so commenting, likes, following, etc. should regarless of what ActivityPub-enabled service you use for interactions (for example can comment from Mastodon account).\n
\n
The “Peer” part of “PeerTube” means that the video player itself is based on torrent technology. It is not saved on your device (unless you decide to), just when you watch you also send the video to cut off some of the server’s bandwidth. Videos are not shared between servers, only the information that they exists, only on uploader’s server and between user’s devices.\n
\n
It is not to preserve videos online, for that we have other tools like proper torrents, this is ment to be alternative to YouTube. TLDR Here ActivityPub is for statuses, Torrent is for helping the servers.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 5
+score: 0
+lastActive: DateTime @1702413211 {#2448
date: 2023-12-12 21:33:31.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Framasoft@lemmy.world"
"@penquin@lemm.ee"
]
+children: Doctrine\ORM\PersistentCollection {#2381 …}
+nested: Doctrine\ORM\PersistentCollection {#1910 …}
+votes: Doctrine\ORM\PersistentCollection {#1909 …}
+reports: Doctrine\ORM\PersistentCollection {#1926 …}
+favourites: Doctrine\ORM\PersistentCollection {#1874 …}
+notifications: Doctrine\ORM\PersistentCollection {#1908 …}
-id: 219224
-bodyTs: "'account':30 'activitypub':17,124 'activitypub-en':16 'also':63 'altern':119 'bandwidth':75 'base':43 'comment':8,27 'cut':68 'decid':56 'devic':53,97 'enabl':18 'etc':11 'exampl':25 'exist':87 'fedivers':6 'follow':10 'help':131 'inform':84 'interact':23 'like':9,111 'mastodon':29 'mean':36 'ment':116 'od':4 'onlin':104 'part':3,33 'peer':32 'peertub':35 'player':40 'preserv':102 'proper':112 'regarless':13 'save':50 'send':64 'server':73,81,92,133 'servic':19 'share':79 'status':127 'technolog':46 'tldr':122 'tool':110 'torrent':45,113,128 'unless':54 'upload':90 'use':21 'user':95 'video':39,66,76,103 'watch':61 'youtub':121"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5660777"
+editedAt: null
+createdAt: DateTimeImmutable @1702413211 {#2386
date: 2023-12-12 21:33:31.0 +01:00
}
+"title": 219224
} |
|
Show voter details
|
127 |
DENIED
|
edit
|
App\Entity\EntryComment {#2384
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2378
+user: Proxies\__CG__\App\Entity\User {#2994 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: Proxies\__CG__\App\Entity\Image {#3036 …}
+domain: Proxies\__CG__\App\Entity\Domain {#3038 …}
+slug: "Mobile-App-redesign-new-dev-promotion-let-s-build-a-bright"
+title: "Mobile App, redesign, new dev, promotion… let’s build a bright future for PeerTube!"
+url: "https://framablog.org/2023/12/12/mobile-app-redesign-new-dev-promotion-lets-build-a-bright-future-for-peertube/"
+body: """
cross-posted from: [lemmy.world/post/9483559](https://lemmy.world/post/9483559)\n
\n
> PeerTube is a decentralized and federated alternative to YouTube. The goal of PeerTube is not to replace YouTube but to offer a viable alternative using the strength of ActivityPub and P2P protocols.\n
> \n
> Being built on ActivityPub means PeerTube is able to be part of a bigger social network, the [Fediverse](https://en.wikipedia.org/wiki/Fediverse) (the Federated Universe). On the other hand, P2P technologies help PeerTube to solve the issue of money, inbound with all streaming platform : With PeerTube, you don’t need to have a lot of bandwidth available on your server to host a PeerTube platform because all users (which didn’t disable the feature) watching a video on PeerTube will be able to share this same video to other viewers.\n
> \n
> If you are curious about PeerTube, I can’t recommend you enough to check [the official website](https://joinpeertube.org) to learn more about the project. If after that you want to try to use PeerTube as a content creator, you can try to find a platform available there to register or host yourself your own PeerTube platform on your own server.\n
> \n
> The development of PeerTube is actually sponsored by [Framasoft](https://framasoft.org/en/), a french non-for-profit popular educational organization, a group of friends convinced that an emancipating digital world is possible, convinced that it will arise through actual actions on real world and online with and for you!\n
> \n
> Framasoft is also involved in the development of [Mobilizon](https://joinmobilizon.org/en/), a decentralized and federated alternative to Facebook Events and Meetup.\n
> \n
> If you want to contribute to PeerTube, feel free to:\n
> \n
> - report bugs and give your feedback on [Github](https://github.com/Chocobozzz/PeerTube/) or on [our forums](https://framacolibri.org/c/peertube/38)\n
> - submit your brillant ideas on our [Feedback platform](https://ideas.joinpeertube.org/)\n
> - Help to translate the software, following [the contributing guide](https://docs.joinpeertube.org/contribute-getting-started?id=translate)\n
> - [Make a donation](https://support.joinpeertube.org/en/) to help to pay bills inbound in the development of PeerTube.
"""
+type: "link"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 12
+favouriteCount: 167
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1702583776 {#3031
date: 2023-12-14 20:56:16.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#3039 …}
+votes: Doctrine\ORM\PersistentCollection {#3041 …}
+reports: Doctrine\ORM\PersistentCollection {#3043 …}
+favourites: Doctrine\ORM\PersistentCollection {#3045 …}
+notifications: Doctrine\ORM\PersistentCollection {#3047 …}
+badges: Doctrine\ORM\PersistentCollection {#3049 …}
+children: [
1 => App\Entity\EntryComment {#2384}
0 => App\Entity\EntryComment {#2389
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2378 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2369 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2379 …}
+body: "It uses just the same as other video sites **plus** some upload bandwidth that is usually unused anyway. Also there is an option to download the video purely by HTTP without torrenting if someone wants to."
+lang: "en"
+isAdult: false
+favouriteCount: 2
+score: 0
+lastActive: DateTime @1702423109 {#1883
date: 2023-12-13 00:18:29.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Framasoft@lemmy.world"
"@penquin@lemm.ee"
"@smileyhead@discuss.tchncs.de"
]
+children: Doctrine\ORM\PersistentCollection {#2387 …}
+nested: Doctrine\ORM\PersistentCollection {#2394 …}
+votes: Doctrine\ORM\PersistentCollection {#2393 …}
+reports: Doctrine\ORM\PersistentCollection {#1381 …}
+favourites: Doctrine\ORM\PersistentCollection {#1402 …}
+notifications: Doctrine\ORM\PersistentCollection {#1385 …}
-id: 219632
-bodyTs: "'also':19 'anyway':18 'bandwidth':13 'download':25 'http':30 'option':23 'plus':10 'pure':28 'site':9 'someon':34 'torrent':32 'unus':17 'upload':12 'use':2 'usual':16 'video':8,27 'want':35 'without':31"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5664486"
+editedAt: null
+createdAt: DateTimeImmutable @1702423109 {#2391
date: 2023-12-13 00:18:29.0 +01:00
}
+"title": 219632
}
]
-id: 21880
-titleTs: "'app':2 'bright':11 'build':9 'dev':5 'futur':12 'let':7 'mobil':1 'new':4 'peertub':14 'promot':6 'redesign':3"
-bodyTs: "'/)':299 '/c/peertube/38)':288 '/chocobozzz/peertube/)':281 '/contribute-getting-started?id=translate)':311 '/en/)':317 '/en/),':200,250 '/post/9483559](https://lemmy.world/post/9483559)':7 '/wiki/fediverse)':60 'abl':47,120 'action':229 'activitypub':36,43 'actual':194,228 'also':241 'altern':14,31,255 'aris':226 'avail':95,174 'bandwidth':94 'bigger':53 'bill':322 'brillant':291 'bug':272 'built':41 'check':142 'content':165 'contribut':265,307 'convinc':214,222 'creator':166 'cross':2 'cross-post':1 'curious':132 'decentr':11,252 'develop':190,245,326 'didn':108 'digit':218 'disabl':110 'docs.joinpeertube.org':310 'docs.joinpeertube.org/contribute-getting-started?id=translate)':309 'donat':314 'educ':208 'emancip':217 'en.wikipedia.org':59 'en.wikipedia.org/wiki/fediverse)':58 'enough':140 'event':258 'facebook':257 'featur':112 'feder':13,62,254 'fedivers':57 'feedback':276,295 'feel':268 'find':171 'follow':305 'forum':285 'framacolibri.org':287 'framacolibri.org/c/peertube/38)':286 'framasoft':197,239 'framasoft.org':199 'framasoft.org/en/),':198 'free':269 'french':202 'friend':213 'github':278 'github.com':280 'github.com/chocobozzz/peertube/)':279 'give':274 'goal':18 'group':211 'guid':308 'hand':67 'help':70,300,319 'host':100,179 'idea':292 'ideas.joinpeertube.org':298 'ideas.joinpeertube.org/)':297 'inbound':78,323 'involv':242 'issu':75 'joinmobilizon.org':249 'joinmobilizon.org/en/),':248 'joinpeertube.org':146 'learn':148 'lemmy.world':6 'lemmy.world/post/9483559](https://lemmy.world/post/9483559)':5 'lot':92 'make':312 'mean':44 'meetup':260 'mobilizon':247 'money':77 'need':88 'network':55 'non':204 'non-for-profit':203 'offer':28 'offici':144 'onlin':234 'organ':209 'p2p':38,68 'part':50 'pay':321 'peertub':8,20,45,71,84,102,117,134,162,183,192,267,328 'platform':82,103,173,184,296 'popular':207 'possibl':221 'post':3 'profit':206 'project':152 'protocol':39 'real':231 'recommend':138 'regist':177 'replac':24 'report':271 'server':98,188 'share':122 'social':54 'softwar':304 'solv':73 'sponsor':195 'stream':81 'strength':34 'submit':289 'support.joinpeertube.org':316 'support.joinpeertube.org/en/)':315 'technolog':69 'translat':302 'tri':159,169 'univers':63 'use':32,161 'user':106 'viabl':30 'video':115,125 'viewer':128 'want':157,263 'watch':113 'websit':145 'world':219,232 'youtub':16,25"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1702486230
+visibility: "visible "
+apId: "https://lemmy.world/post/9483617"
+editedAt: null
+createdAt: DateTimeImmutable @1702399830 {#3017
date: 2023-12-12 17:50:30.0 +01:00
}
+__isInitialized__: true
…2
}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2379 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2379 …}
+body: """
It is part od the Fediverse, so commenting, likes, following, etc. should regarless of what ActivityPub-enabled service you use for interactions (for example can comment from Mastodon account).\n
\n
The “Peer” part of “PeerTube” means that the video player itself is based on torrent technology. It is not saved on your device (unless you decide to), just when you watch you also send the video to cut off some of the server’s bandwidth. Videos are not shared between servers, only the information that they exists, only on uploader’s server and between user’s devices.\n
\n
It is not to preserve videos online, for that we have other tools like proper torrents, this is ment to be alternative to YouTube. TLDR Here ActivityPub is for statuses, Torrent is for helping the servers.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 5
+score: 0
+lastActive: DateTime @1702413211 {#2448
date: 2023-12-12 21:33:31.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Framasoft@lemmy.world"
"@penquin@lemm.ee"
]
+children: Doctrine\ORM\PersistentCollection {#2381 …}
+nested: Doctrine\ORM\PersistentCollection {#1910 …}
+votes: Doctrine\ORM\PersistentCollection {#1909 …}
+reports: Doctrine\ORM\PersistentCollection {#1926 …}
+favourites: Doctrine\ORM\PersistentCollection {#1874 …}
+notifications: Doctrine\ORM\PersistentCollection {#1908 …}
-id: 219224
-bodyTs: "'account':30 'activitypub':17,124 'activitypub-en':16 'also':63 'altern':119 'bandwidth':75 'base':43 'comment':8,27 'cut':68 'decid':56 'devic':53,97 'enabl':18 'etc':11 'exampl':25 'exist':87 'fedivers':6 'follow':10 'help':131 'inform':84 'interact':23 'like':9,111 'mastodon':29 'mean':36 'ment':116 'od':4 'onlin':104 'part':3,33 'peer':32 'peertub':35 'player':40 'preserv':102 'proper':112 'regarless':13 'save':50 'send':64 'server':73,81,92,133 'servic':19 'share':79 'status':127 'technolog':46 'tldr':122 'tool':110 'torrent':45,113,128 'unless':54 'upload':90 'use':21 'user':95 'video':39,66,76,103 'watch':61 'youtub':121"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5660777"
+editedAt: null
+createdAt: DateTimeImmutable @1702413211 {#2386
date: 2023-12-12 21:33:31.0 +01:00
}
+"title": 219224
} |
|
Show voter details
|
128 |
DENIED
|
moderate
|
App\Entity\EntryComment {#2384
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2378
+user: Proxies\__CG__\App\Entity\User {#2994 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: Proxies\__CG__\App\Entity\Image {#3036 …}
+domain: Proxies\__CG__\App\Entity\Domain {#3038 …}
+slug: "Mobile-App-redesign-new-dev-promotion-let-s-build-a-bright"
+title: "Mobile App, redesign, new dev, promotion… let’s build a bright future for PeerTube!"
+url: "https://framablog.org/2023/12/12/mobile-app-redesign-new-dev-promotion-lets-build-a-bright-future-for-peertube/"
+body: """
cross-posted from: [lemmy.world/post/9483559](https://lemmy.world/post/9483559)\n
\n
> PeerTube is a decentralized and federated alternative to YouTube. The goal of PeerTube is not to replace YouTube but to offer a viable alternative using the strength of ActivityPub and P2P protocols.\n
> \n
> Being built on ActivityPub means PeerTube is able to be part of a bigger social network, the [Fediverse](https://en.wikipedia.org/wiki/Fediverse) (the Federated Universe). On the other hand, P2P technologies help PeerTube to solve the issue of money, inbound with all streaming platform : With PeerTube, you don’t need to have a lot of bandwidth available on your server to host a PeerTube platform because all users (which didn’t disable the feature) watching a video on PeerTube will be able to share this same video to other viewers.\n
> \n
> If you are curious about PeerTube, I can’t recommend you enough to check [the official website](https://joinpeertube.org) to learn more about the project. If after that you want to try to use PeerTube as a content creator, you can try to find a platform available there to register or host yourself your own PeerTube platform on your own server.\n
> \n
> The development of PeerTube is actually sponsored by [Framasoft](https://framasoft.org/en/), a french non-for-profit popular educational organization, a group of friends convinced that an emancipating digital world is possible, convinced that it will arise through actual actions on real world and online with and for you!\n
> \n
> Framasoft is also involved in the development of [Mobilizon](https://joinmobilizon.org/en/), a decentralized and federated alternative to Facebook Events and Meetup.\n
> \n
> If you want to contribute to PeerTube, feel free to:\n
> \n
> - report bugs and give your feedback on [Github](https://github.com/Chocobozzz/PeerTube/) or on [our forums](https://framacolibri.org/c/peertube/38)\n
> - submit your brillant ideas on our [Feedback platform](https://ideas.joinpeertube.org/)\n
> - Help to translate the software, following [the contributing guide](https://docs.joinpeertube.org/contribute-getting-started?id=translate)\n
> - [Make a donation](https://support.joinpeertube.org/en/) to help to pay bills inbound in the development of PeerTube.
"""
+type: "link"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 12
+favouriteCount: 167
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1702583776 {#3031
date: 2023-12-14 20:56:16.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#3039 …}
+votes: Doctrine\ORM\PersistentCollection {#3041 …}
+reports: Doctrine\ORM\PersistentCollection {#3043 …}
+favourites: Doctrine\ORM\PersistentCollection {#3045 …}
+notifications: Doctrine\ORM\PersistentCollection {#3047 …}
+badges: Doctrine\ORM\PersistentCollection {#3049 …}
+children: [
1 => App\Entity\EntryComment {#2384}
0 => App\Entity\EntryComment {#2389
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2378 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2369 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2379 …}
+body: "It uses just the same as other video sites **plus** some upload bandwidth that is usually unused anyway. Also there is an option to download the video purely by HTTP without torrenting if someone wants to."
+lang: "en"
+isAdult: false
+favouriteCount: 2
+score: 0
+lastActive: DateTime @1702423109 {#1883
date: 2023-12-13 00:18:29.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Framasoft@lemmy.world"
"@penquin@lemm.ee"
"@smileyhead@discuss.tchncs.de"
]
+children: Doctrine\ORM\PersistentCollection {#2387 …}
+nested: Doctrine\ORM\PersistentCollection {#2394 …}
+votes: Doctrine\ORM\PersistentCollection {#2393 …}
+reports: Doctrine\ORM\PersistentCollection {#1381 …}
+favourites: Doctrine\ORM\PersistentCollection {#1402 …}
+notifications: Doctrine\ORM\PersistentCollection {#1385 …}
-id: 219632
-bodyTs: "'also':19 'anyway':18 'bandwidth':13 'download':25 'http':30 'option':23 'plus':10 'pure':28 'site':9 'someon':34 'torrent':32 'unus':17 'upload':12 'use':2 'usual':16 'video':8,27 'want':35 'without':31"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5664486"
+editedAt: null
+createdAt: DateTimeImmutable @1702423109 {#2391
date: 2023-12-13 00:18:29.0 +01:00
}
+"title": 219632
}
]
-id: 21880
-titleTs: "'app':2 'bright':11 'build':9 'dev':5 'futur':12 'let':7 'mobil':1 'new':4 'peertub':14 'promot':6 'redesign':3"
-bodyTs: "'/)':299 '/c/peertube/38)':288 '/chocobozzz/peertube/)':281 '/contribute-getting-started?id=translate)':311 '/en/)':317 '/en/),':200,250 '/post/9483559](https://lemmy.world/post/9483559)':7 '/wiki/fediverse)':60 'abl':47,120 'action':229 'activitypub':36,43 'actual':194,228 'also':241 'altern':14,31,255 'aris':226 'avail':95,174 'bandwidth':94 'bigger':53 'bill':322 'brillant':291 'bug':272 'built':41 'check':142 'content':165 'contribut':265,307 'convinc':214,222 'creator':166 'cross':2 'cross-post':1 'curious':132 'decentr':11,252 'develop':190,245,326 'didn':108 'digit':218 'disabl':110 'docs.joinpeertube.org':310 'docs.joinpeertube.org/contribute-getting-started?id=translate)':309 'donat':314 'educ':208 'emancip':217 'en.wikipedia.org':59 'en.wikipedia.org/wiki/fediverse)':58 'enough':140 'event':258 'facebook':257 'featur':112 'feder':13,62,254 'fedivers':57 'feedback':276,295 'feel':268 'find':171 'follow':305 'forum':285 'framacolibri.org':287 'framacolibri.org/c/peertube/38)':286 'framasoft':197,239 'framasoft.org':199 'framasoft.org/en/),':198 'free':269 'french':202 'friend':213 'github':278 'github.com':280 'github.com/chocobozzz/peertube/)':279 'give':274 'goal':18 'group':211 'guid':308 'hand':67 'help':70,300,319 'host':100,179 'idea':292 'ideas.joinpeertube.org':298 'ideas.joinpeertube.org/)':297 'inbound':78,323 'involv':242 'issu':75 'joinmobilizon.org':249 'joinmobilizon.org/en/),':248 'joinpeertube.org':146 'learn':148 'lemmy.world':6 'lemmy.world/post/9483559](https://lemmy.world/post/9483559)':5 'lot':92 'make':312 'mean':44 'meetup':260 'mobilizon':247 'money':77 'need':88 'network':55 'non':204 'non-for-profit':203 'offer':28 'offici':144 'onlin':234 'organ':209 'p2p':38,68 'part':50 'pay':321 'peertub':8,20,45,71,84,102,117,134,162,183,192,267,328 'platform':82,103,173,184,296 'popular':207 'possibl':221 'post':3 'profit':206 'project':152 'protocol':39 'real':231 'recommend':138 'regist':177 'replac':24 'report':271 'server':98,188 'share':122 'social':54 'softwar':304 'solv':73 'sponsor':195 'stream':81 'strength':34 'submit':289 'support.joinpeertube.org':316 'support.joinpeertube.org/en/)':315 'technolog':69 'translat':302 'tri':159,169 'univers':63 'use':32,161 'user':106 'viabl':30 'video':115,125 'viewer':128 'want':157,263 'watch':113 'websit':145 'world':219,232 'youtub':16,25"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1702486230
+visibility: "visible "
+apId: "https://lemmy.world/post/9483617"
+editedAt: null
+createdAt: DateTimeImmutable @1702399830 {#3017
date: 2023-12-12 17:50:30.0 +01:00
}
+__isInitialized__: true
…2
}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2379 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2379 …}
+body: """
It is part od the Fediverse, so commenting, likes, following, etc. should regarless of what ActivityPub-enabled service you use for interactions (for example can comment from Mastodon account).\n
\n
The “Peer” part of “PeerTube” means that the video player itself is based on torrent technology. It is not saved on your device (unless you decide to), just when you watch you also send the video to cut off some of the server’s bandwidth. Videos are not shared between servers, only the information that they exists, only on uploader’s server and between user’s devices.\n
\n
It is not to preserve videos online, for that we have other tools like proper torrents, this is ment to be alternative to YouTube. TLDR Here ActivityPub is for statuses, Torrent is for helping the servers.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 5
+score: 0
+lastActive: DateTime @1702413211 {#2448
date: 2023-12-12 21:33:31.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Framasoft@lemmy.world"
"@penquin@lemm.ee"
]
+children: Doctrine\ORM\PersistentCollection {#2381 …}
+nested: Doctrine\ORM\PersistentCollection {#1910 …}
+votes: Doctrine\ORM\PersistentCollection {#1909 …}
+reports: Doctrine\ORM\PersistentCollection {#1926 …}
+favourites: Doctrine\ORM\PersistentCollection {#1874 …}
+notifications: Doctrine\ORM\PersistentCollection {#1908 …}
-id: 219224
-bodyTs: "'account':30 'activitypub':17,124 'activitypub-en':16 'also':63 'altern':119 'bandwidth':75 'base':43 'comment':8,27 'cut':68 'decid':56 'devic':53,97 'enabl':18 'etc':11 'exampl':25 'exist':87 'fedivers':6 'follow':10 'help':131 'inform':84 'interact':23 'like':9,111 'mastodon':29 'mean':36 'ment':116 'od':4 'onlin':104 'part':3,33 'peer':32 'peertub':35 'player':40 'preserv':102 'proper':112 'regarless':13 'save':50 'send':64 'server':73,81,92,133 'servic':19 'share':79 'status':127 'technolog':46 'tldr':122 'tool':110 'torrent':45,113,128 'unless':54 'upload':90 'use':21 'user':95 'video':39,66,76,103 'watch':61 'youtub':121"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5660777"
+editedAt: null
+createdAt: DateTimeImmutable @1702413211 {#2386
date: 2023-12-12 21:33:31.0 +01:00
}
+"title": 219224
} |
|
Show voter details
|
129 |
DENIED
|
ROLE_USER
|
null |
|
Show voter details
|
130 |
DENIED
|
moderate
|
App\Entity\EntryComment {#2389
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2378
+user: Proxies\__CG__\App\Entity\User {#2994 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: Proxies\__CG__\App\Entity\Image {#3036 …}
+domain: Proxies\__CG__\App\Entity\Domain {#3038 …}
+slug: "Mobile-App-redesign-new-dev-promotion-let-s-build-a-bright"
+title: "Mobile App, redesign, new dev, promotion… let’s build a bright future for PeerTube!"
+url: "https://framablog.org/2023/12/12/mobile-app-redesign-new-dev-promotion-lets-build-a-bright-future-for-peertube/"
+body: """
cross-posted from: [lemmy.world/post/9483559](https://lemmy.world/post/9483559)\n
\n
> PeerTube is a decentralized and federated alternative to YouTube. The goal of PeerTube is not to replace YouTube but to offer a viable alternative using the strength of ActivityPub and P2P protocols.\n
> \n
> Being built on ActivityPub means PeerTube is able to be part of a bigger social network, the [Fediverse](https://en.wikipedia.org/wiki/Fediverse) (the Federated Universe). On the other hand, P2P technologies help PeerTube to solve the issue of money, inbound with all streaming platform : With PeerTube, you don’t need to have a lot of bandwidth available on your server to host a PeerTube platform because all users (which didn’t disable the feature) watching a video on PeerTube will be able to share this same video to other viewers.\n
> \n
> If you are curious about PeerTube, I can’t recommend you enough to check [the official website](https://joinpeertube.org) to learn more about the project. If after that you want to try to use PeerTube as a content creator, you can try to find a platform available there to register or host yourself your own PeerTube platform on your own server.\n
> \n
> The development of PeerTube is actually sponsored by [Framasoft](https://framasoft.org/en/), a french non-for-profit popular educational organization, a group of friends convinced that an emancipating digital world is possible, convinced that it will arise through actual actions on real world and online with and for you!\n
> \n
> Framasoft is also involved in the development of [Mobilizon](https://joinmobilizon.org/en/), a decentralized and federated alternative to Facebook Events and Meetup.\n
> \n
> If you want to contribute to PeerTube, feel free to:\n
> \n
> - report bugs and give your feedback on [Github](https://github.com/Chocobozzz/PeerTube/) or on [our forums](https://framacolibri.org/c/peertube/38)\n
> - submit your brillant ideas on our [Feedback platform](https://ideas.joinpeertube.org/)\n
> - Help to translate the software, following [the contributing guide](https://docs.joinpeertube.org/contribute-getting-started?id=translate)\n
> - [Make a donation](https://support.joinpeertube.org/en/) to help to pay bills inbound in the development of PeerTube.
"""
+type: "link"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 12
+favouriteCount: 167
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1702583776 {#3031
date: 2023-12-14 20:56:16.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#3039 …}
+votes: Doctrine\ORM\PersistentCollection {#3041 …}
+reports: Doctrine\ORM\PersistentCollection {#3043 …}
+favourites: Doctrine\ORM\PersistentCollection {#3045 …}
+notifications: Doctrine\ORM\PersistentCollection {#3047 …}
+badges: Doctrine\ORM\PersistentCollection {#3049 …}
+children: [
1 => App\Entity\EntryComment {#2384
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2378 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2379 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2379 …}
+body: """
It is part od the Fediverse, so commenting, likes, following, etc. should regarless of what ActivityPub-enabled service you use for interactions (for example can comment from Mastodon account).\n
\n
The “Peer” part of “PeerTube” means that the video player itself is based on torrent technology. It is not saved on your device (unless you decide to), just when you watch you also send the video to cut off some of the server’s bandwidth. Videos are not shared between servers, only the information that they exists, only on uploader’s server and between user’s devices.\n
\n
It is not to preserve videos online, for that we have other tools like proper torrents, this is ment to be alternative to YouTube. TLDR Here ActivityPub is for statuses, Torrent is for helping the servers.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 5
+score: 0
+lastActive: DateTime @1702413211 {#2448
date: 2023-12-12 21:33:31.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Framasoft@lemmy.world"
"@penquin@lemm.ee"
]
+children: Doctrine\ORM\PersistentCollection {#2381 …}
+nested: Doctrine\ORM\PersistentCollection {#1910 …}
+votes: Doctrine\ORM\PersistentCollection {#1909 …}
+reports: Doctrine\ORM\PersistentCollection {#1926 …}
+favourites: Doctrine\ORM\PersistentCollection {#1874 …}
+notifications: Doctrine\ORM\PersistentCollection {#1908 …}
-id: 219224
-bodyTs: "'account':30 'activitypub':17,124 'activitypub-en':16 'also':63 'altern':119 'bandwidth':75 'base':43 'comment':8,27 'cut':68 'decid':56 'devic':53,97 'enabl':18 'etc':11 'exampl':25 'exist':87 'fedivers':6 'follow':10 'help':131 'inform':84 'interact':23 'like':9,111 'mastodon':29 'mean':36 'ment':116 'od':4 'onlin':104 'part':3,33 'peer':32 'peertub':35 'player':40 'preserv':102 'proper':112 'regarless':13 'save':50 'send':64 'server':73,81,92,133 'servic':19 'share':79 'status':127 'technolog':46 'tldr':122 'tool':110 'torrent':45,113,128 'unless':54 'upload':90 'use':21 'user':95 'video':39,66,76,103 'watch':61 'youtub':121"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5660777"
+editedAt: null
+createdAt: DateTimeImmutable @1702413211 {#2386
date: 2023-12-12 21:33:31.0 +01:00
}
+"title": 219224
}
0 => App\Entity\EntryComment {#2389}
]
-id: 21880
-titleTs: "'app':2 'bright':11 'build':9 'dev':5 'futur':12 'let':7 'mobil':1 'new':4 'peertub':14 'promot':6 'redesign':3"
-bodyTs: "'/)':299 '/c/peertube/38)':288 '/chocobozzz/peertube/)':281 '/contribute-getting-started?id=translate)':311 '/en/)':317 '/en/),':200,250 '/post/9483559](https://lemmy.world/post/9483559)':7 '/wiki/fediverse)':60 'abl':47,120 'action':229 'activitypub':36,43 'actual':194,228 'also':241 'altern':14,31,255 'aris':226 'avail':95,174 'bandwidth':94 'bigger':53 'bill':322 'brillant':291 'bug':272 'built':41 'check':142 'content':165 'contribut':265,307 'convinc':214,222 'creator':166 'cross':2 'cross-post':1 'curious':132 'decentr':11,252 'develop':190,245,326 'didn':108 'digit':218 'disabl':110 'docs.joinpeertube.org':310 'docs.joinpeertube.org/contribute-getting-started?id=translate)':309 'donat':314 'educ':208 'emancip':217 'en.wikipedia.org':59 'en.wikipedia.org/wiki/fediverse)':58 'enough':140 'event':258 'facebook':257 'featur':112 'feder':13,62,254 'fedivers':57 'feedback':276,295 'feel':268 'find':171 'follow':305 'forum':285 'framacolibri.org':287 'framacolibri.org/c/peertube/38)':286 'framasoft':197,239 'framasoft.org':199 'framasoft.org/en/),':198 'free':269 'french':202 'friend':213 'github':278 'github.com':280 'github.com/chocobozzz/peertube/)':279 'give':274 'goal':18 'group':211 'guid':308 'hand':67 'help':70,300,319 'host':100,179 'idea':292 'ideas.joinpeertube.org':298 'ideas.joinpeertube.org/)':297 'inbound':78,323 'involv':242 'issu':75 'joinmobilizon.org':249 'joinmobilizon.org/en/),':248 'joinpeertube.org':146 'learn':148 'lemmy.world':6 'lemmy.world/post/9483559](https://lemmy.world/post/9483559)':5 'lot':92 'make':312 'mean':44 'meetup':260 'mobilizon':247 'money':77 'need':88 'network':55 'non':204 'non-for-profit':203 'offer':28 'offici':144 'onlin':234 'organ':209 'p2p':38,68 'part':50 'pay':321 'peertub':8,20,45,71,84,102,117,134,162,183,192,267,328 'platform':82,103,173,184,296 'popular':207 'possibl':221 'post':3 'profit':206 'project':152 'protocol':39 'real':231 'recommend':138 'regist':177 'replac':24 'report':271 'server':98,188 'share':122 'social':54 'softwar':304 'solv':73 'sponsor':195 'stream':81 'strength':34 'submit':289 'support.joinpeertube.org':316 'support.joinpeertube.org/en/)':315 'technolog':69 'translat':302 'tri':159,169 'univers':63 'use':32,161 'user':106 'viabl':30 'video':115,125 'viewer':128 'want':157,263 'watch':113 'websit':145 'world':219,232 'youtub':16,25"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1702486230
+visibility: "visible "
+apId: "https://lemmy.world/post/9483617"
+editedAt: null
+createdAt: DateTimeImmutable @1702399830 {#3017
date: 2023-12-12 17:50:30.0 +01:00
}
+__isInitialized__: true
…2
}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2369 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2379 …}
+body: "It uses just the same as other video sites **plus** some upload bandwidth that is usually unused anyway. Also there is an option to download the video purely by HTTP without torrenting if someone wants to."
+lang: "en"
+isAdult: false
+favouriteCount: 2
+score: 0
+lastActive: DateTime @1702423109 {#1883
date: 2023-12-13 00:18:29.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Framasoft@lemmy.world"
"@penquin@lemm.ee"
"@smileyhead@discuss.tchncs.de"
]
+children: Doctrine\ORM\PersistentCollection {#2387 …}
+nested: Doctrine\ORM\PersistentCollection {#2394 …}
+votes: Doctrine\ORM\PersistentCollection {#2393 …}
+reports: Doctrine\ORM\PersistentCollection {#1381 …}
+favourites: Doctrine\ORM\PersistentCollection {#1402 …}
+notifications: Doctrine\ORM\PersistentCollection {#1385 …}
-id: 219632
-bodyTs: "'also':19 'anyway':18 'bandwidth':13 'download':25 'http':30 'option':23 'plus':10 'pure':28 'site':9 'someon':34 'torrent':32 'unus':17 'upload':12 'use':2 'usual':16 'video':8,27 'want':35 'without':31"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5664486"
+editedAt: null
+createdAt: DateTimeImmutable @1702423109 {#2391
date: 2023-12-13 00:18:29.0 +01:00
}
+"title": 219632
} |
|
Show voter details
|
131 |
DENIED
|
edit
|
App\Entity\EntryComment {#2389
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2378
+user: Proxies\__CG__\App\Entity\User {#2994 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: Proxies\__CG__\App\Entity\Image {#3036 …}
+domain: Proxies\__CG__\App\Entity\Domain {#3038 …}
+slug: "Mobile-App-redesign-new-dev-promotion-let-s-build-a-bright"
+title: "Mobile App, redesign, new dev, promotion… let’s build a bright future for PeerTube!"
+url: "https://framablog.org/2023/12/12/mobile-app-redesign-new-dev-promotion-lets-build-a-bright-future-for-peertube/"
+body: """
cross-posted from: [lemmy.world/post/9483559](https://lemmy.world/post/9483559)\n
\n
> PeerTube is a decentralized and federated alternative to YouTube. The goal of PeerTube is not to replace YouTube but to offer a viable alternative using the strength of ActivityPub and P2P protocols.\n
> \n
> Being built on ActivityPub means PeerTube is able to be part of a bigger social network, the [Fediverse](https://en.wikipedia.org/wiki/Fediverse) (the Federated Universe). On the other hand, P2P technologies help PeerTube to solve the issue of money, inbound with all streaming platform : With PeerTube, you don’t need to have a lot of bandwidth available on your server to host a PeerTube platform because all users (which didn’t disable the feature) watching a video on PeerTube will be able to share this same video to other viewers.\n
> \n
> If you are curious about PeerTube, I can’t recommend you enough to check [the official website](https://joinpeertube.org) to learn more about the project. If after that you want to try to use PeerTube as a content creator, you can try to find a platform available there to register or host yourself your own PeerTube platform on your own server.\n
> \n
> The development of PeerTube is actually sponsored by [Framasoft](https://framasoft.org/en/), a french non-for-profit popular educational organization, a group of friends convinced that an emancipating digital world is possible, convinced that it will arise through actual actions on real world and online with and for you!\n
> \n
> Framasoft is also involved in the development of [Mobilizon](https://joinmobilizon.org/en/), a decentralized and federated alternative to Facebook Events and Meetup.\n
> \n
> If you want to contribute to PeerTube, feel free to:\n
> \n
> - report bugs and give your feedback on [Github](https://github.com/Chocobozzz/PeerTube/) or on [our forums](https://framacolibri.org/c/peertube/38)\n
> - submit your brillant ideas on our [Feedback platform](https://ideas.joinpeertube.org/)\n
> - Help to translate the software, following [the contributing guide](https://docs.joinpeertube.org/contribute-getting-started?id=translate)\n
> - [Make a donation](https://support.joinpeertube.org/en/) to help to pay bills inbound in the development of PeerTube.
"""
+type: "link"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 12
+favouriteCount: 167
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1702583776 {#3031
date: 2023-12-14 20:56:16.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#3039 …}
+votes: Doctrine\ORM\PersistentCollection {#3041 …}
+reports: Doctrine\ORM\PersistentCollection {#3043 …}
+favourites: Doctrine\ORM\PersistentCollection {#3045 …}
+notifications: Doctrine\ORM\PersistentCollection {#3047 …}
+badges: Doctrine\ORM\PersistentCollection {#3049 …}
+children: [
1 => App\Entity\EntryComment {#2384
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2378 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2379 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2379 …}
+body: """
It is part od the Fediverse, so commenting, likes, following, etc. should regarless of what ActivityPub-enabled service you use for interactions (for example can comment from Mastodon account).\n
\n
The “Peer” part of “PeerTube” means that the video player itself is based on torrent technology. It is not saved on your device (unless you decide to), just when you watch you also send the video to cut off some of the server’s bandwidth. Videos are not shared between servers, only the information that they exists, only on uploader’s server and between user’s devices.\n
\n
It is not to preserve videos online, for that we have other tools like proper torrents, this is ment to be alternative to YouTube. TLDR Here ActivityPub is for statuses, Torrent is for helping the servers.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 5
+score: 0
+lastActive: DateTime @1702413211 {#2448
date: 2023-12-12 21:33:31.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Framasoft@lemmy.world"
"@penquin@lemm.ee"
]
+children: Doctrine\ORM\PersistentCollection {#2381 …}
+nested: Doctrine\ORM\PersistentCollection {#1910 …}
+votes: Doctrine\ORM\PersistentCollection {#1909 …}
+reports: Doctrine\ORM\PersistentCollection {#1926 …}
+favourites: Doctrine\ORM\PersistentCollection {#1874 …}
+notifications: Doctrine\ORM\PersistentCollection {#1908 …}
-id: 219224
-bodyTs: "'account':30 'activitypub':17,124 'activitypub-en':16 'also':63 'altern':119 'bandwidth':75 'base':43 'comment':8,27 'cut':68 'decid':56 'devic':53,97 'enabl':18 'etc':11 'exampl':25 'exist':87 'fedivers':6 'follow':10 'help':131 'inform':84 'interact':23 'like':9,111 'mastodon':29 'mean':36 'ment':116 'od':4 'onlin':104 'part':3,33 'peer':32 'peertub':35 'player':40 'preserv':102 'proper':112 'regarless':13 'save':50 'send':64 'server':73,81,92,133 'servic':19 'share':79 'status':127 'technolog':46 'tldr':122 'tool':110 'torrent':45,113,128 'unless':54 'upload':90 'use':21 'user':95 'video':39,66,76,103 'watch':61 'youtub':121"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5660777"
+editedAt: null
+createdAt: DateTimeImmutable @1702413211 {#2386
date: 2023-12-12 21:33:31.0 +01:00
}
+"title": 219224
}
0 => App\Entity\EntryComment {#2389}
]
-id: 21880
-titleTs: "'app':2 'bright':11 'build':9 'dev':5 'futur':12 'let':7 'mobil':1 'new':4 'peertub':14 'promot':6 'redesign':3"
-bodyTs: "'/)':299 '/c/peertube/38)':288 '/chocobozzz/peertube/)':281 '/contribute-getting-started?id=translate)':311 '/en/)':317 '/en/),':200,250 '/post/9483559](https://lemmy.world/post/9483559)':7 '/wiki/fediverse)':60 'abl':47,120 'action':229 'activitypub':36,43 'actual':194,228 'also':241 'altern':14,31,255 'aris':226 'avail':95,174 'bandwidth':94 'bigger':53 'bill':322 'brillant':291 'bug':272 'built':41 'check':142 'content':165 'contribut':265,307 'convinc':214,222 'creator':166 'cross':2 'cross-post':1 'curious':132 'decentr':11,252 'develop':190,245,326 'didn':108 'digit':218 'disabl':110 'docs.joinpeertube.org':310 'docs.joinpeertube.org/contribute-getting-started?id=translate)':309 'donat':314 'educ':208 'emancip':217 'en.wikipedia.org':59 'en.wikipedia.org/wiki/fediverse)':58 'enough':140 'event':258 'facebook':257 'featur':112 'feder':13,62,254 'fedivers':57 'feedback':276,295 'feel':268 'find':171 'follow':305 'forum':285 'framacolibri.org':287 'framacolibri.org/c/peertube/38)':286 'framasoft':197,239 'framasoft.org':199 'framasoft.org/en/),':198 'free':269 'french':202 'friend':213 'github':278 'github.com':280 'github.com/chocobozzz/peertube/)':279 'give':274 'goal':18 'group':211 'guid':308 'hand':67 'help':70,300,319 'host':100,179 'idea':292 'ideas.joinpeertube.org':298 'ideas.joinpeertube.org/)':297 'inbound':78,323 'involv':242 'issu':75 'joinmobilizon.org':249 'joinmobilizon.org/en/),':248 'joinpeertube.org':146 'learn':148 'lemmy.world':6 'lemmy.world/post/9483559](https://lemmy.world/post/9483559)':5 'lot':92 'make':312 'mean':44 'meetup':260 'mobilizon':247 'money':77 'need':88 'network':55 'non':204 'non-for-profit':203 'offer':28 'offici':144 'onlin':234 'organ':209 'p2p':38,68 'part':50 'pay':321 'peertub':8,20,45,71,84,102,117,134,162,183,192,267,328 'platform':82,103,173,184,296 'popular':207 'possibl':221 'post':3 'profit':206 'project':152 'protocol':39 'real':231 'recommend':138 'regist':177 'replac':24 'report':271 'server':98,188 'share':122 'social':54 'softwar':304 'solv':73 'sponsor':195 'stream':81 'strength':34 'submit':289 'support.joinpeertube.org':316 'support.joinpeertube.org/en/)':315 'technolog':69 'translat':302 'tri':159,169 'univers':63 'use':32,161 'user':106 'viabl':30 'video':115,125 'viewer':128 'want':157,263 'watch':113 'websit':145 'world':219,232 'youtub':16,25"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1702486230
+visibility: "visible "
+apId: "https://lemmy.world/post/9483617"
+editedAt: null
+createdAt: DateTimeImmutable @1702399830 {#3017
date: 2023-12-12 17:50:30.0 +01:00
}
+__isInitialized__: true
…2
}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2369 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2379 …}
+body: "It uses just the same as other video sites **plus** some upload bandwidth that is usually unused anyway. Also there is an option to download the video purely by HTTP without torrenting if someone wants to."
+lang: "en"
+isAdult: false
+favouriteCount: 2
+score: 0
+lastActive: DateTime @1702423109 {#1883
date: 2023-12-13 00:18:29.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Framasoft@lemmy.world"
"@penquin@lemm.ee"
"@smileyhead@discuss.tchncs.de"
]
+children: Doctrine\ORM\PersistentCollection {#2387 …}
+nested: Doctrine\ORM\PersistentCollection {#2394 …}
+votes: Doctrine\ORM\PersistentCollection {#2393 …}
+reports: Doctrine\ORM\PersistentCollection {#1381 …}
+favourites: Doctrine\ORM\PersistentCollection {#1402 …}
+notifications: Doctrine\ORM\PersistentCollection {#1385 …}
-id: 219632
-bodyTs: "'also':19 'anyway':18 'bandwidth':13 'download':25 'http':30 'option':23 'plus':10 'pure':28 'site':9 'someon':34 'torrent':32 'unus':17 'upload':12 'use':2 'usual':16 'video':8,27 'want':35 'without':31"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5664486"
+editedAt: null
+createdAt: DateTimeImmutable @1702423109 {#2391
date: 2023-12-13 00:18:29.0 +01:00
}
+"title": 219632
} |
|
Show voter details
|
132 |
DENIED
|
moderate
|
App\Entity\EntryComment {#2389
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2378
+user: Proxies\__CG__\App\Entity\User {#2994 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: Proxies\__CG__\App\Entity\Image {#3036 …}
+domain: Proxies\__CG__\App\Entity\Domain {#3038 …}
+slug: "Mobile-App-redesign-new-dev-promotion-let-s-build-a-bright"
+title: "Mobile App, redesign, new dev, promotion… let’s build a bright future for PeerTube!"
+url: "https://framablog.org/2023/12/12/mobile-app-redesign-new-dev-promotion-lets-build-a-bright-future-for-peertube/"
+body: """
cross-posted from: [lemmy.world/post/9483559](https://lemmy.world/post/9483559)\n
\n
> PeerTube is a decentralized and federated alternative to YouTube. The goal of PeerTube is not to replace YouTube but to offer a viable alternative using the strength of ActivityPub and P2P protocols.\n
> \n
> Being built on ActivityPub means PeerTube is able to be part of a bigger social network, the [Fediverse](https://en.wikipedia.org/wiki/Fediverse) (the Federated Universe). On the other hand, P2P technologies help PeerTube to solve the issue of money, inbound with all streaming platform : With PeerTube, you don’t need to have a lot of bandwidth available on your server to host a PeerTube platform because all users (which didn’t disable the feature) watching a video on PeerTube will be able to share this same video to other viewers.\n
> \n
> If you are curious about PeerTube, I can’t recommend you enough to check [the official website](https://joinpeertube.org) to learn more about the project. If after that you want to try to use PeerTube as a content creator, you can try to find a platform available there to register or host yourself your own PeerTube platform on your own server.\n
> \n
> The development of PeerTube is actually sponsored by [Framasoft](https://framasoft.org/en/), a french non-for-profit popular educational organization, a group of friends convinced that an emancipating digital world is possible, convinced that it will arise through actual actions on real world and online with and for you!\n
> \n
> Framasoft is also involved in the development of [Mobilizon](https://joinmobilizon.org/en/), a decentralized and federated alternative to Facebook Events and Meetup.\n
> \n
> If you want to contribute to PeerTube, feel free to:\n
> \n
> - report bugs and give your feedback on [Github](https://github.com/Chocobozzz/PeerTube/) or on [our forums](https://framacolibri.org/c/peertube/38)\n
> - submit your brillant ideas on our [Feedback platform](https://ideas.joinpeertube.org/)\n
> - Help to translate the software, following [the contributing guide](https://docs.joinpeertube.org/contribute-getting-started?id=translate)\n
> - [Make a donation](https://support.joinpeertube.org/en/) to help to pay bills inbound in the development of PeerTube.
"""
+type: "link"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 12
+favouriteCount: 167
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1702583776 {#3031
date: 2023-12-14 20:56:16.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#3039 …}
+votes: Doctrine\ORM\PersistentCollection {#3041 …}
+reports: Doctrine\ORM\PersistentCollection {#3043 …}
+favourites: Doctrine\ORM\PersistentCollection {#3045 …}
+notifications: Doctrine\ORM\PersistentCollection {#3047 …}
+badges: Doctrine\ORM\PersistentCollection {#3049 …}
+children: [
1 => App\Entity\EntryComment {#2384
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#2378 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2379 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2379 …}
+body: """
It is part od the Fediverse, so commenting, likes, following, etc. should regarless of what ActivityPub-enabled service you use for interactions (for example can comment from Mastodon account).\n
\n
The “Peer” part of “PeerTube” means that the video player itself is based on torrent technology. It is not saved on your device (unless you decide to), just when you watch you also send the video to cut off some of the server’s bandwidth. Videos are not shared between servers, only the information that they exists, only on uploader’s server and between user’s devices.\n
\n
It is not to preserve videos online, for that we have other tools like proper torrents, this is ment to be alternative to YouTube. TLDR Here ActivityPub is for statuses, Torrent is for helping the servers.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 5
+score: 0
+lastActive: DateTime @1702413211 {#2448
date: 2023-12-12 21:33:31.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Framasoft@lemmy.world"
"@penquin@lemm.ee"
]
+children: Doctrine\ORM\PersistentCollection {#2381 …}
+nested: Doctrine\ORM\PersistentCollection {#1910 …}
+votes: Doctrine\ORM\PersistentCollection {#1909 …}
+reports: Doctrine\ORM\PersistentCollection {#1926 …}
+favourites: Doctrine\ORM\PersistentCollection {#1874 …}
+notifications: Doctrine\ORM\PersistentCollection {#1908 …}
-id: 219224
-bodyTs: "'account':30 'activitypub':17,124 'activitypub-en':16 'also':63 'altern':119 'bandwidth':75 'base':43 'comment':8,27 'cut':68 'decid':56 'devic':53,97 'enabl':18 'etc':11 'exampl':25 'exist':87 'fedivers':6 'follow':10 'help':131 'inform':84 'interact':23 'like':9,111 'mastodon':29 'mean':36 'ment':116 'od':4 'onlin':104 'part':3,33 'peer':32 'peertub':35 'player':40 'preserv':102 'proper':112 'regarless':13 'save':50 'send':64 'server':73,81,92,133 'servic':19 'share':79 'status':127 'technolog':46 'tldr':122 'tool':110 'torrent':45,113,128 'unless':54 'upload':90 'use':21 'user':95 'video':39,66,76,103 'watch':61 'youtub':121"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5660777"
+editedAt: null
+createdAt: DateTimeImmutable @1702413211 {#2386
date: 2023-12-12 21:33:31.0 +01:00
}
+"title": 219224
}
0 => App\Entity\EntryComment {#2389}
]
-id: 21880
-titleTs: "'app':2 'bright':11 'build':9 'dev':5 'futur':12 'let':7 'mobil':1 'new':4 'peertub':14 'promot':6 'redesign':3"
-bodyTs: "'/)':299 '/c/peertube/38)':288 '/chocobozzz/peertube/)':281 '/contribute-getting-started?id=translate)':311 '/en/)':317 '/en/),':200,250 '/post/9483559](https://lemmy.world/post/9483559)':7 '/wiki/fediverse)':60 'abl':47,120 'action':229 'activitypub':36,43 'actual':194,228 'also':241 'altern':14,31,255 'aris':226 'avail':95,174 'bandwidth':94 'bigger':53 'bill':322 'brillant':291 'bug':272 'built':41 'check':142 'content':165 'contribut':265,307 'convinc':214,222 'creator':166 'cross':2 'cross-post':1 'curious':132 'decentr':11,252 'develop':190,245,326 'didn':108 'digit':218 'disabl':110 'docs.joinpeertube.org':310 'docs.joinpeertube.org/contribute-getting-started?id=translate)':309 'donat':314 'educ':208 'emancip':217 'en.wikipedia.org':59 'en.wikipedia.org/wiki/fediverse)':58 'enough':140 'event':258 'facebook':257 'featur':112 'feder':13,62,254 'fedivers':57 'feedback':276,295 'feel':268 'find':171 'follow':305 'forum':285 'framacolibri.org':287 'framacolibri.org/c/peertube/38)':286 'framasoft':197,239 'framasoft.org':199 'framasoft.org/en/),':198 'free':269 'french':202 'friend':213 'github':278 'github.com':280 'github.com/chocobozzz/peertube/)':279 'give':274 'goal':18 'group':211 'guid':308 'hand':67 'help':70,300,319 'host':100,179 'idea':292 'ideas.joinpeertube.org':298 'ideas.joinpeertube.org/)':297 'inbound':78,323 'involv':242 'issu':75 'joinmobilizon.org':249 'joinmobilizon.org/en/),':248 'joinpeertube.org':146 'learn':148 'lemmy.world':6 'lemmy.world/post/9483559](https://lemmy.world/post/9483559)':5 'lot':92 'make':312 'mean':44 'meetup':260 'mobilizon':247 'money':77 'need':88 'network':55 'non':204 'non-for-profit':203 'offer':28 'offici':144 'onlin':234 'organ':209 'p2p':38,68 'part':50 'pay':321 'peertub':8,20,45,71,84,102,117,134,162,183,192,267,328 'platform':82,103,173,184,296 'popular':207 'possibl':221 'post':3 'profit':206 'project':152 'protocol':39 'real':231 'recommend':138 'regist':177 'replac':24 'report':271 'server':98,188 'share':122 'social':54 'softwar':304 'solv':73 'sponsor':195 'stream':81 'strength':34 'submit':289 'support.joinpeertube.org':316 'support.joinpeertube.org/en/)':315 'technolog':69 'translat':302 'tri':159,169 'univers':63 'use':32,161 'user':106 'viabl':30 'video':115,125 'viewer':128 'want':157,263 'watch':113 'websit':145 'world':219,232 'youtub':16,25"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1702486230
+visibility: "visible "
+apId: "https://lemmy.world/post/9483617"
+editedAt: null
+createdAt: DateTimeImmutable @1702399830 {#3017
date: 2023-12-12 17:50:30.0 +01:00
}
+__isInitialized__: true
…2
}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2369 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2379 …}
+body: "It uses just the same as other video sites **plus** some upload bandwidth that is usually unused anyway. Also there is an option to download the video purely by HTTP without torrenting if someone wants to."
+lang: "en"
+isAdult: false
+favouriteCount: 2
+score: 0
+lastActive: DateTime @1702423109 {#1883
date: 2023-12-13 00:18:29.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@Framasoft@lemmy.world"
"@penquin@lemm.ee"
"@smileyhead@discuss.tchncs.de"
]
+children: Doctrine\ORM\PersistentCollection {#2387 …}
+nested: Doctrine\ORM\PersistentCollection {#2394 …}
+votes: Doctrine\ORM\PersistentCollection {#2393 …}
+reports: Doctrine\ORM\PersistentCollection {#1381 …}
+favourites: Doctrine\ORM\PersistentCollection {#1402 …}
+notifications: Doctrine\ORM\PersistentCollection {#1385 …}
-id: 219632
-bodyTs: "'also':19 'anyway':18 'bandwidth':13 'download':25 'http':30 'option':23 'plus':10 'pure':28 'site':9 'someon':34 'torrent':32 'unus':17 'upload':12 'use':2 'usual':16 'video':8,27 'want':35 'without':31"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5664486"
+editedAt: null
+createdAt: DateTimeImmutable @1702423109 {#2391
date: 2023-12-13 00:18:29.0 +01:00
}
+"title": 219632
} |
|
Show voter details
|
133 |
DENIED
|
ROLE_USER
|
null |
|
Show voter details
|
134 |
DENIED
|
moderate
|
Proxies\__CG__\App\Entity\Entry {#1707
+user: Proxies\__CG__\App\Entity\User {#2973 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+domain: Proxies\__CG__\App\Entity\Domain {#3014 …}
+slug: "Make-a-Linux-App"
+title: "Make a Linux App"
+url: "https://makealinux.app/"
+body: "> Make a Linux app. Stop making distributions."
+type: "link"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 37
+favouriteCount: 130
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1702370115 {#3051
date: 2023-12-12 09:35:15.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#3056 …}
+votes: Doctrine\ORM\PersistentCollection {#3059 …}
+reports: Doctrine\ORM\PersistentCollection {#3061 …}
+favourites: Doctrine\ORM\PersistentCollection {#3063 …}
+notifications: Doctrine\ORM\PersistentCollection {#3065 …}
+badges: Doctrine\ORM\PersistentCollection {#3067 …}
+children: [
1 => App\Entity\EntryComment {#2464
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#1707 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2385 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2382 …}
+body: "Tauri is much better than Electron, but still not near close just native program. Let the web be simple, please."
+lang: "en"
+isAdult: false
+favouriteCount: 1
+score: 0
+lastActive: DateTime @1702225198 {#1630
date: 2023-12-10 17:19:58.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@pnutzh4x0r@lemmy.ndlug.org"
"@unionagainstdhmo@aussie.zone"
"@beeng@discuss.tchncs.de"
"@skullgiver@popplesburger.hilciferous.nl"
]
+children: Doctrine\ORM\PersistentCollection {#2380 …}
+nested: Doctrine\ORM\PersistentCollection {#2364 …}
+votes: Doctrine\ORM\PersistentCollection {#2359 …}
+reports: Doctrine\ORM\PersistentCollection {#2377 …}
+favourites: Doctrine\ORM\PersistentCollection {#2363 …}
+notifications: Doctrine\ORM\PersistentCollection {#2471 …}
-id: 216991
-bodyTs: "'better':4 'close':11 'electron':6 'let':15 'much':3 'nativ':13 'near':10 'pleas':20 'program':14 'simpl':19 'still':8 'tauri':1 'web':17"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5597187"
+editedAt: null
+createdAt: DateTimeImmutable @1702225198 {#2465
date: 2023-12-10 17:19:58.0 +01:00
}
+"title": 216991
}
0 => App\Entity\EntryComment {#2468
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#1707 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2459 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2455 …}
+body: "Can completely agree. On Apple systems I can find a ton of productivity and editing software, but no luck doing things like file operations or automating. On Linux I can find absolutely anything related to processing data, customization, science or protocol clients, but no luck finding good note taking tool."
+lang: "en"
+isAdult: false
+favouriteCount: 1
+score: 0
+lastActive: DateTime @1702370115 {#2469
date: 2023-12-12 09:35:15.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@pnutzh4x0r@lemmy.ndlug.org"
"@mvirts@lemmy.world"
"@GyozaPower@discuss.tchncs.de"
]
+children: Doctrine\ORM\PersistentCollection {#2454 …}
+nested: Doctrine\ORM\PersistentCollection {#2452 …}
+votes: Doctrine\ORM\PersistentCollection {#2460 …}
+reports: Doctrine\ORM\PersistentCollection {#2461 …}
+favourites: Doctrine\ORM\PersistentCollection {#2462 …}
+notifications: Doctrine\ORM\PersistentCollection {#2447 …}
-id: 217833
-bodyTs: "'absolut':32 'agre':3 'anyth':33 'appl':5 'autom':26 'client':42 'complet':2 'custom':38 'data':37 'edit':15 'file':23 'find':9,31,46 'good':47 'like':22 'linux':28 'luck':19,45 'note':48 'oper':24 'process':36 'product':13 'protocol':41 'relat':34 'scienc':39 'softwar':16 'system':6 'take':49 'thing':21 'ton':11 'tool':50"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5646733"
+editedAt: null
+createdAt: DateTimeImmutable @1702370115 {#2470
date: 2023-12-12 09:35:15.0 +01:00
}
+"title": 217833
}
]
-id: 21447
-titleTs: "'app':4 'linux':3 'make':1"
-bodyTs: "'app':4 'distribut':7 'linux':3 'make':1,6 'stop':5"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1702243613
+visibility: "visible "
+apId: "https://lemmy.ndlug.org/post/461660"
+editedAt: null
+createdAt: DateTimeImmutable @1702157213 {#3037
date: 2023-12-09 22:26:53.0 +01:00
}
+__isInitialized__: true
…2
} |
|
Show voter details
|
135 |
DENIED
|
edit
|
Proxies\__CG__\App\Entity\Entry {#1707
+user: Proxies\__CG__\App\Entity\User {#2973 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+domain: Proxies\__CG__\App\Entity\Domain {#3014 …}
+slug: "Make-a-Linux-App"
+title: "Make a Linux App"
+url: "https://makealinux.app/"
+body: "> Make a Linux app. Stop making distributions."
+type: "link"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 37
+favouriteCount: 130
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1702370115 {#3051
date: 2023-12-12 09:35:15.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#3056 …}
+votes: Doctrine\ORM\PersistentCollection {#3059 …}
+reports: Doctrine\ORM\PersistentCollection {#3061 …}
+favourites: Doctrine\ORM\PersistentCollection {#3063 …}
+notifications: Doctrine\ORM\PersistentCollection {#3065 …}
+badges: Doctrine\ORM\PersistentCollection {#3067 …}
+children: [
1 => App\Entity\EntryComment {#2464
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#1707 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2385 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2382 …}
+body: "Tauri is much better than Electron, but still not near close just native program. Let the web be simple, please."
+lang: "en"
+isAdult: false
+favouriteCount: 1
+score: 0
+lastActive: DateTime @1702225198 {#1630
date: 2023-12-10 17:19:58.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@pnutzh4x0r@lemmy.ndlug.org"
"@unionagainstdhmo@aussie.zone"
"@beeng@discuss.tchncs.de"
"@skullgiver@popplesburger.hilciferous.nl"
]
+children: Doctrine\ORM\PersistentCollection {#2380 …}
+nested: Doctrine\ORM\PersistentCollection {#2364 …}
+votes: Doctrine\ORM\PersistentCollection {#2359 …}
+reports: Doctrine\ORM\PersistentCollection {#2377 …}
+favourites: Doctrine\ORM\PersistentCollection {#2363 …}
+notifications: Doctrine\ORM\PersistentCollection {#2471 …}
-id: 216991
-bodyTs: "'better':4 'close':11 'electron':6 'let':15 'much':3 'nativ':13 'near':10 'pleas':20 'program':14 'simpl':19 'still':8 'tauri':1 'web':17"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5597187"
+editedAt: null
+createdAt: DateTimeImmutable @1702225198 {#2465
date: 2023-12-10 17:19:58.0 +01:00
}
+"title": 216991
}
0 => App\Entity\EntryComment {#2468
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#1707 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2459 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2455 …}
+body: "Can completely agree. On Apple systems I can find a ton of productivity and editing software, but no luck doing things like file operations or automating. On Linux I can find absolutely anything related to processing data, customization, science or protocol clients, but no luck finding good note taking tool."
+lang: "en"
+isAdult: false
+favouriteCount: 1
+score: 0
+lastActive: DateTime @1702370115 {#2469
date: 2023-12-12 09:35:15.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@pnutzh4x0r@lemmy.ndlug.org"
"@mvirts@lemmy.world"
"@GyozaPower@discuss.tchncs.de"
]
+children: Doctrine\ORM\PersistentCollection {#2454 …}
+nested: Doctrine\ORM\PersistentCollection {#2452 …}
+votes: Doctrine\ORM\PersistentCollection {#2460 …}
+reports: Doctrine\ORM\PersistentCollection {#2461 …}
+favourites: Doctrine\ORM\PersistentCollection {#2462 …}
+notifications: Doctrine\ORM\PersistentCollection {#2447 …}
-id: 217833
-bodyTs: "'absolut':32 'agre':3 'anyth':33 'appl':5 'autom':26 'client':42 'complet':2 'custom':38 'data':37 'edit':15 'file':23 'find':9,31,46 'good':47 'like':22 'linux':28 'luck':19,45 'note':48 'oper':24 'process':36 'product':13 'protocol':41 'relat':34 'scienc':39 'softwar':16 'system':6 'take':49 'thing':21 'ton':11 'tool':50"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5646733"
+editedAt: null
+createdAt: DateTimeImmutable @1702370115 {#2470
date: 2023-12-12 09:35:15.0 +01:00
}
+"title": 217833
}
]
-id: 21447
-titleTs: "'app':4 'linux':3 'make':1"
-bodyTs: "'app':4 'distribut':7 'linux':3 'make':1,6 'stop':5"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1702243613
+visibility: "visible "
+apId: "https://lemmy.ndlug.org/post/461660"
+editedAt: null
+createdAt: DateTimeImmutable @1702157213 {#3037
date: 2023-12-09 22:26:53.0 +01:00
}
+__isInitialized__: true
…2
} |
|
Show voter details
|
136 |
DENIED
|
moderate
|
Proxies\__CG__\App\Entity\Entry {#1707
+user: Proxies\__CG__\App\Entity\User {#2973 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+domain: Proxies\__CG__\App\Entity\Domain {#3014 …}
+slug: "Make-a-Linux-App"
+title: "Make a Linux App"
+url: "https://makealinux.app/"
+body: "> Make a Linux app. Stop making distributions."
+type: "link"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 37
+favouriteCount: 130
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1702370115 {#3051
date: 2023-12-12 09:35:15.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#3056 …}
+votes: Doctrine\ORM\PersistentCollection {#3059 …}
+reports: Doctrine\ORM\PersistentCollection {#3061 …}
+favourites: Doctrine\ORM\PersistentCollection {#3063 …}
+notifications: Doctrine\ORM\PersistentCollection {#3065 …}
+badges: Doctrine\ORM\PersistentCollection {#3067 …}
+children: [
1 => App\Entity\EntryComment {#2464
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#1707 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2385 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2382 …}
+body: "Tauri is much better than Electron, but still not near close just native program. Let the web be simple, please."
+lang: "en"
+isAdult: false
+favouriteCount: 1
+score: 0
+lastActive: DateTime @1702225198 {#1630
date: 2023-12-10 17:19:58.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@pnutzh4x0r@lemmy.ndlug.org"
"@unionagainstdhmo@aussie.zone"
"@beeng@discuss.tchncs.de"
"@skullgiver@popplesburger.hilciferous.nl"
]
+children: Doctrine\ORM\PersistentCollection {#2380 …}
+nested: Doctrine\ORM\PersistentCollection {#2364 …}
+votes: Doctrine\ORM\PersistentCollection {#2359 …}
+reports: Doctrine\ORM\PersistentCollection {#2377 …}
+favourites: Doctrine\ORM\PersistentCollection {#2363 …}
+notifications: Doctrine\ORM\PersistentCollection {#2471 …}
-id: 216991
-bodyTs: "'better':4 'close':11 'electron':6 'let':15 'much':3 'nativ':13 'near':10 'pleas':20 'program':14 'simpl':19 'still':8 'tauri':1 'web':17"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5597187"
+editedAt: null
+createdAt: DateTimeImmutable @1702225198 {#2465
date: 2023-12-10 17:19:58.0 +01:00
}
+"title": 216991
}
0 => App\Entity\EntryComment {#2468
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#1707 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2459 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2455 …}
+body: "Can completely agree. On Apple systems I can find a ton of productivity and editing software, but no luck doing things like file operations or automating. On Linux I can find absolutely anything related to processing data, customization, science or protocol clients, but no luck finding good note taking tool."
+lang: "en"
+isAdult: false
+favouriteCount: 1
+score: 0
+lastActive: DateTime @1702370115 {#2469
date: 2023-12-12 09:35:15.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@pnutzh4x0r@lemmy.ndlug.org"
"@mvirts@lemmy.world"
"@GyozaPower@discuss.tchncs.de"
]
+children: Doctrine\ORM\PersistentCollection {#2454 …}
+nested: Doctrine\ORM\PersistentCollection {#2452 …}
+votes: Doctrine\ORM\PersistentCollection {#2460 …}
+reports: Doctrine\ORM\PersistentCollection {#2461 …}
+favourites: Doctrine\ORM\PersistentCollection {#2462 …}
+notifications: Doctrine\ORM\PersistentCollection {#2447 …}
-id: 217833
-bodyTs: "'absolut':32 'agre':3 'anyth':33 'appl':5 'autom':26 'client':42 'complet':2 'custom':38 'data':37 'edit':15 'file':23 'find':9,31,46 'good':47 'like':22 'linux':28 'luck':19,45 'note':48 'oper':24 'process':36 'product':13 'protocol':41 'relat':34 'scienc':39 'softwar':16 'system':6 'take':49 'thing':21 'ton':11 'tool':50"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5646733"
+editedAt: null
+createdAt: DateTimeImmutable @1702370115 {#2470
date: 2023-12-12 09:35:15.0 +01:00
}
+"title": 217833
}
]
-id: 21447
-titleTs: "'app':4 'linux':3 'make':1"
-bodyTs: "'app':4 'distribut':7 'linux':3 'make':1,6 'stop':5"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1702243613
+visibility: "visible "
+apId: "https://lemmy.ndlug.org/post/461660"
+editedAt: null
+createdAt: DateTimeImmutable @1702157213 {#3037
date: 2023-12-09 22:26:53.0 +01:00
}
+__isInitialized__: true
…2
} |
|
Show voter details
|
137 |
DENIED
|
ROLE_USER
|
null |
|
Show voter details
|
138 |
DENIED
|
moderate
|
App\Entity\EntryComment {#2464
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#1707
+user: Proxies\__CG__\App\Entity\User {#2973 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+domain: Proxies\__CG__\App\Entity\Domain {#3014 …}
+slug: "Make-a-Linux-App"
+title: "Make a Linux App"
+url: "https://makealinux.app/"
+body: "> Make a Linux app. Stop making distributions."
+type: "link"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 37
+favouriteCount: 130
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1702370115 {#3051
date: 2023-12-12 09:35:15.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#3056 …}
+votes: Doctrine\ORM\PersistentCollection {#3059 …}
+reports: Doctrine\ORM\PersistentCollection {#3061 …}
+favourites: Doctrine\ORM\PersistentCollection {#3063 …}
+notifications: Doctrine\ORM\PersistentCollection {#3065 …}
+badges: Doctrine\ORM\PersistentCollection {#3067 …}
+children: [
1 => App\Entity\EntryComment {#2464}
0 => App\Entity\EntryComment {#2468
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#1707 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2459 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2455 …}
+body: "Can completely agree. On Apple systems I can find a ton of productivity and editing software, but no luck doing things like file operations or automating. On Linux I can find absolutely anything related to processing data, customization, science or protocol clients, but no luck finding good note taking tool."
+lang: "en"
+isAdult: false
+favouriteCount: 1
+score: 0
+lastActive: DateTime @1702370115 {#2469
date: 2023-12-12 09:35:15.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@pnutzh4x0r@lemmy.ndlug.org"
"@mvirts@lemmy.world"
"@GyozaPower@discuss.tchncs.de"
]
+children: Doctrine\ORM\PersistentCollection {#2454 …}
+nested: Doctrine\ORM\PersistentCollection {#2452 …}
+votes: Doctrine\ORM\PersistentCollection {#2460 …}
+reports: Doctrine\ORM\PersistentCollection {#2461 …}
+favourites: Doctrine\ORM\PersistentCollection {#2462 …}
+notifications: Doctrine\ORM\PersistentCollection {#2447 …}
-id: 217833
-bodyTs: "'absolut':32 'agre':3 'anyth':33 'appl':5 'autom':26 'client':42 'complet':2 'custom':38 'data':37 'edit':15 'file':23 'find':9,31,46 'good':47 'like':22 'linux':28 'luck':19,45 'note':48 'oper':24 'process':36 'product':13 'protocol':41 'relat':34 'scienc':39 'softwar':16 'system':6 'take':49 'thing':21 'ton':11 'tool':50"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5646733"
+editedAt: null
+createdAt: DateTimeImmutable @1702370115 {#2470
date: 2023-12-12 09:35:15.0 +01:00
}
+"title": 217833
}
]
-id: 21447
-titleTs: "'app':4 'linux':3 'make':1"
-bodyTs: "'app':4 'distribut':7 'linux':3 'make':1,6 'stop':5"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1702243613
+visibility: "visible "
+apId: "https://lemmy.ndlug.org/post/461660"
+editedAt: null
+createdAt: DateTimeImmutable @1702157213 {#3037
date: 2023-12-09 22:26:53.0 +01:00
}
+__isInitialized__: true
…2
}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2385 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2382 …}
+body: "Tauri is much better than Electron, but still not near close just native program. Let the web be simple, please."
+lang: "en"
+isAdult: false
+favouriteCount: 1
+score: 0
+lastActive: DateTime @1702225198 {#1630
date: 2023-12-10 17:19:58.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@pnutzh4x0r@lemmy.ndlug.org"
"@unionagainstdhmo@aussie.zone"
"@beeng@discuss.tchncs.de"
"@skullgiver@popplesburger.hilciferous.nl"
]
+children: Doctrine\ORM\PersistentCollection {#2380 …}
+nested: Doctrine\ORM\PersistentCollection {#2364 …}
+votes: Doctrine\ORM\PersistentCollection {#2359 …}
+reports: Doctrine\ORM\PersistentCollection {#2377 …}
+favourites: Doctrine\ORM\PersistentCollection {#2363 …}
+notifications: Doctrine\ORM\PersistentCollection {#2471 …}
-id: 216991
-bodyTs: "'better':4 'close':11 'electron':6 'let':15 'much':3 'nativ':13 'near':10 'pleas':20 'program':14 'simpl':19 'still':8 'tauri':1 'web':17"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5597187"
+editedAt: null
+createdAt: DateTimeImmutable @1702225198 {#2465
date: 2023-12-10 17:19:58.0 +01:00
}
+"title": 216991
} |
|
Show voter details
|
139 |
DENIED
|
edit
|
App\Entity\EntryComment {#2464
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#1707
+user: Proxies\__CG__\App\Entity\User {#2973 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+domain: Proxies\__CG__\App\Entity\Domain {#3014 …}
+slug: "Make-a-Linux-App"
+title: "Make a Linux App"
+url: "https://makealinux.app/"
+body: "> Make a Linux app. Stop making distributions."
+type: "link"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 37
+favouriteCount: 130
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1702370115 {#3051
date: 2023-12-12 09:35:15.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#3056 …}
+votes: Doctrine\ORM\PersistentCollection {#3059 …}
+reports: Doctrine\ORM\PersistentCollection {#3061 …}
+favourites: Doctrine\ORM\PersistentCollection {#3063 …}
+notifications: Doctrine\ORM\PersistentCollection {#3065 …}
+badges: Doctrine\ORM\PersistentCollection {#3067 …}
+children: [
1 => App\Entity\EntryComment {#2464}
0 => App\Entity\EntryComment {#2468
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#1707 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2459 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2455 …}
+body: "Can completely agree. On Apple systems I can find a ton of productivity and editing software, but no luck doing things like file operations or automating. On Linux I can find absolutely anything related to processing data, customization, science or protocol clients, but no luck finding good note taking tool."
+lang: "en"
+isAdult: false
+favouriteCount: 1
+score: 0
+lastActive: DateTime @1702370115 {#2469
date: 2023-12-12 09:35:15.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@pnutzh4x0r@lemmy.ndlug.org"
"@mvirts@lemmy.world"
"@GyozaPower@discuss.tchncs.de"
]
+children: Doctrine\ORM\PersistentCollection {#2454 …}
+nested: Doctrine\ORM\PersistentCollection {#2452 …}
+votes: Doctrine\ORM\PersistentCollection {#2460 …}
+reports: Doctrine\ORM\PersistentCollection {#2461 …}
+favourites: Doctrine\ORM\PersistentCollection {#2462 …}
+notifications: Doctrine\ORM\PersistentCollection {#2447 …}
-id: 217833
-bodyTs: "'absolut':32 'agre':3 'anyth':33 'appl':5 'autom':26 'client':42 'complet':2 'custom':38 'data':37 'edit':15 'file':23 'find':9,31,46 'good':47 'like':22 'linux':28 'luck':19,45 'note':48 'oper':24 'process':36 'product':13 'protocol':41 'relat':34 'scienc':39 'softwar':16 'system':6 'take':49 'thing':21 'ton':11 'tool':50"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5646733"
+editedAt: null
+createdAt: DateTimeImmutable @1702370115 {#2470
date: 2023-12-12 09:35:15.0 +01:00
}
+"title": 217833
}
]
-id: 21447
-titleTs: "'app':4 'linux':3 'make':1"
-bodyTs: "'app':4 'distribut':7 'linux':3 'make':1,6 'stop':5"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1702243613
+visibility: "visible "
+apId: "https://lemmy.ndlug.org/post/461660"
+editedAt: null
+createdAt: DateTimeImmutable @1702157213 {#3037
date: 2023-12-09 22:26:53.0 +01:00
}
+__isInitialized__: true
…2
}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2385 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2382 …}
+body: "Tauri is much better than Electron, but still not near close just native program. Let the web be simple, please."
+lang: "en"
+isAdult: false
+favouriteCount: 1
+score: 0
+lastActive: DateTime @1702225198 {#1630
date: 2023-12-10 17:19:58.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@pnutzh4x0r@lemmy.ndlug.org"
"@unionagainstdhmo@aussie.zone"
"@beeng@discuss.tchncs.de"
"@skullgiver@popplesburger.hilciferous.nl"
]
+children: Doctrine\ORM\PersistentCollection {#2380 …}
+nested: Doctrine\ORM\PersistentCollection {#2364 …}
+votes: Doctrine\ORM\PersistentCollection {#2359 …}
+reports: Doctrine\ORM\PersistentCollection {#2377 …}
+favourites: Doctrine\ORM\PersistentCollection {#2363 …}
+notifications: Doctrine\ORM\PersistentCollection {#2471 …}
-id: 216991
-bodyTs: "'better':4 'close':11 'electron':6 'let':15 'much':3 'nativ':13 'near':10 'pleas':20 'program':14 'simpl':19 'still':8 'tauri':1 'web':17"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5597187"
+editedAt: null
+createdAt: DateTimeImmutable @1702225198 {#2465
date: 2023-12-10 17:19:58.0 +01:00
}
+"title": 216991
} |
|
Show voter details
|
140 |
DENIED
|
moderate
|
App\Entity\EntryComment {#2464
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#1707
+user: Proxies\__CG__\App\Entity\User {#2973 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+domain: Proxies\__CG__\App\Entity\Domain {#3014 …}
+slug: "Make-a-Linux-App"
+title: "Make a Linux App"
+url: "https://makealinux.app/"
+body: "> Make a Linux app. Stop making distributions."
+type: "link"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 37
+favouriteCount: 130
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1702370115 {#3051
date: 2023-12-12 09:35:15.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#3056 …}
+votes: Doctrine\ORM\PersistentCollection {#3059 …}
+reports: Doctrine\ORM\PersistentCollection {#3061 …}
+favourites: Doctrine\ORM\PersistentCollection {#3063 …}
+notifications: Doctrine\ORM\PersistentCollection {#3065 …}
+badges: Doctrine\ORM\PersistentCollection {#3067 …}
+children: [
1 => App\Entity\EntryComment {#2464}
0 => App\Entity\EntryComment {#2468
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#1707 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2459 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2455 …}
+body: "Can completely agree. On Apple systems I can find a ton of productivity and editing software, but no luck doing things like file operations or automating. On Linux I can find absolutely anything related to processing data, customization, science or protocol clients, but no luck finding good note taking tool."
+lang: "en"
+isAdult: false
+favouriteCount: 1
+score: 0
+lastActive: DateTime @1702370115 {#2469
date: 2023-12-12 09:35:15.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@pnutzh4x0r@lemmy.ndlug.org"
"@mvirts@lemmy.world"
"@GyozaPower@discuss.tchncs.de"
]
+children: Doctrine\ORM\PersistentCollection {#2454 …}
+nested: Doctrine\ORM\PersistentCollection {#2452 …}
+votes: Doctrine\ORM\PersistentCollection {#2460 …}
+reports: Doctrine\ORM\PersistentCollection {#2461 …}
+favourites: Doctrine\ORM\PersistentCollection {#2462 …}
+notifications: Doctrine\ORM\PersistentCollection {#2447 …}
-id: 217833
-bodyTs: "'absolut':32 'agre':3 'anyth':33 'appl':5 'autom':26 'client':42 'complet':2 'custom':38 'data':37 'edit':15 'file':23 'find':9,31,46 'good':47 'like':22 'linux':28 'luck':19,45 'note':48 'oper':24 'process':36 'product':13 'protocol':41 'relat':34 'scienc':39 'softwar':16 'system':6 'take':49 'thing':21 'ton':11 'tool':50"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5646733"
+editedAt: null
+createdAt: DateTimeImmutable @1702370115 {#2470
date: 2023-12-12 09:35:15.0 +01:00
}
+"title": 217833
}
]
-id: 21447
-titleTs: "'app':4 'linux':3 'make':1"
-bodyTs: "'app':4 'distribut':7 'linux':3 'make':1,6 'stop':5"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1702243613
+visibility: "visible "
+apId: "https://lemmy.ndlug.org/post/461660"
+editedAt: null
+createdAt: DateTimeImmutable @1702157213 {#3037
date: 2023-12-09 22:26:53.0 +01:00
}
+__isInitialized__: true
…2
}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2385 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2382 …}
+body: "Tauri is much better than Electron, but still not near close just native program. Let the web be simple, please."
+lang: "en"
+isAdult: false
+favouriteCount: 1
+score: 0
+lastActive: DateTime @1702225198 {#1630
date: 2023-12-10 17:19:58.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@pnutzh4x0r@lemmy.ndlug.org"
"@unionagainstdhmo@aussie.zone"
"@beeng@discuss.tchncs.de"
"@skullgiver@popplesburger.hilciferous.nl"
]
+children: Doctrine\ORM\PersistentCollection {#2380 …}
+nested: Doctrine\ORM\PersistentCollection {#2364 …}
+votes: Doctrine\ORM\PersistentCollection {#2359 …}
+reports: Doctrine\ORM\PersistentCollection {#2377 …}
+favourites: Doctrine\ORM\PersistentCollection {#2363 …}
+notifications: Doctrine\ORM\PersistentCollection {#2471 …}
-id: 216991
-bodyTs: "'better':4 'close':11 'electron':6 'let':15 'much':3 'nativ':13 'near':10 'pleas':20 'program':14 'simpl':19 'still':8 'tauri':1 'web':17"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5597187"
+editedAt: null
+createdAt: DateTimeImmutable @1702225198 {#2465
date: 2023-12-10 17:19:58.0 +01:00
}
+"title": 216991
} |
|
Show voter details
|
141 |
DENIED
|
ROLE_USER
|
null |
|
Show voter details
|
142 |
DENIED
|
moderate
|
App\Entity\EntryComment {#2468
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#1707
+user: Proxies\__CG__\App\Entity\User {#2973 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+domain: Proxies\__CG__\App\Entity\Domain {#3014 …}
+slug: "Make-a-Linux-App"
+title: "Make a Linux App"
+url: "https://makealinux.app/"
+body: "> Make a Linux app. Stop making distributions."
+type: "link"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 37
+favouriteCount: 130
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1702370115 {#3051
date: 2023-12-12 09:35:15.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#3056 …}
+votes: Doctrine\ORM\PersistentCollection {#3059 …}
+reports: Doctrine\ORM\PersistentCollection {#3061 …}
+favourites: Doctrine\ORM\PersistentCollection {#3063 …}
+notifications: Doctrine\ORM\PersistentCollection {#3065 …}
+badges: Doctrine\ORM\PersistentCollection {#3067 …}
+children: [
1 => App\Entity\EntryComment {#2464
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#1707 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2385 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2382 …}
+body: "Tauri is much better than Electron, but still not near close just native program. Let the web be simple, please."
+lang: "en"
+isAdult: false
+favouriteCount: 1
+score: 0
+lastActive: DateTime @1702225198 {#1630
date: 2023-12-10 17:19:58.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@pnutzh4x0r@lemmy.ndlug.org"
"@unionagainstdhmo@aussie.zone"
"@beeng@discuss.tchncs.de"
"@skullgiver@popplesburger.hilciferous.nl"
]
+children: Doctrine\ORM\PersistentCollection {#2380 …}
+nested: Doctrine\ORM\PersistentCollection {#2364 …}
+votes: Doctrine\ORM\PersistentCollection {#2359 …}
+reports: Doctrine\ORM\PersistentCollection {#2377 …}
+favourites: Doctrine\ORM\PersistentCollection {#2363 …}
+notifications: Doctrine\ORM\PersistentCollection {#2471 …}
-id: 216991
-bodyTs: "'better':4 'close':11 'electron':6 'let':15 'much':3 'nativ':13 'near':10 'pleas':20 'program':14 'simpl':19 'still':8 'tauri':1 'web':17"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5597187"
+editedAt: null
+createdAt: DateTimeImmutable @1702225198 {#2465
date: 2023-12-10 17:19:58.0 +01:00
}
+"title": 216991
}
0 => App\Entity\EntryComment {#2468}
]
-id: 21447
-titleTs: "'app':4 'linux':3 'make':1"
-bodyTs: "'app':4 'distribut':7 'linux':3 'make':1,6 'stop':5"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1702243613
+visibility: "visible "
+apId: "https://lemmy.ndlug.org/post/461660"
+editedAt: null
+createdAt: DateTimeImmutable @1702157213 {#3037
date: 2023-12-09 22:26:53.0 +01:00
}
+__isInitialized__: true
…2
}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2459 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2455 …}
+body: "Can completely agree. On Apple systems I can find a ton of productivity and editing software, but no luck doing things like file operations or automating. On Linux I can find absolutely anything related to processing data, customization, science or protocol clients, but no luck finding good note taking tool."
+lang: "en"
+isAdult: false
+favouriteCount: 1
+score: 0
+lastActive: DateTime @1702370115 {#2469
date: 2023-12-12 09:35:15.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@pnutzh4x0r@lemmy.ndlug.org"
"@mvirts@lemmy.world"
"@GyozaPower@discuss.tchncs.de"
]
+children: Doctrine\ORM\PersistentCollection {#2454 …}
+nested: Doctrine\ORM\PersistentCollection {#2452 …}
+votes: Doctrine\ORM\PersistentCollection {#2460 …}
+reports: Doctrine\ORM\PersistentCollection {#2461 …}
+favourites: Doctrine\ORM\PersistentCollection {#2462 …}
+notifications: Doctrine\ORM\PersistentCollection {#2447 …}
-id: 217833
-bodyTs: "'absolut':32 'agre':3 'anyth':33 'appl':5 'autom':26 'client':42 'complet':2 'custom':38 'data':37 'edit':15 'file':23 'find':9,31,46 'good':47 'like':22 'linux':28 'luck':19,45 'note':48 'oper':24 'process':36 'product':13 'protocol':41 'relat':34 'scienc':39 'softwar':16 'system':6 'take':49 'thing':21 'ton':11 'tool':50"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5646733"
+editedAt: null
+createdAt: DateTimeImmutable @1702370115 {#2470
date: 2023-12-12 09:35:15.0 +01:00
}
+"title": 217833
} |
|
Show voter details
|
143 |
DENIED
|
edit
|
App\Entity\EntryComment {#2468
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#1707
+user: Proxies\__CG__\App\Entity\User {#2973 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+domain: Proxies\__CG__\App\Entity\Domain {#3014 …}
+slug: "Make-a-Linux-App"
+title: "Make a Linux App"
+url: "https://makealinux.app/"
+body: "> Make a Linux app. Stop making distributions."
+type: "link"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 37
+favouriteCount: 130
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1702370115 {#3051
date: 2023-12-12 09:35:15.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#3056 …}
+votes: Doctrine\ORM\PersistentCollection {#3059 …}
+reports: Doctrine\ORM\PersistentCollection {#3061 …}
+favourites: Doctrine\ORM\PersistentCollection {#3063 …}
+notifications: Doctrine\ORM\PersistentCollection {#3065 …}
+badges: Doctrine\ORM\PersistentCollection {#3067 …}
+children: [
1 => App\Entity\EntryComment {#2464
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#1707 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2385 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2382 …}
+body: "Tauri is much better than Electron, but still not near close just native program. Let the web be simple, please."
+lang: "en"
+isAdult: false
+favouriteCount: 1
+score: 0
+lastActive: DateTime @1702225198 {#1630
date: 2023-12-10 17:19:58.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@pnutzh4x0r@lemmy.ndlug.org"
"@unionagainstdhmo@aussie.zone"
"@beeng@discuss.tchncs.de"
"@skullgiver@popplesburger.hilciferous.nl"
]
+children: Doctrine\ORM\PersistentCollection {#2380 …}
+nested: Doctrine\ORM\PersistentCollection {#2364 …}
+votes: Doctrine\ORM\PersistentCollection {#2359 …}
+reports: Doctrine\ORM\PersistentCollection {#2377 …}
+favourites: Doctrine\ORM\PersistentCollection {#2363 …}
+notifications: Doctrine\ORM\PersistentCollection {#2471 …}
-id: 216991
-bodyTs: "'better':4 'close':11 'electron':6 'let':15 'much':3 'nativ':13 'near':10 'pleas':20 'program':14 'simpl':19 'still':8 'tauri':1 'web':17"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5597187"
+editedAt: null
+createdAt: DateTimeImmutable @1702225198 {#2465
date: 2023-12-10 17:19:58.0 +01:00
}
+"title": 216991
}
0 => App\Entity\EntryComment {#2468}
]
-id: 21447
-titleTs: "'app':4 'linux':3 'make':1"
-bodyTs: "'app':4 'distribut':7 'linux':3 'make':1,6 'stop':5"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1702243613
+visibility: "visible "
+apId: "https://lemmy.ndlug.org/post/461660"
+editedAt: null
+createdAt: DateTimeImmutable @1702157213 {#3037
date: 2023-12-09 22:26:53.0 +01:00
}
+__isInitialized__: true
…2
}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2459 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2455 …}
+body: "Can completely agree. On Apple systems I can find a ton of productivity and editing software, but no luck doing things like file operations or automating. On Linux I can find absolutely anything related to processing data, customization, science or protocol clients, but no luck finding good note taking tool."
+lang: "en"
+isAdult: false
+favouriteCount: 1
+score: 0
+lastActive: DateTime @1702370115 {#2469
date: 2023-12-12 09:35:15.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@pnutzh4x0r@lemmy.ndlug.org"
"@mvirts@lemmy.world"
"@GyozaPower@discuss.tchncs.de"
]
+children: Doctrine\ORM\PersistentCollection {#2454 …}
+nested: Doctrine\ORM\PersistentCollection {#2452 …}
+votes: Doctrine\ORM\PersistentCollection {#2460 …}
+reports: Doctrine\ORM\PersistentCollection {#2461 …}
+favourites: Doctrine\ORM\PersistentCollection {#2462 …}
+notifications: Doctrine\ORM\PersistentCollection {#2447 …}
-id: 217833
-bodyTs: "'absolut':32 'agre':3 'anyth':33 'appl':5 'autom':26 'client':42 'complet':2 'custom':38 'data':37 'edit':15 'file':23 'find':9,31,46 'good':47 'like':22 'linux':28 'luck':19,45 'note':48 'oper':24 'process':36 'product':13 'protocol':41 'relat':34 'scienc':39 'softwar':16 'system':6 'take':49 'thing':21 'ton':11 'tool':50"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5646733"
+editedAt: null
+createdAt: DateTimeImmutable @1702370115 {#2470
date: 2023-12-12 09:35:15.0 +01:00
}
+"title": 217833
} |
|
Show voter details
|
144 |
DENIED
|
moderate
|
App\Entity\EntryComment {#2468
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#1707
+user: Proxies\__CG__\App\Entity\User {#2973 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+domain: Proxies\__CG__\App\Entity\Domain {#3014 …}
+slug: "Make-a-Linux-App"
+title: "Make a Linux App"
+url: "https://makealinux.app/"
+body: "> Make a Linux app. Stop making distributions."
+type: "link"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 37
+favouriteCount: 130
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1702370115 {#3051
date: 2023-12-12 09:35:15.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#3056 …}
+votes: Doctrine\ORM\PersistentCollection {#3059 …}
+reports: Doctrine\ORM\PersistentCollection {#3061 …}
+favourites: Doctrine\ORM\PersistentCollection {#3063 …}
+notifications: Doctrine\ORM\PersistentCollection {#3065 …}
+badges: Doctrine\ORM\PersistentCollection {#3067 …}
+children: [
1 => App\Entity\EntryComment {#2464
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#1707 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2385 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2382 …}
+body: "Tauri is much better than Electron, but still not near close just native program. Let the web be simple, please."
+lang: "en"
+isAdult: false
+favouriteCount: 1
+score: 0
+lastActive: DateTime @1702225198 {#1630
date: 2023-12-10 17:19:58.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@pnutzh4x0r@lemmy.ndlug.org"
"@unionagainstdhmo@aussie.zone"
"@beeng@discuss.tchncs.de"
"@skullgiver@popplesburger.hilciferous.nl"
]
+children: Doctrine\ORM\PersistentCollection {#2380 …}
+nested: Doctrine\ORM\PersistentCollection {#2364 …}
+votes: Doctrine\ORM\PersistentCollection {#2359 …}
+reports: Doctrine\ORM\PersistentCollection {#2377 …}
+favourites: Doctrine\ORM\PersistentCollection {#2363 …}
+notifications: Doctrine\ORM\PersistentCollection {#2471 …}
-id: 216991
-bodyTs: "'better':4 'close':11 'electron':6 'let':15 'much':3 'nativ':13 'near':10 'pleas':20 'program':14 'simpl':19 'still':8 'tauri':1 'web':17"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5597187"
+editedAt: null
+createdAt: DateTimeImmutable @1702225198 {#2465
date: 2023-12-10 17:19:58.0 +01:00
}
+"title": 216991
}
0 => App\Entity\EntryComment {#2468}
]
-id: 21447
-titleTs: "'app':4 'linux':3 'make':1"
-bodyTs: "'app':4 'distribut':7 'linux':3 'make':1,6 'stop':5"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1702243613
+visibility: "visible "
+apId: "https://lemmy.ndlug.org/post/461660"
+editedAt: null
+createdAt: DateTimeImmutable @1702157213 {#3037
date: 2023-12-09 22:26:53.0 +01:00
}
+__isInitialized__: true
…2
}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: Proxies\__CG__\App\Entity\EntryComment {#2459 …}
+root: Proxies\__CG__\App\Entity\EntryComment {#2455 …}
+body: "Can completely agree. On Apple systems I can find a ton of productivity and editing software, but no luck doing things like file operations or automating. On Linux I can find absolutely anything related to processing data, customization, science or protocol clients, but no luck finding good note taking tool."
+lang: "en"
+isAdult: false
+favouriteCount: 1
+score: 0
+lastActive: DateTime @1702370115 {#2469
date: 2023-12-12 09:35:15.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@pnutzh4x0r@lemmy.ndlug.org"
"@mvirts@lemmy.world"
"@GyozaPower@discuss.tchncs.de"
]
+children: Doctrine\ORM\PersistentCollection {#2454 …}
+nested: Doctrine\ORM\PersistentCollection {#2452 …}
+votes: Doctrine\ORM\PersistentCollection {#2460 …}
+reports: Doctrine\ORM\PersistentCollection {#2461 …}
+favourites: Doctrine\ORM\PersistentCollection {#2462 …}
+notifications: Doctrine\ORM\PersistentCollection {#2447 …}
-id: 217833
-bodyTs: "'absolut':32 'agre':3 'anyth':33 'appl':5 'autom':26 'client':42 'complet':2 'custom':38 'data':37 'edit':15 'file':23 'find':9,31,46 'good':47 'like':22 'linux':28 'luck':19,45 'note':48 'oper':24 'process':36 'product':13 'protocol':41 'relat':34 'scienc':39 'softwar':16 'system':6 'take':49 'thing':21 'ton':11 'tool':50"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5646733"
+editedAt: null
+createdAt: DateTimeImmutable @1702370115 {#2470
date: 2023-12-12 09:35:15.0 +01:00
}
+"title": 217833
} |
|
Show voter details
|
145 |
DENIED
|
ROLE_USER
|
null |
|
Show voter details
|
146 |
DENIED
|
moderate
|
Proxies\__CG__\App\Entity\Entry {#1720
+user: Proxies\__CG__\App\Entity\User {#3034 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+domain: Proxies\__CG__\App\Entity\Domain {#1647 …}
+slug: "web-low-memory-alternatives-to-Krita-and-GIMP-please"
+title: "web/low memory alternatives to Krita and GIMP please"
+url: null
+body: "recently I bought a Chromebook, I love it so much, it has Linux container enabled and I downloaded Firefox, GIMP, and Krita, but my Chromebook is only 64GB, so that can be a lot!!! So what web apps or low storage alternatives can I use?? I know Photopea, but what about drawing? Thank you!!"
+type: "article"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 21
+favouriteCount: 31
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1701864877 {#3069
date: 2023-12-06 13:14:37.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#3074 …}
+votes: Doctrine\ORM\PersistentCollection {#3077 …}
+reports: Doctrine\ORM\PersistentCollection {#3079 …}
+favourites: Doctrine\ORM\PersistentCollection {#3081 …}
+notifications: Doctrine\ORM\PersistentCollection {#3083 …}
+badges: Doctrine\ORM\PersistentCollection {#3085 …}
+children: [
App\Entity\EntryComment {#1604
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#1720 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: null
+root: null
+body: """
64GB is very, very low for even a phone these days. Usually web apps are even more heavy than regular ones.\n
\n
Get more storage, a proper computing device or rent a VPS to connect via remote desktop.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 4
+score: 0
+lastActive: DateTime @1701862952 {#1527
date: 2023-12-06 12:42:32.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@01adrianrdgz@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#1718 …}
+nested: Doctrine\ORM\PersistentCollection {#1715 …}
+votes: Doctrine\ORM\PersistentCollection {#1729 …}
+reports: Doctrine\ORM\PersistentCollection {#1735 …}
+favourites: Doctrine\ORM\PersistentCollection {#1689 …}
+notifications: Doctrine\ORM\PersistentCollection {#1795 …}
-id: 202712
-bodyTs: "'64gb':1 'app':14 'comput':27 'connect':34 'day':11 'desktop':37 'devic':28 'even':7,16 'get':22 'heavi':18 'low':5 'one':21 'phone':9 'proper':26 'regular':20 'remot':36 'rent':30 'storag':24 'usual':12 'via':35 'vps':32 'web':13"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5479632"
+editedAt: DateTimeImmutable @1703211671 {#1549
date: 2023-12-22 03:21:11.0 +01:00
}
+createdAt: DateTimeImmutable @1701862952 {#1551
date: 2023-12-06 12:42:32.0 +01:00
}
+"title": 202712
}
]
-id: 20266
-titleTs: "'altern':3 'gimp':7 'krita':5 'memori':2 'pleas':8 'web/low':1"
-bodyTs: "'64gb':28 'altern':42 'app':38 'bought':3 'chromebook':5,25 'contain':14 'download':18 'draw':52 'enabl':15 'firefox':19 'gimp':20 'know':47 'krita':22 'linux':13 'lot':34 'love':7 'low':40 'much':10 'photopea':48 'recent':1 'storag':41 'thank':53 'use':45 'web':37"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1701872214
+visibility: "visible "
+apId: "https://lemmy.world/post/9177356"
+editedAt: null
+createdAt: DateTimeImmutable @1701785814 {#3057
date: 2023-12-05 15:16:54.0 +01:00
}
+__isInitialized__: true
…2
} |
|
Show voter details
|
147 |
DENIED
|
edit
|
Proxies\__CG__\App\Entity\Entry {#1720
+user: Proxies\__CG__\App\Entity\User {#3034 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+domain: Proxies\__CG__\App\Entity\Domain {#1647 …}
+slug: "web-low-memory-alternatives-to-Krita-and-GIMP-please"
+title: "web/low memory alternatives to Krita and GIMP please"
+url: null
+body: "recently I bought a Chromebook, I love it so much, it has Linux container enabled and I downloaded Firefox, GIMP, and Krita, but my Chromebook is only 64GB, so that can be a lot!!! So what web apps or low storage alternatives can I use?? I know Photopea, but what about drawing? Thank you!!"
+type: "article"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 21
+favouriteCount: 31
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1701864877 {#3069
date: 2023-12-06 13:14:37.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#3074 …}
+votes: Doctrine\ORM\PersistentCollection {#3077 …}
+reports: Doctrine\ORM\PersistentCollection {#3079 …}
+favourites: Doctrine\ORM\PersistentCollection {#3081 …}
+notifications: Doctrine\ORM\PersistentCollection {#3083 …}
+badges: Doctrine\ORM\PersistentCollection {#3085 …}
+children: [
App\Entity\EntryComment {#1604
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#1720 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: null
+root: null
+body: """
64GB is very, very low for even a phone these days. Usually web apps are even more heavy than regular ones.\n
\n
Get more storage, a proper computing device or rent a VPS to connect via remote desktop.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 4
+score: 0
+lastActive: DateTime @1701862952 {#1527
date: 2023-12-06 12:42:32.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@01adrianrdgz@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#1718 …}
+nested: Doctrine\ORM\PersistentCollection {#1715 …}
+votes: Doctrine\ORM\PersistentCollection {#1729 …}
+reports: Doctrine\ORM\PersistentCollection {#1735 …}
+favourites: Doctrine\ORM\PersistentCollection {#1689 …}
+notifications: Doctrine\ORM\PersistentCollection {#1795 …}
-id: 202712
-bodyTs: "'64gb':1 'app':14 'comput':27 'connect':34 'day':11 'desktop':37 'devic':28 'even':7,16 'get':22 'heavi':18 'low':5 'one':21 'phone':9 'proper':26 'regular':20 'remot':36 'rent':30 'storag':24 'usual':12 'via':35 'vps':32 'web':13"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5479632"
+editedAt: DateTimeImmutable @1703211671 {#1549
date: 2023-12-22 03:21:11.0 +01:00
}
+createdAt: DateTimeImmutable @1701862952 {#1551
date: 2023-12-06 12:42:32.0 +01:00
}
+"title": 202712
}
]
-id: 20266
-titleTs: "'altern':3 'gimp':7 'krita':5 'memori':2 'pleas':8 'web/low':1"
-bodyTs: "'64gb':28 'altern':42 'app':38 'bought':3 'chromebook':5,25 'contain':14 'download':18 'draw':52 'enabl':15 'firefox':19 'gimp':20 'know':47 'krita':22 'linux':13 'lot':34 'love':7 'low':40 'much':10 'photopea':48 'recent':1 'storag':41 'thank':53 'use':45 'web':37"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1701872214
+visibility: "visible "
+apId: "https://lemmy.world/post/9177356"
+editedAt: null
+createdAt: DateTimeImmutable @1701785814 {#3057
date: 2023-12-05 15:16:54.0 +01:00
}
+__isInitialized__: true
…2
} |
|
Show voter details
|
148 |
DENIED
|
moderate
|
Proxies\__CG__\App\Entity\Entry {#1720
+user: Proxies\__CG__\App\Entity\User {#3034 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+domain: Proxies\__CG__\App\Entity\Domain {#1647 …}
+slug: "web-low-memory-alternatives-to-Krita-and-GIMP-please"
+title: "web/low memory alternatives to Krita and GIMP please"
+url: null
+body: "recently I bought a Chromebook, I love it so much, it has Linux container enabled and I downloaded Firefox, GIMP, and Krita, but my Chromebook is only 64GB, so that can be a lot!!! So what web apps or low storage alternatives can I use?? I know Photopea, but what about drawing? Thank you!!"
+type: "article"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 21
+favouriteCount: 31
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1701864877 {#3069
date: 2023-12-06 13:14:37.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#3074 …}
+votes: Doctrine\ORM\PersistentCollection {#3077 …}
+reports: Doctrine\ORM\PersistentCollection {#3079 …}
+favourites: Doctrine\ORM\PersistentCollection {#3081 …}
+notifications: Doctrine\ORM\PersistentCollection {#3083 …}
+badges: Doctrine\ORM\PersistentCollection {#3085 …}
+children: [
App\Entity\EntryComment {#1604
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#1720 …2}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: null
+root: null
+body: """
64GB is very, very low for even a phone these days. Usually web apps are even more heavy than regular ones.\n
\n
Get more storage, a proper computing device or rent a VPS to connect via remote desktop.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 4
+score: 0
+lastActive: DateTime @1701862952 {#1527
date: 2023-12-06 12:42:32.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@01adrianrdgz@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#1718 …}
+nested: Doctrine\ORM\PersistentCollection {#1715 …}
+votes: Doctrine\ORM\PersistentCollection {#1729 …}
+reports: Doctrine\ORM\PersistentCollection {#1735 …}
+favourites: Doctrine\ORM\PersistentCollection {#1689 …}
+notifications: Doctrine\ORM\PersistentCollection {#1795 …}
-id: 202712
-bodyTs: "'64gb':1 'app':14 'comput':27 'connect':34 'day':11 'desktop':37 'devic':28 'even':7,16 'get':22 'heavi':18 'low':5 'one':21 'phone':9 'proper':26 'regular':20 'remot':36 'rent':30 'storag':24 'usual':12 'via':35 'vps':32 'web':13"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5479632"
+editedAt: DateTimeImmutable @1703211671 {#1549
date: 2023-12-22 03:21:11.0 +01:00
}
+createdAt: DateTimeImmutable @1701862952 {#1551
date: 2023-12-06 12:42:32.0 +01:00
}
+"title": 202712
}
]
-id: 20266
-titleTs: "'altern':3 'gimp':7 'krita':5 'memori':2 'pleas':8 'web/low':1"
-bodyTs: "'64gb':28 'altern':42 'app':38 'bought':3 'chromebook':5,25 'contain':14 'download':18 'draw':52 'enabl':15 'firefox':19 'gimp':20 'know':47 'krita':22 'linux':13 'lot':34 'love':7 'low':40 'much':10 'photopea':48 'recent':1 'storag':41 'thank':53 'use':45 'web':37"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1701872214
+visibility: "visible "
+apId: "https://lemmy.world/post/9177356"
+editedAt: null
+createdAt: DateTimeImmutable @1701785814 {#3057
date: 2023-12-05 15:16:54.0 +01:00
}
+__isInitialized__: true
…2
} |
|
Show voter details
|
149 |
DENIED
|
ROLE_USER
|
null |
|
Show voter details
|
150 |
DENIED
|
moderate
|
App\Entity\EntryComment {#1604
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#1720
+user: Proxies\__CG__\App\Entity\User {#3034 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+domain: Proxies\__CG__\App\Entity\Domain {#1647 …}
+slug: "web-low-memory-alternatives-to-Krita-and-GIMP-please"
+title: "web/low memory alternatives to Krita and GIMP please"
+url: null
+body: "recently I bought a Chromebook, I love it so much, it has Linux container enabled and I downloaded Firefox, GIMP, and Krita, but my Chromebook is only 64GB, so that can be a lot!!! So what web apps or low storage alternatives can I use?? I know Photopea, but what about drawing? Thank you!!"
+type: "article"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 21
+favouriteCount: 31
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1701864877 {#3069
date: 2023-12-06 13:14:37.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#3074 …}
+votes: Doctrine\ORM\PersistentCollection {#3077 …}
+reports: Doctrine\ORM\PersistentCollection {#3079 …}
+favourites: Doctrine\ORM\PersistentCollection {#3081 …}
+notifications: Doctrine\ORM\PersistentCollection {#3083 …}
+badges: Doctrine\ORM\PersistentCollection {#3085 …}
+children: [
App\Entity\EntryComment {#1604}
]
-id: 20266
-titleTs: "'altern':3 'gimp':7 'krita':5 'memori':2 'pleas':8 'web/low':1"
-bodyTs: "'64gb':28 'altern':42 'app':38 'bought':3 'chromebook':5,25 'contain':14 'download':18 'draw':52 'enabl':15 'firefox':19 'gimp':20 'know':47 'krita':22 'linux':13 'lot':34 'love':7 'low':40 'much':10 'photopea':48 'recent':1 'storag':41 'thank':53 'use':45 'web':37"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1701872214
+visibility: "visible "
+apId: "https://lemmy.world/post/9177356"
+editedAt: null
+createdAt: DateTimeImmutable @1701785814 {#3057
date: 2023-12-05 15:16:54.0 +01:00
}
+__isInitialized__: true
…2
}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: null
+root: null
+body: """
64GB is very, very low for even a phone these days. Usually web apps are even more heavy than regular ones.\n
\n
Get more storage, a proper computing device or rent a VPS to connect via remote desktop.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 4
+score: 0
+lastActive: DateTime @1701862952 {#1527
date: 2023-12-06 12:42:32.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@01adrianrdgz@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#1718 …}
+nested: Doctrine\ORM\PersistentCollection {#1715 …}
+votes: Doctrine\ORM\PersistentCollection {#1729 …}
+reports: Doctrine\ORM\PersistentCollection {#1735 …}
+favourites: Doctrine\ORM\PersistentCollection {#1689 …}
+notifications: Doctrine\ORM\PersistentCollection {#1795 …}
-id: 202712
-bodyTs: "'64gb':1 'app':14 'comput':27 'connect':34 'day':11 'desktop':37 'devic':28 'even':7,16 'get':22 'heavi':18 'low':5 'one':21 'phone':9 'proper':26 'regular':20 'remot':36 'rent':30 'storag':24 'usual':12 'via':35 'vps':32 'web':13"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5479632"
+editedAt: DateTimeImmutable @1703211671 {#1549
date: 2023-12-22 03:21:11.0 +01:00
}
+createdAt: DateTimeImmutable @1701862952 {#1551
date: 2023-12-06 12:42:32.0 +01:00
}
+"title": 202712
} |
|
Show voter details
|
151 |
DENIED
|
edit
|
App\Entity\EntryComment {#1604
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#1720
+user: Proxies\__CG__\App\Entity\User {#3034 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+domain: Proxies\__CG__\App\Entity\Domain {#1647 …}
+slug: "web-low-memory-alternatives-to-Krita-and-GIMP-please"
+title: "web/low memory alternatives to Krita and GIMP please"
+url: null
+body: "recently I bought a Chromebook, I love it so much, it has Linux container enabled and I downloaded Firefox, GIMP, and Krita, but my Chromebook is only 64GB, so that can be a lot!!! So what web apps or low storage alternatives can I use?? I know Photopea, but what about drawing? Thank you!!"
+type: "article"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 21
+favouriteCount: 31
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1701864877 {#3069
date: 2023-12-06 13:14:37.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#3074 …}
+votes: Doctrine\ORM\PersistentCollection {#3077 …}
+reports: Doctrine\ORM\PersistentCollection {#3079 …}
+favourites: Doctrine\ORM\PersistentCollection {#3081 …}
+notifications: Doctrine\ORM\PersistentCollection {#3083 …}
+badges: Doctrine\ORM\PersistentCollection {#3085 …}
+children: [
App\Entity\EntryComment {#1604}
]
-id: 20266
-titleTs: "'altern':3 'gimp':7 'krita':5 'memori':2 'pleas':8 'web/low':1"
-bodyTs: "'64gb':28 'altern':42 'app':38 'bought':3 'chromebook':5,25 'contain':14 'download':18 'draw':52 'enabl':15 'firefox':19 'gimp':20 'know':47 'krita':22 'linux':13 'lot':34 'love':7 'low':40 'much':10 'photopea':48 'recent':1 'storag':41 'thank':53 'use':45 'web':37"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1701872214
+visibility: "visible "
+apId: "https://lemmy.world/post/9177356"
+editedAt: null
+createdAt: DateTimeImmutable @1701785814 {#3057
date: 2023-12-05 15:16:54.0 +01:00
}
+__isInitialized__: true
…2
}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: null
+root: null
+body: """
64GB is very, very low for even a phone these days. Usually web apps are even more heavy than regular ones.\n
\n
Get more storage, a proper computing device or rent a VPS to connect via remote desktop.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 4
+score: 0
+lastActive: DateTime @1701862952 {#1527
date: 2023-12-06 12:42:32.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@01adrianrdgz@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#1718 …}
+nested: Doctrine\ORM\PersistentCollection {#1715 …}
+votes: Doctrine\ORM\PersistentCollection {#1729 …}
+reports: Doctrine\ORM\PersistentCollection {#1735 …}
+favourites: Doctrine\ORM\PersistentCollection {#1689 …}
+notifications: Doctrine\ORM\PersistentCollection {#1795 …}
-id: 202712
-bodyTs: "'64gb':1 'app':14 'comput':27 'connect':34 'day':11 'desktop':37 'devic':28 'even':7,16 'get':22 'heavi':18 'low':5 'one':21 'phone':9 'proper':26 'regular':20 'remot':36 'rent':30 'storag':24 'usual':12 'via':35 'vps':32 'web':13"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5479632"
+editedAt: DateTimeImmutable @1703211671 {#1549
date: 2023-12-22 03:21:11.0 +01:00
}
+createdAt: DateTimeImmutable @1701862952 {#1551
date: 2023-12-06 12:42:32.0 +01:00
}
+"title": 202712
} |
|
Show voter details
|
152 |
DENIED
|
moderate
|
App\Entity\EntryComment {#1604
+user: App\Entity\User {#260 …}
+entry: Proxies\__CG__\App\Entity\Entry {#1720
+user: Proxies\__CG__\App\Entity\User {#3034 …}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+domain: Proxies\__CG__\App\Entity\Domain {#1647 …}
+slug: "web-low-memory-alternatives-to-Krita-and-GIMP-please"
+title: "web/low memory alternatives to Krita and GIMP please"
+url: null
+body: "recently I bought a Chromebook, I love it so much, it has Linux container enabled and I downloaded Firefox, GIMP, and Krita, but my Chromebook is only 64GB, so that can be a lot!!! So what web apps or low storage alternatives can I use?? I know Photopea, but what about drawing? Thank you!!"
+type: "article"
+lang: "en"
+isOc: false
+hasEmbed: false
+commentCount: 21
+favouriteCount: 31
+score: 0
+isAdult: false
+sticky: false
+lastActive: DateTime @1701864877 {#3069
date: 2023-12-06 13:14:37.0 +01:00
}
+ip: null
+adaAmount: 0
+tags: null
+mentions: null
+comments: Doctrine\ORM\PersistentCollection {#3074 …}
+votes: Doctrine\ORM\PersistentCollection {#3077 …}
+reports: Doctrine\ORM\PersistentCollection {#3079 …}
+favourites: Doctrine\ORM\PersistentCollection {#3081 …}
+notifications: Doctrine\ORM\PersistentCollection {#3083 …}
+badges: Doctrine\ORM\PersistentCollection {#3085 …}
+children: [
App\Entity\EntryComment {#1604}
]
-id: 20266
-titleTs: "'altern':3 'gimp':7 'krita':5 'memori':2 'pleas':8 'web/low':1"
-bodyTs: "'64gb':28 'altern':42 'app':38 'bought':3 'chromebook':5,25 'contain':14 'download':18 'draw':52 'enabl':15 'firefox':19 'gimp':20 'know':47 'krita':22 'linux':13 'lot':34 'love':7 'low':40 'much':10 'photopea':48 'recent':1 'storag':41 'thank':53 'use':45 'web':37"
+cross: false
+upVotes: 0
+downVotes: 0
+ranking: 1701872214
+visibility: "visible "
+apId: "https://lemmy.world/post/9177356"
+editedAt: null
+createdAt: DateTimeImmutable @1701785814 {#3057
date: 2023-12-05 15:16:54.0 +01:00
}
+__isInitialized__: true
…2
}
+magazine: Proxies\__CG__\App\Entity\Magazine {#1651 …}
+image: null
+parent: null
+root: null
+body: """
64GB is very, very low for even a phone these days. Usually web apps are even more heavy than regular ones.\n
\n
Get more storage, a proper computing device or rent a VPS to connect via remote desktop.
"""
+lang: "en"
+isAdult: false
+favouriteCount: 4
+score: 0
+lastActive: DateTime @1701862952 {#1527
date: 2023-12-06 12:42:32.0 +01:00
}
+ip: null
+tags: null
+mentions: [
"@01adrianrdgz@lemmy.world"
]
+children: Doctrine\ORM\PersistentCollection {#1718 …}
+nested: Doctrine\ORM\PersistentCollection {#1715 …}
+votes: Doctrine\ORM\PersistentCollection {#1729 …}
+reports: Doctrine\ORM\PersistentCollection {#1735 …}
+favourites: Doctrine\ORM\PersistentCollection {#1689 …}
+notifications: Doctrine\ORM\PersistentCollection {#1795 …}
-id: 202712
-bodyTs: "'64gb':1 'app':14 'comput':27 'connect':34 'day':11 'desktop':37 'devic':28 'even':7,16 'get':22 'heavi':18 'low':5 'one':21 'phone':9 'proper':26 'regular':20 'remot':36 'rent':30 'storag':24 'usual':12 'via':35 'vps':32 'web':13"
+ranking: 0
+commentCount: 0
+upVotes: 0
+downVotes: 0
+visibility: "visible "
+apId: "https://discuss.tchncs.de/comment/5479632"
+editedAt: DateTimeImmutable @1703211671 {#1549
date: 2023-12-22 03:21:11.0 +01:00
}
+createdAt: DateTimeImmutable @1701862952 {#1551
date: 2023-12-06 12:42:32.0 +01:00
}
+"title": 202712
} |
|
Show voter details
|
153 |
DENIED
|
ROLE_ADMIN
|
null |
|
Show voter details
|
154 |
DENIED
|
ROLE_MODERATOR
|
null |
|
Show voter details
|