This post was assisted by Corona, Opus 4.8 and Fable 5.
4 Likes
Undisclosed LLM slop, yikes. (I’ll bet it’s claude opus 4.8 specifically.)
11 Likes
What about this is slop, exactly?
1 Like
If you know you know, people don’t talk like this lmao
Current opus likes generating text with stuff like “real [noun]”; a person wouldn’t insist this hard that something is real and not (cough) hallucinated.
Even the table headers are a bit…silly.
2 Likes
Hm, I’ll refrain from reading until @domenkozar responds to this accusation. I do have to say it reads a tad weird. I’m not familiar with the peculiarities of individual models, so I cannot say which one this could be.
opened 01:43PM - 24 Mar 17 UTC
6.topic: nixos
1.severity: security
5.scope: tracking
## Introduction
Dear module authors and maintainers,
We currently have man… y modules that force users to store their secrets in the world-readble Nix store. This is bad for security. We should give users the option of specifying their secrets in individual files which can be stored outside the Nix store with suitable ownership and permissions. Users could then also use `nixops` to [manage their secret files](https://nixos.org/nixops/manual/#idm140737318306400).
There's still the convenient but unsafe option of storing the secret file in the Nix store using `pkgs.writeTextFile`. If https://github.com/NixOS/nix/issues/8 gets resolved these files can be encrypted / made private. Also see: https://github.com/NixOS/rfcs/pull/5.
## Proposal
The list below contains all the options that force a secret being stored in the Nix store. I propose the following:
1. Each option should get a warning in the documentation of the form: "Warning: this secret is stored in the world-readable Nix store!"
2. Each option should get an alternative `passwordFile` option.
3. For backwards compatibility the `passwordFile` option should get a default based on the `password` option:
```nix
{ config = {
passwordFile = mkDefault (toString (pkgs.writeTextFile {
name = "password-file";
text = cfg.password;
}));
};
}
```
4. Some upstream programs don't support setting a password using a file. In that case an issue should be created in the upstream issue-tracker asking for that feature. (See https://github.com/namecoin/namecoin-core/issues/148 for example). A URL to the issue should be placed in the list below and in the documentation of the `password` option so that it's easier to track when it gets resolved.
5. If after some time (lets use September 2017 for now) the upstream developers have not provided the feature to specify the password by file, the NixOS module should be changed such that the config file that contains the password is written to `/run` before the service starts up. So something like the following:
```nix
{
systemd.services.my-service = {
preStart = ''
cat > /run/my-service/config << EOF
...
password = $(cat "${cfg.passwordFile}")
...
EOF
'';
script = "${pkgs.myService}/bin/my-service --config=/run/my-service/config";
};
}
```
6. Lets use this issue for planning and to track progress. Please mention in the comments if you have provided a `passwordFile` option for one of the options below. Then I check the box to indicate it has been resolved. See PR https://github.com/NixOS/nixpkgs/pull/24146 for reference.
7. If we make sure the new options are backwards compatible we could consider cherry-picking them onto `release-17.03` making sure users get these security fixes ASAP.
## Secret options
- [x] `basicAuth`
[nixos/modules/services/web-servers/nginx/vhost-options.nix#L118](https://github.com/NixOS/nixpkgs/blob/master/nixos/modules/services/web-servers/nginx/vhost-options.nix#L118)
@globin
- [x] `networking.defaultMailServer.authPass`
[nixos/modules/programs/ssmtp.nix#L92](https://github.com/NixOS/nixpkgs/blob/master/nixos/modules/programs/ssmtp.nix#L92)
PR: https://github.com/NixOS/nixpkgs/pull/24331
- [x] `networking.wireless.networks.*.psk`
[nixos/modules/services/networking/wpa_supplicant.nix#L49](https://github.com/NixOS/nixpkgs/blob/master/nixos/modules/services/networking/wpa_supplicant.nix#L49)
@edolstra
- [x] `security.duosec.skey`
[nixos/modules/security/duosec.nix#L59](https://github.com/NixOS/nixpkgs/blob/master/nixos/modules/security/duosec.nix#L59)
@thoughtpolice
- [x] ~~`services.aiccu.password`~~
~~[nixos/modules/services/networking/aiccu.nix#L48](https://github.com/NixOS/nixpkgs/blob/master/nixos/modules/services/networking/aiccu.nix#L48)~~
@edwtjo mentions: [SixXS is closing down its IPv6 tunnel in June](https://www.sixxs.net/news/2017/#sunsettingsixxs20170606-201703) so it doesn't seem worth the effort to create a patch for aiccu to support password files. Lets just remove the service in 0606.
- [ ] `services.almir.director_password`
[nixos/modules/services/backup/almir.nix#L129](https://github.com/NixOS/nixpkgs/blob/master/nixos/modules/services/backup/almir.nix#L129)
@domenkozar
- [ ] `services.bacula-dir.password`
[nixos/modules/services/backup/bacula.nix#L313](https://github.com/NixOS/nixpkgs/blob/master/nixos/modules/services/backup/bacula.nix#L313)
@domenkozar
[Feature request for a PasswordFile parameter](http://bugs.bacula.org/view.php?id=2275)
- [ ] `services.bacula-[fd|sd].director.*.password`
[nixos/modules/services/backup/bacula.nix#L114](https://github.com/NixOS/nixpkgs/blob/master/nixos/modules/services/backup/bacula.nix#L114)
@domenkozar
See the feature request above.
- [x] `services.bepasty.servers.*.secretKey`
[nixos/modules/services/misc/bepasty.nix#L72](https://github.com/NixOS/nixpkgs/blob/master/nixos/modules/services/misc/bepasty.nix#L72)
@makefu
PR: https://github.com/NixOS/nixpkgs/pull/24755
- [ ] `services.btsync.httpPass`
[nixos/modules/services/networking/btsync.nix#L175](https://github.com/NixOS/nixpkgs/blob/master/nixos/modules/services/networking/btsync.nix#L175)
@thoughtpolice
- [x] `services.buildbot-worker.workerPass`
[nixos/modules/services/continuous-integration/buildbot/worker.nix#L56](https://github.com/NixOS/nixpkgs/blob/master/nixos/modules/services/continuous-integration/buildbot/worker.nix#L56)
@nand0p
- [x] `services.cadvisor.storageDriverPassword`
[nixos/modules/services/monitoring/cadvisor.nix#L54](https://github.com/NixOS/nixpkgs/blob/master/nixos/modules/services/monitoring/cadvisor.nix#L54)
@offlinehacker
PR: https://github.com/NixOS/nixpkgs/pull/24341
- [ ] `services.cassandra.keyStorePassword`
[nixos/modules/services/databases/cassandra.nix#L236](https://github.com/NixOS/nixpkgs/blob/master/nixos/modules/services/databases/cassandra.nix#L236)
@cransom
See: https://issues.apache.org/jira/browse/CASSANDRA-13428
- [ ] `services.cassandra.trustStorePassword`
[nixos/modules/services/databases/cassandra.nix#L241](https://github.com/NixOS/nixpkgs/blob/master/nixos/modules/services/databases/cassandra.nix#L241)
@cransom
See: https://issues.apache.org/jira/browse/CASSANDRA-13428
- [ ] `services.cgminer.pools.*.password`
[nixos/modules/services/misc/cgminer.nix#L60](https://github.com/NixOS/nixpkgs/blob/master/nixos/modules/services/misc/cgminer.nix#L60)
@offlinehacker
- [ ] `services.cjdns.authorizedPasswords`
[nixos/modules/services/networking/cjdns.nix#L103](https://github.com/NixOS/nixpkgs/blob/master/nixos/modules/services/networking/cjdns.nix#L103)
@ehmry
- [x] `services.cfdyndns.apikey`
[nixos/modules/services/misc/cfdyndns.nix#L20](https://github.com/NixOS/nixpkgs/blob/master/nixos/modules/services/misc/cfdyndns.nix#L20)
@colemickens
- [x] `services.coturn.cli-password`
[nixos/modules/services/networking/coturn.nix#L249](https://github.com/NixOS/nixpkgs/blob/master/nixos/modules/services/networking/coturn.nix#L249)
@Ralith
- [x] `services.coturn.static-auth-secret`
[nixos/modules/services/networking/coturn.nix#L174](https://github.com/NixOS/nixpkgs/blob/master/nixos/modules/services/networking/coturn.nix#L174)
@Ralith
- [ ] `services.cpuminer-cryptonight.pass`
[nixos/modules/services/misc/cpuminer-cryptonight.nix#L38](https://github.com/NixOS/nixpkgs/blob/master/nixos/modules/services/misc/cpuminer-cryptonight.nix#L38)
@ehmry
- [x] `services.crowd.openidPassword`
[nixos/modules/services/web-apps/atlassian/crowd.nix#L53](https://github.com/NixOS/nixpkgs/blob/master/nixos/modules/services/web-apps/atlassian/crowd.nix#L53)
@fpletz @globin
- [x] `services.dd-agent.api_key`
[nixos/modules/services/monitoring/dd-agent.nix#L112](https://github.com/NixOS/nixpkgs/blob/master/nixos/modules/services/monitoring/dd-agent.nix#L112)
@shlevy
- [ ] `services.ddclient.password`
[nixos/modules/services/networking/ddclient.nix#L47](https://github.com/NixOS/nixpkgs/blob/master/nixos/modules/services/networking/ddclient.nix#L47)
@rbvermaa
- [ ] `services.factorio.game-password`
[nixos/modules/services/games/factorio.nix#L144](https://github.com/NixOS/nixpkgs/blob/master/nixos/modules/services/games/factorio.nix#L144)
@elitak
- [ ] `services.factorio.password`
[nixos/modules/services/games/factorio.nix#L130](https://github.com/NixOS/nixpkgs/blob/master/nixos/modules/services/games/factorio.nix#L130)
@elitak
- [ ] `services.frab.secretKeyBas`
[nixos/modules/services/web-apps/frab.nix#L118](https://github.com/NixOS/nixpkgs/blob/master/nixos/modules/services/web-apps/frab.nix#L118)
@fpletz
- [ ] `services.gammu-smsd.backend.sql.password`
[nixos/modules/services/misc/gammu-smsd.nix#L192](https://github.com/NixOS/nixpkgs/blob/master/nixos/modules/services/misc/gammu-smsd.nix#L192)
@zohl
- [x] `services.gitlab.databasePassword`
[nixos/modules/services/misc/gitlab.nix#L203](https://github.com/NixOS/nixpkgs/blob/master/nixos/modules/services/misc/gitlab.nix#L203)
@fpletz @offlinehacker
PR: #31358
- [x] `services.gitlab.secrets.secret`
[nixos/modules/services/misc/gitlab.nix#L326](https://github.com/NixOS/nixpkgs/blob/master/nixos/modules/services/misc/gitlab.nix#L326)
@fpletz @offlinehacker
PR: #31358
- [x] `services.gitlab.smtp.password`
[nixos/modules/services/misc/gitlab.nix#L295](https://github.com/NixOS/nixpkgs/blob/master/nixos/modules/services/misc/gitlab.nix#L295)
@fpletz @offlinehacker
- [x] `services.gogs.database.password`
[nixos/modules/services/misc/gogs.nix#L102](https://github.com/NixOS/nixpkgs/blob/master/nixos/modules/services/misc/gogs.nix#L102)
@schneefux
PR: https://github.com/NixOS/nixpkgs/pull/25116
- [x] `services.grafana.database.password`
[nixos/modules/services/monitoring/grafana.nix#L137](https://github.com/NixOS/nixpkgs/blob/master/nixos/modules/services/monitoring/grafana.nix#L137)
@offlinehacker
- [x] `services.grafana.security.adminPassword`
[nixos/modules/services/monitoring/grafana.nix#L157](https://github.com/NixOS/nixpkgs/blob/master/nixos/modules/services/monitoring/grafana.nix#L157)
@offlinehacker
- [x] `services.grafana.security.secretKey`
[nixos/modules/services/monitoring/grafana.nix#L163](https://github.com/NixOS/nixpkgs/blob/master/nixos/modules/services/monitoring/grafana.nix#L163)
@offlinehacker
- [ ] `services.graylog.passwordSecret`
[nixos/modules/services/logging/graylog.nix#L68](https://github.com/NixOS/nixpkgs/blob/master/nixos/modules/services/logging/graylog.nix#L68)
@fadenb
- [ ] `services.graylog.rootPasswordSha2`
[nixos/modules/services/logging/graylog.nix#L82](https://github.com/NixOS/nixpkgs/blob/master/nixos/modules/services/logging/graylog.nix#L82)
@fadenb
- [ ] `services.hologram-server.ldapBindPassword`
[nixos/modules/services/security/hologram-server.nix#L68](https://github.com/NixOS/nixpkgs/blob/master/nixos/modules/services/security/hologram-server.nix#L68)
@nand0p
- [x] `services.hostapd.wpaPassphrase`
[nixos/modules/services/networking/hostapd.nix#L124](https://github.com/NixOS/nixpkgs/blob/master/nixos/modules/services/networking/hostapd.nix#L124)
- [x] `services.httpd.extraSubservices..."limesurvey"...adminPassword`
[nixos/modules/services/web-servers/apache-httpd/limesurvey.nix#L143](https://github.com/NixOS/nixpkgs/blob/master/nixos/modules/services/web-servers/apache-httpd/limesurvey.nix#L143)
@offlinehacker
- [x] `services.httpd.extraSubservices..."limesurvey"...dbPassword`
[nixos/modules/services/web-servers/apache-httpd/limesurvey.nix#L131](https://github.com/NixOS/nixpkgs/blob/master/nixos/modules/services/web-servers/apache-httpd/limesurvey.nix#L131)
@offlinehacker
- [x] `services.httpd.extraSubservices..."mediawiki"...dbPassword`
[nixos/modules/services/web-servers/apache-httpd/mediawiki.nix#L207](https://github.com/NixOS/nixpkgs/blob/master/nixos/modules/services/web-servers/apache-httpd/mediawiki.nix#L207)
@shlevy @ip1981
- [x] `services.httpd.extraSubservices..."owncloud"...adminPassword`
[nixos/modules/services/web-servers/apache-httpd/owncloud.nix#L403](https://github.com/NixOS/nixpkgs/blob/master/nixos/modules/services/web-servers/apache-httpd/owncloud.nix#L403)
@matejc
- [x] `services.httpd.extraSubservices..."owncloud"...dbPassword`
[nixos/modules/services/web-servers/apache-httpd/owncloud.nix#L429](https://github.com/NixOS/nixpkgs/blob/master/nixos/modules/services/web-servers/apache-httpd/owncloud.nix#L429)
@matejc
- [x] `services.httpd.extraSubservices..."owncloud"...SMTPPass`
[nixos/modules/services/web-servers/apache-httpd/owncloud.nix#L527](https://github.com/NixOS/nixpkgs/blob/master/nixos/modules/services/web-servers/apache-httpd/owncloud.nix#L527)
@matejc
- [x] `services.httpd.extraSubservices..."wordpress"...dbPassword`
[nixos/modules/services/web-servers/apache-httpd/wordpress.nix#L138](https://github.com/NixOS/nixpkgs/blob/master/nixos/modules/services/web-servers/apache-httpd/wordpress.nix#L138)
@qknight
PR: https://github.com/NixOS/nixpkgs/pull/24146
- [ ] `services.i2pd.proto.http.pass`
[nixos/modules/services/networking/i2pd.nix#L351](https://github.com/NixOS/nixpkgs/blob/master/nixos/modules/services/networking/i2pd.nix#L351)
@edwtjo
- [ ] `services.icecast.admin.password`
[nixos/modules/services/audio/icecast.nix#L62](https://github.com/NixOS/nixpkgs/blob/master/nixos/modules/services/audio/icecast.nix#L62)
@k0ral
- [x] `services.longview.mysqlPassword`
[nixos/modules/services/monitoring/longview.nix#L78](https://github.com/NixOS/nixpkgs/blob/master/nixos/modules/services/monitoring/longview.nix#L78)
@rvl
PR: https://github.com/NixOS/nixpkgs/pull/24366
- [x] `services.matrix-synapse.macaroon_secret_key`
[nixos/modules/services/misc/matrix-synapse.nix#L545](https://github.com/NixOS/nixpkgs/blob/master/nixos/modules/services/misc/matrix-synapse.nix#L545)
@roblabla
- [x] `services.matrix-synapse.registration_shared_secret`
[nixos/modules/services/misc/matrix-synapse.nix#L453](https://github.com/NixOS/nixpkgs/blob/master/nixos/modules/services/misc/matrix-synapse.nix#L453)
@roblabla
- [x] `services.matrix-synapse.turn_shared_secret`
[nixos/modules/services/misc/matrix-synapse.nix#L434](https://github.com/NixOS/nixpkgs/blob/master/nixos/modules/services/misc/matrix-synapse.nix#L434)
@roblabla
- [x] `services.matrix-synapse.recaptcha_private_key`
[nixos/modules/services/misc/matrix-synapse.nix#L404](https://github.com/NixOS/nixpkgs/blob/master/nixos/modules/services/misc/matrix-synapse.nix#L404)
@roblabla
- [ ] `services.mattermost.localDatabasePassword`
[nixos/modules/services/web-apps/mattermost.nix#L108](https://github.com/NixOS/nixpkgs/blob/master/nixos/modules/services/web-apps/mattermost.nix#L108)
@fpletz
- [x] `services.murmur.password`
[nixos/modules/services/networking/murmur.nix#L105](https://github.com/NixOS/nixpkgs/blob/master/nixos/modules/services/networking/murmur.nix#L105)
@thoughtpolice
- [ ] `services.mysql.replication.masterPassword`
[nixos/modules/services/databases/mysql.nix#L149](https://github.com/NixOS/nixpkgs/blob/master/nixos/modules/services/databases/mysql.nix#L149)
@edolstra
- [ ] `services.namecoind.rpc.password`
[nixos/modules/services/networking/namecoind.nix#L90](https://github.com/NixOS/nixpkgs/blob/master/nixos/modules/services/networking/namecoind.nix#L90)
@rnhmjoj
See: https://github.com/namecoin/namecoin-core/issues/148
- [ ] `services.nntp-proxy.upstreamPassword`
[nixos/modules/services/networking/nntp-proxy.nix#L99](https://github.com/NixOS/nixpkgs/blob/master/nixos/modules/services/networking/nntp-proxy.nix#L99)
@fadenb
- [ ] `services.oauth2_proxy.cookie.secret`
[nixos/modules/services/security/oauth2_proxy.nix#L371](https://github.com/NixOS/nixpkgs/blob/master/nixos/modules/services/security/oauth2_proxy.nix#L371)
@jml
- [ ] `services.panamax.secretKey`
[nixos/modules/services/cluster/panamax.nix#L63](https://github.com/NixOS/nixpkgs/blob/master/nixos/modules/services/cluster/panamax.nix#L63)
@matejc
- [x] `services.prometheus.*.consul_sd_config.password`
[nixos/modules/services/monitoring/prometheus/default.nix#L243](https://github.com/NixOS/nixpkgs/blob/master/nixos/modules/services/monitoring/prometheus/default.nix#L243)
@fpletz @doshitan
- [ ] `services.prometheus.*.scrape_config.basic_auth.password`
[nixos/modules/services/monitoring/prometheus/default.nix#L128](https://github.com/NixOS/nixpkgs/blob/master/nixos/modules/services/monitoring/prometheus/default.nix#L128)
@fpletz @doshitan
- [ ] `services.prometheus.unifiExporter.unifiPassword`
[nixos/modules/services/monitoring/prometheus/unifi-exporter.nix#L45](https://github.com/NixOS/nixpkgs/blob/master/nixos/modules/services/monitoring/prometheus/unifi-exporter.nix#L45)
@fpletz @doshitan
- [x] `services.redis.requirePass`
[nixos/modules/services/databases/redis.nix#L160](https://github.com/NixOS/nixpkgs/blob/master/nixos/modules/services/databases/redis.nix#L160)
@offlinehacker
- [x] `services.redmine.databasePassword`
[nixos/modules/services/misc/redmine.nix#L103](https://github.com/NixOS/nixpkgs/blob/master/nixos/modules/services/misc/redmine.nix#L103)
@domenkozar
- [ ] `services.redsocks.redsocks.password`
[nixos/modules/services/networking/redsocks.nix#L109](https://github.com/NixOS/nixpkgs/blob/master/nixos/modules/services/networking/redsocks.nix#L109)
@Ekleog
- [ ] `services.rippleDataApi.couchdb.pass`
[nixos/modules/services/misc/ripple-data-api.nix#L109](https://github.com/NixOS/nixpkgs/blob/master/nixos/modules/services/misc/ripple-data-api.nix#L109)
@offlinehacker
- [ ] `services.rippled.ports.*.password`
[nixos/modules/services/misc/rippled.nix#L114](https://github.com/NixOS/nixpkgs/blob/master/nixos/modules/services/misc/rippled.nix#L114)
@ehmry
- [ ] `services.selfoss.database.password`
[nixos/modules/services/web-apps/selfoss.nix#L89](https://github.com/NixOS/nixpkgs/blob/master/nixos/modules/services/web-apps/selfoss.nix#L89)
@regnat
- [ ] `services.terraria..password`
[nixos/modules/services/games/terraria.nix#L50](https://github.com/NixOS/nixpkgs/blob/master/nixos/modules/services/games/terraria.nix#L50)
@pshendry @garbas
- [ ] `services.tor.torsocks.socks5Password`
[nixos/modules/services/security/torsocks.nix#L89](https://github.com/NixOS/nixpkgs/blob/master/nixos/modules/services/security/torsocks.nix#L89)
@thoughtpolice
- [x] `services.tt-rss.database.password`
[nixos/modules/services/web-apps/tt-rss.nix#L163](https://github.com/NixOS/nixpkgs/blob/master/nixos/modules/services/web-apps/tt-rss.nix#L163)
@zohl
- [x] `services.tt-rss.email.password`
[nixos/modules/services/web-apps/tt-rss.nix#L291](https://github.com/NixOS/nixpkgs/blob/master/nixos/modules/services/web-apps/tt-rss.nix#L291)
@zohl
- [ ] `services.wakeonlan.interfaces.*.password`
[nixos/modules/services/networking/wakeonlan.nix#L32](https://github.com/NixOS/nixpkgs/blob/master/nixos/modules/services/networking/wakeonlan.nix#L32)
- [ ] `services.yandex-disk.password`
[nixos/modules/services/network-filesystems/yandex-disk.nix#L38](https://github.com/NixOS/nixpkgs/blob/master/nixos/modules/services/network-filesystems/yandex-disk.nix#L38)
@grwlf @7c6f434c
- [x] `services.zabbixServer.dbPassword`
[nixos/modules/services/monitoring/zabbix-server.nix#L66](https://github.com/NixOS/nixpkgs/blob/master/nixos/modules/services/monitoring/zabbix-server.nix#L66)
@robberer
This list was compiled by running the following in `<nixpkgs>` and manually inspecting and processing the result:
```bash
find . -type f -exec grep --color -nH -i -E -e '(secret|pass|key)' {} +`
```
This audit was assisted by Claude Opus 4.8.
But what do I care if he used an LLM or hacked together some perl scripts?
That survey was made in 2017 and it had to be updated one way or another.
4 Likes
Because we have a policy about LLM disclosure and some people care. Just because you don’t, doesn’t mean LLM use isn’t a valid concern. Me personally, I want to read human thoughts, not probabilistic LLM output.
10 Likes
TLATER
July 21, 2026, 8:04am
8
Not that I disagree, but that policy effectively doesn’t apply to the links category. The post is technically not on discourse, and it’s not a “project” so disclosure isn’t required.
I should probably start being more aggressive with throwing that policy at people. The announcements category is still full of people who only remember to add a comment like half a discussion in, and say nothing in their posts.
10 Likes
can we please not start this ? i think there was enough context in the situation for your claims/accusations to absolutely be justifiable but if we start policing the way people talk… oh boy
my concern: i have been a long time emoji enjoyer but recently feel like i need to be careful lest people accuse me of writing forum posts with the aid of an LLM
13 Likes
I do not care whether or not the article is LLM slop but it’s worth putting it on the record that Domen is historically known for using LLMs. Do with that what you will.
4 Likes
I agree, i also like emojis. Though if people could be trusted with disclosing LLM use (which hasn’t happened here) there would no need to try to guess if something was done by an LLM.
I do not appreciate being lied to, that’s all. Fundamentally, if you use an LLM and disclose it, I will not click on the post at all. However if you use an LLM and don’t disclose it, your posts comment section is gonna get people trying to make you do so. There is a clear way out of this conundrum (proper disclosure).
8 Likes
and i think that is fine, same with @waffle8946 and @NotAShelf pointing out the obvious facts about the situation and how this violates a policy - i just don’t want this to be based on “look how they spoke!” when there is so much more evidence to point to…
keep in mind that LLMs are provided a large body of data to scrape (the internet)… so if an LLM uses emoji or speaks a certain way, it is because a real person did that at some point too
1 Like
For the sake of being pedantic I’d like to add that LLM does not copy individual people (as implied by “a real person did that…”) It learns statistical relationships over enormous corpora. A particular phrasing may never have been written exactly as the model produces it. It’s just the synthesis of what the model has been trained on—which is why I think all LLM text goes into the same uncanny valley area.
P.S. emojis are usually a post-training thing now
1 Like
@rhendric can you please move all this off-topic discussion into a separate thread?
3 Likes
god forbid a white boy is pedantic
Just to conclude this discussion, yes the post is in fact LLM “assisted”. See for yourself: https://github.com/cachix/secretspec/pull/179
3 Likes
Good morning!
Didn’t know about these rules, but I’ve added the disclaimer (clearly the blog post and commit is public).
4 Likes
I can’t help you with your personal anxieties, I just simply recognize patterns having been forced to work with various LLMs. I can even to some degree tell them apart based on their text generation patterns Same way I could tell a if it’s a German person typing in English based on their word choice, capitalization of nouns, etc. It’s pretty simple to tell a person apart from an LLM.
I’m not really going to spend more than 10 seconds reading slop at this point (long enough to notice that it is), if I wanted to read chatbot output I would go start the chat myself.
By the way, the emoji LLM thing is more along the lines of starting bullets with them, especially paired with selling points, stuff like
50% faster than v1
Uses 24% less power
Simplified queries
and so on. I have seen people write like this, but it usually accompanies pushy sales tactics, so it’s offputting anyway
4 Likes
it seems you’re not accepting direct messages, so i’ll call this out here - please don’t personally attack me because i asked for you to not start witch hunts based on “trust me, bro, i know ”
there was plenty of other evidence that you were aware of to call out the original post, you didn’t need to go with the weakest possible point that has no empirical backing whatsoever
5 Likes
Again I explained myself pretty well, misrepresenting what I said and extracting out of context intentionally to shadowbox is a cheap, dishonest tactic to attack me when I wasn’t even addressing you originally. We don’t know each other, you don’t have to trust me, I’m just stating my opinions on a chatbot . It’s not the way people talk, because it wasn’t a person talking feel free to reference the edit on the original post. You made it about yourself and a hypothetical (read nonexistent) person who would talk like a chatbot, I … can’t help you with that.
1 Like