search for: lanugages

Displaying 11 results from an estimated 11 matches for "lanugages".

Did you mean: languages
2004 Sep 15
1
Character encoding problems
Hi, I am having problem with filenames in a "Linux Samba server <-> Linux Samba Client" setup. The server has filenames with lanugage specific characters (???) in them. When mounted on the Linux workstation the characters are replaced by question marks. If I connect to the server with a Windows machine there is no problem with the characters. Also, if I connect with smbclient to
2011 Jun 11
15
after initialize blowing up---help
All, Can anyone see what''s happening here? ================== migration ======================= class CreateGreetings < ActiveRecord::Migration def self.up create_table :greetings do |t| t.string :greet t.string :language t.integer :count t.timestamps end end def self.down drop_table :greetings end end ================== greeting.rb
2012 Feb 17
8
Puppet syntax check for Komodo Edit
Hi folks, Recently I''ve been using a MacBook Pro (Lion) as a workstation, I''m feeling good even if still missing some tool (coming from Ubuntu environment). I''d like to have a cross platform IDE with basic Puppet syntax highlight, so far the one that seems to better fit my needs is Komodo Edit v7, that is mentioned here:
2011 Jun 28
2
[LLVMdev] Box removal
In the creation of dynamic languages we often have to box values together. For instance, take the following expression: IntObj c = sqrt((a*a)+(b*b)); Here, most likely, a bytecode interpreter would execute this as "mul_ints", "add_ints", "sqrt", etc. Inside these primitive functions we would have to unwrap our IntObj types, add the values, allocate a new object and
2009 Apr 12
3
Vorbis-/Speex-Audio for Movie-Archiving
...uage and the 'main audio-track' not completely free of language, but who cares, since the 'main-audio-track' is always played concurrently with one one of the speech-tracks. Of course speex would have to be able to efficiently encode language with a little mumble-jumble of other lanugages subtracted ;) Has anyone ever thought about this or is it complete and utter nonsense? Thanks for your time and of course for developing the best free audio-codecs! Regards, Hannes
2009 Apr 12
3
Vorbis-/Speex-Audio for Movie-Archiving
...uage and the 'main audio-track' not completely free of language, but who cares, since the 'main-audio-track' is always played concurrently with one one of the speech-tracks. Of course speex would have to be able to efficiently encode language with a little mumble-jumble of other lanugages subtracted ;) Has anyone ever thought about this or is it complete and utter nonsense? Thanks for your time and of course for developing the best free audio-codecs! Regards, Hannes
2006 Sep 07
9
LiteSpeed
Yo Zed, Just curious -- what do you think of the LiteSpeed server? Is it better than Lighty? Does it (gasp!) also serve Rails apps like Mongrel? I think I read that LiteSpeed doesn''t have proxying support. Thanks, Joe __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com
2009 Feb 20
0
Vorbis-/Speex-Audio for Movie-Archiving
...uage and the 'main audio-track' not completely free of language, but who cares, since the 'main-audio-track' is always played concurrently with one one of the speech-tracks. Of course speex would have to be able to efficiently encode language with a little mumble-jumble of other lanugages subtracted ;) Has anyone ever thought about this or is it complete and utter nonsense? Thanks for your time and of course for developing the best free audio-codecs! Regards, Hannes P.S: please keep me in CC
2009 Feb 25
0
Vorbis-/Speex-Audio for Movie-Archiving
...uage and the 'main audio-track' not completely free of language, but who cares, since the 'main-audio-track' is always played concurrently with one one of the speech-tracks. Of course speex would have to be able to efficiently encode language with a little mumble-jumble of other lanugages subtracted ;) Has anyone ever thought about this or is it complete and utter nonsense? Thanks for your time and of course for developing the best free audio-codecs! Regards, Hannes P.S: please keep me in CC
2009 Feb 25
0
Vorbis-/Speex-Audio for Movie-Archiving
...uage and the 'main audio-track' not completely free of language, but who cares, since the 'main-audio-track' is always played concurrently with one one of the speech-tracks. Of course speex would have to be able to efficiently encode language with a little mumble-jumble of other lanugages subtracted ;) Has anyone ever thought about this or is it complete and utter nonsense? Thanks for your time and of course for developing the best free audio-codecs! Regards, Hannes P.S: please keep me in CC
2010 Sep 01
6
Why is vector assignment in R recreates the entire vector ?
Hello all, A friend recently brought to my attention that vector assignment actually recreates the entire vector on which the assignment is performed. So for example, the code: x[10]<- NA # The original call (short version) Is really doing this: x<- replace(x, list=10, values=NA) # The original call (long version) # assigning a whole new vector to x Which is actually doing this: x<-