Featured Post

Blog Feed as Newspaper?

Kyle Hayes found a pretty cool widget tool at FeedJournal which generates a PDF of your blog feed in newspaper format. Interesting idea, probably useless, but cool nonetheless. Here is my feed as a newspaper: Get the FeedJournal widget and many other great free widgets at Widgetbox!

Read More

Follow @dougrdotnet on Twitter

Snow Leopard – MySql Not Found

Posted by dougr | Posted in Mac, MySQL | Posted on 29-07-2010 | 321 views

Tags: , ,

0

It appears that upon installation/upgrade of Mac to Snow Leapard (OSX 10.6) that the symbolic link (alias) to MySql is removed.
I wanted to make a note here for future reference on creating an alias using terminal on Mac.  Hope this helps you as well.

Following Snow Leapard upgrade with existimg MySql instance, MySql Server will not start.  The server folder cannot be found.  In order to fix, a symbolic link needs to be created in the folder where MySql Server is installed.  The link created will provide an alias which Snow Leopard will use to find the instance.
Creating an alias:
Using terminal as sudo cd into the local folder.

$ cd /user/local/

View contents of local to get the full name of MySql instance (something like mysql-5.0.67-osx10.5-x86)

$ ls

Create the alias “mysql”:

$ ln -s /user/local/[your MySql instance name]/ mysql

Open system preferences from apple menu and start MySql Server.

HTH!

WordPress for Android – Review

Posted by dougr | Posted in Blogging, Tools/Utilities | Posted on 24-03-2010 | 921 views

Tags: ,

1

Posting From My Android

I just happened across the WordPress for Android app in the market today and thought it might be useful for those times that I have an uncontrollable urge to blog when I’m away from my notebook :-)

It has a simple rich text editor with Bold, Italic, Link, and

Block-Quote.

It looks like it accepts HTML just fine, not sure of limitations there, but basic formatting is good with me for posting from phone.
I can add pics too.
Posts may be saved with or without publish.
There is a Comment management tab, as well as a Pages management tab.

I wrote this post from my phone, certainly slower than from my notebook, but not bad. So if this post publishes ok I’d recommend it.

Edit: Had a crash on edit using V.1.0.2. Photo not uploading.null

BNIRIA Adobe Group Launched!

Posted by dougr | Posted in Adobe, BNIRIA, News | Posted on 15-01-2010 | 1,175 views

Tags: , , , ,

0

BNIRIA Is On!

Today I received notice of approval to start up the Bloomington/Normal Illinois Rich Internet Applications Adobe user group! If you are a Central Illinois Web designer or developer, then we are inviting you to join, discuss, and network with us.

Are You a Recruiter or Business

We also want to reach out to recruiters and businesses who would like to publish design and development positions to a group of professional designers and developers. Your positions would directly reach professionals within the Central Illinois Area and would be published in several social media platforms.

What is BNIRIA

The user’s group is located in Bloomington/Normal, IL, establishing a Central Illinois Adobe platform developer point of presence, community, networking, and social hub which centers on Rich Internet Application development using Adobe tools. We discuss Flex, ColdFusion, Flash, JavaScript, IDEs (e.g. FlashBuilder, Flash, TextMate, DreamWeaver, etc…), along with topics of developer collaboration and project management, which includes discussions of Version Control, RAD development, and team managment tools.

BNIRIA Mission:

To establish a group that will allow networking of local developers, increase local awareness of Adobe technologies, and provide a Web and social-networking presence which is managed by member volunteers. To reach out to local businesses and recruiting companies to provide employment/contract assistance to community developers/designers. To provide a place where developers can come to discuss problems and solutions, establish and maintain contacts and friendships in a relaxed social atmosphere. To have some fun in all these processes.

What Next?

Our next steps are to contact local universities and colleges in an effort to obtain a venue for monthly meetings.  Additionally, we are working to obtain relationships with recruiters and businesses who wish to network design and development positions with our group.  We are going to continue to “get the word out” and let people know about the new Adobe group. We will be working social networking on a continuous basis.

Can I Help?

Absolutely! We need your help in letting people know about the group and where they can join. Let your friends and colleagues know about us, tweet about us and share our links amongst your social networks. If you are a Central Illinois designer or developer, recruiter or business, come join us!

Links

BNIRIA Adobe Group
BNIRIA LinkedIn Group
@BNIRIA

#100blogs challenge Day7 http://bit.ly/4MtAfx

Interview With Kyle Judkins – Promoting Your Site

Posted by dougr | Posted in Interviews, Podcasts (Audio) | Posted on 13-01-2010 | 1,287 views

Tags: , , ,

4

dougrdotnet Podcast – Episode 2: Kyle Judkins Interview

Brought to you by Douglas Reynolds Consulting

“Putting it all together”
RIA | Business Systems | Executive Administration

In this episode: I interview Kyle Judkins, Blogging Expert, on the topic of Site Promotion, Marketing, Advertising, aspects of Social Media, and Monitizing.

Related Links

Kyle Judkins:
www.lostintechnology.com
www.upyoursocial.com

Twitter: @KyleJudkins

Subscribe To Podcast

Subscribe To Podcast

Subscribe With iTunes

Subscribe With iTunes




#100blogs challenge Day6 http://bit.ly/4MtAfx

Playing With Google Maps Flex API

Posted by dougr | Posted in ActionScript, Flex | Posted on 07-01-2010 | 3,257 views

Tags: , , ,

1

I’m working on some Google Maps Flex API exercises to familiarize myself with working with the API library.

The first things to do are to sign up for a Google Maps API Key, and download the Google Maps Flex Library SWC (use the one with “Flex” in the filename).  I am following the Google Maps API For Flash Docs really closely here as this is the first time I’ve worked with the API.  In the example, to follow, my objective is to create a map where I can add an address, have it geocoded with the Google geocode service, and then display that address as a point on the map with a marker.  I want to have zoom, drag, and also to be able to click on the marker to get the point information in a marker information window.

After following through the docs, I found that it is really easy to get a basic map to render with very little code.  To do this, you can simply declare a new map object inside your main application file using the following mxml:

<maps:Map id="map" mapevent_mapready="onMapReady(event)"
 width="100%"
 height="100%"
 key="[enter API key here]"
/>

Along with the onMapReady method which handles map properties:

//called by the mapevent_mapready event in maps, instantiated in <maps:Maps...
private function onMapReady(e:MapEvent):void{
 //enable mouse wheel zoom and add the standard google zoom contorl to map
 map.enableScrollWheelZoom();
 map.enableContinuousZoom();
 map.addControl(new ZoomControl());
}

That is enough to put a global map on your screen, now we need to give the map some information.  I want to be able to provide an address and have the Google service geocode it for me.  In order to do this, I am going to need the API ClientGeocoder class.  The following method creates a new ClientGeocoder, sets up geocode event listeners, and passes the address from a TextInput into a method from the ClientGeocoder class, called geocode(String), that accepts a String argument, which will be the address.

//this method takes care of the address geocoding, handling result events
private function geocode(event:Event):void {
 geocoder = new ClientGeocoder();
 //geocoder event listeners for success or failure
 geocoder.addEventListener( GeocodingEvent.GEOCODING_SUCCESS,geoSuccess);
 geocoder.addEventListener(GeocodingEvent.GEOCODING_FAILURE,geoFail);
 //geocode the address, passing in the address from textfield
 geocoder.geocode(addy.text);
}

If the geocoder returns success, the following listener method is called.  I assign the placemarks property value from the result to a variable and if it has length, I set the map center, the initial map zoom level, the map type, the marker point for the placemark, and add the marker to the map.  I also setup a listener for a click event on the marker that will call a method that creates an address information window.

//listener method if the result event returns success
private function geoSuccess(event:GeocodingEvent):void {
 //assign the placemarks value from the response
 placemarks = event.response.placemarks;
 //check and see if response returned any placemarks
 if (placemarks.length > 0) {
  //set the center of the map to the placemark point, set initial map zoom and type
  map.setCenter(placemarks[0].point,15,MapType.NORMAL_MAP_TYPE);
  //create a new marker for the placemark
  marker = new Marker(placemarks[0].point);
  //listen for a click event on the marker
  marker.addEventListener(MapMouseEvent.CLICK, addMarker);
  //add the marker on map
  map.addOverlay(marker);
 }
}

Here is the addMarker method called from the geoSuccess method.

//listener method for marker click event
private function addMarker(event:MapMouseEvent):void {
//open the placemark information window
marker.openInfoWindow(new InfoWindowOptions({content: placemarks[0].address}));
}

If the result event returns failure, then I simply launch an Alert, notifying the user that geocoding failed.

Here is the resulting application thus far:

Get Adobe Flash player





I’m going to be continuing to play with the API.  As I learn more and add to this app, I plan on successive follow-up posts which discuss additional functionality.

HTH!

#100blogs challenge Day5 http://bit.ly/4MtAfx

Git – Every Day Commands

Posted by dougr | Posted in Git | Posted on 06-01-2010 | 1,283 views

Tags: , , ,

0

I’ve been using Git, rather than SVN, for the past 6 months now.  There are many powerful and useful commands, yet there are only few that I actually use on a daily basis.  So, if you are newish to Git and want a quick guide, then here you go.

Seldom Used

Create A Repository:

$ mkdir myProject
$ cd myProject
$ git init

Adding Files To The Repository

You can, if you wish, use this command following the $ git init shown in the previous example.

$ cd myProject
$ git add .

Note the [ .] following [$ git add], that is a space and a dot which means add everything below ./ in the current directory.

Often Used

Performing a Commit

This command will commit all changed files, since last commit, and remove any deleted files.

$ cd myProject
$ git commit -a

This command will commit all changed files, since last commit, and remove any deleted files. The addition of -m will allow the addition of a commit message.

$ cd myProject
$ git commit -a -m "re #xxx I just referenced a ticket number and am providing change detail."

Undoing Changes

This command will undo all changes to a file which have occurred since the last commit.

$ cd myProject
$ git checkout HEAD^ path/to/myFile


Working Remote

Getting A Remote Git Repository

This command will clone a remote repository to a local directory location.

$ git clone git@remote.url.com /local/path/directory

Updating A Local Repository With All Remote Changes

$ git pull

Updating A Remote Repository With All Local Changes

$ git push

Those are the most common commands that I use for every project. There are allot more for special situations. The Git Docs are pretty good, a bit hard to read (in my opinion), but I became accustom to it pretty quickly. My transition from SVN was relatively painless, I was up and running on an existing remote project within a few hours.

HTH!

#100blogs challenge Day4 http://bit.ly/4MtAfx

Douglas Reynolds Consulting – Relocation…Future

Posted by dougr | Posted in Douglas Reynolds Consulting, News, Personal | Posted on 05-01-2010 | 1,128 views

Tags: , , , ,

2

Very recently, myself and family relocated from the Portland, OR area to Bloomington/Normal, IL.  As a result, we needed to decide what we wanted to do with the consultancy.  I decided that Douglas Reynolds Consulting should live on, should continue to provide service to our existing clients, and continue to develop new clients.  Since, to a great degree, our services are provided remotely, we feel quite confident that we’ll be able to continue on with business as usual.  We’ve been spending much of our time getting networked into the new location, communicating with our clients, developing leads for new clients, and managing account changes, etc…  We have much to do yet, amounting to a task list with over 150 items resulting from relocating.  We are very excited about opportunities that are present in Illinois and prospecting is going well.  Certainly, we are interested in your inquiries for RIA, Business Systems, and Executive Administration services, regardless of location, so feel free to contact us to discuss your needs.

We have big, no, huge community goals this year in our new location.  We will be contributing to the community of developer’s in the Bloomington/Normal area.  I have already begun this process by submitting an application to start an Adobe Community RIA group with the hopes of bringing developers in this area together to network, share information, assist one-another with troubleshooting problems, and have a place to “get their geek on” and have fun.  Additionally, we wish to bring area business and education (we have Illinois State University and Illinois Wesleyan University here) awareness of the local developers and Adobe platform solutions with the hopes of strengthening the Adobe community and resources available to those businesses and institutions.  We’re going for Adobe community with all of our resources.

We are going to be adding a series of ‘Kit’ solution packages.  We are currently breaking down all of the services which we provide, discerning which ones are most in demand, and which ones best compliment one-another.  We will then be putting together a standardized set of packages and pricing.  Of course, any Kit may be customized to fit individual client’s needs, but we will be able to provide a series of entry points, better communicating initial project budget and needs requirements.  We believe this will simplify the process of providing for client needs, as well as to create a degree of self-service that potential clients may use in comparing various solutions.

In order to assist with the new Kit structure, brand awareness, and sales/retention, we are going to be adding a new internal position, Director of Evangelism.  Our new Director, to be named in the next couple of weeks, will aide in Kit development, marketing and sales, and evangelism of Douglas Reynolds Consulting services.

Within our Adobe platform development, we will be implementing Flex 4 for all future developments, unless otherwise specified by client requirements.  ColdFusion will continue to be our server-side platform solution in all cases where possible, falling back on PHP as needed.
We intend to incorporate allot more JS jQuery into our maintenance and future projects.  We have been so stoked with the UX design results we’ve achieved, in such a light-weight library, that jQuery has won our hearts and minds.

We will be coming up with more business/platform development ideas along the way, because, well, that is what we do.
Thank you to all of our clients for making it possible for us to do what we love…Develop.

RIA | Business Systems | Executive Administraion
“Putting it all together”sm
Douglas Reynolds Consulting
http://www.douglasreynoldsconsulting.com

#100blogs challenge Day3 http://bit.ly/4MtAfx