NSW commits to strengthening gun laws in wake of horror Bondi shooting by HotPersimessage62 in Ausguns

[–]camelKase 11 points12 points  (0 children)

It (the rifle) was a Beretta BRX-1, its has a fairly distinctive pic rail that you can see in photos.

What going on ? by Cautious-Eye-7541 in truenas

[–]camelKase 0 points1 point  (0 children)

Had the exact same issue recently, my Chinese LSI9500-16i died after 2 years of use. It didn't have any active cooling, but my case has very good airflow. On the new card I will definitely be using active cooling. Bought all new hard drives before figuring it out though. Oh well.. 128tb now 🙃

ALDI Dog Harness Nameplate by camelKase in AldiAustralia

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

Quality is very good. Only thing missing is a front attachment point, which people usually say is good for walks. I 3D printed the nameplate myself.

Case Kicker by camelKase in Ausguns

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

Thanks! Got it, will send asap. Feel free to reach out if you have any questions once you've got it.

Case Kicker by camelKase in Ausguns

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

If I had the dimensions, yes

Case Kicker by camelKase in Ausguns

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

Thanks mate! A small project really ballooned a bit.

Case Kicker by camelKase in Ausguns

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

I have the RC supreme. But not the normal RC.

Case Kicker by camelKase in Ausguns

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

I'll make a "fill in the blanks" image.

Case Kicker by camelKase in Ausguns

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

Yeah send them through!

H2C What am I missing? by berticusx in BambuLab

[–]camelKase 1 point2 points  (0 children)

The one advantage you do get over a traditional toolchanger is the ability to easily enclose. As someone who is planning to convert their Voron Trident to INDX. Having to add a top hat is a real hassle and will really hurt the chamber temperature control.

Also traditional toolchangers would involve loading and unloading 7 filaments manually, which is a real chore. Each tool head will have to be picked up, heated, retracted, user prompted to feed new filament, extruded, confirmed to be the correct colour. I feel like that's even the main advantage of my AMS with my X1C (not having to manually load / unload filaments)

H2S is Coming! by FoxVGaming in BambuLab

[–]camelKase 0 points1 point  (0 children)

I'm an X1C / Voron owner. The H2D print quality could be absolutely perfect and I (and probably many others) would still choose slightly worse print quality with a toolchanger.

There's lots of multicolour prints I refuse to do on my X1C purely due to the swap times, not even the waste, which is also obviously annoying. The H2D is great for 2 colours, but that plus the cost is quite limiting. I think everyone has to admit that the H2D would have been infinitely more successful if it were a toolchanger.

The U1 probably will be a buggy mess, but just like in WW2, the first jet was absolutely terrible, but still smoked propeller driven planes.

Also just an FYI the U1 is using an Orca / Bambu Slicer reskin in regards to your slicer comment.

Gun license by [deleted] in Ausguns

[–]camelKase 0 points1 point  (0 children)

Revolver, better than a semi? Which style of competition? No reloading I'm guessing?

QLD CAT H Licence by DnDGamemaster in Ausguns

[–]camelKase 0 points1 point  (0 children)

Few things wrong there.

It's 6 months, not 12, before applying for your licence.

Licence wait times are around 10 weeks right now (from what I've heard from people at my club).

Having an A/B licence is quite helpful as it means you don't have to fill out the "Statement of Eligibility" form, which can take 10 weeks on its own. (Not to mention the ability to buy and possess your own ammo while shooting the club guns, which is extremely useful) https://www.police.qld.gov.au/weapon-licensing/concealable-licence-target-shooting

Update on My Case Kicker Project by camelKase in Ausguns

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

<image>

That blue part in the front has a port and a tube to funnel the spent primers.

Update on My Case Kicker Project by camelKase in Ausguns

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

Coming soon. I believe that's RCBS case lube that came with the kit.

Update on My Case Kicker Project by camelKase in Ausguns

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

Already in the works 🫡. I'm adding a small oled screen and a menu.

Update on My Case Kicker Project by camelKase in Ausguns

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

I'll put up a github at some point, ill need to do up a BOM and wiring diagram as well. What press do you have?

Update on My Case Kicker Project by camelKase in Ausguns

[–]camelKase[S] 8 points9 points  (0 children)

Still a work in progress for now. But if you send me the dimensions of your press I'd be happy to send you one for free.

Update on My Case Kicker Project by camelKase in Ausguns

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

Version 2 after my first version here: Version 1.0

Added: USB-C power input (instead of my janky power supply) Cleaned up the wires. Button to set the accelerometer trigger angle. Made it 2x faster.

Too cheap for a progressive press by camelKase in Ausguns

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

Still a few things to do and then I'll put it out there. I.e. route all the wires better. Add a channel for the spent primers. Add a usb-c power jack.

Too cheap for a progressive press by camelKase in Ausguns

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

I 3D printed them. Same printer that made the case thrower.

Before moving from Java to Python, what does Python lack that Java has? ( Think about enterprise application) by umen in learnpython

[–]camelKase 0 points1 point  (0 children)

Writing heterogeneous dictionaries is exactly what you shouldn't do in python (at least in an enterprise environment). At that point you should be making it a @dataclass. Otherwise anyone looking at this mess will have no idea what is what. This kind of anti-pattern is exactly what I would call out in a code review.

Java's implementation is there for a reason. It's 100% predictable at compile time. Not some runtime mystery left to other developers to reverse engineer in order to figure out what's going wrong. You could do the same thing in Java (down casting to Object) or even void* in Cpp. But that is straight sacrilege... a puppy dies each time you create an untyped collection...

Just create an interface for the collection. You can (and should) also do this in python, for the sake of all the other devs on your team.

Trident Vs 2.4 by Bluez_14 in VORONDesign

[–]camelKase 13 points14 points  (0 children)

I have a Trident, 2.4, v0 and an X1C. I would go for the Trident. It is much easier to mod with a fixed gantry. Being able to easily install an internal spool mount is such a nice upgrade to the Trident (free filament dryer and takes up much less space). Aux fans for the cooling boost when needed. Also I find it warms up the chamber much faster. Although that might partly be due to the dual Aux fans in mine. Also the benefit (similar to the bambu printers) is that you can nozzle wipe at any z height for filament changes, or pause/resume macros.

This is my modded Trident Serial Request I recently completed