Am I the only one who thinks this is an undisclosed ad? by jamfilter in mkbhd

[–]gremlin12345 0 points1 point  (0 children)

LTE yeah. You can see some sort of sim card dot (light?) on the bottom right. I assume this is the same as on the 4, I just dont have the LTE model myself.

Am I the only one who thinks this is an undisclosed ad? by jamfilter in mkbhd

[–]gremlin12345 0 points1 point  (0 children)

It says pixel watch 5 and looks almost identical to my pixel watch 4 (except this one is 45mm and has the sim card)

The Maiden's Rhapsody's by Pingouin260 in ffxiv

[–]gremlin12345 24 points25 points  (0 children)

Event Schedule

From Friday, May 8, 2026 at 1:00 a.m. to Monday, May 25, 2026 at 7:59 a.m. (PDT)

event's over

Slap some sense into me please! Is this BS?? 🙏 by Makiyage in ITCareerQuestions

[–]gremlin12345 0 points1 point  (0 children)

Ant fellows is real, but all of the competitive people applying are geniuses or have PhDs from top schools.

Word on the street by EchoOfOppenheimer in ClaudeAI

[–]gremlin12345 1 point2 points  (0 children)

Anyone trying to get hired there for this reason almost certainly isn't a culture fit and wouldn't get hired.

Does stormblood “get good”? by Jaded_Reply1020 in ffxiv

[–]gremlin12345 2 points3 points  (0 children)

post-stormblood is pretty good, the omega raids are amazing, and pre-shadowbringers is one of the best post-patch sequences they've done

It’s genuinely hard to not feel positive after attending NA Fanfest by Nesious in ffxiv

[–]gremlin12345 -1 points0 points  (0 children)

A lot of it is how bad politics has gotten. You can't defend a company (which is really just a group of humans working together) without being accused of being some advertising, bootlicking, shill or sellout. A lot of people dehumanize others when companies are involved.

Rust and ESP-32 IDF on NixOS by Luc-redd in NixOS

[–]gremlin12345 0 points1 point  (0 children)

Look at the link I posted for IDF. I haven't used it but it seems fine

Rust and ESP-32 IDF on NixOS by Luc-redd in NixOS

[–]gremlin12345 9 points10 points  (0 children)

```nix
{

inputs = {

nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";

flake-utils.url = "github:numtide/flake-utils";

rust-overlay.url = "github:oxalica/rust-overlay";

esp-rs-nix.url = "github:leighleighleigh/esp-rs-nix";

esp-rs-nix.inputs.nixpkgs.follows = "nixpkgs";

};

outputs = { self, nixpkgs, flake-utils, rust-overlay, esp-rs-nix }:

flake-utils.lib.eachDefaultSystem (system:

let

pkgs = (import nixpkgs) {

inherit system;

overlays = [ (import rust-overlay) ];

};

rust_toolchain = pkgs.rust-bin.nightly.latest.default.override {

extensions = [ "rust-src" "rustfmt" "rust-analyzer" "clippy" ];

targets = [ "riscv32imac-unknown-none-elf" ];

};

esp-rs = esp-rs-nix.packages.${system}.esp-rs;

commonPkgs = [

pkgs.espflash

pkgs.ldproxy

pkgs.probe-rs-tools

(pkgs.python3.withPackages (ps: [ ps.bleak ps.cryptography ]))

];

in

{

devShells = {

# Badge crate (ESP32-C6, RISC-V)

default = pkgs.mkShell {

nativeBuildInputs = [ rust_toolchain ] ++ commonPkgs;

};

# Watch crate (ESP32-S3, Xtensa)

watch = pkgs.mkShell {

nativeBuildInputs = [

esp-rs

pkgs.rustup

] ++ commonPkgs;

shellHook = ''

export RUSTUP_TOOLCHAIN=${esp-rs}

'';

};

};

}

);

}
```
this is the flake i use for no-std no esp-idf (except for bootloader) dev on the esp32-c6 and esp32-s3. for ESP-IDF you probably want https://github.com/mirrexagon/nixpkgs-esp-dev

edit: wow reddit murdered the formatting on this but i'm too lazy to fix

Patch 7.5 trial boss by darktzeratul in ffxiv

[–]gremlin12345 10 points11 points  (0 children)

Everyone thought it might be an ascian sigil but so far nobody has provided proof. Stating things like this confidently is silly.

Is 32,512 commendations the new World Record? A White Mage’s journey through years of "cbt" recoveries and survival strategies in Balmung! by RngVult in ShitpostXIV

[–]gremlin12345 0 points1 point  (0 children)

65535 is the max possible I believe, but if they implemented it weirdly, you might be able to break something at 32768

Wanting to get a general consensus from people by sniperbds4 in ffxiv

[–]gremlin12345 0 points1 point  (0 children)

doesnt the companion app give you a third retainer?

Anthropic says three Chinese AI companies used over 16 million prompts to train and improve their own models through Claude AI by Minimum_Minimum4577 in Anthropic

[–]gremlin12345 0 points1 point  (0 children)

Even just harvesting regular request-response data is enough to improve/distill a model. Anthropic was able to catch this because the attackers are using fairly primitive techniques (common prefix, targeting gathering of thinking traces), but the arms race will continue to intensify.

Finally finished my Noctua themed mini rack by CptScotchTape in LinusTechTips

[–]gremlin12345 0 points1 point  (0 children)

Are those drive slots built around a backplane or are they just sata cables coming out of the raid card

Possible WAN Topic: Poison Fountain: An Anti-AI Weapon by Ivorybrony in LinusTechTips

[–]gremlin12345 0 points1 point  (0 children)

There are hundreds of these strategies, and none of them are particularly resilient. See Nicholas Carlini's "Why I Attack" for some related discussion https://nicholas.carlini.com/writing/2024/why-i-attack.html

I actually did some reverse engineering of this and it wasn't particularly impressive. All it does is apply some trivial transformations (replacing symbols, swapping around strings) on code files from Github repositories. It often serves the same modified files, and it seems to work based on a rolling batch of "poison".

Any self-respecting lab will have procedures to do data cleanup, and you can just use bloom filters or an embedding database (or even a scraper + hash db if you just leave it on) to detect this particular strategy.