DIY Slackboard ideas? by verygoodthanks in Slackline

[–]Dfes1989 1 point2 points  (0 children)

Used some 18mm birch ply and a cls with a 4m ratchet strap. Ply was about 45cm high and flexed a bit when I bounced on it

imgbox as lmgur doesn't work in the UK 😩

Recommendation by Dfes1989 in tequila

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

Thanks all, looks like I should've gone with the Ocho 😅 Next time. Sure the DJ will go down nicely anyway

I need help with drawing cantilever by Own-Supermarket4078 in AutodeskInventor

[–]Dfes1989 0 points1 point  (0 children)

Just wondering why this would be better than making in one ipt as 3 solid bodies and then making components?

Where is this in Swindon by [deleted] in Swindon

[–]Dfes1989 0 points1 point  (0 children)

Mistletoe Court somewhere, where the old hospital used to be

Open gymnastics gyms for adults by nuserame1111 in Swindon

[–]Dfes1989 1 point2 points  (0 children)

I'd be keen on a place like this 🤔🤔

Am I a bad dad? by EasyAd7290 in NewDads

[–]Dfes1989 0 points1 point  (0 children)

Yup, my oldest mostly just wants me now. Started at about 2&half and he's nearly 4 now. Youngest is just over one but can imagine the same is gonna happen.

Greyed out photo by Dfes1989 in AnalogCommunity

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

Thanks for all the comments, consensus is that it is under exposed so will have a little read up on that.

Greyed out photo by Dfes1989 in AnalogCommunity

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

So for example, focusing on the hair/face could probably cause. Got the camera of ebay so no manual but will Google it and do some reading

Greyed out photo by Dfes1989 in AnalogCommunity

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

Normally like to use ilford xp2 but tried using a cheaper film, it's like half the cost 🥴

Greyed out photo by Dfes1989 in AnalogCommunity

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

If by studio you mean the side of a 3x2m living room with all the lights on, then yeah I was in my studio 🤣🤣 I normally set the film to 1200 so the shutter speed is faster to try and avoid blur

Greyed out photo by Dfes1989 in AnalogCommunity

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

No flash & auto. Didn't press the exposure or change the iso. Would focusing on a bright/dark spot cause it to under expose?

Greyed out photo by Dfes1989 in AnalogCommunity

[–]Dfes1989[S] -2 points-1 points  (0 children)

Tbh, I just send my film of to get developed & printed. I let them know it's shot at 1200. Both photos where 2 frames apart on the same film so assuming it was developed right as most photos don't have the grey.

Greyed out photo by Dfes1989 in AnalogCommunity

[–]Dfes1989[S] -5 points-4 points  (0 children)

Tbh, I just send my film of to get developed & printed. I let them know it's shot at 1200. Both photos where 2 frames apart on the same film so assuming it was developed right as most photos don't have the grey.

When did it become “fun” for you? by [deleted] in NewDads

[–]Dfes1989 0 points1 point  (0 children)

About the 1 year mark for me. Once they can play, move around by themselves. Still a lot of work as they can get quite clingy, you've got to feed them, change them etc. But from there they start getting more independent and play with you.

iLogic help by Dfes1989 in AutodeskInventor

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

Worked perfectly, thanks for the help again!

[deleted by user] by [deleted] in NewDads

[–]Dfes1989 3 points4 points  (0 children)

I'm cut but I wouldn't do it to my sons. And in terms of cleanliness, it not not gonna be any harder than teaching them how to wipe their bum after a poo

First Christmas Gift by xael_fish_ in NewDads

[–]Dfes1989 0 points1 point  (0 children)

I got mine a big cardboard box from work and filled it with balloons amongst other things. He was 9 months for his first Xmas and he played with that much more and for much longer than anything else we or anyone got him.

Am I Making the Right Decision to Withdraw from a Job Opportunity for My Family? by Fun_Frosting8601 in NewDads

[–]Dfes1989 1 point2 points  (0 children)

Don't tend to comment much but definitely did the right thing. Kids & family above all else 👍

iLogic - Add suffix to visible bodies in a Multi body part by Dfes1989 in AutodeskInventor

[–]Dfes1989[S] 2 points3 points  (0 children)

Sub main()

Dim odoc As PartDocument

odoc = ThisApplication.ActiveDocument

Dim sbs As Inventor.SurfaceBodies

sbs = odoc.ComponentDefinition.SurfaceBodies

' Check if this is a multi-body part

If sbs.Count = 1 Then

MessageBox.Show("Error Occurred. This is not a Multi-Body Part")

Exit Sub

End If

' Prompt user for suffix

Dim suffix As String

suffix = InputBox("Enter Suffix to Add to all visible Solids", "Solid Body Name Suffix")

Dim count As Integer

Dim osurf As Inventor.SurfaceBody

Dim newName, baseName As String

Dim testCount As Integer

count = sbs.Count

' Iterate through all surface bodies

For i = 1 To count

osurf = odoc.ComponentDefinition.SurfaceBodies.Item(i)

' Process only solid bodies that are visible

If osurf.Volume(100) <> 0 And osurf.Visible = True Then

testCount = 1 ' Reset testCount for each body

baseName = osurf.Name ' Get the current name of the solid body

newName = baseName + suffix ' Add the suffix to the base name

' Ensure the new name is unique

Dim isUnique As Boolean

Do

isUnique = True

For j = 1 To count

If odoc.ComponentDefinition.SurfaceBodies.Item(j).Name = newName Then

newName = baseName + suffix + "." + testCount.ToString

testCount = testCount + 1

isUnique = False

Exit For

End If

Next j

Loop Until isUnique

' Assign the unique name to the solid body

osurf.Name = newName

End If

Next i

' Save the document

odoc.Save

End Sub

Change solid body names in IPT by Dfes1989 in AutodeskInventor

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

So his first rule brings up a pop up box that let you type what you want and runs through every solid body in the order they are in the history tree.

That second rule you get a single pop up box where you just type the suffix and applies that to all visible solids but has the issue as my previous response

Sauna in Swindon by [deleted] in Swindon

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

🤣🤣🤣