tiernano

Stories kicked by friends of tiernano

Building a Node.js + Express.js + Jade CoderWall + Geekl.st Portfolio(compositecode.com)

submitted by adronadron(835) 12 days, 18 hours ago

Part 2 will be coming soon... get a node.js site started with express.js, ready for a mash up. Alright, diving right in. First, get an express.js application setup and install all the dependencies. Creating the Express.js Web Application Next get a basic app with a message built. This will m... read more...

add a comment |category: |Views: 18

tags: another

An Introduction to NuGet(codersbarn.com)

submitted by BognitBognit(2125) 17 days, 5 hours ago

Getting started with NuGet can be very confusing because there are really four parts to it with separate downloads. This post is an effort to make it easier to grasp and get started. read more...

add a comment |category: |Views: 2

tags: another

Setting up a CI server using Jenkins, MSBuild and GitHub on a Windows (mahdi.mp)

submitted by sharplifesharplife(4570) 19 days, 3 hours ago

In this post I've described how to use Jenkins, GirHub and MSBuild to setupa CI server on Windows Server. read more...

add a comment |category: |Views: 10

tags: another

Open Tabs to the Right in Visual Studio 2011 Beta(www.codersbarn.com)

submitted by BognitBognit(2125) 29 days, 10 hours ago

I've previously shown how to set this in VS 2010. In the new VS 2011 beta, it's a little harder to find. read more...

add a comment |category: |Views: 2

tags: another

The Future of ASP.NET Web Forms(www.codersbarn.com)

submitted by BognitBognit(2125) 1 month, 8 days ago

We've all seen the growing popularity of ASP.NET MVC over recent years and the most common reaction is to want to play with it but when it comes time to making the switch, we often experience the "don't move my cheese" syndrome. read more...

add a comment |category: |Views: 17

tags: another

Open Tabs to the Right in Visual Studio 2010(www.codersbarn.com)

submitted by BognitBognit(2125) 4 months, 12 days ago

It really annoys me that files are opened in the tab bar in Visual Studio by default to the left. read more...

add a comment |category: |Views: 4

tags: another

Autocorrecting unknown actions using the Levenshtein distance(jclaes.blogspot.com)

submitted by JefClaesJefClaes(650) 4 months, 12 days ago

This weekend I prototyped an idea I had earlier this week: autocorrecting unknown actions in ASP.NET MVC. read more...

1 comment |category: |Views: 126

tags: another

Calling Console Application from Web Form(codersbarn.com)

submitted by BognitBognit(2125) 6 months, 15 days ago

To call the console app from the Web form code-behind we use the Process.Start method. We can avail of the ProcessStartInfo class to set up any properties in advance of making the process call. read more...

add a comment |category: |Views: 5

tags: another

Programming for the future of mobile(jclaes.blogspot.com)

submitted by JefClaesJefClaes(650) 6 months, 18 days ago

I have been working on something small on the side lately. I hardly have anything to show for it though, most of it is still being shaped in my head. Anyhow, a very important part of the front-end is built using jQuery mobile. Although the framework hasn't been released - release candidates are available though -, it's something you should start looking into today. Why? Because the browser is the future of mobile applications. With the Flash and Silverlight bombs that were dropped today, I am even mo... read more...

add a comment |category: |Views: 2

tags: another

My Top 4 Ideal Dev Shop & Product Characteristics, Yours? (compositecode.com)

submitted by adronadron(835) 7 months, 5 days ago

What is an ideal software project? What is an ideal delivery cycle? What is an ideal culture? From a client’s perspective do they see the team as a sluggish liability or is the development team proactive and looking for the next strategic or tactical step to take? Ideally, I see the development team as a group that should be leading a company with technology. If a team isn’t doing that, they’re likely to be running the risk of appearing as a liability and risk. Often these are the types of teams that ar... read more...

add a comment |category: |Views: 2

tags: another

Code Katas: Kicking off With a Little JavaScript « Composite Code(compositecode.com)

submitted by adronadron(835) 7 months, 29 days ago

BEWARE, this is a crazy long post. So before you jump in for a read, just know that it isn’t a two minute read. A few days ago, my friend Aeden Jameson (@daliful) asks, “you want to work through a code kata this weekend?” I thought, well yeah, that’d be cool. So we met at Cafe Fiore and hacked out the beginning of a Kata based on the Roman to Arabic and Arabic to Roman Numerals. It was fun, which led me to working up an actual blog entry related to our kata session. This however, is just me working thr... read more...

1 comment |category: |Views: 16

tags: another

Responsive Web Design - Stop and Think(www.codersbarn.com)

submitted by BognitBognit(2125) 8 months, 28 days ago

This article by Ethan Marcotte on Responsive Web Design has been widely touted as the designer's panacea for all things mobile. Other leading designers such as Jeffrey Zeldman and Andy Clarke have all jumped on the band wagon. Considering the amount of influence these guys have on young designers, it saddens me that leading designers, of all people, would sacrifice their art on the altar of a quick fix. read more...

add a comment |category: |Views: 4

tags: another

Very High Quality Image Resizing in .NET (www.keyvan.ms)

submitted by rcashrcash(4149) 8 months, 29 days ago

Here is how to implement an image resizing technique in an ASP.NET MVC controller. The resizing techniques are implemented in different action methods in an ASP.NET MVC controller. These action methods receive the width and height of the destination image as their parameters. I can set up my routing to handle this controller, called ImageResizeController. Click read article to see the code. read more...

2 comments |category: |Views: 67

tags: another

Update for Microsoft Visual Studio 2010 Service Pack 1 Web Platform T(www.microsoft.com)

submitted by rcashrcash(4149) 9 months ago

The following update fixes an issue in Visual Studio 2010 SP1, where the IDE may crash when you undo a change to a table of a webpage in Design view. read more...

add a comment |category: |Views: 27

tags: another

A TimePiece of C# and JavaScript « What's next for improvements?(compositecode.com)

submitted by adronadron(835) 9 months, 6 days ago

I'd love to hear people's feedback on what should be the next steps to improve these libraries, especially the JavaScript library. read more...

add a comment |category: |Views: 1

tags: another

HTML5 Feature Support Detection « Composite Code(compositecode.com)

submitted by adronadron(835) 9 months, 22 days ago

HTML5 is a collect of individual features, that currently are either supported or not by the current array of browsers. The best approach I’ve found at this time, is to write for HTML5 and use other tools to downgrade graceful. The following are some detection techniques that are in use today: Input Types: HTML5 defines over a dozen new input types for use in web forms. For determining which of these new form elements is supported use the following code, per element (yes I know, that’s a pain in the as... read more...

add a comment |category: |Views: 8

tags: another