dotnetomaniak.pl - Artykuły z tagiem dajsiepoznac

W tym wpisie przyjrzymy się kontrolerom w aplikacji ASP.NET MVC oraz akcjom, które mogą one zawierać. Kontrolery są odpowiedzialne za odpowiadanie na żądania użytkownika. Każde żądanie kierowane z przeglądarki jest obsługiwane przez określony kontroler. Przykładowo użytkownik klika przycisk odpowiadający za dodanie nowego wydarzenia, natomiast kontroler (EventsController) w odpowiedzi wyświetla odpowiedni widok. Akcja, która się w tym przypadku wykona jest zawarta w metodzie Create typu GET.C# // GET: Ev...

Źródło: jakubskoczen.pl
Dziel się z innymi:
Kontroler i Akcje - Jakub Skoczeń

Daj się poznać 2016 2927 dni, 10 godzin, 5 minut temu qbasko 144 źrodło rozwiń

Big changes related to the Warden project – it has been totally rewritten to the new .NET Core in order to support cross-platform capabilities (at least in a future). The functionality per se (including API) didn’t change, yet from now on you can use Warden with the new DNX runtime. If you’re interested in the migration process, a current status of this update (including the supported parts of the project) and what are the next goals – take a look at the whole post.

Dziel się z innymi:
[EN] Warden migration to .NET Core | Piotr Gankiewicz

Daj się poznać 2016 2929 dni, 5 godzin, 22 minuty temu spetz 77 źrodło rozwiń

Pierwszy funkcjonalny moduł w portalu SocialCooking tworzony na potrzeby konkursu Daj Się Poznać. Opis implementacji uploadu plików zarówno od strony AngularJS jak i WebAPI.

Źródło: kduszynski.pl
Dziel się z innymi:
Wyświetlanie profili podejście pierwsze – Wildpost

Daj się poznać 2016 2929 dni, 9 godzin, 56 minut temu wildcat89 78 źrodło rozwiń

If you have any issues with gulp, please take a look. Quick introduction to debugging gulp-debug with gulp.

Źródło: michalogluszka.pl
Dziel się z innymi:
[EN] Debugging Gulp with gulp-debug - Michał Ogłuszka

Web 2933 dni, 10 godzin, 18 minut temu michalogluszka 26 źrodło rozwiń

In today’s post, I’ll briefly describe one of the most recent watchers responsible for the Redis monitoring. Of course, it is a part of the Warden project, therefore, all of the features such as hooks and integrations are available. Let’s not waste anymore time and start with the code examples.

[EN] Redis monitoring with Warden | Piotr Gankiewicz

Daj się poznać 2016 2935 dni, 10 godzin, 35 minut temu spetz 50 źrodło rozwiń

If you ever used Heroku services, you probably liked their release process. It is built around git. Every application you host there has its own repository. To deploy an application you simply push your changes to this repository and they do the magic. Have you ever wondered, how they do this magic? I did. So when I got my VPS in Digital Ocean to host my applications, I wanted to have a similar deployment experience like on Heroku.

Źródło: devblog.dymel.pl
Dziel się z innymi:
[EN] Release from git like Heroku – Michał Dymel – DevBlog

Quite recently I’ve started working on new features for the Warden project and published the first prelease version to the NuGet (along with other packages that are meant to be additional plugins). In this post, I will discuss the available extensions that are basically responsible for making the fluent API even more fluent and the integrations that are a totally new thing, implemented as separate plugins (similarly to the watchers), which provide a quick access to the external services that can be part...

[EN] Warden – extensions, integrations, NuGet | Piotr Gankiewicz

Daj się poznać 2016 2937 dni, 22 minuty temu spetz 38 źrodło rozwiń

Krótki artykuł o tym w jaki sposób organizować kod w projekcie Angularowym. Kilka rozwiązań na to w jaki sposób nazywać foldery i pliki tak aby projekt był lepiej zarządzany.

Źródło: kduszynski.pl
Dziel się z innymi:
Porządki w projekcie – Wildpost

Using multiple graphic apis by one interface

Źródło: slavgamebrew.com
Dziel się z innymi:
[EN] Abstract graphics api

O tym, jak zarejestrować w DI klasy z biblioteki 'rodzica' oraz wywołać dowolną metodę serwisu poprzez żądanie HTTP.

Źródło: devblog.dymel.pl
Dziel się z innymi:
HTTP Interface to a class – Michał Dymel – DevBlog

Daj się poznać 2016 2940 dni, 9 godzin, 52 minuty temu Michal Dymel 94 źrodło rozwiń

Po co mi front-end pipeline i z czym to się je. Jak zwykle podążając za KISS ustawiam Gulp a pod projekt webowy.

Źródło: michalogluszka.pl
Dziel się z innymi:
Front-end build pipeline with Gulp - Michał Ogłuszka

Daj się poznać 2016 2937 dni, 8 godzin, 43 minuty temu michalogluszka 91 źrodło rozwiń

Any Kronos client will be available to use three basic commandsInsertGetDelete In future I want to add few more, like Count and GetKeys. Each of requests to the server serialized to binary form is preceded by few bytes of meta-data, including RequestType. In code its represented as a Request class, which in addition to type has two generic methods. At the beginning they might look difficult, but they are quite simple. First of them is responsible for sending any request to the server via special connec...

Źródło: www.pyrzyk.net
Dziel się z innymi:
[EN] Kronos - Creating a base request - Lukasz Pyrzyk

Architektura 2941 dni, 9 godzin, 36 minut temu kapral18 41 źrodło rozwiń

Immutability is a quite old concept that is mostly related to the functional programming, however, it’s also (maybe not so widely) used in the object oriented programming. An immutable variable/object can not be mutated, which means that once it’s been initialized it will never change it’s original value/reference (unless it’s deallocated). This approach results in some great benefits such as out of the box thread safety, yet in the OOP world, it does seem to be quite often abused or even not used at al...

[EN] A word about immutability | Piotr Gankiewicz

Sztuka programowania 2941 dni, 9 godzin, 36 minut temu spetz 68 źrodło rozwiń

In the following post we will handle touch events for buttons in that controller.

Źródło: lazybitch.com
Dziel się z innymi:
[EN] Mindstorm with Xamarin: Let's create a controller, part 2

Mobile development 2944 dni, 10 godzin, 17 minut temu Gekon 34 źrodło rozwiń

If you’re looking for a simple service for monitoring your MongoDB (things like opening a connection to the database or executing a query and processing the results), then you might find interesting a new type of the watcher added to the Sentry. The MongoDB watcher uses the C# MongoDB Driver under the hood but it’s been implemented in a way, that it’s possible to provide any driver that you’d like. In this post I’ll present how to use it and why it’s been implemented this way instead of another one.

[EN] Sentry – the MongoDB watcher | Piotr Gankiewicz

Daj się poznać 2016 2944 dni, 10 godzin, 17 minut temu spetz 31 źrodło rozwiń

W ostatnim wpisie poruszyłem tematykę IoC i w przykładowym kawałku kodu dla LocationRepo znajduje się metoda GetLocations zwracająca typ IQueryable. Zwróciła na to uwagę pewna osoba odwiedzająca bloga i słusznie. Stwierdziłem więc, że lepiej będzie rozpisać się krótko na ten temat niż edytować poprzedni wpis. No więc dlaczego zwracanie typu IQueryable

Dlaczego nie zwracać typu IQueryable w repo? - Jakub Skoczeń

Daj się poznać 2016 2940 dni, 9 godzin, 52 minuty temu qbasko 345 źrodło rozwiń

In the following post we will create a controller to control movement direction of the vehicle with two motors as a drive...

Źródło: lazybitch.com
Dziel się z innymi:
[EN] Mindstorm with Xamarin: Let's create a controller, part 1

Mobile development 2947 dni, 10 godzin, 20 minut temu Gekon 52 źrodło rozwiń

Opis sposobu tworzenia dynamicznych obiektów proxy za pomocą biblioteki Castle.DynamicProxy

Tagi: dajsiepoznac
Źródło: goo.gl
Dziel się z innymi:
Castle.DynamicProxy ForTheWin! – Michał Dymel – DevBlog

Daj się poznać 2016 2947 dni, 10 godzin, 20 minut temu Michal Dymel 92 źrodło rozwiń

Opis architektury rozwiązania AppSensor.NET

Źródło: www.diwebsity.com
Dziel się z innymi:
OWASP AppSensor .NET - architektura - Diwebsity

Architektura 2947 dni, 10 godzin, 20 minut temu suvroc 103 źrodło rozwiń

In my very first blog post on the contest I mentioned Yeoman, Gulp and Bower. Though my project changed, I’m still actively using the last two. I find it very helpful when with Gulp, I can make my website refresh while I’m making changes, so they are instantly visible on the screen. In this post I will show you some useful tasks that you can quickly implement in your own (web) project. First of all, I’m using Visual Studio Code (awesome tool), which gives me all of the functionalities I need for devel...

[EN] Useful gulp tasks – live reloading the browser and more [DajSiePoznac#6] | Immora's blog

Daj się poznać 2016 2946 dni, 34 minuty temu immora 77 źrodło rozwiń

1 2 3 4 5 6

Najaktywniejsi w tym miesiącu