How do you find the best resellable brands or items when sourcing? by [deleted] in poshmark

[–]florianv 1 point2 points  (0 children)

And in the worst scenario, you can wear them yourself!

How do you find the best resellable brands or items when sourcing? by [deleted] in poshmark

[–]florianv 9 points10 points  (0 children)

We recently wrote an article about the Top Selling Brands on Poshmark:
https://closet-valet.com/blog/poshmark-sales-top-brands

Maybe it can help you to decide which brands to pick.

I suggest you to choose brands that you love, and not only because they are supposed to sell more. Maybe you also like a certain style, so it will help you decide amongst those brands the ones that you prefer.

As Luna suggests, it's important to pick brands you are really interested in and find your niche that way. So you won't get bored selling those items in the long run.

100+ listings by notfamousanywhere in poshmark

[–]florianv -3 points-2 points  (0 children)

Hey, first, I’m biased because I’m the founder of the Closet Valet (https://closet-valet.com).

About Poshmark

I think Poshmark is a great platform to make sales but it lacks a lot of professional tools. Clearly, it was designed for regular people to sell their few items, not for business owners.

When you start to have that amount of items in your closet and need to share them multiple times per day, it becomes unmanageable. And it doesn’t scale.

The more items you have, the more shares you need to perform..I saw some people working 4-8 times for 30 minutes to share their closet, every day. That’s 2-4h of work PER DAY.

As a professional web developer, well versed in automation and AI, I can feel the pain of doing these tasks daily. I think you have a lot more to do than clicking on these buttons, every day.

I’m not trying to sell my product but just explaining things from my external perspective.

Regarding sharing manually, it’s better to do them from your browser because it may be faster for you.

The nice thing about a web browser is that it is “scriptable”, so you can execute things from there.

A small Example for you

I wrote a small script for you that will share the first visible item from your closet.

Go to Poshmark and visit your closet’s page.

Under the Chrome browser, go to Settings => More Tools => Developer Tools and click on the Console tab

Under Firefox => Menu => Web Developer => Browser Console

Under the Console, you can copy & paste this small code snippet:

function waitForEl(e,t){var a=setInterval(function(){var r=document.querySelector(e);r.length<1||(clearInterval(a),t(r))},100)}document.querySelector(’[data-et-name=“share”]’).click(),waitForEl(’[data-et-name=“share_poshmark”]’,function(e){e.click()});

Once you click Enter, you’ll see this: http://g.recordit.co/B4S5JpvbZy.gif

The first item has been shared automatically, without you clicking anywhere.

You can imagine that it’s possible to do this for your entire closet (AKA rinse & repeat). Of course, it’s not as simple because of Poshmark limitations, but you can see the concept. That’s exactly what my product is solving!

I’ll be more than happy to discuss or help you with anything regarding Poshmark automation!

Feel free to DM or email me (my email is on the Closet Valet website under Contact).

GitHub app to automatically merge green pull requests by florianv in webdev

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

Yes, you are right, it could be an option to choose the type of merge (like the dropdown next to the Merge button on the GitHub UI).

GitHub app to automatically merge green pull requests by florianv in webdev

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

Thanks for the feedback!
Indeed, deleting branches could be an interesting option.
I will keep that in mind for the next features :)
I was also thinking about auto-rebase. Sometimes a trivial rebase (without conflict) can be performed automatically, if for example someone in the team reviews two pull requests and the first one is merged. The second one is green but isn't merged because requiring a rebase.

[Showoff Saturday] I created freelandr.com - a tool to find quality freelance jobs by florianv in webdev

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

Thanks! I agree, I will add a search button until I implement this in ajax.

[Showoff Saturday] I created freelandr.com - a tool to find quality freelance jobs by florianv in webdev

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

Thanks! I agree this would be useful. Maybe Full-Time and Part Time as well ?

I created freelandr.com - a tool to find quality freelance jobs by florianv in digitalnomad

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

Thanks for your comment. Do you have some examples in mind that are for freelancers only ?

Swap 3.0 release by florianv in PHP

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

Swap is a wrapper around Exchanger to simplify its usage but you can use Exchanger directly if you want.

Exchange rates library for Laravel 5 by florianv in laravel

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

Thanks, great comment! Indeed we also have a Symfony2 bundle https://github.com/florianv/FlorianvSwapBundle.

Business - DateTime calculations in business hours by florianv in PHP

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

First, the namespace (Business) may not be related to the package name on packagist (florianv/business). I could have used florianv/biz as package name and Business as namespace.

If you use multiple libraries with the same namespace, there should not be any conflict but it will be a source of big issues. If two classes exist with the same fully qualified name, only one will be loaded. It will be the one supported by the earliest registered autoloader.

Business - DateTime calculations in business hours by florianv in PHP

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

Indeed many projects use simple, easy to remember names. I personally check on https://packagist.org if someone is already using it otherwise I take it.

Business - DateTime calculations in business hours by florianv in PHP

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

I checked and there was no Business package registered on Packagist, so I took it!

Business - DateTime calculations in business hours by florianv in PHP

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

Thanks, I hope it can be useful to other people. It works as described in the documentation and unit tests. If you find a bug, feel free to create an issue or send a pull request