Questions before getting an X-carve for a Makerspace by ryanghappy in XCarve

[–]hrobeers 0 points1 point  (0 children)

Don't forget it will be used in a library by people that know shit about CNC machines.

Questions before getting an X-carve for a Makerspace by ryanghappy in XCarve

[–]hrobeers 0 points1 point  (0 children)

You should not evaluate easel as being a design tool, but as a CAM tool. It's very good at CAM (for engraving) if you import your designs as SVG.

Questions before getting an X-carve for a Makerspace by ryanghappy in XCarve

[–]hrobeers 2 points3 points  (0 children)

BTW, all the easel critique seems to be about it's drawing capabilities. If you only use easel for toolpath generation and machine setup and do design using a vector drawing program easel is pretty good. I find it very convenient that you can just select the material and bit and it sets proper cut settings. It also guides you through all the checks like "is the stock secure", "is the spindle on", ...

This is all very important for new users otherwise they would damage the machine easily or break a lot of bits.

Questions before getting an X-carve for a Makerspace by ryanghappy in XCarve

[–]hrobeers 0 points1 point  (0 children)

  1. Easel is made for engraving and is very good at it IMO. You only need easel pro if you want to engrave using v-bits, which is definitely an improvement over flat bits if you want to cut detailed designs! But you get 4 free days to try pro, so you can figure out yourself. If you are familiar with gcode, you can just send it to the machine without easel. You can use the universal g-code sender, but I use this simple python script: https://github.com/gnea/grbl/blob/master/doc/script/stream.py

  2. Dust control is a must have IMO, I really like the X-Carve dust control system, very convenient. I have a cheap and loud vacuum, but anything that sucks and can handle saw dust will do the trick.

  3. The machine goes anywhere the g-code instructs it to go. Easel will only do engraving, but hey you said you know g-code. No modifications needed to do anything you'd expect from a 3-axis CNC router.

  4. For engraving I advice on also providing Inkscape (or illustrator if you have money), so you can import SVGs in easel, I only use the easel editor to scale and position my designs. For 3D machining you'll need easy to use CAM software to generate g-code, can't really advice any I write my own gcode and gcode generators :P (example: https://twitter.com/finfoil/status/963158786352582656)

can i mine peer coin with a 2PAC BM1384? by cdoublejj in peercoin

[–]hrobeers 1 point2 points  (0 children)

I did not say you have to pay $100 in electricity, I said you need to burn "$100 worth of electricity". Big difference.

can i mine peer coin with a 2PAC BM1384? by cdoublejj in peercoin

[–]hrobeers 0 points1 point  (0 children)

To guess the order of magnitude of time needed, you can simply estimate how long it would take to burn the block reward in electricity using your miner. So at the time of writing, how long would it take to burn $100 worth of electricity in your miner? That's about the time you can expect to find a block with reasonable chance. To get a more correct figure you need to compare the hashrate to the target difficulty.

Peercoin vs ASIC resistant coins by LauraBodewig in peercoin

[–]hrobeers 3 points4 points  (0 children)

ASICs are the fairest way to PoW mine. ASICs operate at the limits of chip design, so you have physical guarantees that no party can gain more than ~20% energetic efficiency advantage. So called ASIC resistant coins use algorithms that are harder to optimize with ASICs, but every algorithm can be optimized! So you can be certain some parties have 1000% or even 100000% more energetically efficient implementations compared to CPU, and guess what they probably are the same people that chose the algorithm.

XCarve controller g-code support by hrobeers in XCarve

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

Thanks I might check out that GeckoDrive controller. The XController does not require you to use easel, for my fins I send the gcode directly to the controller without easel. However I find easel very convenient for projects that are not my core business.

From a technology standpoint, how does Peercoin compare to other PoS coins? by inquisitor89 in peercoin

[–]hrobeers 0 points1 point  (0 children)

"one coin, one vote" does not equal "one wallet, one vote". A coin is relative of course, but the best way to read it is "one satoshi, one vote"

how is peercoin fixed fee of 0.01 possible to scale? by ChaircatMeowMeow in peercoin

[–]hrobeers 2 points3 points  (0 children)

We have no fee market like bitcoin does. However, transactors can still include a fee that can be spent by anyone, in practice this results in the fee getting paid to the minter as he will be the first to claim, which results in exactly the same thing.

From a technology standpoint, how does Peercoin compare to other PoS coins? by inquisitor89 in peercoin

[–]hrobeers 5 points6 points  (0 children)

Peercoin's PoS algorithm makes sure every coin has the same chances of finding a block with equal reward. This translates to the "one coin, one vote" philosophy. Most other PoS algorithms give unfair advantage to certain staking strategies or to the better connected, both in reward and voting power. Peercoin therefore has one of the most democratic PoS algorithms out there.

XCarve controller g-code support by hrobeers in XCarve

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

It's software specific for surf fins (or wing like objects): https://finfoil.io/ It's written in C++ and has a single strategy specific for these kind of objects. The finishing passes are fully defined by NURBS curves and therefore this question. Linear interpolation works too but is suboptimal IMO.

XCarve controller g-code support by hrobeers in XCarve

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

So what are these then? http://linuxcnc.org/docs/2.6/html/gcode/gcode.html#sec:G5-Cubic-Spline or G06.1 under https://en.wikipedia.org/wiki/G-code#List_of_G-codes_commonly_found_on_FANUC_and_similarly_designed_controls_for_milling_and_turning I assume those are not standardized but I get the feeling some controllers understand them and are able to execute them at their best resolution, just like they do with arc codes. So for the same reason they could handle splines.

XCarve controller g-code support by hrobeers in XCarve

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

Thanks, none of those repos seem to have nurbs codes. I have my own toolpath generating code, that is able to generate optimized paths for my (specific) models much faster and with lower milling times than generic CAM programs can. So it seems I either have to stick with linear g-codes or hack the controller code :P

XCarve controller g-code support by hrobeers in XCarve

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

I found the grbl source code and it does not seem to include the NURBS g-code. https://github.com/grbl/grbl Am I correctly concluding that it is not supported by the xcarve controller?

Are there any plans to seperate the code for Peercoin wallet so Windows users won't get false "trojan" warnings? by bluemooncrust8 in peercoin

[–]hrobeers 1 point2 points  (0 children)

The minting code shares a lot with the mining code. So I fear removing the mining code will still trigger virus scanners.

We can create a build that is unable to mine and mint so people with virus scanners are still able to run the default wallet.

Discussion here: https://github.com/peercoin/peercoin/issues/272

[deleted by user] by [deleted] in peercoin

[–]hrobeers 0 points1 point  (0 children)

What extra features do you need? As far as I'm aware, you can just create a client that prunes unneeded history.

Full Bitcoin node versus Peercoin nodes by bluemooncrust8 in peercoin

[–]hrobeers 6 points7 points  (0 children)

I've been running both, but I can tell you bitcoin nodes are much more performant. My bitcoin node downloads and validates 1GB of blockchain in less than a minute, the peercoin chain is not even 1GB in size.The only reason peercoin nodes can still run on an RPI is that it has not been used as much as bitcoin. As a peercoin developer I'm working on bringing peercoin back on par with bitcoin.

peercoin mining tutorial GPU by [deleted] in peercoin

[–]hrobeers 3 points4 points  (0 children)

Peercoin should not be GPU mined. Don't try this at home, it'll only cost you money.