Displaying 20 results from an estimated 78 matches for "ilan".
Did you mean:
ian
2009 Dec 01
0
FW: FW: Using speex for gsm-efr coding
Hello,
I would like to ask please to remove all of my questions from the forum.
(see at the bottom of this email)
I was asking it by email and didn't know that it will be published in
the forum.
Thank you,
Ilan Borenshtein
________________________________
From: Ilan Borenshtein
Sent: Tuesday, December 01, 2009 2:50 PM
To: 'webmaster at xiph.org'
Subject: FW: FW: [Speex-dev] Using speex for gsm-efr coding
Hello,
I would like to ask please to remove all of my questions from the forum.
(see a...
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: http://lists.xip...
2006 Jan 31
4
broadvoice??
...pparently they dropped
Broadvoice recently. They indicated they get a lot of complaint calls
about Broadvoice being unresponsive.
Is there anyone out there? Any recomendations on a service with
similar pricing on international calls? I call Argentina, Mexico and
Israel most frequently.
Thanks,
Ilan
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
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|
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
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 }
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
2009 Apr 18
0
gettext-2.0.1, gettext_activerecord-2.0.1, gettext_rails-2.0.1
.../libs.
* gettext_activerecord - ActiveRecord Localization
* gettext_rails - Rails support with gettext.
Changes
-------
* gettext-2.0.1
* Fixed bugs
* doesn''t work with ruby-1.8.5. [Reported by Dan Coutu]
* GetText.locale= can''t keep the locale. [Reported by Adam Ilan]
* Break backward compatibility of bindtextdomain
[Reported by Mamoru Tasaka(#24947), Mathieu Blondel]
* Other trivial fixes/improvement.
* 1.8 times faster than 2.0.0.
* GetText::LocalePath is separated from GetText::TextDomainManager.
Improve to find the locale p...
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
2017 Jun 15
2
does glusterfs implement vfs api ?
Hi,
Does GlusterFS implement the Linux VFS functionality.
I know its a user space FS, but user space FS should also implement VFS
funtions.
Is this true also to GlusterFS ?
Thanks
--
-
Ilans
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.gluster.org/pipermail/gluster-users/attachments/20170615/a29d0b2d/attachment.html>
2008 Oct 29
1
Plotting iregular time series
...(ts) with the smallest time
interval (seconds) that will cover the max length of the time period,
and try to put the existing data I have onto that series, so that
missing data will be skiped.
The question is how to match the time steps from the original series to
the new time series?
Thanks,
Ilan
AQRD
Environment Canada
[[alternative HTML version deleted]]
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
2005 Sep 01
1
OT: SCALE 4x -- Call For Papers
...p
2002 - http://www.socallinuxexpo.org/past/2002/presentations.php
If you have any questions please feel free to call the Call For Papers
team at cfp @ socallinuxexp.org
CFP Link: http://www.socallinuxexpo.org/pr/pr_20050620.php
CFP PDF: http://www.socallinuxexpo.org/pr/cfp4x.pdf
Best regards,
Ilan Rabinovitch
Conference Chair
Southern California Linux Expo
http://www.socallinuxexpo.org
2006 Southern CAlifornia Linux Expo
The USC, Simi/Conejo, and UCLA Linux User Groups are proud to announce
the 4th annual Southern California Linux Expo scheduled for February
11-12, 2006 at the Westin Hot...
2008 Nov 20
1
My ignorance and Fuse (or glusterfs)
...*
end-volume
===================== server ws2 vol ========================
volume home2
type storage/posix
option directory /var/glusterfs/export
end-volume
volume server
type protocol/server
option transport-type tcp/server
subvolumes home2
option auth.ip.home2.allow *
end-volume
ilan
2008 Mar 13
5
how to install ruby on rail without gem
any one kind enough to tell me how to install ruby on rail without
using Gem.
--
Posted via http://www.ruby-forum.com/.
--~--~---------~--~----~------------~-------~--~----~
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
2009 Aug 07
4
ActionController::UnknownAction (No action responded to 22.
I try to switch my application from Rails 2.2.2 to Rails 2.3.3.
In namespace :admin I have a resource-based controller. See controller
class Admin::OSystemsController < Admin::BaseController
def index
.......
end
def edit
.........
end
def update
..........
end
end
Resource is added to routes.rb like
map.namespace :admin do |admin|
............
admin.resources :o_systems,