Sunday August 10th, 2008
From Fat Agnus, 2 months ago,
0 comments
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
From Fat Agnus, 2 months ago,
0 comments
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
From Fat Agnus, 6 months ago,
0 comments
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
From Fat Agnus, 7 months ago,
0 comments
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
From Fat Agnus, 7 months ago,
0 comments
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
From Fat Agnus, 7 months ago,
0 comments
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
From Fat Agnus, 7 months ago,
0 comments
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
From Fat Agnus, 7 months ago,
0 comments
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
From Fat Agnus, 8 months ago,
0 comments
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
From Fat Agnus, 8 months ago,
0 comments
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
From Fat Agnus, 8 months ago,
0 comments
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
From Fat Agnus, 8 months ago,
0 comments
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
From Fat Agnus, 8 months ago,
0 comments
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
From Fat Agnus, 8 months ago,
0 comments
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
From Fat Agnus, 8 months ago,
0 comments
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