Re: To what extent is sccache's distributed compilation usable?

2019-10-30 Thread Reuben Morais
> On 29. Oct 2019, at 18:53, Steve Fink wrote: > > On 10/28/19 9:17 PM, Marcos Caceres wrote: >> On Tuesday, October 29, 2019 at 3:27:52 AM UTC+11, smaug wrote: >>> Quite often one has just a laptop. Not compiling tons of Rust stuff all the >>> time would be really nice. >>> (I haven't figured o

Re: after NPAPI ?

2014-11-25 Thread Reuben Morais
> On Nov 25, 2014, at 13:22, Gijs Kruitbosch wrote: > > On 25/11/2014 14:22, rayna...@gmail.com wrote: >> I need to get the audio sample data and do some math on it, then play it in >> the speaker, with the minimum of latency (arround 20ms). >> >> Only the wasapi driver could allow this. > > H

Re: Proposed changes to autocomplete administrative levels

2014-05-15 Thread Reuben Morais
On May 15, 2014, at 9:29, Anne van Kesteren wrote: > On Wed, May 14, 2014 at 1:52 AM, Brian Nicholson > wrote: >> If we disagree with this proposal: >> >> What alternatives do we have? Given that countries require more than >> two administrative levels in postal address, it seems our options ar

Re: Always brace your ifs

2014-02-22 Thread Reuben Morais
On Feb 22, 2014, at 16:53, Mike Hoye wrote: On 2/22/2014, 1:04 PM, Jet Villegas wrote: >> goto ftw; > I have to admit, I was very surprised to learn that: > > - Using both -Wall and -Wextra doesn't get you -Wunreachable-code. > - The Clang manual lists documenting any of that that as a "todo". -

Re: Should we disable "autoplay" feature of HTMLMediaElement on mobile?

2013-12-09 Thread Reuben Morais
On Dec 9, 2013, at 19:17, Chris Pearce wrote: > On 12/10/2013 4:38 AM, Henri Sivonen wrote: >> On Sun, Dec 8, 2013 at 11:49 AM, Robert O'Callahan >> wrote: >>> I think it's important to have an easy way to mute/unmute the browser, but >>> disabling autoplay is probably not the right way to addre

Re: Removal of native notification systems on desktop platforms

2013-10-29 Thread Reuben Morais
On Oct 29, 2013, at 12:23 PM, Doug Turner wrote: > Nothing. Just time. Patches accepted. Not really? Last time I looked into this one of the problems was that AlertsService exposes an alertfinished event (for when the notification goes away) that we can’t implement when using NC, since NC not

Please specify if a clobber is Windows only in the CLOBBER file

2013-10-05 Thread Reuben Morais
In my experience, most of the recent changes to CLOBBER have been made to fix Windows-only build system bugs. It'd be helpful to people working on Linux and OS X if you could include in the CLOBBER file whether the clobber is only needed on Windows. (That way you can do |cd $OBJDIR && touch CLO

Re: JavaScript Style Guide. Emacs mode line.

2013-09-13 Thread Reuben Morais
On Sep 11, 2013, at 12:04 PM, Scott Johnson wrote: >>> I understand the merit of leaving the code as is since hg blame won't work >>> nicely with such file-wide format change as in step-1. >>> (Or maybe we can teach hg blame to ignore such change, etc. but maybe too >>> much work: the idea would b

Re: Getting the current release version

2013-08-30 Thread Reuben Morais
On Aug 30, 2013, at 1:35 PM, Eric Shepherd wrote: > On 2013-08-30 16:13:50 +, Jesper Kristensen said: > >> I use http://svn.mozilla.org/libs/product-details/json/firefox_versions.json >> I use that because that was what the download button on www.mozilla.org did. >> I don't know if the downl

Re: smartmake-like functionality has landed in mach

2013-05-03 Thread Reuben Morais
On May 3, 2013, at 8:53 AM, Ehsan Akhgari wrote: > On 2013-05-03 3:21 AM, Mike Hommey wrote: >> On Fri, May 03, 2013 at 02:55:09AM -0400, Ehsan Akhgari wrote: Does it also build browser/app on OSX after every build? Since that is pretty much required all the time and often missed. >>> >

Re: Storage in Gecko

2013-04-26 Thread Reuben Morais
We use IndexedDB extensively in a lot of the WebAPIs, see Contacts, Settings, SMS, MMS, Push, NetworkStats… Right now there's a lot of boilerplate[1] involved in setting up IndexedDB, and people end up duplicating a lot of the boilerplate code. It'd be great to see a more polished wrapper aroun

Re: Use of MOZ_MAKE_FLAGS Considered Unnecessary

2012-11-29 Thread Reuben Morais
On Nov 29, 2012, at 10:10 AM, Mounir Lamouri wrote: > If you really want to get rid of MOZ_MAKE_FLAGS, maybe you could add a > new variable to just set the -j value with a default to N if most people > thing this is the best value. +1. I often switch between -j4 and -j2 because the former makes m