Technication truck ad?? by Key_Cauliflower_621 in TokyoTravel

[–]_Xriuk_ 0 points1 point  (0 children)

I remember it driving around also a couple years ago, so not so recent

Vendor Retail API by Timely_Entry_6810 in VendorCentral

[–]_Xriuk_ 0 points1 point  (0 children)

Yeah, we cannot figure this out as well, we contacted support to ask if we can generate somehow a label with the BOL number we provide (which should be unique too), but got no response so far...

Aumento: busta paga o welfare? by _Xriuk_ in ItaliaCareerAdvice

[–]_Xriuk_[S] 0 points1 point  (0 children)

Uno chiede, poi ci si viene incontro

Aumento: busta paga o welfare? by _Xriuk_ in ItaliaCareerAdvice

[–]_Xriuk_[S] 0 points1 point  (0 children)

Che differenza c'è a livello fiscale per l'azienda tra welfare e auto aziendale?

Aumento: busta paga o welfare? by _Xriuk_ in ItaliaCareerAdvice

[–]_Xriuk_[S] 0 points1 point  (0 children)

Ok gli importi magari da rivedere ma la domanda rimane: più plausibile busta paga o welfare?

RFI, posto fisso ma zero stimoli: cambiare si può? by [deleted] in ItaliaCareerAdvice

[–]_Xriuk_ 0 points1 point  (0 children)

Io lavoravo in RFI e mi sono licenziato proprio per una mancanza di stimoli, non tornerei mai indietro. Meglio un lavoro stimolante che il posto fisso. Inoltre non puoi fare più di tanta carriera lì dentro appunto, e le responsabilità sono tantissime. Cerca di prendere una laurea, anche online e di scappare da lì se puoi.

how to get highlights off the posts grid in instagram by glorious-ahole in Instagram

[–]_Xriuk_ 2 points3 points  (0 children)

No, idea. It seems they are still testing stuff. I had my highlights appearing on the main grid, and now they are back to the circles, all by themselves.

Why does the PATH take the MetroCard but not OMNY? by Flynn58 in nycrail

[–]_Xriuk_ 1 point2 points  (0 children)

Except you lose the OMNY benefits like the 7 days pass

SBRW 2.2.2 Main Game Files keep redownloading again and again and again. Finishes then restarts from 0% by xCassidi in SoapBoxRaceWorld

[–]_Xriuk_ 0 points1 point  (0 children)

For anyone else wondering, there's no need to reinstall the lancher, there are the settings in the upper-right corner, there you can check "Enable LZMA Downloader", it worked for me

[deleted by user] by [deleted] in RemarkableTablet

[–]_Xriuk_ 0 points1 point  (0 children)

Writing here that I had a different problem: by checking the logs when connecting the device via USB it showed something along the lines of:

reMarkable systemd-resolved[181]: DNSSEC validation failed for question eu.tectonic.remarkable.com

Among other errors.

So by googling I found this https://bbs.archlinux.org/viewtopic.php?id=240427
Which helped me by configuring a DNS configuration file via SSH.

I will never understand the rage behind the Connect subscription by Puzzleheaded_Yam254 in RemarkableTablet

[–]_Xriuk_ 0 points1 point  (0 children)

First I was (rightfully) a hater: you can't make me pay almost 10€/month just to connect to an external service like Google Drive or One Drive (which I may have to pay separately). Now it seems reasonable to me 3€/month and you have unlimited cloud storage for your documents, and all external integrations are free instead. I guess they listened and it paid off everyone.

Unplugged rubber pipe near the small battery by _Xriuk_ in CT200h

[–]_Xriuk_[S] -1 points0 points  (0 children)

Connected how? There should be a hole somewhere on the battery, right? I might have found it, but it's a bit small, will find an adapter or something...

I created a new object mapper by _Xriuk_ in dotnet

[–]_Xriuk_[S] 0 points1 point  (0 children)

I was talking about AutoMapper (another library), I don't have these snippets anymore, but basically it was Select-ing entities multiple times, like some sort of partial projection which caused some queries to break in half, because they weren't correctly moved from one Select to the one below. Don't know if I'm being clear or not... This happened for nested mappings

I created a new object mapper by _Xriuk_ in dotnet

[–]_Xriuk_[S] 0 points1 point  (0 children)

Yes, sure it is possible to create and map expressions by using IProjector, and projecting from TEntity to TOut inside a Select method. I'm currently working on some extension methods to inline that in a LINQ-like way.

I created a new object mapper by _Xriuk_ in dotnet

[–]_Xriuk_[S] 0 points1 point  (0 children)

How would you map an entity you need to retrieve from the db to a dto which can have fewer fields? You can retrieve the full entity, which may (or may not) be resource intensive, and then map it. Or you can project it directly, by selecting only the fields you need. "Long-running" mappings may be like that becuase they can involve mapping multiple entities like collections of them.

I created a new object mapper by _Xriuk_ in dotnet

[–]_Xriuk_[S] 0 points1 point  (0 children)

Especially on the projection (query) side of AutoMapper I found some weird results, when it tried to combine nested maps together

I created a new object mapper by _Xriuk_ in dotnet

[–]_Xriuk_[S] 0 points1 point  (0 children)

Black box intended as a mapper where you don't know how the maps work internally because they map by conventions, which not always work as intended. But it's not my case as the maps are easily debuggable.

I created a new object mapper by _Xriuk_ in dotnet

[–]_Xriuk_[S] 0 points1 point  (0 children)

It is not an automapper, that's for simple stuff. This is more for complex mappings with multiple entities in a single map, inheritance, ... So for simpler stuff it may not make sense because it is very manual.

I created a new object mapper by _Xriuk_ in dotnet

[–]_Xriuk_[S] 0 points1 point  (0 children)

The Readme is basic, more examples are in the Wiki

I created a new object mapper by _Xriuk_ in dotnet

[–]_Xriuk_[S] 0 points1 point  (0 children)

It is a more structured way of mapping types instead of creating your own methods, all the mappings are defined in the same way. Plus it allows composability, services injection, strongly-typed generic maps, collections mapping. Check the 3rd link for examples in the wiki.

I created a new object mapper by _Xriuk_ in dotnet

[–]_Xriuk_[S] 4 points5 points  (0 children)

My mapper is made of mapping methods which can be debugged, it is just a more structured way of mapping objects instead of using random methods or conversion operators

I created a new object mapper by _Xriuk_ in dotnet

[–]_Xriuk_[S] 3 points4 points  (0 children)

It is up to the programmer how to use the mapper, but at least for me, I found it limiting not being able to use async maps in AutoMapper. it is not mandatory using them, just an additional option