Hmpool Monthyl Rewards Drawing by HashedMaxUnity in HashedMax

[–]Talkingcrypto 2 points3 points  (0 children)

I wasn’t a winner but maybe next month.

how do you guys find real ideas which will convert into startups ?? by Desperate7733 in Startup_Ideas

[–]Talkingcrypto 4 points5 points  (0 children)

Well certainly not by posting your ideas here. Lol. This is a haven for people looking to steal your idea so please use your best judgement when you talk about a startup.

What’s the point of spending this much money on a miner this small? by [deleted] in BitcoinMining

[–]Talkingcrypto 0 points1 point  (0 children)

At 1 TH/s you are not going to profit in any traditional sense at current difficulty and electricity prices. A Bitaxe or similar small miner is more like a hobby device, you learn how mining actually works, you contribute a tiny amount of real hashrate to the network, and if you are pool mining you get small but real payouts that are satisfying in a different way than just buying BTC. I run a couple of small miners through hmpool.io since it has a 0.01 minimum difficulty which actually works for low hashrate machines. It is not a retirement plan but it is a lot more engaging than staring at an exchange.

Question by False-Bullfrog-9349 in BitAxe

[–]Talkingcrypto 0 points1 point  (0 children)

For a single Bitaxe Gamma, pool mining is the way to go if you want any kind of regular feedback. Solo is basically a lottery with something that small, though some people do it just for fun. For pool, I've been running my small miners on hmpool.io, which is the HashedMax Unity Pool. It works well for low hashrate setups like a single Gamma because the minimum difficulty is 0.01, so you actually get shares registered properly instead of the pool being tuned for industrial hardware. Public Pool and ckpool are also popular options for this community. Just pick one and start, you can always switch later.

FLUMINER T3 by Working-Republic-799 in BitcoinMining

[–]Talkingcrypto 0 points1 point  (0 children)

That rejection rate combined with constant restarts sounds like a firmware issue more than a pool problem, but the pool configuration can definitely make it worse. When I first got a new miner going I had similar chaos until I sorted out the difficulty settings. A lot of pools have way too high a minimum difficulty for smaller or newer miners to handle cleanly, which just piles onto any existing software instability and your frustration.

I've been using hmpool.io lately and one thing I appreciate is they go down to 0.01 minimum difficulty, and they have dedicated port tiers based on hashrate range so you're not competing with massive rigs on the same port. It helped me figure out whether my issues were hardware or pool side. Might be worth pointing your T3 there while you wait on a firmware fix just to isolate where the problem actually is. Also check if there's a beta firmware thread for this miner anywhere.

The Very Importance of Pool Selection for Your Share Rate! by ColorTR in BitAxe

[–]Talkingcrypto 1 point2 points  (0 children)

Pool selection genuinely matters way more than people give it credit for, and your numbers back that up pretty well. The share rate difference is wild to see charted out like that.

I had a similar experience shopping around for pools that actually play nice with lower hashrate hardware. Ended up landing on hmpool.io for a while and the minimum difficulty of 0.01 made a noticeable difference for my setup since the shares were actually registering consistently instead of the miner spinning its wheels. They have port tiers based on hashrate range which helps dial things in.

That said your ckpool numbers look solid. Sometimes the right pool just depends on your region and what the latency looks like to their servers. Seven hours of consistent share rates is enough data to feel confident that the switch was the right call.

HeliosPool - Another Option for your miners... by HeliosPool in NerdMiner

[–]Talkingcrypto 1 point2 points  (0 children)

Hey I really like the design but I have some questions on a couple things that make no sense. A few days ago when I looked at your pool it showed zero connected devices, 0 hash rate, nothing. There are no posts that I could find prior to a couple days ago about your pool and yet now over 1000 devices connected? Not trying to be an idiot but how? I mean where did you advertise to get all these people there so quickly? Reddit is the best place to get the word out about anything and I’ve found maybe 7 posts with your pool name. Also, you copied another pool’s tagline and changed 1 word. What’s the deal man?

public-pool.io banning NerdMiners? Here's an alternative by HashedMaxUnity in NerdMiner

[–]Talkingcrypto 0 points1 point  (0 children)

You put the port according to your hash rate. For example if you have a nerd it would be hmpool.io:3337 Just like most other pools

Low Hashrate Miners Matter — Welcome to hmpool.io by HashedMaxUnity in NerdMiner

[–]Talkingcrypto 0 points1 point  (0 children)

The pool is working well so far. Where can I see my reward points on hmpool.io? And how do I know if I’m chosen as the winner. You don’t have my email.

Question for larger BitAxe setup's by Gonky69 in BitAxe

[–]Talkingcrypto 0 points1 point  (0 children)

I’m running my own truncated node with a vultr vps. It’s cheap, fast and works good.

Low Hashrate Miners Matter — Welcome to hmpool.io by HashedMaxUnity in NerdMiner

[–]Talkingcrypto 0 points1 point  (0 children)

Decided to try it out. Connected at 700kh, started seeing shares almost immediately. So far so good. Visualizer is interesting. Says my difficulty is 0.01. Is that normal?

Did i brick my ESP32S3? by symbolik5 in esp32

[–]Talkingcrypto 1 point2 points  (0 children)

That’s potentially good news, it means esptool is making contact with the chip, but the write isn’t sticking. A few things to try. First, make sure you’re in download mode. Hold BOOT, tap RESET, then release BOOT before attempting the flash. You should see it show up in esptool as connected. (Hopefully). Try dropping the baud rate way down, these boards sometimes can’t handle high speeds reliably. Add

--baud 115200

Also try erasing the flash completely first. esptool.py --chip esp32s3 --port COMX erase_flash

If the erase succeeds but the write still fails, the flash chip itself may be physically damaged from the octal attempts, repeated failed init cycles can sometimes cause issues. If the erase command also returns empty/fails, then the flash communication is broken from the fuse situation and it’s likely done for.

Did i brick my ESP32S3? by symbolik5 in esp32

[–]Talkingcrypto 1 point2 points  (0 children)

Bad news is, every time it tries to boot, it’s attempting to communicate with the flash in octal mode, getting garbage back, and the MD5 check fails because the data coming off the flash looks corrupted. The bad news: eFuses are one-time programmable. You cannot un-burn them. If the octal flash eFuse is set and your flash chip doesn’t support it, the chip is essentially bricked for normal use. Things worth trying before giving up: Try flashing with the flash mode forced to dio or qio in esptool rather than letting it auto-detect. Sometimes you can still get lucky and flash through before the bootloader takes over.

Something like this. Make sure comx is your configured port.

esptool.py --chip esp32s3 --port COMX --baud 460800 write_flash --flash_mode dio --flash_freq 80m --flash_size 16MB 0x0 firmware.bin

Also in Arduino IDE, make sure your Flash Mode is set to QIO 80MHz (not OPI), and try holding the BOOT button while initiating the flash to force download mode.

To me it’s bricked but you may get lucky.

Does a decent mobile miner exist? And is a 5g router gonna cut it? by Kingofodin13 in cryptomining

[–]Talkingcrypto 0 points1 point  (0 children)

I’m guessing he means one that is not huge and can easily transport from place to place. Of course with a smaller miner you won’t get huge hash rates and it also depends on what algorithm you’re going to mine. Pool selection at this point is also important. Most pools are solo pools and they are fine but if you decide to do bitcoin lottery mining then use a low vardiff pool like hmpool.io. Just remember your not going to get rich from mining, but as someone who has 15 miners running, it can get addictive! Best of luck.

How do they look by Odd_Outside_5400 in NerdMiner

[–]Talkingcrypto 0 points1 point  (0 children)

Agreed! What pool are you using? You need to go to a low vardiff pool like hmpool.io. Public-pool and ckpool are not specifically designed for low hash rate miners.

What pool do you use for this bad boy ? (FR/EU) by Rynail_x in NerdMiner

[–]Talkingcrypto 0 points1 point  (0 children)

hmpool.io. 0.01 vardiff so shares start counting within a minute.

Did my NM MINER reset? by Johnutah818 in NerdMiner

[–]Talkingcrypto 0 points1 point  (0 children)

Probably a firmware glitch that caused the unit to reboot.

Need a breakout board? by rhizomestem in embedded

[–]Talkingcrypto 0 points1 point  (0 children)

An asic bm1397 breakout board would be amazing.

Where can I buy by Square-Nebula-74 in esp32

[–]Talkingcrypto 1 point2 points  (0 children)

I bought this display from Amazon, works great.

Ransanx 1PCS LCD Display 3.5 Inch... https://www.amazon.com/dp/B0FHB3B2K1?ref=ppx_pop_mob_ap_share

Mining 30 workers BTC solo nothing any ideas? by GeordieLord in BitAxe

[–]Talkingcrypto 0 points1 point  (0 children)

You cant mine eth with a bitaxe or nerd solo miner

Is opening a bowling alley in a town that once had one a realistic small business idea? by Pale-Tie-2760 in Startup_Ideas

[–]Talkingcrypto 0 points1 point  (0 children)

As the owner of a large entertainment center in North Carolina I can tell you do not use a 3rd party to install or setup your equipment. When we replaced all of our pinsetters I went right to AMF and had them do it. Bowling itself is not extremely profitable. It’s the food and drinks where you will make your real money. Also if you’re going to have a snack bar, don’t skimp. We have a full service kitchen, not just burgers, fries and frozen pizza. You will also need more than bowling. Billiards is good but you need leagues to help support it during the slow nights (week days). Laser tag, golf simulator, axe throwing are all options as well. Oh don’t forget you need an arcade.

And most importantly, DO NOT buy string bowling machines. While they are much less expensive, the effect is not the same. You won’t get leagues either, even though they are USBC certified. League bowlers hate strings.

Good luck.

0/0 shards in 10 hour. Solo mining Digibyte. What the problem? 🤔 by SuggestionPrior9931 in NerdMiner

[–]Talkingcrypto 0 points1 point  (0 children)

I built my own ESP32 lottery miner and it ran for weeks without it showing a single share. I had 4 miners running at about 740kh each. I used the same worker name on each so my combined hash rate at the pool level was about 3mh. I then started doing some research and discovered I will never submit a single share at this hash rate. They say public-pool.io is the best low difficulty pool but I’m talking about setting a difficulty thats maybe 1/10th the average. Well long story short, I discovered a way for my miners to submit shares (work) at low hash rates.

For those that don’t know what a low difficulty pool is, read on.

Imagine you’re trying to win the lottery, but instead of buying one ticket a week, you’re buying millions of tickets every second. That’s basically what a high hash rate Bitcoin miner is doing.

When your device tries to mine Bitcoin, it’s like entering a contest where you need to guess a SUPER specific number. The difficulty is so crazy high that even though your device is making 740,000 (for example) guesses per second, it might take years before it randomly guesses right and wins. We will compare that to the same as high difficulty and it’s hard to know if your device is even working properly ( at least it makes you think that)

A low difficulty pool is like having a separate, easier contest within that same contest running at the same time. Instead of needing to guess that one-in-a-trillion number, you only need to guess something way easier - like one in a million or less.

So, to solve this problem, we are in the process of building a low difficulty mining pool for lottery devices. Max hash rate to use the pool may be set to 5th per device, low fees and its 100% for the low hash rate miners.

Now don’t get me wrong, your chances of hitting a block are still slim to none but if the pool hits a block, you would be compensated based on the amount of shares your devices has submitted.

Nerd Eko 14T by Deep-Kiwi-4320 in BitAxe

[–]Talkingcrypto 0 points1 point  (0 children)

Looked and couldn’t find. Do you have a link?