RSS Fat Agnus

http://fatagnus.com

Last checked about 9 hours ago.

1 person has subscribed to this feed.

Feed frequency

post frequency (last month)

PostRank™ filter

latest 15 posts

« older items




Sunday August 10th, 2008

The story of stuff

Fat Agnus From Fat Agnus, 2 months ago, 0 comments Comment

Have you ever thought about where stuff comes from and where it ends up? In this short documentary by Annie Leonard, she gives you the insight into how the process goes and how we could improve it.

Monday July 21st, 2008

1.0

How to prevent SQL Injection

Fat Agnus From Fat Agnus, 2 months ago, 0 comments Comment

Recently, I did a code review on web application that a colleague had developed, and to my horror I discovered that is was wide open to this sort of attack. I might be a bit naive, but I thought that every professional developer knew about this sort of attack – I guess not. Luckily for [...]

Tuesday April 1st, 2008

1.0

How to view you constraints in MsSql

Fat Agnus From Fat Agnus, 6 months ago, 0 comments Comment

I tend to forget this little trick, since I don’t use it very often. Anyway, if you want to see the constraints that you have added to a table, then you should open up your SQL Query Analyzer and run the following command EXEC sp_help <tablename>

Monday March 3rd, 2008

1.0

The Last Lecture by Randy Pausch

Fat Agnus From Fat Agnus, 7 months ago, 0 comments Comment

Randy Pausch (born October 23, 1960) is a 47 year-old Professor of Computer Science, Human-Computer Interaction, and Design at Carnegie Mellon University (CMU) in Pittsburgh, Pennsylvania. In September 2006, he was diagnosed with metastatic pancreatic cancer. He pursued a very aggressive cancer treatment that included major surgery and experimental chemotherapy; however in August of 2007 [...]

Sunday February 24th, 2008

1.0

ASP.NET Runtime Cheat Sheet: HttpRequest, HttpRuntime, AppDomain and friends

Fat Agnus From Fat Agnus, 7 months ago, 0 comments Comment

A very good article that contains a lot of usefull data http://duartes.org/gustavo/articles/Asp.net-Runtime-Cheat-Sheet-HttpRequest-HttpRuntime.aspx
1.0

Using Json with the SmartDispatcherController in MonoRail

Fat Agnus From Fat Agnus, 7 months ago, 0 comments Comment

In a previous article I gave an example of how powerfull the SmartDispatcherController can be, but you can do a lot more with it. You can actually map your Json objects to your objects in the C# code, when you parse it to one of your actions. 1 2 3 4 5 6 public struct JSONObject { public string Var1; public string Var2; public int[] Var3; } There [...]

Thursday February 21st, 2008

1.0

The SmartDispatcherController in MonoRail will make your life easier

Fat Agnus From Fat Agnus, 7 months ago, 0 comments Comment

It has been awhile since I last wrote about MonoRail due to a lot of work at my job, but I will try to make up for that with this article and hopefully a few more. The SmartDispatcherController in MonoRail is one of the things that I really like in the framework, it really increases the [...]

Wednesday February 20th, 2008

1.0

E-Commerce User Experience by Jakob Nielsen

Fat Agnus From Fat Agnus, 7 months ago, 0 comments Comment

For a couple of years I worked for a software company that sold e-commerce solutions, so many of the things that are presented in this book by Jakob Nielsen is something that I learned through that job. Despite many of the things that I learned, I discovered that there were new things to learn about [...]

Tuesday February 5th, 2008

1.0

Sources of Power: How people make decisions by Gary Klein

Fat Agnus From Fat Agnus, 8 months ago, 0 comments Comment

I more or less pick this book because Steven Kruger recommended it in his own book “Don’t make me think” (a book about usability). Gary Klein’s study shows us that traditional decision making models that are tested under laboratory conditions aren’t working because they are too controlled. Decision making is traditionally thought of as that you [...]
1.0

An example on how to format file size in C#

Fat Agnus From Fat Agnus, 8 months ago, 0 comments Comment

Unfortunately, there is not a function in .NET that will do this for you, so here is an example on how you could do it :) 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 public class FileHelper { private static readonly long kilobyte = 1024; private static readonly long megabyte = 1024 * kilobyte; private static readonly long gigabyte = 1024 * megabyte; private static readonly long terabyte = [...]
1.0

Usability and Web design patterns

Fat Agnus From Fat Agnus, 8 months ago, 0 comments Comment

How often have you found yourself in a situation where you have been troubled about the design of a function? Personally, I would say, frequently. You can never be to sure if something will work and usability for me is one of the most important things. As fare as I know, there aren’t very many software firms [...]
1.0

The State of AJAX by Douglas Crockford

Fat Agnus From Fat Agnus, 8 months ago, 0 comments Comment

Yet another great video from Douglas Crockford http://video.yahoo.com/video/play?vid=1382941 And here is a little bonus video Browser Wars Episode II: Attack of the DOMs
1.0

Wow - a response from Telerik

Fat Agnus From Fat Agnus, 8 months ago, 0 comments Comment

Apparently Telerik read my article about me not liking their product so much and they toke the time to write to me, because they wanted to know more – I’m really impressed by that sort of commitment, even though I don’t like their products (you could learn something from this ComponentArt ;)). In the article [...]

Monday February 4th, 2008

1.0

Javascript frameworks vs. buying Ajax controls for .NET

Fat Agnus From Fat Agnus, 8 months ago, 0 comments Comment

If you have been a .NET developer for a while then you have probably heard about companies like Telerik and ComponentArt. Both of the companies sell .NET controls that seemingly make it easy to get Ajax functionality implemented into your applications. I have had the “pleasure” of working with controls from both of the companies and [...]
1.0

Good collection of javascript frameworks

Fat Agnus From Fat Agnus, 8 months ago, 0 comments Comment

Here is a list of few good Javascript frameworks that will help you get nice javascript functionality added to your website. PrototypeJS jQuery ExtJS Yui Mochikit Dojo toolkit MooTools MooFX Rico Script.aculo.us Xilinus MiniAjax (collection of different javascripts) Tinymce (WYSIWYG) You can also find various addons to some of the larger frameworks like PrototypeJs, jQuery and Yui - Just ask your best friend Google

« older items