cfObjective() - Food - Tanpopo Noodles

Posted by dashAuthor on Apr 29th, 2008

Tanpopo Noodle Shop is located on the other side of downtown from the conference. But if you want Udon or Soba it is worth the trip. As you can see from the google info page this Tanpopo is favorite of many people.

It is located on the southeast corner of 4th st. e. and Broadway orĀ  Prince st. and Broadway it sort of a crazy little chicane where two streets meet up in the middle of a block so they call them by two names.

Enjoy this fine restaurant.

cfObjective - Music - Station 4

Posted by dashAuthor on Apr 27th, 2008

Sadly, there are not a lot of "rock" clubs in downtown St Paul. The only one I can think of is Station 4 . On Thursday May 1st the line up is as follows, I have never heard these bands but the links should give you an idea of their music.

Thursday May 1st 9:00 pm Station 4
18+ show
Northern Room
Weaver at the Loom
Windsor Drive
In Harbour

On Saturday May 3rd 5:00 pm Station 4
18+ Show
Camera Can't Lie
A Verse Unsung
Lights Out Dancing
Gloria
Abandon Kansas
Progress in Color

Wow.. that was fun, looking up and listening to 10 bands on mySpace.

cfObjective() - food - Mickey’s Diner pt 2

Posted by dashAuthor on Apr 26th, 2008

Todd Sharp from cfsilence commented in my firts Mickey's Diner post that the Alton Brown show, Feasting On Asphalt made a trip to Mickey's Diner. I did a little searching and found Episode 06 of Season 02 on the Alton Brown website lists Mickey's Diner.

The full episode is broken into 5 parts adn posted on YouTube. The section for Mickey's Diner starts at the end of segment 3 and runs through the beginning of segment 4.

Segment 3

Segment 4

cfObjective - food - Mickey’s Diner

Posted by dashAuthor on Apr 25th, 2008

I have been saving Mickey's Diner for my Friday post (my A-material). Like the Artists' Quarter this place is close to the Crowne Plaza and it is the top of it's class. Mickey's is open 24 hours a day another plus for the programming crowd. It is a traditional diner the food is made on the spot and a little greazy.

A lot more information can be found here at the google page.

Mickey's Diner

cfObjective() - Music - Artists’ Quarter

Posted by Fred Anderson on Apr 24th, 2008

The Artists' Quarter is, in my opinion, the premier jazz club in the twin cities. For the most part I have only gone there to watch "Standard Jazz" like Joe Pass and Herb Ellis but they have some Fusion and other forms of Jazz as well.

The best part is, the Artists' Quarter is just around the corner from the Crowne Plaza. Here is the now obligatory google page link Artists' Quarter

cfObjective - food - Barbary Fig

Posted by dashAuthor on Apr 23rd, 2008

More food, I will make every attempt to hit as wide of a range in taste as I can (I wont post 5 pizza joints, I may not post any).

The Barbary Fig: I am not sure if this is called Mediterranean, Moroccan, North African or what, but it is good. My meal was a dish called Brik with Harissa. Brik is a flakey pastry wrapped around a filling of egg, onion and tuna. It is served a spicy sauce/paste called harissa. It is about 2 miles from the Crowne Plaza, and again it is up on the hill so you should probably take a cab.

Here is the google link for a little more information. Barbary Fig

cfObjective After Hours - Moscow On The Hill

Posted by dashAuthor on Apr 23rd, 2008

Hello to everyone that will be attending the 2008 cfObjective conference. Over the next ten days I will post a series of entries based on things to do in The Twin Cities from May 1st to May 4th 2008. Mostly music and food. I have lived in and around Minneapolis / St. Paul for 40 years and I will not suggest a place I have not personally been to. I am not a critic, so I will keep my writing limited to what it is and what I liked.

First Up, Moscow on the Hill - This is a great restaurant featuring authentic Russian food and Vodka. I would suggest having the Czar's Medallions (pork). here is the map link Google Map

I would not suggest walking to there from downtown, it looks short on the map but it up hill both ways, especially when you have been drinking. Take a cab

A Perfect Circle, cfimage and the imageDrawOval() function.

Posted by Fred Anderson on Mar 6th, 2008

After reading Ben Nadel's recent post ColdFusion Image Coordinates Are Zero-Base I thought it would be a good opportunity to fire up the blog and get things going. I have been working on a Microchart/Sparkline cfc recently and I have come across a couple oddities. Let's start with an example of what Ben was talking about, the zero based system as it applies to an oval.

Example 1

<cfset myimage="ImageNew("",30,30,"rgb","eeeeee")">
<cfset>
<cfset>
<cfimage action="writeTobrowser" source="#myImage#"></cfimage></cfset></cfset></cfset>

cfimage circle ex 1

As you can see, end up with a circle that is offset by a pixel each way. So let's push it back a bit.

Example 2

<cfset myimage="ImageNew("",30,30,"rgb","eeeeee")">
<cfset>
<cfset>
<cfimage action="writeTobrowser" source="#myImage#"></cfimage></cfset></cfset></cfset>

cfimage circle ex 2

That's More like it. I am leaving out the antialiasing for the sake of seeing the edges clearly. You will see the same results with antialiasing set to "on".

 
<cfset myimage="ImageNew("",30,30,"rgb","eeeeee")">
<cfset>
<cfset>
<cfset>
<cfimage action="writeTobrowser" source="#myImage#">
</cfimage></cfset></cfset></cfset></cfset>

cfimage circle ex 1 antialiasing

Now is the point when things become a little odd. If we want a filled circle we are going to have to adjust some numbers a bit. Yeah, I know it's odd, you would think that my 30x30 circle drawn from 0,0 to 29x29 and the fill set to "yes" would do the trick. Here is the result.

Example 3

<cfset myimage="ImageNew("",30,30,"rgb","eeeeee")">
<cfset>
<cfset>
<cfimage action="writeTobrowser" source="#myImage#"></cfimage></cfset></cfset></cfset>

cfimage circle ex 3

As you can see, this didnt exactly work. The circle is centered alright, it is just drawn as though there was not a border (fyi, just applying a stroke in this case will not add a border).

Example 3b

<cfset myimage="ImageNew("",30,30,"rgb","eeeeee")">
<cfset>
<cfset>
<cfimage action="writeTobrowser" source="#myImage#"></cfimage></cfset></cfset></cfset>

cfimage circle ex 3b

It looks like if just extend the oval a pixel in all directions it works fine. Unless we turn on anti-aliasing. Take a look at what happens when we apply anti-aliasing.

Example 3c

<cfset myimage="ImageNew("",30,30,"rgb","eeeeee")">
<cfset>
<cfset>
<cfset>
<cfimage action="writeTobrowser" source="#myImage#"></cfimage></cfset></cfset></cfset></cfset>

cfimage circle ex 3c

The Anti-aliasing has caused the oval to shift up and to the left. so one last pass at this should give us what we need.

Example 3d

<cfset myimage="ImageNew("",30,30,"rgb","eeeeee")">
<cfset>
<cfset>
<cfset>
<cfimage action="writeTobrowser" source="#myImage#"></cfimage></cfset></cfset></cfset></cfset>

cfimage circle ex 3d

So to wrap things up, you may have to tweak the way you draw things using cfImage. In my case, I am using rather small graphic 30x30 and 50x50 would be the max, I have tested these same examples at larger scale and have found similar results. Since my cfc's are excepting values for width, height and anti-aliasing rather than allowing the user to directly set those things, I have added a modifier to those variables based on their parameter for anti-aliasing.

« Prev

Search Posts


Calendar

August 2008
S M T W T F S
« Jul    
 12
3456789
10111213141516
17181920212223
24252627282930
31