Pages:
Author

Topic: Solo Pool Miner Race - page 85. (Read 26643 times)

legendary
Activity: 3500
Merit: 2792
Enjoy 500% bonus + 70 FS
December 15, 2023, 08:30:16 AM
#48
Hab ja drei neue / größere OLED Displays bestellt (Dreierpack war günstiger) und hab gleich mal das übrige Display an meinen Rasperry angeschlossen und etwas rumgespielt.

Jetzt hab ich einen BTC / ETH Price Ticker am Raspi am Schreibtisch und der Raspi stand da eh rum Smiley



Wen es interessiert
Hier der Link zu der Software für das Display und den Code kann ich gerne zur Verfügung stellen

https://www.amazon.de/gp/product/B07FYG8MZN
https://luma-oled.readthedocs.io/en/develop/python-usage.html

Datei: btc_ticker.py

Code:
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# Copyright (c) 2017-2020 Michael Svanström, Richard Hull and contributors
# See LICENSE.rst for details.
# PYTHON_ARGCOMPLETE_OK

"""
Displays the Bitcoin price at Bitstamp

Example:

BTC/USD $2300.00
24h Hi $2400.00 Lo $2200.00
LTC/USD $40.00
24h Hi $50.00 Lo $30.00
"""

import sys
import time
from pathlib import Path

try:
    import requests
except ImportError:
    print("The requests library was not found. Run 'sudo -H pip install requests' to install it.")
    sys.exit()

from demo_opts import get_device
from luma.core.render import canvas
from PIL import ImageFont


def fetch_price(crypto_currency, fiat_currency):
    bitstamp_api = "https://www.bitstamp.net/api/v2/ticker/" + crypto_currency.lower() + fiat_currency.lower()
    try:
        r = requests.get(bitstamp_api)
        return r.json()
    except:
        print("Error fetching from Bitstamp API")


def get_price_text(crypto_currency, fiat_currency):
    data = fetch_price(crypto_currency, fiat_currency)
    return [
        '{}/{} {}'.format(crypto_currency, fiat_currency, data['last'])
    ]


def show_price(device):
    # use custom font

    oled_font1 = ImageFont.truetype('FreeSans.ttf', 20)
    oled_font2 = ImageFont.truetype('FreeSans.ttf', 16)


    with canvas(device) as draw:
        draw.text((5, 0), "Crypto Ticker", font=oled_font1, fill = "white")
        rows = get_price_text("BTC", "EUR")
        draw.text((0, 25), rows[0], font=oled_font2, fill="white")
        rows = get_price_text("ETH", "EUR")
        draw.text((0, 45), rows[0], font=oled_font2, fill="white")



def main():
    while True:
        show_price(device)
        time.sleep(60)


if __name__ == "__main__":
    try:
        device = get_device()
        main()
    except KeyboardInterrupt:
        pass

legendary
Activity: 3486
Merit: 2287
Top Crypto Casino
December 15, 2023, 08:23:51 AM
#47
Wir haben ein neues bestshare --> 83.853.607 vom Miner Willi9974_2

Na Du legst ja schon wieder einen vor hier Wink
Mein Minerboard liegt bereits feritig im Paket für die Rückreise nach Spanien. Wenn die Nachlieferung nächste Woche bei mir eintrifft, bin ich wieder zu 100% im Rennen.

Schönes Wochenende hier an alle! Cool
legendary
Activity: 3500
Merit: 2792
Enjoy 500% bonus + 70 FS
December 15, 2023, 06:01:57 AM
#46
Wir haben ein neues bestshare --> 83.853.607 vom Miner Willi9974_2

Code:
{
 "hashrate1m": "2.41T",
 "hashrate5m": "2.15T",
 "hashrate1hr": "2.11T",
 "hashrate1d": "1.84T",
 "hashrate7d": "526G",
 "lastshare": 1702638022,
 "workers": 6,
 "shares": 85131947,
 "bestshare": 83853607.77031049,
 "bestever": 83853607,
 "authorised": 1702450385,
 "worker": [
  {
   "workername": "bc1qeuupt2tgerfum8jclt8aklu9cdmzzkwml9lg7c.willi9974_2",
   "hashrate1m": "422G",
   "hashrate5m": "394G",
   "hashrate1hr": "374G",
   "hashrate1d": "348G",
   "hashrate7d": "104G",
   "lastshare": 1702638021,
   "shares": 17050171,
   "bestshare": 83853607.77031049,
   "bestever": 83853607
  },
  {
   "workername": "bc1qeuupt2tgerfum8jclt8aklu9cdmzzkwml9lg7c.willi9974_1",
   "hashrate1m": "490G",
   "hashrate5m": "445G",
   "hashrate1hr": "438G",
   "hashrate1d": "382G",
   "hashrate7d": "114G",
   "lastshare": 1702638017,
   "shares": 18584525,
   "bestshare": 8884723.8572265,
   "bestever": 8884723
  },
  {
   "workername": "bc1qeuupt2tgerfum8jclt8aklu9cdmzzkwml9lg7c.rent_a_ray",
   "hashrate1m": "310G",
   "hashrate5m": "299G",
   "hashrate1hr": "303G",
   "hashrate1d": "274G",
   "hashrate7d": "82G",
   "lastshare": 1702638022,
   "shares": 13419548,
   "bestshare": 22619595.10630606,
   "bestever": 22619595
  },
  {
   "workername": "bc1qeuupt2tgerfum8jclt8aklu9cdmzzkwml9lg7c.fishhot_1",
   "hashrate1m": "284G",
   "hashrate5m": "284G",
   "hashrate1hr": "272G",
   "hashrate1d": "252G",
   "hashrate7d": "71.6G",
   "lastshare": 1702638022,
   "shares": 11548576,
   "bestshare": 11626837.52492598,
   "bestever": 11626837
  },
  {
   "workername": "bc1qeuupt2tgerfum8jclt8aklu9cdmzzkwml9lg7c.fishhot_2",
   "hashrate1m": "432G",
   "hashrate5m": "323G",
   "hashrate1hr": "303G",
   "hashrate1d": "248G",
   "hashrate7d": "69.7G",
   "lastshare": 1702638021,
   "shares": 11243430,
   "bestshare": 42099689.74428812,
   "bestever": 42099689
  },
  {
   "workername": "bc1qeuupt2tgerfum8jclt8aklu9cdmzzkwml9lg7c.purplehash_1",
   "hashrate1m": "0",
   "hashrate5m": "0",
   "hashrate1hr": "0",
   "hashrate1d": "1.27G",
   "hashrate7d": "688M",
   "lastshare": 1702504253,
   "shares": 130956,
   "bestshare": 28540.48077261489,
   "bestever": 28540
  },
  {
   "workername": "bc1qeuupt2tgerfum8jclt8aklu9cdmzzkwml9lg7c.orangehash_1",
   "hashrate1m": "560G",
   "hashrate5m": "435G",
   "hashrate1hr": "427G",
   "hashrate1d": "333G",
   "hashrate7d": "83.6G",
   "lastshare": 1702638020,
   "shares": 13133496,
   "bestshare": 16461909.61187977,
   "bestever": 16461909
  },
  {
   "workername": "bc1qeuupt2tgerfum8jclt8aklu9cdmzzkwml9lg7c.real_duke",
   "hashrate1m": "0",
   "hashrate5m": "0",
   "hashrate1hr": "191K",
   "hashrate1d": "271M",
   "hashrate7d": "72M",
   "lastshare": 1702617161,
   "shares": 21245,
   "bestshare": 380108.4856871294,
   "bestever": 380108
  }
 ]
}
hero member
Activity: 504
Merit: 1065
Crypto Swap Exchange
December 15, 2023, 03:23:23 AM
#45
Thanks for the good news my friend. i'm very happy all is good on your side and maybe you bring us not only hashrate, you can also bring us a good luck into that round as a old blockfinder from Blockparty 30

i remember we had a very good share from 100.571.298.452.432 and that high share could also solve a block today :-)

if you import some miner let us know the price and maybe i pick one up.
and let us work on the new dream, let us find a new block for a earlier retirement

Thank you for the kind words man  Cheesy

Yeah this share was very high, I think it should still solve a block until the next halving and probably for more time!

I will let you know in some weeks when I will have detailed prices, and wish us a lucky block before the halving  Grin
legendary
Activity: 3500
Merit: 2792
Enjoy 500% bonus + 70 FS
December 14, 2023, 11:43:10 AM
#44
xxx

Hello Willi,

In fact my username changed a few weeks ago, we do know each other, we were even lucky together at blockparty 30!  I wish we will be lucky again soon (here or in other runs like LTR or classic ones)!
My house has indeed been paid for, and the renovations have been completed. What's the new dream now?  Grin I don't really know, maybe a retirement funded entirely by BTC?  Grin Cool

Thank you so much for taking the time to translate the OP, dear Willi!
I'm really pleased that you're launching this project, I was looking for exactly that!

Definitely taking a spot, and when back at home, will point some hashrate here  Smiley



For those who are interested, I will import a good quantity of Bitaxe in EU (in late January 2024). If anyone wants to avoid taxes/customs, please let me know, I'll be happy to help my European solo miner friends  Smiley

Thanks for the good news my friend. i'm very happy all is good on your side and maybe you bring us not only hashrate, you can also bring us a good luck into that round as a old blockfinder from Blockparty 30

i remember we had a very good share from 100.571.298.452.432 and that high share could also solve a block today :-)

if you import some miner let us know the price and maybe i pick one up.
and let us work on the new dream, let us find a new block for a earlier retirement

Best regards,
Willi

hero member
Activity: 504
Merit: 1065
Crypto Swap Exchange
December 14, 2023, 11:18:06 AM
#43
hy paid2,

we know us, did you have changed your username? Other account? your "old" dream is done "paid of your house"? any new dreams, that we have to know?

your small dream to jump in and have also a englisch starting text is also done, hope my englisch (supported from deepl) is ok to understand all the text :-)
I'm excited to see what hashrate your miners achieve and have add the first picture from you.

Best regards,
Willi

Hello Willi,

In fact my username changed a few weeks ago, we do know each other, we were even lucky together at blockparty 30!  I wish we will be lucky again soon (here or in other runs like LTR or classic ones)!
My house has indeed been paid for, and the renovations have been completed. What's the new dream now?  Grin I don't really know, maybe a retirement funded entirely by BTC?  Grin Cool

Thank you so much for taking the time to translate the OP, dear Willi!
I'm really pleased that you're launching this project, I was looking for exactly that!

Definitely taking a spot, and when back at home, will point some hashrate here  Smiley



For those who are interested, I will import a good quantity of Bitaxe in EU (in late January 2024). If anyone wants to avoid taxes/customs, please let me know, I'll be happy to help my European solo miner friends  Smiley
legendary
Activity: 3500
Merit: 2792
Enjoy 500% bonus + 70 FS
December 14, 2023, 10:58:13 AM
#42
xxx

Thank you  Cheesy

I am far of my ASICs right now, I am abroad. For now I only have a old photo of some Newpac (from my first account): https://bitcointalksearch.org/topic/my-usb-sha256-lottery-5340726 (it was a test, it is of course more clean now  Grin)

I will add x2 R606, x2 Newpac, 2x Bitaxe, 4x old Block Erupters, and 2x hashboard of Antminer R4 (4,8 th/s each) as soon as I can  Smiley
And of course, will post a photo!



May I kindly ask someone to translate the OP into English please ?  My German skills are not good and Google translate doesn't make a lot of sense  Embarrassed   I will be happy to send a small tip if anyone take time to do it  Smiley
hy paid2,

we know us, did you have changed your username? Other account? your "old" dream is done "paid of your house"? any new dreams, that we have to know?

your small dream to jump in and have also a englisch starting text is also done, hope my englisch (supported from deepl) is ok to understand all the text :-)
I'm excited to see what hashrate your miners achieve and have add the first picture from you.

Best regards,
Willi

##########################

Hey willi,

solange ich meine Krücke von Bitaxe noch hier habe, lasse ich die schon mal mitlaufen, auch wenn die Leistung sehr zu wünschen übrig lässt Wink
Dann wäre mein Platz aber wenigstens schon einmal save, alles Andere dann nächste Woche mit neuer Hardware.
Hab dich eingetragen und drücke die Daumen das du deinen Ersatz schnell bekommst.
legendary
Activity: 3486
Merit: 2287
Top Crypto Casino
December 14, 2023, 10:41:01 AM
#41
Hey willi,

solange ich meine Krücke von Bitaxe noch hier habe, lasse ich die schon mal mitlaufen, auch wenn die Leistung sehr zu wünschen übrig lässt Wink
Dann wäre mein Platz aber wenigstens schon einmal save, alles Andere dann nächste Woche mit neuer Hardware.
hero member
Activity: 504
Merit: 1065
Crypto Swap Exchange
December 14, 2023, 10:25:36 AM
#40
Hello Willi  Smiley

Very nice project!

I can add some Bitaxes, and gekkosciences ASICs soon if you accept me  Smiley
Hello paid2,

yes you are welcome.
Please select your worker name with your username extension and a running number, uniq number for each miner

bc1qeuupt2tgerfum8jclt8aklu9cdmzzkwml9lg7c.paid2_1
bc1qeuupt2tgerfum8jclt8aklu9cdmzzkwml9lg7c.paid2_2
bc1qeuupt2tgerfum8jclt8aklu9cdmzzkwml9lg7c.paid2_3
etc...

We are happy about every new person who supports us and we would love it, if we can see some pictures of your mini mining farm  Grin

#################

Thank you  Cheesy

I am far of my ASICs right now, I am abroad. For now I only have a old photo of some Newpac (from my first account): https://bitcointalksearch.org/topic/my-usb-sha256-lottery-5340726 (it was a test, it is of course more clean now  Grin)

I will add x2 R606, x2 Newpac, 2x Bitaxe, 4x old Block Erupters, and 2x hashboard of Antminer R4 (4,8 th/s each) as soon as I can  Smiley
And of course, will post a photo!



May I kindly ask someone to translate the OP into English please ?  My German skills are not good and Google translate doesn't make a lot of sense  Embarrassed   I will be happy to send a small tip if anyone take time to do it  Smiley
legendary
Activity: 3500
Merit: 2792
Enjoy 500% bonus + 70 FS
December 14, 2023, 10:03:48 AM
#39
Hello Willi  Smiley

Very nice project!

I can add some Bitaxes, and gekkosciences ASICs soon if you accept me  Smiley
Hello paid2,

yes you are welcome.
Please select your worker name with your username extension and a running number, uniq number for each miner

bc1qeuupt2tgerfum8jclt8aklu9cdmzzkwml9lg7c.paid2_1
bc1qeuupt2tgerfum8jclt8aklu9cdmzzkwml9lg7c.paid2_2
bc1qeuupt2tgerfum8jclt8aklu9cdmzzkwml9lg7c.paid2_3
etc...

We are happy about every new person who supports us and we would love it, if we can see some pictures of your mini mining farm  Grin

##################

Hallo,
ich bin der Neue und seit gestern beim Bitaxe Gruppen Mining dabei Cheesy

Danke für die Möglichkeit Smiley
Ende gut alles gut, herzlich Willkommen OrangeHash,

und danke an @mole0815 für den Support den Account freizuschalten, wor ja nicht so leicht wie anfangs gedacht Smiley
Und OrangeHash sagte noch in der Telegram Gruppe, er ist nicht so der Forum type, ist alles so kompliziert immer, und was passiert, es wurde kompliziert  Grin Grin


Best regards und viele Grüße
Willi

newbie
Activity: 5
Merit: 5
December 14, 2023, 09:10:32 AM
#38
Hallo,
ich bin der Neue und seit gestern beim Bitaxe Gruppen Mining dabei Cheesy

Danke für die Möglichkeit Smiley
hero member
Activity: 504
Merit: 1065
Crypto Swap Exchange
December 14, 2023, 07:19:00 AM
#37
Hello Willi  Smiley

Very nice project!

I can add some Bitaxes, and gekkosciences ASICs soon if you accept me  Smiley
legendary
Activity: 3304
Merit: 8633
Crypto Swap Exchange
December 14, 2023, 07:16:18 AM
#36
Bist du dann auch für den 10% Bonus für den Miner der den Block findet oder eher nicht?

Dann drücke ich mal die Daumen das du deinen letzten Miner bald wieder in Betrieb bekommst und ebenfalls würden wir uns über deine Miner unter der gemeinsamen Adresse freuen.

Viele Grüße
Willi

ja, die 10% sind eine sehr gute option, die ich auch befürworte. kannst mich dann also auch da auflisten

und der eine compac f miner, wird erstmal in der schublade landen... die nächste anschaffung was das mining angeht, wird dann die bitaxeHEX werden
legendary
Activity: 3500
Merit: 2792
Enjoy 500% bonus + 70 FS
December 14, 2023, 06:06:14 AM
#35
Rent_a_Ray, sehr cooles Bild hab gleich mal damit etwas Werbung auf dem CKSolo Pool Beitrag gemacht Smiley

Sau geil...

Mal schauen vielleicht kommt ja noch jemand dazu
https://bitcointalksearch.org/topic/m.63323344
legendary
Activity: 3500
Merit: 2792
Enjoy 500% bonus + 70 FS
December 14, 2023, 03:43:53 AM
#34
Bist du dann auch für den 10% Bonus für den Miner der den Block findet oder eher nicht?

Dann drücke ich mal die Daumen das du deinen letzten Miner bald wieder in Betrieb bekommst und ebenfalls würden wir uns über deine Miner unter der gemeinsamen Adresse freuen.

Viele Grüße
Willi
legendary
Activity: 3304
Merit: 8633
Crypto Swap Exchange
December 14, 2023, 03:37:17 AM
#33

Hast Du heute den Tag mit tuning verbracht, oder erwartest Du noch Zuwachs für die weiteren 400GH/s? Wink

ich habe gestern etwas an der config gespielt und habe somit alle meine miner etwas hochgetaktet Wink
dabei hat ein port-paar auf dem gekko hub gestern noch den geist aufgegeben und somit kann ich meinen sechsten gekko compac f stick nicht mehr betreiben Tongue

Da Du ja anscheinend mit Abstand die größte Hashrate ins Race bringst, würde mich deine Meinung zu den hier vorgeschlagenen Spielregeln interessieren?

was die abstimmung angeht wäre ich natürlich für die folgende option: [  ] Blockfund teilen durch Anzahl Shared die geliefert wurden
aber da ich kein 'schwein' sein möchte, tendiere ich zu dieser option, falls ich irgendwann dann auf die gemeinsame adresse umstellen sollte: [ x ] Blockfund teilen durch Anzahl Miner Wink
legendary
Activity: 1344
Merit: 1046
December 14, 2023, 02:04:48 AM
#32
Juhuu, los geht's wieder einer dabei.



Cheers,
Ray
legendary
Activity: 3500
Merit: 2792
Enjoy 500% bonus + 70 FS
December 13, 2023, 04:30:16 PM
#31
Aus der Bitaxe / Solo Mining Telegramgruppe wo ich auch 7nterwegs bin, wollte sich gerade jemand anmelden im Forum um unserer Race beizutreten, das ging nicht weil er VPN benutzt. Er wird sich noch anmelden und hab ihm vorab schon mal erlaubt seine miner auf unsere Adresse umzustellen.

@Telegram/@PurpleHash21 schonmal vorab willkommen hier im Forum. Du kannst deine miner gerne umstellen, sobald ich sie sehe trage ich sie in die Tabelle ein.

Sehr komisch das unser Forum VPN / Tor Exit Nodes teilweise sperrt, da wir ja alle auf Privatsphäre stehen.
Ok aber ein anderes Thema.
legendary
Activity: 3486
Merit: 2287
Top Crypto Casino
December 13, 2023, 01:46:36 PM
#30
und sei bitte so lieb und ändere mein speed auf ~6.5th/s Wink

Hast Du heute den Tag mit tuning verbracht, oder erwartest Du noch Zuwachs für die weiteren 400GH/s? Wink
Da Du ja anscheinend mit Abstand die größte Hashrate ins Race bringst, würde mich deine Meinung zu den hier vorgeschlagenen Spielregeln interessieren?
legendary
Activity: 3304
Merit: 8633
Crypto Swap Exchange
December 13, 2023, 11:54:47 AM
#29
✂️
Gerne auch das eine oder andere Foto zu den Minern und euer Setup posten.
✂️

dann möchte ich auch mal mein aktuelles setup in bildern posten. wäre auch schön @willi9974, wenn du dann die jeweiligen setups in deinem beitrag unter der ganzen übersicht posten würdest
dann hätten wir irgendwann dann alles auf einem blick Smiley
und sei bitte so lieb und ändere mein speed auf ~6.5th/s Wink

Pages:
Jump to: