mopen

Stories submitted by friends of mopen

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

submitted by adronadron(835) 12 days, 14 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

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

submitted by adronadron(835) 7 months, 4 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

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

submitted by adronadron(835) 9 months, 5 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

Service & Scheduler: Using Topshelf, Quartz, & Other OSS Bits Part 2 «(compositecode.com)

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

In the previous entry in this series I setup a service using TopShelf. Now it is time to jump into scheduling with Quartz. I’ve started an entirely new service to work through an example of this service functionality. To read more about Quartz.NET from the source, check out the Quartz.NET Project Site or the Github Repo. Open up Visual Studio and create another Windows Console Project. Next add a reference to Quartz.NET with Nuget. Adding Quartz. Next add a class called SomeJob as shown. using System... read more...

1 comment |category: |Views: 52

tags: another

Service & Scheduler: Using Topshelf, Quartz, & Other OSS Bits Part 1(compositecode.com)

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

This how-to entry will detail the steps for getting Topshelf installed, running, and a schedule integrated and timed appropriately using Quartz. Once that is complete I’ll go over how to get custom schedules added to the service.Topshelf To get Topshelf up and running open up Visual Studio, start a Windows Console Project, and then use Nuget (if you don’t have Nuget installed, I suggest doing that ASAP, you’ll need it to follow along with any reference additions). Get Topshelf Through Nuget Once you h... read more...

add a comment |category: |Views: 30

tags: another

AddThis.NET: Google 1 Button for Blogengine(www.mbaldinger.com)

submitted by baldibaldi(508) 10 months, 1 day ago

AddThis.NET is a Blogengine.NET extensions which adds social bookmarking buttons to all of your posts. All buttons can be individually aligned, ordered and enabled or disabled. The following buttons are supported: Google 1, Facebook Like, Facebook Share, Twitter, Google Buzz, StumbeUpon, Digg, TweetMeme, DotnetShoutOut and DotnetKicks read more...

add a comment |category: |Views: 2

tags: another

JavaScript Development Environment « Composite Code(compositecode.com)

submitted by adronadron(835) 10 months, 4 days ago

JavaScript is pretty easy to develop with, usually only a browser and a text editor is the only thing needed. But seriously, that’s a bit slow going. It helps a lot of have certain tools, editors, debuggers, or other pieces to make the development move along smoothly. So far, over the last few months of doing a little JavaScript here and there I’ve accrued the following tools to help with my JavaScript Development. First a few descriptions of what I’ve been using and and why, then toward the end I’ll pro... read more...

add a comment |category: |Views: 5

tags: another

A SQL Server .NET ASP.NET MVC RESTful Web Services Facade – Part I(compositecode.com)

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

Did I get enough of the acronyms and key words in the header?  It looks like soup!  :O This is a somewhat messy project to build a prototype layer around SQL Server. The reason for this, shockingly, is to allow for a SQL Server to be used by frameworks and systems that normally don’t or can’t access the database directly. In my particular scenario we’re working on getting Ruby on Rails running with JRuby in a Windows Environment. Because we will need to utilize a lot of SQL Server Databases, it seemed l... read more...

add a comment |category: |Views: 8

tags: another

Localize the user with the javascript Geolocation API(www.mbaldinger.com)

submitted by baldibaldi(508) 10 months, 7 days ago

The web in the future will contain more localized information than it already contains today. The Javascript Geolocation API contains the tools you need to localize a user of your web site. It is very accurate and it is easy to use with a map provider like Google or Bing, so keep an eye on this API! read more...

add a comment |category: |Views: 1

tags: another

Wordpress on Amazon Web Services (AWS) Linux EC2 Micro Instance, For F(compositecode.com)

submitted by adronadron(835) 1 year, 1 month ago

I’ve been wanting to get a write up done for WordPress on AWS, the fact that it is free for a year, since they’ve released the free-tier many months ago. Well I finally got around to it, however it isn’t a write up. I went ahead and put the work in to produce a video of the steps for setup & configuration. Enjoy. AWS EC2 Linux WordPress Install▶ JavaScript required to play AWS EC2 Linux WordPress Install. The comman... read more...

add a comment |category: |Views: 16

tags: another

Stubbing a File Stream, Memory Stream, or Stream « Composite Code(compositecode.com)

submitted by adronadron(835) 1 year, 2 months ago

Here’s the class that has a Func setup as a property. The reason this is setup, is so that the stream can actually be stubbed on the ComplianceReportingJob. Otherwise if the Stream was just being used as is, instantiated in the class, or passed in via injection, we still couldn’t get it mocked or stubbed. Especially if the class ComplianceReportingJob is under test. public class ComplianceReportingJob : IJob { readonly ITradeRepository tradeRepo; readonly IFileSystem fileSys; public Compl... read more...

add a comment |category: |Views: 10

tags: another

Bureaucrat Job Class, Seriously « Composite Code(compositecode.com)

submitted by adronadron(835) 1 year, 2 months ago

I was looking through some code and found this class recently.  It almost reminds me of a class I saw called a speed up loop.  This however, is obviously more important to the grand scheme of politics eh! public class BureaucratJob : IJob { readonly ITradeReconciler reconciler; readonly ICalculationQueue queue; ILog log; public BureaucratJob(ITradeReconciler reconciler, ICalculationQueue queue) { this.reconciler = reconciler; this.queue = queue; } public void... read more...

add a comment |category: |Views: 1

tags: another

ASP.NET MVC 3 w/ Razor Infrastructure Template « Composite Code(compositecode.com)

submitted by adronadron(835) 1 year, 2 months ago

I decided, after poking around with Visual Studio 2010 Templates tonight, to publish a baseline infrastructure using ASP.NET MVC 3 w/ Razor, Entity Framework, and other elements using the .NET stack.  So far I’ve only got some skeleton code put together for the infrastructure project and posted it to m... read more...

add a comment |category: |Views: 14

tags: another

Put Stuff in Your Windows Azure Junk Trunk – ASP.NET MVC Application(compositecode.com)

submitted by adronadron(835) 1 year, 3 months ago

If you haven’t read Part 1 of this series, you’ll need to in order to follow along with the JunkTrunk Repository.  Open the solution up if you haven’t already and navigate to the Models Folder... read more...

add a comment |category: |Views: 1

tags: another