#Mongoose

2025-03-19

While not assassination-related, the specific details of CIA’s anti-Castro “Operation #Mongoose” - causing widespread crop failures, sabotaging merchant shipping, sending in large numbers of agents in the guise of students, creating false broadcasts to suggest that anti-Castro insurrections were occurring… - are fascinating (better word: “horrifying”) reading. And they are certainly deserving of many decades of #CIA secrecy.

Sprocket Bicycle Marketplacesprocketapp
2025-02-28
2025-01-15
The mongoose is looking towards the camera.

Test für die Funktion der Pixelfed-Kommentarfunktion mit anderen Instanzen, z. b. Mastodon

#animals #photography #mongoose #fotografie
This image shows a mongoose perched on a rocky surface. The mongoose is looking towards the camera.
2025-01-13

Automattic will only contribute 45 hours a week to things benefitting the entire community and not just them: automattic.com/2025/01/09/alig
I wonder what will happen to #mongoose and #PocketCast which are not so prominent but widely used programs from #Automattic besides their prominent #WordPress .
The change comes after legal troubles, and (some portion of) backslash after Ma.tt made drastic moves against a competitor, which undercuts wp.com by only contributing very little and cutting features.

2024-12-23

Mongoose Publishing unleashes the secrets of Aslan society with their latest supplement, Clans of the Aslan, for Traveller RPG. From character creation tips to clan dynamics, this tome is essential for those wanting to explore the majestic pride of the Aslan. Get your paws on 'Clans of the Aslan'—it’s available in print and digital formats now. tinyurl.com/yzpamuk9 #Traveller #Mongoose #TabletopGames #RPGs #RoleplayingGames #Aslan

Cover of "Traveller: Clans of the Aslan" with Aslan character holding a weapon, space-themed background, and bold title at top.
Víctor Maldonadovmaldosan@mastodon.ie
2024-12-15

@vmaldosan@defcon.social adding a backend of ExpressJS + MongoDb. The basic API is almost ready, but after many hours of try and error, I couldn't figure out how to include a Map as a property of users. Today I switched from the official NodeJS client to Mongoose and it works!

#propag8 #mongodb #mongoose

Axel ⌨🐧🐪🚴😷 | R.I.P Natenomxtaran@chaos.social
2024-12-11

@FotoVorschlag: #FotoVorschlag "Blick durch ein Fenster" — wobei das ja nicht ganz korrekt ist. Es ist ja ein Blick durch zwei Fenster. Wobei, nein, die Spiegelung im zweiten Fenster geht da wieder zurück durchs erste Fenster. Also ist es eher "Blick zweimal durchs gleiche Fenster". 🤓

#Zürich #Rütihof #Brompton #MTB #Mongoose #Spiegelung #Spiegelbild #Veloladen #Velomech #JomesBike

Foto durchs Fenster eines Veloladen durch. Ich spiegle mich im vorderen als auch hinteren Fenster des Ladens. Dazwischen stehen diverse Fahrräder. Ich sitze mit leuchtgelbem T-Shirt auf meinem Brompton-Faltrad.
2024-12-09

July 7, 2019 – Couscous with a Mongoose – Tsingy de Bemaraha, Madagascar

Enjѹ㏌g a lunch of couscous ㏌ a canyon chamber,a fellow tourist screa㎳,'A rat!' Nope: A mongoose.As distant from a rat as it is from a walrus.

#Africa #Madagascar #Tsingy #Mongoose #Photography #OriginalPhoto #10YearsInMadagascar #HalfHeartedFanatic

A rust-red mongoose with a gray head and black stripes on its back and tail walks through a rocky chamber in the Tsingy, with gray stone walls surrounding it.
2024-12-04

Found at a half price books -
Star Fleet A Call to Arms (RPG?) for $12.00 seemed like a good deal.
And D&D Spelljammer Adventures in Space (Box set) appears like this is new and was $35 which I don't think is quite half off but was still a good deal. So of course I grabbed both.

#StarFleet #StarTrek #RPG #SpellJammer #Mongoose #StarFleetUniverse #HPB #HalfPriceBooks

A Call to Arms Star Fleet book by Mongoose Publishing a Star Fleet UniverseD&D Spelljammer Adventures in Space A Thrilling space-based adventure setting for the world's greatest roleplaying game. 
box set (book shelve game?)
dafne kiyui 🌻dafne@veganism.social
2024-10-22

looks like the #Mongoose module for #NestJS just got a whole lot better too 😄

i can define schemas with just schema classes now!

github.com/nestjs/mongoose/iss

dafne kiyui 🌻dafne@veganism.social
2024-10-09

looks simple enough right? right?

```typescript
@Injectable()
export class InstanceToPlainPipe implements PipeTransform {
constructor(private readonly options?: ClassTransformOptions) {}

transform(value: unknown) {
return instanceToPlain(value, this.options)
}
}
```

wrong! because: github.com/typestack/class-tra

#Mongoose / #MongoDB query selector options start with `$`, which isn't valid in #GraphQL. using `@Expose` isn't an option now either.

overcook my beans and yell me a river but this sounds like a tomorrow problem.

and something for good ‘ol `JSON.parse(JSON.stringify(x))` 🙉

dafne kiyui 🌻dafne@veganism.social
2024-10-09

great. i should have validated this earlier.

i thought i'd use the `ValidationPipe` in #NestJS to convert our DTOs from something #GraphQL friendly to something i could pipe directly into #Mongoose but it turns out that isn't an option because of this bloody line:

github.com/Automattic/mongoose

our arguments are deeply nested, so we can provide options like `where`, `sortBy`, etc. so we use `class-transformer` decorators under the hood to convert them to the input classes which we can subsequently transform and validate... but Mongoose expects a POJO ...and classes are functions 🤦‍♀️

the options are to either add an extra transform step at the `ArgsType` DTO to convert the input to a POJO or basically add a pipe that does the same.

i was really hoping it would be just as simple as implementing some `toObject` interface of sorts. grr.

dafne kiyui 🌻dafne@veganism.social
2024-09-17

oh #Mongoose, we come head-to-head once again 🤌

> how does the mongo driver maintain the sort order of keys when it is stored as an object?

it doesn't – and relying on the fact that it may is a bad idea[1]. databases, especially #NoSQL ones, over time begin to look very ugly and fields that once felt aptly named no longer make sense so we rely heavily on aliases. this also makes it easy to transform / rename fields on the #GraphQL level without impacting the database or affecting older applications, but i digress.

anyhow, TIL or today-i-encountered actually that by using aliases on sort fields (something we had oddly never needed to do before) the `translateAliases` method for Mongoose models does not maintain the order of the object it receives.

this means `{ a: 1, b: -1, c: 1}` could very well become `{ a: 1, c: 1, B: -1 }` when transformed by this method (where b is an alias of B) and thus breaking the sort order of the application.

disclaimer: i know this is a matter of code cleanliness vs. what we can or can't do since we could just not use aliases for sorting, but that's extra mental load, y'know?

[1]: github.com/Automattic/mongoose
[2]: mongoosejs.com/docs/api/model.()

2024-08-09

Quick #pencil #sketch of a #mongoose #lemur. Had to redraw the face as a cartoon because of the shocked expression. "They make lemur coffee out of **what?!**" :D

#dailydoodle #mastoart

A pencil sketch of the face of a shocked looking mongoose lemur, next to a cartoon drawing of the face of a shocked looking mongoose lemur.
Scott Williams 🐧vwbusguy@mastodon.online
2024-08-04

Found this bike someone dumped at the trash can off the bike trail. Waited to see if they would come for it, but never did, so I checked it out. One of the brake cables is broken and the shifters are all out of whack, but it's otherwise in good shape. Gonna get some new cables for it, clean it up, and give it some general TLC and see if I can make it a wife-worthy bike.

#bike #biking #mongoose

Mongoose Standoff 26"Mongoose 26" StandOff

Client Info

Server: https://mastodon.social
Version: 2025.04
Repository: https://github.com/cyevgeniy/lmst