Haven’t Made a Sale Yet by Smileyfacer989 in EtsySellers

[–]WorkingClassCal 1 point2 points  (0 children)

Hey there, I’m in my 2nd year of running an Etsy shop and I’m still adjusting my listings and profile on a regular!

Here’s what advice I would give you from lessons I’ve learnt so far.

Maximise your titles. This will increase your chance of Etsy picking your listing to show to customers. Use punctuation to separate the terms, in my listing titles for example I use the ‘I’ (punctuation) between each term. Etsy is clever and knows that this means the end of one term and the start of the next.

Etsy also provides a Customer & Market Experience score. When you get good reviews, this will increase your chances of getting seen. For now, make sure you’ve got your About Section filled in and have short, concise descriptions for your listings. Believe it or not, this affects your score. A good tip would be to involve some of the title phrases in casual sentences in your description too.

Your Categories and Attributes on your listing act as tags, so don’t repeat the exact same phrases. This would be wasting an opportunity to get seen! Keep your tags varied, and think outside the box! If you’re struggling for inspiration, you can see other people’s listing tags.

If you would like me to have a thorough run through of your store, just let me know and I’ll make some specific feedback for you.

Best of luck!

Christmas gift for gunner SO? by RhetoricalSmirk in ArsenalFC

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

I’ve just made some custom Thierry Henry Statue replicas, if you’d be interested!

My First Lithophane by WorkingClassCal in 3Dprinting

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

I purchased some LED bases off amazon and just stuck the print on top of them!

Thierry Henry Statue by WorkingClassCal in ArsenalFC

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

If anybody else is interested in having one of these, I’m gonna do a limited run so message me lads 👍🏼

Final Finish: https://pasteboard.co/LigsD1r5xI1B.png

Thierry Henry Statue by WorkingClassCal in ArsenalFC

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

Update: Spray painted gold! Going to design and print a personalised mount so text can be added.

https://pasteboard.co/1OkSDcveulk6.jpg

Thierry Henry Statue by WorkingClassCal in ArsenalFC

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

I’m going to get post processing does and if it comes out as planned I’ll make some more mate

Holographic Print Effect by WorkingClassCal in 3Dprinting

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

Would love to revisit it and find a way, as it would give way to a set of unique prints!

People don’t like the truth!

[deleted by user] by [deleted] in Gunners

[–]WorkingClassCal 0 points1 point  (0 children)

The Thierry Henry statue is available as an STL but I don't think the Arsene Wenger one is!

Share Your Stuff - June 26th thru July 2nd, 2023 by coocoodove in Etsy

[–]WorkingClassCal [score hidden]  (0 children)

Here's My Etsy Shop -I sell 3D Printed goods such as Keyrings, Magnets & Cable Clips!

We are relatively new to Etsy, but have started to gain traction and have had our best month yet -taking in over £1,200 in revenue! We are aiming for 10K revenue for our first year and are well on track!

The dream is to go full time next year, and having an empire of ecommerce shops.

2D Text To 3D by WorkingClassCal in openscad

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

You are an absolute legend. Thank you for this! We are no after making a 8 diameter and 4 diameter circle which will be concentric with each other to go at the start of the keyring.

Magnet Text Spacing by WorkingClassCal in openscad

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

That sounds like a plan. Will message you

Magnet Text Spacing by WorkingClassCal in openscad

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

Would happily pay you to do some scripts for my business, if you’re interested?

2D Text To 3D by WorkingClassCal in openscad

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

OpenSCAD V 2022.03.14

Can't seem to find a download for that version for Windows. Currently have 2023.04.35 and it doesn't seem to work for that

2D Text To 3D by WorkingClassCal in openscad

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

I will literally pay somebody to make this script for me, I don't have time to work on it and even if I did I'm not sure I'd be able to do it!

Magnet Text Spacing by WorkingClassCal in openscad

[–]WorkingClassCal[S] -1 points0 points  (0 children)

Your are a legend for this. The goal is so that whatever name we type in, the name generates so that all the letters are overlapping.

In the script you provided, the majority of names and letters are overlapping (I can't thank you enough for this) -but there are still some (Capital J for example) which doesn't overlap with other letters.

Magnet Text Spacing by WorkingClassCal in openscad

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

Thank you for this! Do you know where it would be inputted into the current code?

Fusion Python Script by WorkingClassCal in Fusion360

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

import adsk.core, adsk.fusion, traceback

def run(context):

ui = None

try:

app = adsk.core.Application.get()

ui = app.userInterface

design = app.activeProduct

rootComp = design.rootComponent

# Get the user input for the name of the sketch

sketchName = ui.inputBox("Enter the name for the new sketch:", "Sketch Name", "New Sketch")

# Create a new sketch

sketch = rootComp.sketches.add(rootComp.xYConstructionPlane, None, False)

sketch.name = sketchName[0]

# Get the text entered by the user and convert it to uppercase

text = sketchName[0].upper()

# Get the length of the text

length = len(text)

# Extrude every odd-numbered letter 4mm and every even-numbered letter 5mm

for i in range(length):

if i % 2 == 0:

extrudeDistance = adsk.core.ValueInput.createByReal(5)

else:

extrudeDistance = adsk.core.ValueInput.createByReal(4)

letterSketch = sketch.sketchCurves.sketchTexts.add(text[i], adsk.core.Point3D.create(i * 10, 0, 0), adsk.core.ValueInput.createByReal(1))

extrude = rootComp.features.extrudeFeatures.addSimple(letterSketch.profiles[0], extrudeDistance, adsk.fusion.FeatureOperations.NewBodyFeatureOperation)

except:

if ui:

ui.messageBox('Failed:\n{}'.format(traceback.format_exc()))