Displaying 20 results from an estimated 60 matches for "teaser".
Did you mean:
teases
2007 Aug 08
1
Buddy watch and the hint priority - brain teaser
Apologies if this is a resend, but I've sent this 12 hours ago and still
can't see it on the list.
Hi,
I've just started to setup my phones with Buddy watch. Basically, it all
works fine when using the simple example on the wiki:
exten => 123,hint, SIP/some_sip_reg
exten => 123,1,SIP/some_sip_reg
BUT, what I need to do is dynamically decide where the hint checks for buddy
2005 Aug 22
1
XML Builder question (Brain Teaser? or At A Total Loss?)
I''m trying my best to get Builder to give me a nested representation
of my nested database tables, but I think I''m not getting any closer
to a solution. In fact, now I''m in Syntax Error land, rapidly
approaching Missed Deadline country. Perhaps you could be the one to
save my ass?
Basically, I have Images which have many Options (intended to
represent
2011 Jun 18
3
Unconditionally transfer files
Is there a way to make rsync unconditionally transfer files,
i.e. create them anew even if the target already exists and is
identical to the source ?
rsync -I looks closer but still avoids transferring the files.
--
Andr? Majorel http://www.teaser.fr/~amajorel/
2002 Mar 05
1
oggenc rc3 fails on this one
OggEnc rc3 has trouble with this file. It adds high frequency gunk
to the percussive synth part. Lame encodes it fine.
http://www.teaser.fr/~amajorel/misc/nabogg.wav
http://www.teaser.fr/~amajorel/misc/nabogg.ogg
--
André Majorel <URL:http://www.teaser.fr/~amajorel/>
std::disclaimer ("Not speaking for my employer");
--- >8 ----
List archives: http://www.xiph.org/archives/
Ogg project homepage: http://www.xi...
2008 Aug 06
4
Union of columns of two matrices
I was posed the following problem/teaser:
given two matrices, come up with an "elegant" (=fast & short) function that
returns a matrix with all and only the non-duplicated columns of both
matrices; the column order does not matter. In essence, a matrix equivalent
of union(x,y), where x and y are vectors. I could not come wi...
2006 Jul 07
4
Help installing Ferret
http://wiki.rubyonrails.com/rails/pages/HowToIntegrateFerretWithRails
I followed everything here but at the last I get when loading page
get_results
Can only handle a String or a Query.
RAILS_ROOT: script/../config/..
Application Trace | Framework Trace | Full Trace
#{RAILS_ROOT}/app/models/result.rb:27:in `search_each''
#{RAILS_ROOT}/app/models/result.rb:27:in `search_index''
2012 Jul 27
1
[LLVMdev] proposal for exploiting undefined behavior much more aggressively
...t out that it is a non-goal
> for the project to be actively hostile to users of the compiler. :) It is
> useful to have debugging tools for people who really care, but "exploiting"
> undefined behavior just for the sake of breaking code is a non-goal.
>
Also, as a bit of a teaser, I think Richard Smith is going to be looking
into providing much more extensive optional *checking* of undefined
behavior. Essentially, '-fcatch-undefined-behavior' may grow some serious
teeth. This should allow users to check their code fairly aggressively for
UB but not needlessly punish...
2005 Oct 31
1
Truncating with decoding/recoding
Hello all. Thanks for FLAC. It's served me well for the past few
years.
Is there a program out there to truncate a FLAC file without
decoding/recoding it ? Preferably command-line (I already know at
what point I want to truncate it).
Thanks in advance.
--
Andr? Majorel <URL:http://www.teaser.fr/~amajorel/>
Do not use this account for regular correspondence.
See the URL above for contact information.
2007 Aug 20
1
Looking inside device files
...les ? The goal
is to copy the contents of a block device to a regular file
incrementally.
Short of that, even just getting it to dump the block checksums of
the content a block device would help (if I know which blocks are
out of sync, I can fix them with dd).
--
Andr? Majorel <URL:http://www.teaser.fr/~amajorel/>
Do not use this account for regular correspondence.
See the URL above for contact information.
2006 Oct 04
1
Slideshare.net (we use Mongrel)
Hi guys :-)
Just a note to let you know that today we launched Slideshare (
slideshare.net) into open beta. It''s a powerpoint-sharing tool (with a
twist) and the app is served with Mongrel.
A teaser on techcrunch:
http://www.techcrunch.com/2006/10/04/introducing-slideshare-power-point-youtube/
Zed, a huge thanks for developing this server. If anybody needs pointers on
using Mongrel in a high-volume deployment situation, watch
blog.slideshare.net. I''ll have a few posts up soon.
Take...
2011 Mar 13
1
Excited about the near future...
Some already know, but I think it deserves a bit of a attention here as well:
It looks like we're about to get new features in R that will be very powerful!
That should be a good enough teaser for now...
/Henrik
PS ...and thanks for making it available plus credits to similar
efforts by others.
2006 Feb 05
1
classifying packets and ports
...n port 443 or 110 for ssh connection,
but it wont connect, I even test it using telnet and it show up ssh, but it
wont connect with my ssh client, but normal pop and https works. How do they
block my ssh connection on port 443, but normal https work?
Do they use TOS with iptables?,, bit of a brain teaser for me
Thanks
Sew
_______________________________________________
LARTC mailing list
LARTC@mailman.ds9a.nl
http://mailman.ds9a.nl/cgi-bin/mailman/listinfo/lartc
2013 Dec 03
1
Guard against destination = existing directory
...ectory, rsync creates
_dest_/$(basename _source_). Not what I want.
Is there an option similar to GNU install -T or GNU cp -T which
guarantees that if _dest_ exists and is a directory, rsync will
either remove it or fail, but NOT use it as a path ?
Thanks in advance.
--
Andr? Majorel http://www.teaser.fr/~amajorel/
2012 Nov 28
2
Opus for ASR - update and questions
For the last couple months, Nuance has performed extensive testing on how the Opus codec performs in the speech recognition task. I'm hoping to publish a full report in the coming months, but until then all I have is a teaser. Opus performed within about 1% of the WER (Word Error Rate) of unencoded audio. This is compared to about 5% for Speex, which was the previous codec of choice. Well done to you all!
As Nuance considers migrating to Opus, we'd like to consider the topic of transport. Traditionally we'v...
2009 Oct 13
4
Creating a list of empty lists
Well here is one more brain-teaser related to assigning stuff into a
list of list. What if I need to create a new list of empty lists? I have
actually got a solution to this problem:
l = list(list())
for ( i in sequence(length-1) )
{
l = list(unlist(l,recursive=FALSE), list())
}
But it is not very ne...
2007 Aug 08
2
How to write a function with a return value in Asterisk
...s associated. ReturnSipReg would find that out for me.
Unfortunately, doing it in two steps (by setting a variable and using it
after) can't be done, I need it to all be done in the same Asterisk
priority. See my previous email for background ("Buddy watch and the hint
priority - brain teaser").
Any help is extremely appreciated.
Mike
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.digium.com/pipermail/asterisk-users/attachments/20070808/f12debb6/attachment.htm
2008 Feb 28
2
Asterisk Voicemail for iPhone
Heres a little teaser for those of you with iPhones
Asterisk Voicemail for iPhone allows you to check your voicemail
messages on your house or business line from your iPhone. You can
think of it as "Visual Voicemail", but for your Asterisk PBX numbers
instead of your AT&T cell number. The technology behin...
2006 Jun 30
3
New release of ez-where plugin
...'']
foo <=> (1..5) #=> ["foo BETWEEN ? AND ?", 1, 5]
id === [1, 2, 3, 5, 8] #=> ["id IN(?)", [1, 2, 3, 5, 8]]
<, >, >=, <= et all will just work like you expect.
So you can use blocks and ruby ops for very complex conditions. Here
is a teaser:
# find all articles with title, body or extended LIKE "%#{params
[:search]}%"
# AND (author.name = params[:author] OR comment.body LIKE "%#{params
[:search]}%")
@articles = Article.find_where(:all, :include => [:author,
{ :comments => :users }]) do
|article, auth...
2005 Dec 08
2
Confusing lock problem in rails
...doc[:id] = id
doc[:email] = @@index[id][''email'']
doc[:contents] = @@index[id][''contents'']
doc[:date] = @@index[id][''date'']
ind = doc[:contents].downcase.index(query)
ind = (ind > 20) ? (ind - 20) : 0
doc[:teaser] = doc[:contents][ind..(ind + 220)]
docs << doc
end
[count, docs]
end
def mark_as_viewed(user_id)
# user = self.users.find(user_id)
end
def self.delete_old
@p = Pref.find_by_setting(''autodelete'')
if @p and @p.value.to_i > 0
val =...
2006 Feb 20
2
How to use Speex Cross-Browser, Cross-Platform on Web Pages
...t to offer to download.
I am happy to give separate tech support instructions for different browsers and
operating systems, because my hope is that people will keep coming back to my
site for educational information. I may offer WAV or MP3 formats for more
casual users, or perhaps just short "teasers" to get them to download the
decoders for the more efficient speex format.
My hope is by getting an answer to this question, I can help promote the use of
speex on the web. I certainly plan to send any solutions to the Firefox team,
so that they recognize and offer to download players for th...