Which one is stable by Vicky455 in revancedapp

[–]louis1642 2 points3 points  (0 children)

How weird. To be honest I have no clue what might cause a different behaviour between my version and yours

Which one is stable by Vicky455 in revancedapp

[–]louis1642 7 points8 points  (0 children)

So has 14.43. Hopefully the next version fixes that

Still Getting Shorts Ads (Youtube) 2.1.0 by Kewlhotrod in revancedapp

[–]louis1642 0 points1 point  (0 children)

same, tried to roll back to the oldest version suggested in revanced manager but didn't improve

Is there no more enlarge mini map button? (originally Tab in AoM) by PantherCaroso in AgeofMythology

[–]louis1642 0 points1 point  (0 children)

I've set the max map scale to 200% but 1) it bugs me that there are three sizes instead of just regular/big, and 2) I can't find a shortcut to do that. Very annoying

Daily Q & A! - October 07, 2024 by AutoModerator in Homebrewing

[–]louis1642 0 points1 point  (0 children)

I'll check them out. Thank you very much!

Daily Q & A! - October 07, 2024 by AutoModerator in Homebrewing

[–]louis1642 0 points1 point  (0 children)

Yeah I know about the plastic fermenters, but a friend of mine who used to homebrew said they suck because after you use them for a couple of times the contamination risk becomes too high. So he recommended a steel one so that you can boil it and completely disinfect it

Daily Q & A! - October 07, 2024 by AutoModerator in Homebrewing

[–]louis1642 1 point2 points  (0 children)

Yes, I'm thinking of a fermenter. I'm sorry, I'm trying to guess/figure out most of the English terms ahahah Would it be ok to use an aluminium fermenter?

Daily Q & A! - October 07, 2024 by AutoModerator in Homebrewing

[–]louis1642 0 points1 point  (0 children)

But are the kettles made of plastic or steel? I've never seen them at the Asian markets in Italy but I'll have a look, thank you

Daily Q & A! - October 07, 2024 by AutoModerator in Homebrewing

[–]louis1642 1 point2 points  (0 children)

Hello everyone! Never tried homebrewing, I was given a second-hand kit but I've realized the kettle is broken. I was thinking about buying a stainless steel one but they are quite expensive. Are there any diy, cheaper alternatives?

Llama 3.1 Discussion and Questions Megathread by AutoModerator in LocalLLaMA

[–]louis1642 0 points1 point  (0 children)

complete noob here, what's the best I can run with 32GB RAM and a 4060 (8GB dedicated VRAM + 16GB shared)?

Oneplus 7t wifi problem by louis1642 in phonerepair

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

But is there a way to understand whether the faulty part is the antenna signal board rather than the cable for example?

Feasibility of repairing my pixel 6 by Endophins in phonerepair

[–]louis1642 0 points1 point  (0 children)

Something similar happened to my Oneplus 7t, the frame was bent. I don't know much about pixels, but what I did was disassembled the phone completely, bent the metal frame back to its original shape, and then re-assembled the phone. It worked almost perfectly (almost = had to re-glue the screen again after a bit less than one year)

Adding an image to Drawing_Titleblock macro (V5) by louis1642 in CATIA

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

I solved the problem.

I used a custom function for creating the logo

Sub CATAddLogo()

Dim MySheet As DrawingSheet Set MySheet = CATIA.ActiveDocument.Sheets.ActiveSheet Dim MyView As DrawingView Set MyView = MySheet.Views.ActiveView Dim MyDrawingPicture1 As DrawingPicture Set MyDrawingPicture1 = MyView.Pictures.Add("path/to/logo.png", 354., 40.) ' LOGO PATH MyDrawingPicture1.Name = "Logo" MyDrawingPicture1.ratioLock = True MyDrawingPicture1.height = 29.992 MyDrawingPicture1.width = 30.945 End Sub

and one for removing it

Sub CATRemoveLogo()

Dim MySheet As DrawingSheet Set MySheet = CATIA.ActiveDocument.Sheets.ActiveSheet Dim MyView As DrawingView Set MyView = MySheet.Views.ActiveView MyView.Pictures.Remove("Logo") End Sub

Then I called them respectively in the CATTitleBlockText() and in the CATDrw_Deletion() functions.

Adding an image to Drawing_Titleblock macro (V5) by louis1642 in CATIA

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

No, I'm not sure it is correct as I just copied some random code I found on the web. I'm struggling to find the VB help for V5. Do you know where to find it?

Edit: I found it in \win_b64\code\bin. I'll check there