Miron

Stories kicked by Miron

Limit uploaded files size in FCKeditor(mironabramson.com)

submitted by MironMiron(495) 2 years, 8 months ago

Set the maximum size allowed for uploaded files in FCKeditor read more...

add a comment |category: |Views: 174

tags: another

HttpCompression on IIS7 (Using MbCompression library)(mironabramson.com)

submitted by MironMiron(495) 2 years, 10 months ago

If You have full control on the server, you probably don't need my compression library MbCompression, But if you are using share hosting, sure you do. read more...

add a comment |category: |Views: 22

tags: another

I Spose I’ll Just Say It: Still Waiting For a GOOD Reason to Learn MVC(blog.theaccidentalgeek.com)

submitted by developerbuzzdeveloperbuzz(145) 3 years, 1 month ago

Why you shouldn’t learn MVC Earlier today Rob Connery posted about why he thinks You Should Learn MVC. Rob is a great guy and we always have lively discussions whenever we meet at conferences. I was in the middle of writing a long comment on his blog when I decided it might be better as it’s own post. read more...

add a comment |category: |Views: 525

tags: another

Cropping image using jQuery, Jcrop and ASP.NET(blog.mironabramson.com)

submitted by MironMiron(495) 3 years, 1 month ago

Fast and easy cropping image with ASP.NET, jQuery and Jcop (C#) read more...

2 comments |category: |Views: 647

tags: another

Why I think I will stick with WebForms(mironabramson.com)

submitted by MironMiron(495) 3 years, 3 months ago

The MVC concept is clear and logic and the guys at Microsoft did a very good job with the new MVC Framework , But I think I will stick with the 'old fashioned' WebForms and this is why: read more...

add a comment |category: |Views: 33

tags: another

Generate thumbnails on the fly - Yet another version(blog.mironabramson.com)

submitted by MironMiron(495) 3 years, 3 months ago

Generate thumbnails on the fly. You can specified maximum height, maximum width, both, specified quality (1-100) and if the image will be cached or not. It is working well with .jpg, .bmp, .png and .gif. read more...

add a comment |category: |Views: 29

tags: another

Events from Accordion control are not being fired problem(mironabramson.com)

submitted by MironMiron(495) 3 years, 5 months ago

Events from control inside Accordion control are not being fired on first click read more...

add a comment |category: |Views: 23

tags: another

The .NET 3.5 IEnumerable.ForEach Mistake...(blog.sb2.fr)

submitted by ethilikethilik(1855) 3 years, 5 months ago

Today I'll talk about ForEach Extension Method which already exists on List<>. But why not on IEnumerable in order to make it available on any Collection Type ? read more...

add a comment |category: |Views: 56

tags: another

The Controls Collection Cannot Be Modified...(leedumond.com)

submitted by leedumondleedumond(2144) 3 years, 6 months ago

Have you run across this show-stopper before? If so, here's why it's happening, and here's an easy way to fix it. read more...

add a comment |category: |Views: 39

tags: another

TryParseGuid - Try/Catch vs Regex(nearinfinity.com)

submitted by LearLear(1195) 3 years, 6 months ago

Need to TryParse a Guid? Guess which is faster: try/catch or Regex.Parse. The results may surprise you. read more...

add a comment |category: |Views: 60

tags: another

Mapping Enums To Strings and Strings to Enums in .NET(kevinwilliampang.com)

submitted by kpanghmckpanghmc(2055) 3 years, 8 months ago

How to easily map enums to strings and vice versa using the Description attribute. read more...

add a comment |category: |Views: 25

tags: another

Remoting in .NET Framework 2.0(techbubbles.com)

submitted by kalyanms1kalyanms1(1789) 3 years, 9 months ago

Introduction Remoting is distributed application technology built in the Framework 2.0 with new features which allows the developer to build wide range of distributed applications. Introduced some new features in Remoting in .NET FW 20. The applications are now more secured and performanent. read more...

add a comment |category: |Views: 18

tags: another

Fast version of the Activator.CreateInstance method using IL(blog.mironabramson.com)

submitted by MironMiron(495) 3 years, 9 months ago

Fast version of Activator.CreateInstance(Type) and Activator.CreateInstance<T>() methods using IL to improve performance. read more...

add a comment |category: |Views: 75

tags: another

I am a LINQ-A-HOLIC(obrienjd.com)

submitted by jdobrienjdobrien(25) 3 years, 10 months ago

When you first start using LINQ you can quickly fall in love with it. Suddenly, everything looks LINQ-able. But don't thow away everything you know and love just for this new tool. read more...

add a comment |category: |Views: 21

tags: another

High performance css minifier(mironabramson.com)

submitted by MironMiron(495) 3 years, 10 months ago

CSS minifier based on jsmin idea that produce a small CSS file, much faster, and with much less memory overhead. read more...

add a comment |category: |Views: 292

tags: another

Create your own new Type and use it on run-time (C#)(blog.mironabramson.com)

submitted by MironMiron(495) 3 years, 11 months ago

It is not something you will use on daily bases. It doesn't have good performance. But one day, you will have to use it so it's good to know that it is possible and how it can be done. As you can understand from the title, I'm talking about creating a new type with fields and properties (it can also have methods), create instance/s from it and use it - on run-time! read more...

2 comments |category: |Views: 22

tags: another