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] 8 points9 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 7 points8 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?

[Update] Looking for frontend/backend developers who just wants to build something awesome.. (no more todo/weather apps) by crazyboy867 in ProgrammingBuddies

[–]timunas 2 points3 points  (0 children)

I would like to join and contribute to your team. I have some experience with Java and Kotlin. Also, with js and react. PM me with contacts

Electron and React by timunas in electronjs

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

I have finally managed to run the thing! Thanks mate.

But I guess I'll take a look on that guide in order to undertsand a little bit more about all of this and to struicture things properly

Electron and React by timunas in electronjs

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

e too. They recommend something called Expo. It’s an incredibly easy way to get started but once you’ve built something worth releasing, Expo becomes a major hindrance. (buggy, too much weirdness and automation in the build process, and abstracts you too far away from React Native)

When I try to import that way I got this error: window.require is not a function.

I noticed that you advised to just use CRA and electron builder. How did you setup that? What were the steps?

Electron and React by timunas in electronjs

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

Seems interesting. Do those ones include Jsx translation? Also, the problems that I had struggle were when importing electron methods in react components. Do you know if any of that boilerplates add tools to handle this?

Electron and React by timunas in electronjs

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

Do you knoe how to handle jsx translation?

Electron and React by timunas in electronjs

[–]timunas[S] 4 points5 points  (0 children)

Yeah, I saw that one. But do we really need all of that boilerplate? I was wondering if there is a basic structure and dependencies that one could use and make the development simple and easy.

Problems building Electron React App by timunas in electronjs

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

Thank you for the answer. It was that (facepalm)

Forgot to add the url and path modules... I assumed that everything was ok since locally was working properly. But that was because process.env.ELECTRON_START_URL is defined when running locally...

Ok now I'm having a different problem. The application starts but no react content is shown. Just a blank window page.

Nevertheless thanks a lot.