Thiago Magalhães

Results 10 comments of Thiago Magalhães

I know that `meteor-jade` behavior is little different of `pure jade`, but I think you wrote wrong!! ``` jade - var emails = [{"name": "a", "address": "a@a"}, {"name": "b", "address":...

done here: https://github.com/vpulim/node-soap/pull/1169

Do it: ```js page('/', () => { page.redirect('/page/1') }) page('/notfound', console.log) page('/page/:number', console.log) page('*', ctx => { if (/^(\/\/)/.test(ctx.path)) { page.redirect(ctx.path.slice(1, ctx.path.length)) } else { page.show('/notfound') } }) page.start({hashbang: true})...

@ben-page and @dougwilson Removing the `DELIMITER` works!! ```javascript const _sql = sql.toString().replace(/DELIMITER ;?;/gm, '').replace(/;;/gm, ';') ``` Thanks!

And has another problem, if the file exists, even using the flag `--force`, we got a error:

Create a simple module (`lazy load`) That will work when you build using `almond` **Example** ``` js // lazy.js define(function () { var h = document.getElementsByTagName('head')[0]; function addScript(src, cb) {...

Well... semicolon is unnecessary...

@GeoffCox It's missing `bindable` in your component: https://svelte.dev/playground/21533c3193894775a2c3d14689277991?version=5.17.4

I know, but I don't have knowledge enough for develop it! Well, what kind of stuff I need learn or read to try make it? Can you give some tips?

@achillesrasquinha Is it not necessary pass the tag? **Example:** ```shell docker images --format "{{.Repository}}:{{.Tag}}" | grep "foobar" ``` ``` lagden/foobar:6.1.0 lagden/foobar:latest ```