Strona głównaUżytkownik

jedmac | użytkownik

jedmac
jedmac
3 513,43
214 dni, 3 godziny, 48 minut temu
16 września, 2013
dotnetomaniak.pl

MVC)MJLeave a comment Dzisiaj krótki wpis, ale wydaje mi się, że wart uwagi. W zeszłym tygodniu po raz pierwszy miałem do czynienia z dodatkiem do VS 2012 – Razor Generator. I mówiąc szczerze – jestem bardzo pozytywnie zaskoczony. W wielkim skrócie jest to rozszerzenie umożliwiające kompilowanie plików .cshtml. W praktyce wygląda to w ten sposób, że pod widokiem znajduje się klasa o nazwie Widok.generated.cs. Przy każdej zmianie w widoku, następuje automatyczna zmiana w kodzie tej klasy, przez co nie je...

Dziel się z innymi:
MVC + Razor Generator | World of IT

Narzędzia 3745 dni, 19 godzin, 31 minut temu jedmac 275 źrodło rozwiń

When you try to connect your Visual Studio 2008 environment to a Team Foundation Server 2010 it is so popular that you will not be able to make it. After clicking Tools->Connect to Team Foundation Server and trying to connect to your own TFS you will receive one of errors, for example this...

Dziel się z innymi:
[EN] PROBLEM WHILE CONNECTING VISUAL STUDIO 2008 (TEAM EXPLORER) TO A TEAM FOUNDATION SERVER 2010

Narzędzia 3786 dni, 3 godziny, 35 minut temu jedmac 12 źrodło rozwiń

While working with Internet Information Services (IIS) you can meet several problems. One of the most popular issue is a communique that you can’t start W3SVC. You can find a lot of articles in which people says that you should re-install IIS. But there is another way to fix it...

Tagi: iis, IIS 7, services, w3svc
Dziel się z innymi:
[EN] IIS: ‘CANNOT START W3SVC SERVICE’ OR ‘UNABLE TO START DEBUGGING ON THE WEB SERVER’. HOW TO FIX IT?

Inne 3786 dni, 3 godziny, 35 minut temu jedmac 32 źrodło rozwiń

Dzisiaj o czymś, z czym spotkałem się podczas niedawnego dewelopmentu. Pewnego razu klient zażyczył sobie, żeby w grupie nakładających się znaczników, klikając w przeglądarce na jeden z nich, grupa rozwijała się automatycznie i widoczne były znaczniki w postaci “ślimaka” lub “słońca”. Po przeszukaniu zasobów Internetu, natknąłem się na Overlapping Marker Spiderfier (oms.js) . Okazało się, że jest to świetne rozwiązanie, z którego oczywiście skorzystałem.

.NET i JavaScript - Nakładające się ikony w Google Maps

Inne 3791 dni, 14 godzin, 50 minut temu jedmac 121 źrodło rozwiń

Po ponad miesiącu od ostatniego wpisu (niestety, mimo chęci, nie mogłem znaleźć chwili wolnego czasu) poruszę dzisiaj temat jednego z najczęściej używanych wzorców projektowych – Factory Method. Przy użyciu tego wzorca, możemy w prosty sposób zaimplementować funkcjonalność związaną z wytwarzaniem konkretnych “produktów” przez konkretne “fabryki”.

Dziel się z innymi:
Wzorzec Factory Method

Sztuka programowania 3799 dni, 18 godzin, 33 minuty temu jedmac 388 źrodło rozwiń

10.18.13 by MJ Short post about searching List. There are 3 most popular methods: foreach, delegate and lambda expression. I will introduce all of them. Let’s say that we have List which stores cars. Car has 2 properties – brand and model. var listOfCars = new List { new Car() { Brand = "Car1Brand", Model = "Car1Model" }, new Car() { Brand = "Car2Brand", Model = "Car2Model" }, new Car() { Brand = "Car3Brand", Model = "Car3Model"...

Tagi: Lambda
Dziel się z innymi:
[EN] World of IT | Searching for a specified instance in List

Sztuka programowania 3839 dni, 6 godzin, 20 minut temu jedmac 116 źrodło rozwiń

by MJ Decorator is a design pattern used to dynamically ”decorate” (e.g. add new actions) another classes. Let’s say that you have class which describes Window. It can be opened or closed. Then, you decide to decorate it with curtains or to clean it – you  will do it yourself or hire somebody, who will be a decorator. Let’s create a simple project: 1) First of all, you need to add “Decorator” folder. Inside of this folder please create Window.cs class which will describe our window in the real world...

[EN] World of IT | Design Patterns – Decorator

Architektura 3848 dni, 23 godziny, 2 minuty temu jedmac 164 źrodło rozwiń

by MJ Prototype design pattern. You should use it whenever you need to clone model classes. A simple example is when you have 1000 clients and you need to provide them invoices. Then, you only need to change e,g, names, surnames and total amount – you don’t need to create another invoice from the beginning. Again, the same situation is when your class is a parent for other classes – in this situation, it is not easy to create new – you should clone existing instance and then try to modify it. Here is a...

[EN] World of IT | DESIGN PATTERNS – PROTOTYPE

Architektura 3849 dni, 5 godzin, 51 minut temu jedmac 117 źrodło rozwiń

by MJ Facade is one of design patterns which are used most frequently. To explain what it is and how to use it, we can compare it to a black box. In black box test, tester is only allowed to create the input and get the output. He doesn’t know anything about processing inside of the system. You will meet similar situation in Facade – you don’t want to show out the whole functionality, you need to create some kind of interface which enables user to use the functonality, but he  cannot look into the syste...

[EN] World of IT | Design Patterns – Facade

Architektura 3853 dni, 18 godzin, 33 minuty temu jedmac 176 źrodło rozwiń

09.26.13 by MJ Previously I wrote a post about creating a simple ASP.NET MVC 4 application. I have told you, that it is so simple. Today you will see that it can be easier with MVC scaffolding.   1. Open Visual Studio 2012 2. File/New/Project -> select Web/ASP.NET MVC 4 Web Application. Name it MvcCars. 3. When new window appears, please select a template as Internet Application and the vie engine as Razor. For this example, please do not select Create a unit test project. 4. Confirm Your...

World of IT | Building your first ASP.NET MVC 4 application in VS 2012 – using MVC Scaffolding

Web 3862 dni, 4 godziny, 8 minut temu jedmac 135 źrodło rozwiń

WCF service allows you to use a huge functionality even though you have a slow local machine. Sounds good? Yes, it does. Let’s create a simple WCF service to add people. All coding is done with VS 2010 Ultimate. What you need to do first is to create a new WCF Service Library. When it is already done, please delete all default classes, which creator has added to your project automatically. Now follow these steps: 1) Prepare a simple class which will be responsible for a new ...

Dziel się z innymi:
[EN] World of IT | WCF service – how to start?

Inne 3866 dni, 1 godzinę, 12 minut temu jedmac 136 źrodło rozwiń

12.13.12 by MJ In September I wrote a short article about writing a clean code. I told you that it is a good habit to implement programs with a one and good style. Today I am going to wrtie something about a special tools which are very useful during programming. First of all, you need to have a JetBrains ReSharper installed at your local machine. Then you have to download a StyleCop, which is a plugin designed for ReSharper (http://stylecop.codeplex.com/releases/view/79972). ReSharper allows...

Dziel się z innymi:
World of IT | Using JetBrains ReSharper with a StyleCop plugin

Narzędzia 3869 dni, 22 godziny, 37 minut temu jedmac 97 źrodło rozwiń

by MJ How many times have you heard about building a well designed web application? 3-4? I mean in your daily work. How many times have you faced a problem with code written before? Wrong naming, wrong spacing, wrong design, wrong patterns/no patterns, wrong repository, wrong database connection, wrong architecture. There are a lot of mistakes done, before you have first seen the project. Then, the most common situation is that your boss comes to you with a request, that the previous web application s...

World of IT | Building your first ASP.NET MVC 4 application in VS 2012

Web 3870 dni, 6 godzin, 41 minut temu jedmac 148 źrodło rozwiń

07.27.13 by MJ My friend has asked this question one week ago. He was not able to understand the usage of interfaces in his small projects. I decided to explain it, but I knew that it would be a long journey, from the beginning to the end. FInally he got the idea. Today I will try to explain this to you, audience. “Q” is defined as a question. “A” as an answer. Q: What is interface? A: We can say that interface is a kind of class which has declarations of all methods, properties or events. I...

Dziel się z innymi:
World of IT | Interfaces. Do I need these?

Sztuka programowania 3871 dni, 30 minut temu jedmac 248 źrodło rozwiń

1 2 3 4

Najaktywniejsi w tym miesiącu