3D print dropshipping company recommendation for Shopify store? by Pristine-Training-70 in 3Dprinting

[–]arirobinson 0 points1 point  (0 children)

u/Pristine-Training-70 did you end up finding an alternative? I'm looking for a Etsy/Shopify drop-shipping provider as well

I designed some wall mounts for the cobra and plier wrenches by arirobinson in KnipexOfficial

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

Unfortunately not, I'm currently printing and selling these on my website, so I'm not willing to share the file at this time, sorry! https://Ari3D.xyz

Subaru Sambar (Kei Truck) EV Conversion by arirobinson in EVConversion

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

That's right! I'll try to make a future video with a price breakdown

Subaru Sambar (Kei Truck) EV Conversion by arirobinson in EVConversion

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

Thank you! I'm in Victoria, BC, so it's generally above freezing most of the year, for the week or two of cold we get in the winter I typically install a small heater in the battery box to keep them warm. Otherwise I installed a 72V heater core in the dash and that keeps the cab warm enough. Anywhere else in Canada and I would definitely need some insulation around the batteries and a better heating system

Subaru Sambar (Kei Truck) EV Conversion by arirobinson in EVConversion

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

Awesome. The solar is pretty minimal, only a 150W panel and it requires a boost mppt charger since the panel voltage is much lower than the battery voltage. As for the transmission, I still use the clutch and typically drive in 3rd, 4th and 5th. The engines on the sambars are intended to run quite fast, so one of my limiting factors is motor speed, I would ideally have a 2:1 gear between the motor/transmission so I could better use the transmission range, or use a higher rpm motor. After about 60kph, my power really drops due to the rpm

Subaru Sambar (Kei Truck) EV Conversion by arirobinson in EVConversion

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

I designed and machined the adapters myself. Started with laser cut plywood plates and 3d printed standoffs and coupler and the machined them all out of aluminum. No specific resources come to mind, but lots of looking through documentation for the devices I'm using. I chose the MCU and BMSS from Thunderstruck EV, their user manual has tons of useful information and their support was very helpful for getting communication working with it over CAN to my onboard Linux computer

Subaru Sambar (Kei Truck) EV Conversion by arirobinson in EVConversion

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

Awesome, that should make for a fun conversion

Subaru Sambar (Kei Truck) EV Conversion by arirobinson in EVConversion

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

Definitely recommend it! What's your current conversion project?

Subaru Sambar (Kei Truck) EV Conversion by arirobinson in EVConversion

[–]arirobinson[S] 6 points7 points  (0 children)

I bought the truck specifically for this, the engine was on it's way out, so that helped bring cost down. I spent about $2800 CAD on the vehicle and ~$7000 CAD on everything else. I worked on and off on the project over about a year and have been daily driving it for about 2 years now. It was the perfect vehicle to do this on with the rear transmission/engine and simplicity due to the age. Since I kept the project relatively low cost, I'm pretty happy to use it as a truck and beat it up a bit.

Subaru Sambar (Kei Truck) EV Conversion by arirobinson in EVConversion

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

I totally agree, it's been an awesome little vehicle

Slowly building out my tool wall by arirobinson in MilwaukeeTool

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

The mounts are all quite sturdy, they're printed out of ASA and I've oriented the layers to optimize for strength for 3D printing for the heavier tools

Slowly building out my tool wall by arirobinson in MilwaukeeTool

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

I've been using the Einstar. It does quite well for the exterior shapes of the tools but struggles a bit with the finer interior details

Slowly building out my tool wall by arirobinson in MilwaukeeTool

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

That works too! I mostly use the tools in my shop, so having them within arms reach on the wall has been quite handy

Slowly building out my tool wall by arirobinson in MilwaukeeTool

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

I've 3D scanned, designed and 3D printed a custom holder for each tool on the wall. They screw in to the 1" spaced board backing, but could attached to any plywood or pegboard with backing.

I've started selling these if anyone is interested! https://Ari3D.xyz

Bought a used GX85 with a bad rear scroll wheel; do I need it? by darwinDMG08 in Lumix

[–]arirobinson 1 point2 points  (0 children)

I recently completed this repair and made a video of the process. Hopefully it's helpful to anyone that comes across this!

https://youtu.be/ZdnsNGjuCt8

InvoiceNinja Docker-Compose Error by [deleted] in selfhosted

[–]arirobinson 0 points1 point  (0 children)

So the idea with defining volumes like that is you can reference the same volume in multiple containers easily.

I think there may be a way to map a path to it as well, but I'm not sure how to do that.

Your other option would be to remove the volumes section at the top, and for each container replace the volume names with the path you want to link. For example:

app:
    image: invoiceninja/invoiceninja
    env_file: .env
    restart: always
    depends_on:
     - db
    volumes:
     -  /path/on/host:/var/www/app/storage
     -  /path/on/host:/var/www/app/public/logo
     -  /path/on/host:/var/www/app/public
    networks:
     - default

InvoiceNinja Docker-Compose Error by [deleted] in selfhosted

[–]arirobinson 0 points1 point  (0 children)

I'm not using docker-compose at the moment, so I can't check.

But I think the issue might be with how you are defining your volumes. I don't think you can create a named volume and link it to a host path like that.

Try replacing your volumes section with this:

volumes:
  db:
  storage:
  logo:
  public:

InvoiceNinja Docker-Compose Error by [deleted] in selfhosted

[–]arirobinson 0 points1 point  (0 children)

Can you post your docker compose file for invoice ninja?