Displaying 20 results from an estimated 3000 matches similar to: "Hello, my fellow ROR users/developers"
2014 May 17
0
[JOBS] Junior RoR developer (remotely)
Hi guys,
The company I'm contracting at is looking for:
Junior Ruby on Rails developer
Requirements:
* experience with building Rails/Sinatra web applications,
* Experience with Javascript/jQuery (good to have: Angular, /Backbone)
* Experience with building frontend part of application
* Good understanding of English (spoken and written)
Looking Forward,
2006 Jan 31
4
broadvoice??
Does anyone have any useful contact information for Broadvoice? I've
been unable to call Argentina from my Broadvoice line for almost a
month now. Their techs keep telling me they're "looking into it" but
I get no real information. I've had several other tickets open for
almost 8 months now.
I called their PR company this morning and apparently they dropped
Broadvoice
2008 Mar 07
6
creating a model registry
Hi all,
This is a problem I''ve approached so many times and always worked
around, that now I want to solve it once and for all. Say I have
something like this:
---
class X < ActiveRecord::Base
acts_as_wacky
end
module Wackinator
class ControlAllWackos
@@wackos = []
def self.kill_wackos
@@wackos.each(&:kill)
end
end
def acts_as_wacky
2009 Sep 29
1
Using speex for gsm-efr coding
Hello,
I would like to know please whether I can use Speex for Gsm-Efr coding?
Best Regards,
Ilan Borenshtein
RT embedded engineer
ASOCS Ltd
E: ilan at asocstech.com
T: +972 (0)3 9012090 Ext. 214
M: +972 (0)50 5745100
F: +972 (0)3 9032112
www.asocstech.com <http://www.asocstech.com>
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
2008 Mar 04
3
remote_form_for does not work with method = :get
It seems that remote_form_for does not work with method = :get since
it does not change the prototype call. Is this a bug?
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org
To unsubscribe
2008 Feb 23
3
Attachment_fu: how to remove images?
I just used attachment_fu for the first time, and it works quite well.
I have a user-model, and each of them has_one :image (and the images
belongs_to :user). I have a question on this though: how can i remove
images? Whenever i set a new image for a user (a user who already has
an image), then the table with images gets updated correctly, with the
user_id column of the old image set to null, and
2008 Feb 29
7
Moving pagination to the Model
I''m using will_paginate in a Post class method;
[code]def self.list(page)
paginate :per_page => 10,
:page => page,
:include => :user
end[/code]
I can happily use the method on my posts controller index action;
[code]
class PostsController < ApplicationController
def index
@posts = Post.list(params[:page])
respond_to do |format|
2020 Mar 25
2
CentOS 6.10 bind DNSSEC issues
Hi,
??? Anyone else had any issues with CentOS 6.10 bind DNS server issues
this afternoon.
At 16:26 (GMT) had alerts for DNS failures against our CentOS 6.10 bind
DNS servers
from our monitoring system.
Sure enough DNS requests via the server was failing, checking the
named.log showed
dnssec issues;
25-Mar-2020 16:26:10.285 dnssec: info: validating @0xb48b17c0:
push.services.mozilla.com
2009 Sep 24
5
Non-ActiveRecord based model being passed as string?
I have a model that looks like this (with various other methods)
class HsdPair
attr_accessor :hsd
def initialize(hsd)
@hsd = hsd
@current_display = 0
@has_changed_flag = false
end
end
After initializing this object in the controller
@hsd_pairs = HsdPair.new(@job.hsd_pairs)
using it in the view various times and in various ways, when I try to
pass this object back to the
2007 Jan 18
2
the one minute perl expert :p
Ok, ok
I am a "one minute" perl expert now (sung to the tune of "I read the One
Minute Manager Book today yeah yeah yeah baby baby"
:p
My first perl research and program called test.pl
use Net::DNS;
print Net::DNS->version, "\n";
the result of "perl test.pl" as expected was
0.48
Please keep the applause to a minimum please.
Tens and twenties work
2012 Apr 27
2
generate random numbers for lotteries
?Hi,
I am working with lotteries and I need to generate two sets of uniform
random numbers.
Requirements:
1) each set has 60 random numbers
2) random numbers in the first set are taken from an interval (0-10),
whereas numbers in the second set are taken from a higher interval
(15-25)
3) numbers generated in the first set should be matched to numbers in
the second set (row by row) so that the
2008 Feb 22
12
DRY - in controller or model????
Hello.
I''m trying to make clean efficient code and would like to find out if
there is a "BEST" way to write code. I want this to run quickly and
efficiently for my app.
I''ve got a form that needs a select list created for new and edit
functions. Same list.
Do I do this in the controller and reference @list in the forms?
def new
@list = %w { apple orange banana }
2017 Oct 01
3
XP auto enrollment error; TEMP profile
Am 01.10.2017 um 22:43 schrieb ToddAndMargo via samba:
>> Is the customer using XP for all client machines or just select
>> machines that may run some legacy app?
>
> The app will run on any version of Windows. The reason for the XP
> is that the customer doesn't believe in fixing what ain't broke
it's your job to epxlain him *it is broken* because windows XP
2006 Sep 08
0
Ruby on Rails Job - Northern, VA
Send your reply to myitrecruiter-/E1597aS9LQAvxtiuMwx3w@public.gmane.org
Web Application Engineer
The ideal candidate will have experience developing
rich web applications (AJAX, XHTML, JavaScript, XML,
CSS etc). We are looking for candidates with strong
user-interface instincts.
The successful candidate will have a passion for
delivering high quality software and possess a high
degree of
2008 Feb 29
0
Net::LDAP
Hi All,
I am new to Ruby and doing some automation testing.
I am using Net::LDAP to connect to my ldap server
My script is
require ''rubygems''
require ''net/ldap''
ldap = Net::LDAP.new :host => ''10.44.169.24'',
:port => 389,
:auth => {
:method => :simple,
:username =>
2009 Oct 28
2
What's the simplest way to use ActiveResource in ruby (without rails)?
I would like to use this class in a standalone project, but I have
been unsuccessful thus far.
Also, how does this class exactly communicate with the web server?
Thank you.
class Person < ActiveResource::Base
self.site = "http://localhost:3000/"
end
2005 Sep 09
1
regression with restrictions - optimization problem
Dear WizaRds!
I am sorry to ask for some help, but I have come to a complete stop in
my efforts. I hope, though, that some of you might find the problem
quite interesting to look at.
I have been trying to estimate parameters for lotteries, the so called
utility of chance, i.e. the "felt" probability compared to a rational
given probability. A real brief example: Given is a lottery
2008 Feb 25
4
Using group in with find in an ActiveRecord appropriately
I''m playing around with the Practical Rails Projects code, and was
attempting to make a change for graphing data differently using
groupings.
Basically the code went from:
total_weight = @exercise.activities.collect {|e| e.repetitions
* e.resistance}
workout_dates = @exercise.activities.collect {|e|
e.workout.date.to_s}
To:
total_weight =
2009 Aug 06
18
Best Practices Question
Should models call action mailers, or should those calls always
originate from controllers? For example, should user.forgot_password
send the email, or should the user_controller.forgot_password?
Just looking for some opinions...
Thanks,
Tom
2007 Jun 02
1
linksys wip300 firmware
Hello,
Does anyone have access to version 1.00.07 of the Linksys WIP 300 firmware?
The only version on their site at the moment is 1.00.09, which the
phone refuses to load.
Regards,
Ilan