Displaying 20 results from an estimated 8000 matches similar to: "Wiki Contribution Request"
2006 Mar 30
1
GLX Problem
Hello,
after a fresh install on and amd64, nvidia, linux 2.6.16, i get this
error after starting wine:
bowman@discovery ~ $ winecfg
wine: creating configuration directory '/home/bowman/.wine'...
X Error of failed request: BadAlloc (insufficient resources for
operation) Major opcode of failed request: 144 (GLX)
Minor opcode of failed request: 3 (X_GLXCreateContext)
Serial number
2006 Mar 20
3
can''t get my rss to validate with feedtools
I know that I''m doing something wrong, but I can''t figure out what.
I''ve looked at every wiki and tutorial I can find on feedtools but I
still can''t get my rss feed working. Here''s my code.
feed = FeedTools::Feed.new
feed.entries << FeedTools::FeedItem.new
feed.entries[0].author.name = "Charlie Bowman"
feed.entries[0].title =
2014 Mar 21
2
Bug? between OpenSSH 6.4p1 and 6.5p1(also 6.6p1)
The problem I am seeing was introduced between 6.4p1 and 6.5p1 (and
still exists in 6.6p1). With HostbasedAuthentication/EnableSSHKeysign
turned on, I am seeing one of two sets of messages:
no matching hostkey found
ssh_keysign: no reply
key_sign failed
and
not a valid request
ssh_keysign: no reply
key_sign failed
Then in either case two password prompts:
bowman at HOST.math.utah.edu's
2006 Feb 26
3
how to format and syntax highlight code in html
I''ve written my own blog (I know typo is better, but I wanted the
experience of writing my own) and I want to add syntax highlighting to
it. I''ve read about using the ruby gem syntax but I can''t figure out
how to implement it. I''ve also wondered if it could be used in my case.
How does it work when you have a long line of code but the <div> your
2006 May 23
7
how to pull text from database and eval it?
I''m trying to add some executable code to my blog posts. How can I
include this inside of a blog post and eval it?
Charlie bowman
http://www.recentrambles.com
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://wrath.rubyonrails.org/pipermail/rails/attachments/20060523/a3536408/attachment.html
2006 Mar 29
2
vim syntax highlighting of rjs templates
Are there config files for vim that offer syntax highlighting of rjs
templates?
Charlie Bowman
http://www.recentrambles.com
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://wrath.rubyonrails.org/pipermail/rails/attachments/20060329/486c9d84/attachment.html
2002 Jan 15
1
User-Dependent Identity File
On Tue, Jan 15, 2002 at 06:00:50PM -0000, John Bowman wrote:
> > Date: Tue, 15 Jan 2002 17:29:44 +0100
> > From: Markus Friedl <markus at openbsd.org>
> > Cc: openssh at openbsd.org
> > Content-Type: text/plain; charset=us-ascii
> > Content-Disposition: inline
> > User-Agent: Mutt/1.3.25i
> >
> > On Tue, Jan 15, 2002 at 03:46:15PM -0000, John
2006 May 22
2
finding out the remote users username ENV[REMOTE_USER] ?
I''m trying to set the modified_by in my user table from the remote user
name. I have htaccess set up for the rails directory but I can''t seem
to get it to read the remote users name. is ENV[REMOTE_USER] the
correct syntax? I searched but I can''t seem to find a definitive
answer. Thank you for any help!
Charlie Bowman
http://www.recentrambles.com
-------------- next
2006 Mar 08
2
(no subject)
Can anyone point me in the direction of a good tutorial on visual
effects in rails? I''ve searched and I''ve asked but I can''t seem to find
any good documentation on ajax visual effects, combining of effects, or
queued effects.
Charlie Bowman
http://www.recentrambles.com
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
2006 Mar 13
3
adding new validates_foo to the models
I was thinking of adding some new validates_foo to my models. How could
I create these so that they are reusable in my other apps. Would these
need to be plugins? I''m not sure how to go about creating these.
Charlie Bowman
http://www.recentrambles.com
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
2006 May 03
1
sessions, cached pages, and the tmp folder
I''ve been running edge rails for a while but I can''t seem to get my
sessions and to be written to the rails_root/tmp folder. My sessions
keep getting wrote to the servers /tmp directory. What do I need to do
to get rails to use the new tmp folder? Thanks in advance
Charlie Bowman
www.recentrambles.com
-------------- next part --------------
An HTML attachment was scrubbed...
2006 May 30
3
more fcgi problems on apache
I''m having tons of problems with fcgi on apache2. The app didn''t
crash over the weekend when it wasn''t used. I ran it this morning and
it was fine. It''s an inhouse app so it wasn''t used for 3 days over the
weekend. It did however crash today. Does this sound like a bad fcgi
setup or just a very buggy fcgi/Apache combo?
Charlie Bowman
2006 May 10
3
NumbersToWords
= numbersToWords - convert your integers and floats to english or
japaneese words,or translate it into american currency
- This plugin was created from a solution to the ruby quiz (english
numbers) by Matthew D Moss. I modified the code to work as a rails
plugin and added the to_dollars method.
- the to_dollars method will work with integers and floats
- the to_english and to_japaneese methods
2001 May 12
1
User-Dependent Identity File
Hi,
In SSH, there is a way of telling ssh to look for identification
files in a user-dependent location other than in default directory, $HOME/.ssh,
without creating a separate ~/.ssh/config entry for each user.
For example, in sshd_config one can specify
UserConfigDirectory "/etc/ssh2/auth/%U"
where %U stands for the incoming $USER.
This is required for security if
2006 Mar 20
7
error using feedtools
I performed a gem install feedtools,
I then added these 2 lines to my environment.rb:
require ''rubygems''
require ''feed_tools''
I then added this method in my controller:
def rss
@post = Post.most_recent
feed = FeedTools::Feed.new
feed.title = ''Recent Rambles''
feed.subtitle = ''random thoughts by me''
2004 Jun 16
3
Aggregating on Water Year Rather Than Calendar Year
The US water year extends from 01 October yyyy-1 through 30 September yyyy
and is referenced by the year starting on the included 01 January yyyy.
I'd like to be able to find the annual means for the water year. To do so
I've taken the input date-time, which is in the usual format
"1991-10-07 10:35:00"
changed it by:
w$d<-as.POSIXct(w$date.time)
Now I can add an
2006 May 17
1
rails will page cache all actions but one....why?
I have page caching turned on for all actions in my controller
(pragmatic is it''s name). Rails will cache each actions except for
one.
I''ll list the three ways this action can be called. It is only cached
one of the ways. Can somebody help?
http://www.recentrambles.com/pragmatic/index - This will not cache
httphttp://www.recentrambles.com/pragmatic This will not
2016 Sep 09
2
Errors when running on Windows
I'm facing a looming deadline for getting this working, so I'm hoping someone experienced can weigh in on this.
I'm getting errors in the Event Log when stopping the service:
1. Error stopping upsd (2)
2. Error stopping upsmon (2)
Is there a detailed log somewhere? How can I track this down and find out what they mean? Or does someone know?
Also, these three commands result in
2016 Sep 09
2
How to send shutdown signal to UPS hardware?
I learned earlier from Roger Price's excellent explanation that a proper configuration includes sending a 'delayed shutdown' signal to the UPS hardware prior to shutting down the server.
How is this accomplished? Does the USB driver handle this for us or must we do something additional?
Thanks,
Jeff Bowman
Fairbanks, Alaska
2010 Oct 15
1
Dealing with Non-Standard Hours
A data set I obtained has the hours running from 01 through 24
rather than the conventional 00 through 23. My favorite, strptime,
balks at hour 24.
I thought it would be easy to correct but it must be too late on
Friday for my brain and caffeine isn't helping.
TIA for a hint,
Clint
--
Clint Bowman INTERNET: clint at ecy.wa.gov
Air Quality Modeler INTERNET: clint at math.utah.edu