Strona głównaUżytkownik

stopper123 | użytkownik

stopper123
stopper123
38,17
2530 dni, 15 godzin, 34 minuty temu
29 marca, 2017
dotnetomaniak.pl

As I’ve mentioned in previous posts about Akka.NET, everything that actor knows is stored in memory. While we can skip any database or IO related bottlenecks because things in memory are generally speaking very fast, we must remember that memory is not a place where you can store your data for an extended period of time and keep it. So let’s talk about persisting it.

Źródło: hryniewski.net
Dziel się z innymi:
Akka.NET #5: Persisting actors state – events – Hryniewski.NET

Daj się poznać 2017 2530 dni, 2 godziny, 19 minut temu Rafał Hryniewski 45 źrodło rozwiń

As you may already know I really, really like LINQ. One day I'll probably join together all my posts about this incredible featureand release pretty neat compendium/one-oh-one about this great feature. But while I'm not sitting and joining every post from this blog that have word "LINQ" in it into one, big pile, let's talk a bit about joining and grouping collections in LINQ.

Źródło: hryniewski.net
Dziel się z innymi:
Hryniewski.NET | Joining, Grouping and GroupJoining in LINQ

Exactly one year ago I’ve published first post on this blog. It was simple “Hello world” that were followed by some posts related to 2016 edition of Get Noticed contest and after that by some more or less technical related stuff. Since it’s first anniversary of this first, lame “Hello world” post I can’t just write simple “Hi there” again. And because I’m taking a little breath before 2017 edition of said contest I don’t want to write any hard, technical stuff. So let me tell you about some things that I...

Źródło: hryniewski.net
Dziel się z innymi:
Hryniewski.NET - Get Noticed 2017 #0 – Announcing “Me2.0”

Daj się poznać 2017 2609 dni, 3 godziny, 4 minuty temu Rafał Hryniewski 70 źrodło rozwiń

Since my project will be hosted on Azure App Services I want to ensure that every pushed commit will land in cloud environment and will be available outside of my local, dev machine. As close to it’s intended, production-like environment as possible. And with Azure App Services you can achieve basic continuous delivery without taking a sweat.

Azure App Services – Continuous Delivery from git in 5 minutes or so

Daj się poznać 2017 2605 dni, 5 godzin, 16 minut temu Rafał Hryniewski 46 źrodło rozwiń

I’m building my Get Noticed project from the scratch. And since 3 months is actually a very short span of time, I need compromise between doing some things fast (boring ones) and doing other things in a way that will allow me to write about it and not be ashamed to show some code afterwards. That means I’ll need to incur a technical debt in few areas of project. And I must watch it closely to not allow it to grow without control or interests will probably kill me.

Źródło: hryniewski.net
Dziel się z innymi:
Managing technical debt with NDepend 2017 – Hryniewski.NET

Daj się poznać 2017 2603 dni, 1 godzinę, 55 minut temu Rafał Hryniewski 49 źrodło rozwiń

Until recently I was into ASP.NET MVC because of it’s possibility to extending, modifying and doing pretty much whatever you want with it. And while I’ve got rather proficient in plugging stuff in it’s pipeline and/or doing custom stuff like routing, binding or results, it never changed one fact about MVC – it’s big, really big. And the truth is, some times we don’t want so much. That’s why I wanted to give Nancy a go for some time, below you’ll find some of my first thoughts. And i must tell you now, it...

Tagi: nancy, nancyfx
Źródło: hryniewski.net
Dziel się z innymi:
One night with Nancy – Hryniewski.NET

Daj się poznać 2017 2595 dni, 3 godziny, 13 minut temu Rafał Hryniewski 110 źrodło rozwiń

Actor model concept fascinated me since I’ve heard about it for the first time. It’s been on my todo list ever since and Get Noticed 2017 is great opportunity to give it a try. That’s why there is an actor responsible for almost anything in Me2.0. But, what is an actor, actor model and are benefits of using it in our projects? You’ll find out in a minute.

Źródło: hryniewski.net
Dziel się z innymi:
Akka.NET #0 – Actor Model Basics – Hryniewski.NET

Daj się poznać 2017 2584 dni, 15 godzin, 9 minut temu Rafał Hryniewski 138 źrodło rozwiń

I've seen many posts about generics in C# lately. And while they cover basics pretty well, most of them doesn't contain information about constraints which are things that causing generics to be really fun.

Tagi: generic, generics
Źródło: hryniewski.net
Dziel się z innymi:
Working with generics and constraints in C# – Hryniewski.NET

Daj się poznać 2017 2592 dni, 13 godzin, 28 minut temu Rafał Hryniewski 114 źrodło rozwiń

In previous post I’ve explained briefly what actor model is and why it’s so fun. Today we’ll create our ActorSystem instance, learn what it is and send first messages to them. I hope it will be nice and easy start.

Źródło: hryniewski.net
Dziel się z innymi:
Akka.NET #1 – Creating Actor System and making first contact – Hryniewski.NET

Daj się poznać 2017 2583 dni, 9 godzin, 16 minut temu Rafał Hryniewski 42 źrodło rozwiń

Let’s take a closer look at our actors, how their life looks like, what exactly they’ve been doing and what they can do. As they are basic building block of applications built on actor model it’s crucial to understand and being able to communicate with them.

Źródło: hryniewski.net
Dziel się z innymi:
Akka.NET #2: A day in the life of an Actor – Hryniewski.NET

Daj się poznać 2017 2579 dni, 3 godziny, 57 minut temu Rafał Hryniewski 34 źrodło rozwiń

Along with Get Noticed contest I’m a bit preoccupied with other activities. One of them is preparing to take 70-473 Exam (cloud and data related stuff). Since I’m reading and using cert related stuff I could as well write about it – I’ll probably remember everything I’ll write about for rest of my life (writing about things works magic with memory) and maybe someone will have any use for that. Let’s start with simple things – dynamic data masking.

Źródło: hryniewski.net
Dziel się z innymi:
Azure SQL 101 – Dynamic Data Masking – Hryniewski.NET

Daj się poznać 2017 2578 dni, 16 godzin, 36 minut temu Rafał Hryniewski 11 źrodło rozwiń

As you’ve probably seen in previous posts about Akka.NET, actor model is no rocket science and is really easy and fun to start with. However entire actor model may seem like closed and hermetic ecosystem, today I’ll show you how to poke actors in way that’ll make them poke back.

Źródło: hryniewski.net
Dziel się z innymi:
Akka.NET #4: Connecting Actor Model with endpoints – Hryniewski.NET

Daj się poznać 2017 2557 dni, 15 godzin, 1 minutę temu Rafał Hryniewski 23 źrodło rozwiń

Welcome to the fifteenth episode of my course “Becoming a software developer” in which we will implement password encryption, authorization and authentication using JWT.

Dziel się z innymi:
Becoming a software developer – episode XV | Piotr Gankiewicz

Inne 2536 dni, 14 godzin, 39 minut temu spetz 45 źrodło rozwiń

Microsoft Flow is a service I’ve been working with for some time and poking it to discover some of its possibilities. Basically, it’s service that allows to create and manage workflows from ready to use blocks representing triggers and actions.

Źródło: hryniewski.net
Dziel się z innymi:
Microsoft Flow – Introduction – Hryniewski.NET

Daj się poznać 2017 2536 dni, 14 godzin, 39 minut temu Rafał Hryniewski 90 źrodło rozwiń

In one of my posts about Akka.NET I’ve covered actor selections and paths. Sadly I’ve skipped one rather important part regarding allowed characters for actor paths and what to do if our name cannot be used for creating an actor. And recently I’ve received a question about why I’m creating actors using encoded string. This is the cause.

Źródło: hryniewski.net
Dziel się z innymi:
Akka.NET #3.5: Actor paths requirements and how to meet them – Hryniewski.NET

Daj się poznać 2017 2536 dni, 14 godzin, 39 minut temu Rafał Hryniewski 28 źrodło rozwiń

How many times have you stored something in key/value collection? Most probably it was Dictionary or some kind of implementation of IEnumerable>. More than a few times I wanted to store more than one value under single key, most common solution for this situation is Dictionary with collection of some kind as value type, but do you remember about type that was designed just for that and is seen much less often in code?

Tagi: Linq, lookup
Źródło: hryniewski.net
Dziel się z innymi:
LookUp class in C# – have you ever tried it? – Hryniewski.NET

Daj się poznać 2017 2548 dni, 8 godzin, 28 minut temu Rafał Hryniewski 169 źrodło rozwiń

Tworzenie puli obiektów to częsta praktyka stosowana w bibliotekach serializujących. We wpisie sprawdzam, czy używanie takiego podejścia dla małego bloku pamięci jest efektywne i czy nie lepiej użyć niskopoziomowego słowa kluczowego stackalloc.

Źródło: blog.scooletz.com
Dziel się z innymi:
ThreadStatic vs stackalloc | Szymon Kulec `Scooletz`

Sztuka programowania 2552 dni, 1 godzinę, 52 minuty temu Scooletz 90 źrodło rozwiń

We’ve recently released our newest application – Elastic Forms. While it’s easy to work with and powerful solution as a standalone application, you can expand its functionalities by order of magnitude using our API with other services. In this post, we’ll follow the example of using Elastic Forms with Microsoft Flow.

Dziel się z innymi:
Using Microsoft Flow for building basic business process

Cloud 2551 dni, 2 godziny, 40 minut temu Rafał Hryniewski 135 źrodło rozwiń

Lately I’ve seen some posts about authentication made easy and simple with various packages and how it’s great we doesn’t haven’t to store logins and passwords in our databases anymore due to global availability of social identity providers. It’s true that making simple authentication with of of those providers is simple today. And in Azure App Services it’s even simpler, it really can be done in 5 minutes.

Źródło: hryniewski.net
Dziel się z innymi:
Azure App Services – Authentication with FB, Google and others in 5 minutes or so – Hryniewski.NET

Daj się poznać 2017 2552 dni, 1 godzinę, 52 minuty temu Rafał Hryniewski 39 źrodło rozwiń

Entity Framework (and other ORMs) are in general great pieces of software that makes developers lives so much easier by letting us thinking about objects when we’re working with data persisted in some underlying database. This makes development much easier than writing raw SQL queries. But some of us tend to get too comfy and forgetting about things that lies beneath our beautiful, object oriented code. After all we have Entity Framework, we shouldn’t wrap our heads around SQL stuff. But how about actual...

Źródło: hryniewski.net
Dziel się z innymi:
Entity Framework – how about giving a shit about databases? – Hryniewski.NET

Daj się poznać 2017 2561 dni, 14 godzin, 11 minut temu Rafał Hryniewski 190 źrodło rozwiń

1 2

Najaktywniejsi w tym miesiącu