Tuesday February 5th, 2008
1.0
From Fat Agnus, 11 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, 11 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, 11 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, 11 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, 11 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, 11 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
1.0
From Fat Agnus, 11 months ago,
0 comments
I finally got around upgrading my MCSD.Net to MCPD: Enterprise Application Developer Certification.
It had been awhile since I toke my last certification, so a few things had changed - at least for the 2 exams which I took. The questions are grouped together, meaning that when you are finished with the first group of [...]
Thursday November 22nd, 2007
From Fat Agnus, 1 year ago,
0 comments
The title might be a little bit provocative to some, since the statement is highly depending on what language you are using. The once I like to address are the modern languages like C#, Java, C++, Visual Basic and even Ruby (just little reminder to one of my friends) and even then, it will still [...]
Tuesday November 13th, 2007
From Fat Agnus, 1 year ago,
0 comments
Imaging one of these two scenarios
You are asked to make a demo that will be presented to the management or client.
You have a great idea for a new design for your old application and want to present it to your boss.
Whatever scenario you choose you will now be faced with a dilemma. If you choose [...]
Tuesday October 23rd, 2007
From Fat Agnus, 1 year ago,
0 comments
When I got into the whole Asp.Net thing, I thought it was pretty nice with all the controls that you could drag’n drop. When I got a bit further into it, I started to get annoyed with how the model works, the complex page lifecycle, the Viewstate and how easy it was to write smelly [...]
Wednesday September 26th, 2007
From Fat Agnus, 1 year ago,
0 comments
Over the last 2 months I have been quite busy at my new job, where I’m trying to raise the quality of code (just to mention one thing) - not only with our own code, but also with 3rdparty web applications that we have bought.
I have discovered a really annoying thing lately and that is [...]
Friday July 27th, 2007
From Fat Agnus, 1 year ago,
0 comments
In this video Douglas Crockford gives a great emotional speech about JavaScript and some of the experience he has had with the language.
He even states that JavaScript has made him a better Java programmer.
JavaScript the good parts by Douglas Crockford
From Fat Agnus, 1 year ago,
0 comments
Usually Douglas Crockford talk about JavaScript, but this time he talks about the process of Software Development and the issues on why projects run late and so on.
Programmers have to be optimists, because if you are not an optimist, then I just don’t believe that you can do this job. When you are looking into [...]
Monday July 23rd, 2007
From Fat Agnus, 1 year ago,
0 comments
If you are thinking about starting an online business or already have a company, then I would recommend this book too you, it will give you some insight into how the future of commerce (which actually already is going on) is heading.
The main theme of the book is
Make it available
Help me find it
Chris [...]
Wednesday July 18th, 2007
From Fat Agnus, 1 year ago,
0 comments
One of the more annoying things when doing web designs is the fact not every browser seems to have the same default values for all the html elements. This can potentially wreck your design in some browsers and trying to fix a design for one browser were is looks bad, can probably lead to a [...]