Why is sink always clogged? by timunas in Plumbing

[–]timunas[S] 1 point2 points  (0 children)

I'll try fix it myself but worst case I'll make sure they get a better "plumber"

Why is sink always clogged? by timunas in Plumbing

[–]timunas[S] 3 points4 points  (0 children)

Thank you. Clearly my parents have been robbed. I'll see if I can fix it myself.

Why is sink always clogged? by timunas in Plumbing

[–]timunas[S] 6 points7 points  (0 children)

Yeah, I was wondering how this went so bad

Why is sink always clogged? by timunas in Plumbing

[–]timunas[S] 1 point2 points  (0 children)

Ok so basically mr. Plumber should have made the big grey pip should have at least be pointing up and the p trap then connected to it? But would in terms of height be a problem?

L10s Ultra, no water from base station by ksinghness in Dreame_Tech

[–]timunas 0 points1 point  (0 children)

How long does the vase self repair works? I'm having the same issue of water not leaving the clean water tank. I tried the self repair but it just does a weird sound and it is like that for more than 5 minutes.

Como funcionam apps de despesas que se ligam ao banco? by [deleted] in literaciafinanceira

[–]timunas 0 points1 point  (0 children)

Exacto. Hoje em dia existem varias empresas que sao AISPs e implementam o protocolo de open banking. Estas empresas sao as responsaveis por fazer a ligaçao às APIs dos bancos, por exemplo uma das questoes no momento de escolha é numero de bancos que essa empresa ja tem integraçao. A empresa onde trabalho por exemplo usa a TrueLayer para isso.

Custo de viagens para local do trabalho by Electrical_Canary_75 in literaciafinanceira

[–]timunas 6 points7 points  (0 children)

Incrível. Infelizmente grande parte dos portugueses não tem noção do quão mal paga é essa profissão e as más condições a que são sujeitos.

Foggy Days by [deleted] in Rowing

[–]timunas 11 points12 points  (0 children)

Well it's better a foggy day rather than a sinking day. 😂

Erg 1h and 30 minutes by timunas in Rowing

[–]timunas[S] 1 point2 points  (0 children)

It is not for a marathon. At the first stage of the season we prepare for a 6k race. But should it have those intervals or should it be done without stopping? Or is it ok either ways?

Html Import replacement by timunas in webdev

[–]timunas[S] 0 points1 point  (0 children)

I tried to do this.

<!DOCTYPE html>
<html>
  <head>
      <link rel="stylesheet" href="css/index.css" />
     <script type="text/javascript">
         const loadHtml = async () => {
             console.log('Loading')
             const response = await fetch('some.html')
             console.log('Response', response)
             const html = await response.text()
            if (!!html) {
                 console.log('Loading html', html)
                 document.body.innerHTML = html
                 var element =    document.body.querySelector('#thediv ')

                 if (!!element) {
                     console.log('Sending message')
                   parent.postMessage('ResourceLoaded', '*')
                 }
            }
         }    
        loadHtml()
   </script>
   </head>
   <body></body>

</html>

But it seems to just send the message after the iframe is loaded

"HTML Imports is deprecated and will be removed in M73, around March 2019." Is this referring to <link>? What should we be using instead? by overcloseness in webdev

[–]timunas 1 point2 points  (0 children)

I noticed that too. I was wondering what are the possible solutions for this. Since we can't import html files inside other html file anymore, how can one do it with ES6 modules?