Category: projects
-
Full Projects
My first blog post in English is from 14 nov 2009 ( http://msprogrammer.serviciipeweb.ro/2009/11/14/jquery-learning/ ). It was on the time that Jquery was just integrated in VS 2010. My first blog post about programming was from 13 March 2005 (http://serviciipeweb.ro/iafblog/2005/03/13/pentru-inceput/ ). I was working on “ log4Net,NUnit,C#,asp.net,VB.Net sai VB6” ….. From the old blog in Romanian,those…
-
YouTube playlist exporter
The point here is about how simple is in our days to make a simple script as a programmer. I wanted to export my playlists ( 5 minutes .NET,Export Word Exce l PDF ,EF 6,Traceability ) videos into a simple HTML file that I could put into my website. I searched first on internet –…
-
MVC planning poker -Test driven development and Version control and Continuous Integration– foundation – 2
After setting the use cases,I have now think about code. ( Ok,maybe it should be first architecture,but I am a programmer first ) So I start to code the first Use case : Running the test was a no-brainer – it does not even compile. And it is good,according to https://msdn.microsoft.com/en-us/library/aa730844(v=vs.80).aspx Now I want to…
-
MVC planning poker – use cases and mockups – 1
I have decided to start a new project – MVC planning poker . This is inspired by http://en.wikipedia.org/wiki/Planning_poker – and it is a program to sharpen my skills The project is aimed to software enterprises using Active Directory – however,it can be used by any organization. UseCase 1: Create table Moderator identified by…
-
Browser history–part 5–conclusions
This is the part 5 of 5 of my implementing of a MVC Browser history MVC browser history – idea Browser history –2 – implementing,small bugs Browser history 3–trying to Nuget – modifications in order to can be transformed from an application to a component Browser history 4–NuGet again - finally Nuget deployment Browser history–part…
-
Browser history 4–NuGet again
This is the part 4 of 5 of my implementing of a MVC Browser history MVC browser history – idea Browser history –2 – implementing,small bugs Browser history 3–trying to Nuget – modifications in order to can be transformed from an application to a component Browser history 4–NuGet again – finally Nuget deployment Browser history–part…
-
Browser history 3–trying to Nuget
This is the part 3 of 5 of my implementing of a MVC Browser history MVC browser history – idea Browser history –2 – implementing,small bugs Browser history 3–trying to Nuget – modifications in order to can be transformed from an application to a component Browser history 4–NuGet again – finally Nuget deployment Browser history–part…
-
Browser history -2
This is the part 2 of 5 of my implementing of a MVC Browser history MVC browser history – idea Browser history –2 – implementing,small bugs Browser history 3–trying to Nuget – modifications in order to can be transformed from an application to a component Browser history 4–NuGet again – finally Nuget deployment Browser history–part…
-
MVC browser history
This is the part 5 of 5 of my implementing of a MVC Browser history MVC browser history – idea Browser history –2 – implementing,small bugs Browser history 3–trying to Nuget – modifications in order to can be transformed from an application to a component Browser history 4–NuGet again – finally Nuget deployment Browser history–part…
-
Hydrating
My first Nuget project: Hydrating. Also a Codeplex project : http://hydrating.codeplex.com/ It can re-make an object by adding items of “property/value” It comes in 2 flavors: .NET 2.0 ( reflection ) and .NET 4 ( expression). Sample Usage: Sample usage: var Model = new HydrateGeneric<MyModel>(); Model.AddNewProperty("OneProp","bb"); Model.AddNewProperty("newData.StartDate",DateTime.Now.AddDays(1).ToString()); Model.AddNewProperty("newData.SecondProp","AB"); Model.AddNewProperty("newData.aOne.ThirdProp","XXX"); var data = Model.NewObject(); Console.WriteLine(data.newData.SecondProp); Console.WriteLine(data.newData.StartDate);…