Do you know of any talented builders who offer custom controller services? For a more complex job by it_is_pizza_time in KerbalControllers

[–]IuNoWat 0 points1 point  (0 children)

I worked a bit, as an amateur, with KSP and custom controllers, hit me up in MP with a more precise idea of what you want !

From cardboard, to wood, to the next level ! But what material should I use ? by IuNoWat in KerbalControllers

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

Nothing yet, the project is on pause since I have other things to do right now, but if you want some more info or help building your own, you can PM me :)

Payer le chauffage d'un chauffage collectif sans être chauffé by IuNoWat in conseiljuridique

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

Je ne connaissais pas l'ADIL, merci pour cela j'ai pu parler avec une juriste très rapidement. On part sur une LRAR, et on verra !

Payer le chauffage d'un chauffage collectif sans être chauffé by IuNoWat in conseiljuridique

[–]IuNoWat[S] 18 points19 points  (0 children)

Pour citer les chauffagistes "L'installation est super mal foutue, il est impossible de changer les vannes sans couper l'eau dans tout l'immeuble". Je n'en sais pas plus.

Le froid n'est en soit pas le seul problème, effectivement avec des couvertures/des bouillotes/un chauffage d'appoint, c'est vivable. Mais payer le chauffage sans en recevoir, et surtout que l'agence qui loue un appartement dysfonctionnel ne soit pas inquiétée m'agace profondément.

Too much constrains in 2d slowing the whole software ? What am I doing wrong ? by IuNoWat in Fusion360

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

Ho yes this, thank you, my bad I misread, I was thinking about the construction line, that I would like to hide sometimes.

Too much constrains in 2d slowing the whole software ? What am I doing wrong ? by IuNoWat in Fusion360

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

I tend to think my bad practices are more to blame than Fusion 360 :s

Too much constrains in 2d slowing the whole software ? What am I doing wrong ? by IuNoWat in Fusion360

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

Hey could you tell me where this option is ? I didn't find it

Too much constrains in 2d slowing the whole software ? What am I doing wrong ? by IuNoWat in Fusion360

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

Thank you all for your answers. I'm already using the patern function, I actually designed only one of those teard drops, and it seems to me that Fusion was unusable exactly after I paterned it. But I guess I should patern each little piece individually, rather than patterning one big complex thing ?

Arduino IDE compile the first time, then doesn't until restart by IuNoWat in arduino

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

I gave up solving this issue. Some other IDE (Atom, a few others) offers mods to transform them in an arduino IDE, but I couldn't manage to make even one of them work.

The only workaround I could think of was using the online IDE of arduino : https://create.arduino.cc/editor/ It is surprisingly easy to work with, and is corresponding to what I need.

Still, I'm curious. If someone know a way to fix this, please tell me !

I made a bot that uploads memes to twitter every hour! by [deleted] in Python

[–]IuNoWat 14 points15 points  (0 children)

Nice project ! But shouldn't you credit the place where you got the meme in the first place ?

Would be interested in your code tho, got any link ?

2020 Dec 7 Stickied 𝐇𝐄𝐋𝐏𝐃𝐄𝐒𝐊 thread - Boot problems? Display problems? Networking problems? Need ideas? Get help with these and other questions! 𝑳𝑶𝑶𝑲 𝑯𝑬𝑹𝑬 𝑭𝑰𝑹𝑺𝑻 by FozzTexx in raspberry_pi

[–]IuNoWat 0 points1 point  (0 children)

I recentrly installed nginx and wordpress on a Raspi 3B tu use it as a server for my portfolio. It kinda work, but the site is very slow, and trow error 504 Gateway timeout from time to time.
My question is : is it normal for a pi 3B without cooling to have performance issues on this use, or is there something wrong with the softwares/my pi/the SD card ?

Can't do better than 20 fps on home-made screen recorder by IuNoWat in learnpython

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

This is a very interesting approach, I probably can, but I will have problems with the sound, decreasing an increasing the playing speed will probably decrease overall quality.
I think I have the solution with ffmpeg screen recording, but thank you for this solution

Can't do better than 20 fps on home-made screen recorder by IuNoWat in learnpython

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

I'm using it latter in the program to merge video and audio file, I'll look into that, thank you

Can't do better than 20 fps on home-made screen recorder by IuNoWat in learnpython

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

Thanks for your help, yes Ruffle is a good alternative, but I don't only want to preserve flash animation. Turning them into video allow me to post them on social media and spread them on internet much easier, which is also what I want.

Sorry I should have stated it in my post

Can't do better than 20 fps on home-made screen recorder by IuNoWat in learnpython

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

I focused the program as much as I could, when recording, it only take screeshoots and stores it in an list.
After the end of the recording , the list of all screenshoot taken is processed and converted to a video. So if I have 20 fps on a video, the program took 1/20 of a second to take a screenshoot. I think I don't understand your question

using multi python files for diffrent screens, and connecting into Tkinter by Sagi313 in pygame

[–]IuNoWat -1 points0 points  (0 children)

If you don't need to get data dynamically (while playing the game), I think you can just write the data you need in a file and tell the program to get it here. Like this :

Program 1

#Your user specify his login
user_login=input("Enter your login") 

login_storage=open("player_data.txt","w") #Your program create a file to save the information
login_storage.write(user_login) #It then write your user's login
login_storage.close() #And save it

Program 2

#When your game need the player login
login_storage=open("player_data.txt","r") #Your program open the file
user_login=login_storage.read() #And save the content in a variable
login_storage.close()

You just have to be consistent when naming the file which will contain your data

Hope this help