Dabrien 'Dabe' Murphy

Results 26 comments of Dabrien 'Dabe' Murphy

Unsetting `$NUXT_HOST` isn't the same as setting it to `0.0.0.0`... The latter indicates you want your app to listen on *all* interfaces — `localhost` ***and*** any external IP addresses. FWIW,...

+1 👍 I see it's available through the dashboard UI (v1 API) at: https://cloud.digitalocean.com/api/v1/billing/user_settings ``` { "alert_dollars_amount" : 1000, "alert_enabled" : false, "balances" : { "current_balance" : "123.45", "current_usage" :...

> Input on how Ack _should_ handle Unicode is welcome. (More such input may move it up the queue.) Sorry to bump a six-month-old thread, but I arrived here because...

Re: PR #351 @n1vux wrote: > It is not immediately obvious if this PR addresses the previously discussed issue #311 head-on, or is only approximately the same issue. I'm pretty...

(Personally, I think this is a more useful fix than #522)

I didn't even realize there was an [ack3](https://github.com/beyondgrep/ack3). *Mea culpa* I'm all for a more elegant solution than `join( '|', @pat )`... (I'm sure you could end up in backtracking...

> Ack already has ability to do multiple patterns with ls -l /etc/ | ack 'passwd|group' . Yup, I acknowledged that. But this is just gross, IMHO: ``` ack /etc...

@petdance I wanted to be able to do: ``` ls -ltr | ack --passthru "`grep -l SOME_TAG *`" ``` to get a list of all files, sorted by date, highlighting...

> For one, any | in the @pat needs escaping; is that on the user or on us? @n1vux Actually, it wouldn't. From `t/split-newline.t`: ``` MULTIPLE_REGEXES: { my @expected =...

> > Yet another issue I started to open was to include --regex-from= à la grep -f. > > That one I'm much less keen to pursue. > Aside: If...