By Dylan Barber on
10/15/2009 9:49 AM
Today Bruce Onder (@bonder) posted a link on Twitter to an agile development blog for Target Process (link: http://www.targetprocess.com/blog/2009/10/our-development-process.html ). Now I appreciate reading about other development processes but I just wanted to say some of us don’t get the luxury of developing in such a controlled environment.
In my company there are three developers and I act as a coordinator. Now we usually don’t even work the same projects. In fact one of my developers spends almost all his time just writing reports and another is spending almost all his time wrangling ancient dBase stuff into .NET so we can move the company as a whole forward.
Our development process:
Boss walks in with an idea or a client request.
I start to ask questions and start writing on the whiteboard
He agrees that its bigger than it first sounds.
Tells me he promised it by Friday, of course its already 5:00 pm Wednesday!
I decide if I will do it or hand it...
|
By Dylan Barber on
9/15/2009 12:53 AM
When I build my sites in DNN I really do not like to use the default ‘Terms of Service’ and ‘Privacy Statement’ controls. For one thing the controls place the content in the Content Pane of the admin skin the site uses and sometimes this is problematic for a pleasing and cohesive site design. I found a possible ‘bug’ that helps me create my own privacy and terms pages without a lot of work. This is one bug I hope the DNN team doesn’t fix anytime soon! :) Any skin that uses the current skin objects for ‘Privacy Statement’ and ‘Terms of Use’ can take advantage of this little hack. Make sure your site is using a url format of HumanFriendly. So in your web.config file you will need to find the line for the friendly url provider and if you are using the DNNFriendlyURL provider make sure it has urlFormat="HumanFriendly" as one of the parameters. Create a new tab/page with a page title of ‘Privacy’. Add your own content, move modules around on this page, and change skins as you would any other...
|
By Dylan Barber on
9/4/2009 1:29 AM
The website I work on as a fulltime developer has some unique challenges. Besides covering over 10 languages for both content and UI we have a lot of text areas where users can describe and enter various bits of free form data. We provide reports for the information but for some reason unknown to me lots of our users print out the form with all the text areas they filled in as a ‘report’. This was never intended so the first request to make the text area larger so all the typed in info would print sort of struck me as strange, why not print the report that shows all the info? Well as any developer can tell you it doesn't matter if the problem is the programming or not its your problem! I set out to fix this with jQuery since I did not want to go back and revise 62 data entry pages! jQuery.com had a few plugins that I was never able to make the work the way I wanted. One of the problems with the plug-in I first used was that they required the user to click in the text area to activate the function and expand...
|
By Dylan Barber on
9/3/2009 5:50 PM
|
By Dylan Barber on
9/3/2009 5:48 PM
OpenForce '09 Connections in Las Vegas promises to be a great opportunity for DotNetNuke and Microsoft .NET developers to meet and learn about the latest developments in the DotNetNuke world. DotNetNuke enables organizations to develop rich, interactive websites and web applications for Microsoft .NET in a fraction of the time that they can develop directly in .NET. This year features a great selection of speakers who will provide insights into DotNetNuke module and skin development and administration. Visit the DevConnections/OpenForce '09 website now to register. The conference is held in conjunction with the Microsoft DevConnections conference at the Mandalay Bay Hotel from November 9th through the 12th. I’ll be there and really looking for people to hang with!
|
By Dylan Barber on
8/19/2009 12:38 AM
Been buried in work for awhile so this blog post has been festering in the back of my mind for a few weeks now. My full time job has lately been taking up a bit of my usual free time with extra employees coming on and new clients coming on but the one area we seem to be having real luck with is how we can quickly train new users and new clients to use the software. I think the way we have built our modules for use could serve as a lesson for others looking to build modules for ‘non techie’ users. Early in development of our online safety management system I used the normal drop down menu on the container and used the settings or implement the menu interface to add a menu to the container menu for managing the module and what we considered its ‘Corporate’ administration functions. Usually these functions consist of setting up lists and setting parameters for employees further down the chain to manage a safety program. Out initial tests with the management of the modules in this manner was a dismal failure....
|
By Dylan Barber on
8/5/2009 9:06 PM
I have writers block! I am not a professional writer, so times like this are real stressful for me. Usually I have no problem going on and on about useless stuff, as you can tell from my other posts. Sometimes I have ideas and post them and sometimes, well, its just the regular c*** that you find on other blogs. I have ideas about what to blog about but I cant seem to get the mental block out of the way to write it all down. As my main boss would say ‘I don’t see as much mental vomit coming from you’, great visual huh? How do you deal with writers block would love to see your ideas!
|
By Dylan Barber on
7/14/2009 11:57 PM
Oliver Hine has just released a new authentication provider for DNN that works with the Open Auth system Twitter has put in place. While this is his first release of the provider I can’t seem to break it in the 4x version (haven't tested the 5x release yet). You can get the provider here http://oliverhine.com/DotNetNuke/Providers/TwitterAuthenticationProvider.aspx. If you want to experiment with it I have it installed on the site here. Go to the login page and try it out.
|
By Dylan Barber on
7/8/2009 10:34 AM
I had someone forget their admin password to a portal I installed 5 years ago, apparently the sticky note fell off the site administrators monitor and got thrown away (#grin*). They called me to get it back but of course I had them change it when I left. Thinking this is a problem for others I have the standard database hack/solution for this that works for the DNN user system. *You need access to the database to do this: Create a new user account by registration (this time, please remember the password you enter!) If "register" is not displayed for the portal, go to table "Portals" in your database and enter value "2" into column "UserRegistration". Go to database, enter table "ASPNet_Membership" Go to new user account (usually the last one) and copy the encrypted values of columns "Password" and "PasswordSalt" into the same columns of user account "host" (usually the first entry in this table) Login as user "host" using the new password and delete the newly created...
|
By Dylan Barber on
6/26/2009 10:44 AM
We recently deployed a report library for our online application and one of the parameters that exists for almost all reports is what locations to run the report for. Fairly standard huh? So far so great. When we went and looked at how the parameters were presented we were surprised there was no way to adjust the width of those drop down lists, they are hard coded to 184px, this cut off almost half the name of the locations for a lot of our clients, made it very unfriendly to our users. After some Google searches and a Twitter post basically discovered the only way to really change those is a CSS hack. Thanks to Brandon Hays for his blog post on it located here ( Changing the Size of ReportViewer Parameter Dropdown List). Take a look at that blog post for the theory behind this solution. Our problem was that Mr. Hayes stopped a little short of what we needed and so...
|