Nothing says vegetarian rulade more than chicken and sausages. #homecooking

Nothing says vegetarian rulade more than chicken and sausages.

22 December, 2018 · 1 min · 9 words · Alexandru Bucur

Brown rice night (and it's bio for what it's worth)

Brown rice night (and it’s bio for what it’s worth) with peas, carrots and chicken. Added a touch of butter to sote the vegetables and make it less grainy.

21 December, 2018 · 1 min · 29 words · Alexandru Bucur

Lazy night with some #pasta and #meatballs keeping it simple.

Lazy night with some and keeping it simple.

19 December, 2018 · 1 min · 8 words · Alexandru Bucur

moussaka with a touch of bacon and millet to make

moussaka with a touch of bacon and millet to make the sauce a bit thicker.

18 December, 2018 · 1 min · 15 words · Alexandru Bucur

How to rename Asp .Net Core 2.2 Identity Tables to not have AspNet prefix in EF Core

Not sure if the code below should be considered a hack, but the easiest way of removing the AspNet prefix is to iterate through the models. 1 2 3 4 5 6 7 8 9 10 11 12 protected override void OnModelCreating(ModelBuilder modelBuilder) { base.OnModelCreating(modelBuilder); foreach (var entityType in modelBuilder.Model.GetEntityTypes()) { var table = entityType.Relational().TableName; if (table.StartsWith("AspNet")) { entityType.Relational().TableName = table.Substring(6); } }; } Found the initial code in a 2014 asp net issue and since copy paste didn’t cut it, did a quick update of the method / property names....

16 December, 2018 · 1 min · 109 words · Alexandru Bucur

Trying to learn to roll pastry. Still on the flour,

Trying to learn to roll pastry. Still on the flour, semolina, corn flour mix. Made a quick mustard sauce for the pork filling

13 December, 2018 · 1 min · 23 words · Alexandru Bucur

Oven backed chicken with flour, corn flour and semolina with

Oven backed chicken with flour, corn flour and semolina with a touch of egg and a quick pan vegetable mix

11 December, 2018 · 1 min · 20 words · Alexandru Bucur

Pizza night with my first flour, semolina, corn flour dough.

Pizza night with my first flour, semolina, corn flour dough.

09 December, 2018 · 1 min · 10 words · Alexandru Bucur

The confusing way of sending emails in .NET Core and other goodies

Since I finally had some time to play more with C# I’ve encountered my next challenge when wanting to implement user registration with a confirmation email. Even though the official documentation is clear on how to handle the one time code generation I didn’t want to use Sendgrid but plain old SMTP authentication. Further more I don’t agree with having the mail body as a string in my registration task....

08 December, 2018 · 2 min · 290 words · Alexandru Bucur

#pasta night with an experiment sauce for me (garlic, onion,

night with an experiment sauce for me (garlic, onion, carrot base with half a sausage, chicken, tomato sauce and a touch of cream)

07 December, 2018 · 1 min · 23 words · Alexandru Bucur