Re: Could an admin add a subject prefix to this list, like [heroku]

2011-05-11 Thread Richard Conroy
There is usually good reason why lists don't prefix. Line noise on the
subject line being one of them, also the availability of advanced e-mail
clients that can do powerful filtering.

For instance, in GMail, which both of you use, I can set a filter to label
all my Heroku posts.

Hence, subject prefixing becomes redundant, and also very irritating when
you are trying to identify old messages visually.

regards,
Richard

On Wed, May 11, 2011 at 11:07 PM, Miles Smith wed...@gmail.com wrote:

 I second this.
 On May 11, 2011 10:54 AM, Travis Reeder tree...@gmail.com wrote:
  So we can know what list it is without having to open the email.
 
  Cheers.
 
  --
  You received this message because you are subscribed to the Google Groups
 Heroku group.
  To post to this group, send email to heroku@googlegroups.com.
  To unsubscribe from this group, send email to
 heroku+unsubscr...@googlegroups.com.
  For more options, visit this group at
 http://groups.google.com/group/heroku?hl=en.
 

 --
 You received this message because you are subscribed to the Google Groups
 Heroku group.
 To post to this group, send email to heroku@googlegroups.com.
 To unsubscribe from this group, send email to
 heroku+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/heroku?hl=en.




-- 
http://richardconroy.blogspot.com | http://twitter.com/RichardConroy

-- 
You received this message because you are subscribed to the Google Groups 
Heroku group.
To post to this group, send email to heroku@googlegroups.com.
To unsubscribe from this group, send email to 
heroku+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/heroku?hl=en.



Re: Has anyone got pony working with gmail on heroku?

2010-10-27 Thread Richard Conroy
On Wed, Oct 27, 2010 at 12:23 PM, Phil Pirozhkov pirjs...@gmail.com wrote:

 look at padrino mailer if you are using sinatra, or active mailer if
 rails
 tmail gem is outdated, and pony depends on it
 you can either patch tmail or use patched as provided by tools i've
 mentioned

 you can also use SendGrid or any alternative addon


I got sendgrid working. It was pretty straightforward. I followed the
instructions on the heroku site directly.

-- 
http://richardconroy.blogspot.com | http://twitter.com/RichardConroy

-- 
You received this message because you are subscribed to the Google Groups 
Heroku group.
To post to this group, send email to her...@googlegroups.com.
To unsubscribe from this group, send email to 
heroku+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/heroku?hl=en.



Re: Heroku + Hobo?

2010-10-14 Thread Richard Conroy
On Thu, Oct 14, 2010 at 7:47 PM, Adam sir.adamw...@gmail.com wrote:

 Were you referring to Hobo or Heroku for your hobby projects? Im new
 to Heroku, but I do fancy Hobo. Its definitely a bit slower than
 native Rails but i like the gracefulness of the model/schema
 definitions along with a bunch of extra handy helper to knock out one-
 off projects quick. Also, im a super newb developer so its not as if
 my needs are extreme.


Heroku. I haven't done much Rails in anger, so I haven't been exposed
to much Hobo, except for some initial articles on it a few years back.

Heroku is ace, especially for experiments and hobby projects. Have to
love getting an interactive console window open on a server like that.

-- 
http://richardconroy.blogspot.com | http://twitter.com/RichardConroy

-- 
You received this message because you are subscribed to the Google Groups 
Heroku group.
To post to this group, send email to her...@googlegroups.com.
To unsubscribe from this group, send email to 
heroku+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/heroku?hl=en.



Re: Heroku on serious applications and lack of support

2010-09-17 Thread Richard Conroy
On Fri, Sep 17, 2010 at 9:10 AM, John Beynon j...@beynon.org.uk wrote:

 It would be nice if Heroku at least offered paid support or at least
 made their it clear on their website that this is available - much
 like Engine Yard. We're seriously considering migrating to EY from
 Heroku at the moment because primarily of the support that is
 available from EY when it's needed.


That just seems to make some really sound business sense: Provide
an option for paid support that is not locked into the size of the app,
which seems to be the OPs main problem - his paid app is not spendy
enough to warrant higher levels of support.


 --

http://richardconroy.blogspot.com | http://twitter.com/RichardConroy

-- 
You received this message because you are subscribed to the Google Groups 
Heroku group.
To post to this group, send email to her...@googlegroups.com.
To unsubscribe from this group, send email to 
heroku+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/heroku?hl=en.



Re: Heroku vs Google App Engine (GAE) + DJANGO

2010-08-24 Thread Richard Conroy
On Tue, Aug 24, 2010 at 4:35 PM, nobosh bhellm...@gmail.com wrote:

 Hello, I'm a long-time ColdFusion developer looking to finally move to
 something better. I've been exploring Google App Engine with DJANGO,
 but haven't been blown away.


Google App Engine will also support Rails via JRuby, though I wouldn't
consider it a mainstream solution, or something I would recommend to
newbies.

I don't see a lot of activity on Google App Engine (that could be my reading
list though). Its a good solution, price competitive with a good free quota,
but I think people get a bit put off by the persistence back end (Big
Table).

I am not overly familiar with Django, but I believe it uses the ActiveRecord
pattern (just like Rails) for its persistence back end. ActiveRecord and
BigTable are not a good fit apparently, so it may explain why GAE/Django
development is not as popular as it should be.

Google App Engine lends itself more to unopinionated frameworks which
allow you more freedom for what you use in your persistence layer. i.e.
Ruby/Sinatra using the BigTable APIs directly (via JRuby) might be a better
fit.


 I recently learned of Heroku + ROR and
 find myself to be at a fork in the road. Any compelling case on why I
 should go with Heroku versus App Engine + DJANGO?


Simplicity. Heroku works. It imposes the least amount of constraints on
your web apps architecture:
* You push code to heroku with Git
* You have to use external services (e.g. S3) for writable file storage
* You must have a rackup file
* You must document your gem (external code) dependencies
If you are making a ruby web app nowadays, you are likely satisfying
most of those constraints anyway. It is common for people to push
their apps to heroku very quickly and find that they Just Work (tm).

 Where to Heroku + ROR users go for support? If it's
 these forms it's concerning that there's low activity from a newbie
 perspective. In any case, I'm curious to hear your thoughts so I can
 settle on a tech stack and get coding


Visit the Heroku site itself http://heroku.com the documentation is
up to date and thorough. With many awkward edge cases properly
documented. Its a model of how you document an unusual hosting
service.

-- 
http://richardconroy.blogspot.com

-- 
You received this message because you are subscribed to the Google Groups 
Heroku group.
To post to this group, send email to her...@googlegroups.com.
To unsubscribe from this group, send email to 
heroku+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/heroku?hl=en.



Re: how to use a command-line utility?

2010-08-11 Thread Richard Conroy
On Mon, Aug 9, 2010 at 6:41 PM, Jacob Hodes jho...@gmail.com wrote:

 Hi,

 I'm developing a Rails app that makes use of a command-line tool
 called Graphviz (http://www.graphviz.org). Changes get made in the
 Rails app, then a background job is fired which runs graphviz as a
 system command. graphviz generates a graph and saves it to a file.
 Then I upload the file back into my Rails app.

 I know Heroku's filesystem is read-only, no ssh access, etc. Given
 these limitations, what's the best approach to take?

 I see I can use S3 for file storage. But how about finding a way to
 use this command-line utility? I'm highly doubting Heroku would
 install such a thing, right? Any alternative ideas?


One idea I can think of is to wrap GraphViz in a web service and install it
in a seperate hosting service.

An alternative idea: Heroku lets you use sqlite/memory databases. Its not
a supported option, but they do work, and I would say the limitations are
severe (I doubt Delayed Jobs would see them).

You could upload the information that GraphViz needs to process into the DB.
I am uncertain how you could get the GraphViz CLI app to use it, but perhaps
GraphViz has a library/gem which has less restrictive use?


 Thanks for your thoughts,
 Jacob

 --
 You received this message because you are subscribed to the Google Groups
 Heroku group.
 To post to this group, send email to her...@googlegroups.com.
 To unsubscribe from this group, send email to
 heroku+unsubscr...@googlegroups.comheroku%2bunsubscr...@googlegroups.com
 .
 For more options, visit this group at
 http://groups.google.com/group/heroku?hl=en.




-- 
http://richardconroy.blogspot.com

-- 
You received this message because you are subscribed to the Google Groups 
Heroku group.
To post to this group, send email to her...@googlegroups.com.
To unsubscribe from this group, send email to 
heroku+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/heroku?hl=en.



Re: Workflow to allow heroku to install a 'private' (local) gem on deploy

2010-08-09 Thread Richard Conroy
On Sun, Aug 8, 2010 at 10:23 PM, Bradley bradleyrobert...@gmail.com wrote:

 I'm writing a new app that uses a custom gem not publicly available on
 gemcutter, or anywhere for that matter.  I'm building both the app and
 gem with Hudson CI, then I'd like the app pushed to heroku by somehow
 installing this gem and pushing.

...

 I don't want these gems available publicly which is why I'm looking
 for a good way to package the gem for my Heroku app to be able to use
 it appropriately.

...


 Doe this make sense?  Any suggestions/help is greatly appreciate.


Like it has been suggested, I think you can go the bundler route.
Alternatively,
if you maintain your public source repository, you can use the --source
option
to distribute your gems that way. Instructions on how to do this are here:

http://docs.heroku.com/gems

Running your own gem server in this fashion doesn't appear to be
particularly
hard:
http://docs.rubygems.org/read/chapter/18#page80

You could then reference it from your .gems manifest with the --source
argument

But in your case, you do not want that distributed and it would need to be
secure.
There doesn't seem to be good documentation on how to use a https --source
argument or how to pass authentication credentials. May not be possible.

Which would be a shame, because the process you are describing, of using in
house gems in
this manner is a habit of very effective Ruby teams: you don't just DRY up
your project code, you DRY up common code across projects by refactoring to
gems.

Bundler might be the future, but its a bit of a heavyweight solution for
some people (not to mention
being a bit beta)
-- 
http://richardconroy.blogspot.com

-- 
You received this message because you are subscribed to the Google Groups 
Heroku group.
To post to this group, send email to her...@googlegroups.com.
To unsubscribe from this group, send email to 
heroku+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/heroku?hl=en.



Re: EXIF support on Heroku?

2010-06-08 Thread Richard Conroy
On Tue, Jun 8, 2010 at 3:15 PM, Patrick Crowley patr...@mokolabs.comwrote:

 Has anyone been able to extract EXIF information from photo uploads on
 Heroku?

 Most EXIF parsing gems are wrappers for libraries that aren't
 available on the Heroku stack. (And we can't install these libraries
 manually as you'd normally do on a VPS.)


 You can install non-standard gems on heroku. You need to look into updating
your .gems file manifest. It can be a bit tricky if your gem has
dependencies
that are not part of the heroku stack. It will compile native gems for you
(within
reason - no Win32 gems for instance) and generally works pretty well.

It can make your app size very big though, and can make deploy times very
lengthy.


-- 
http://richardconroy.blogspot.com

-- 
You received this message because you are subscribed to the Google Groups 
Heroku group.
To post to this group, send email to her...@googlegroups.com.
To unsubscribe from this group, send email to 
heroku+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/heroku?hl=en.



Issues trying to push app to heroku (windows)

2010-03-25 Thread Richard Conroy
Hi
   I have been following the setup instructions to get a simple sinatra app
up and running.

I ran into a few issues with PuTTy gen and keys, but I was able to use this
threadhttp://groups.google.com/group/heroku/browse_thread/thread/7a3b79e76c38d621/ba1fbe650d3975d6?lnk=gstq=ssh+public+key#ba1fbe650d3975d6
 to
get past them (at least I think I was able to get past them).

However when I attempt to push my code to heroku I get this error:
 git push heroku master
Permission denied (publickey).
fatal: The remote end hung up unexpectedly

I have managed to get through other steps, heroku create successfully
created my app,
and my public key was accepted. Also

heroku key:add still works

Can anyone tell me what is going on here? What have I missed, and how do I
rectify it?

thanks,
Richard.

-- 
http://richardconroy.blogspot.com

-- 
You received this message because you are subscribed to the Google Groups 
Heroku group.
To post to this group, send email to her...@googlegroups.com.
To unsubscribe from this group, send email to 
heroku+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/heroku?hl=en.



Re: Issues trying to push app to heroku (windows)

2010-03-25 Thread Richard Conroy
Okay, I think I made some progress.

First tip: Use the Git Bash shell client that gets installed with Git.
Generate your private keys with
$ ssh-keygen -t rsa

And copy them to your /.ssh directory

Make sure you do any of this before you execute any of the heroku commands.
Then perform
heroku create
and
git push heroku master
as expected

Skip any of the PuTTygen hijinks

It got my app pushed, I just now have to debug why Heroku isn't recognising
my
rack config (which is a much more straightforward problem).

On Thu, Mar 25, 2010 at 6:50 PM, Richard Conroy richard.con...@gmail.comwrote:

 Hi
I have been following the setup instructions to get a simple sinatra app
 up and running.

 I ran into a few issues with PuTTy gen and keys, but I was able to use this
 threadhttp://groups.google.com/group/heroku/browse_thread/thread/7a3b79e76c38d621/ba1fbe650d3975d6?lnk=gstq=ssh+public+key#ba1fbe650d3975d6
  to
 get past them (at least I think I was able to get past them).

 However when I attempt to push my code to heroku I get this error:
  git push heroku master
 Permission denied (publickey).
 fatal: The remote end hung up unexpectedly

 I have managed to get through other steps, heroku create successfully
 created my app,
 and my public key was accepted. Also

 heroku key:add still works

 Can anyone tell me what is going on here? What have I missed, and how do I
 rectify it?

 thanks,
 Richard.

 --
 http://richardconroy.blogspot.com




-- 
http://richardconroy.blogspot.com

-- 
You received this message because you are subscribed to the Google Groups 
Heroku group.
To post to this group, send email to her...@googlegroups.com.
To unsubscribe from this group, send email to 
heroku+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/heroku?hl=en.