Bitcoin Forum
May 28, 2024, 05:43:57 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 [52] 53 54 55 56 57 58 »
  Print  
Author Topic: [ANN] Zettelkasten - ZTTL, New Algo: BurgerHash V6 🍔, CPU-SOLO-mineable  (Read 51019 times)
zettelkasten (OP)
Member
**
Offline Offline

Activity: 486
Merit: 12

Zettelkasten Dev


View Profile
December 06, 2019, 12:57:48 PM
 #1021

Working on new design for both wallets (main net and test net).
We will introduce a "visual timeline" that will help with the testing of tx-appendix messaging system (once it's finished)

Here's an early stage:


ZetterxMoFb2crhpMgRCHkivyrbapnQpzJ
zettelkasten (OP)
Member
**
Offline Offline

Activity: 486
Merit: 12

Zettelkasten Dev


View Profile
December 06, 2019, 03:13:12 PM
 #1022

Reminder that you can earn ZTTL by mining testnet (BURGER).

You can then convert the BURGER 100:1 to ZTTL by trading directly with me.

Read more about this here:

https://www.zetteltalk.org/viewtopic.php?f=5&t=28#p56

ZetterxMoFb2crhpMgRCHkivyrbapnQpzJ
zettelkasten (OP)
Member
**
Offline Offline

Activity: 486
Merit: 12

Zettelkasten Dev


View Profile
December 08, 2019, 01:59:10 PM
 #1023

Safe Trade (our main exchange) has received big updates.

You will need to migrate your account (or sign up if you haven't already):

https://safe.trade/signup?refid=SN01019A8195


ZetterxMoFb2crhpMgRCHkivyrbapnQpzJ
zettelkasten (OP)
Member
**
Offline Offline

Activity: 486
Merit: 12

Zettelkasten Dev


View Profile
December 08, 2019, 02:02:52 PM
 #1024

These puzzles are fun, here is another one for you to solve:



Winner takes all!

Congrats to a guy named "Christopher Tobias" that cracked this riddle.
He even posted the script he used to crack it:

Code:
const base58check = require('base58check');

const key = "82oMpc3DeEseMVXfXGq7R8ucYNxemeAW2T8MNFSPAYYiMUGgCy2";
const bs58alph = "123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz";

const start = 1;
const end = 50;

String.prototype.replaceAt = function(index, replacement) {
    return this.substr(0, index) + replacement+ this.substr(index + replacement.length);
};

for (let i = start; i <= end; i += 1) {
  for (let j = i + 1; j <= end; j += 1) {
    for (let k = 0; k < bs58alph.length; k += 1) {
      for (let l = 0; l < bs58alph.length; l += 1) {
        let k_copy = key.replaceAt(i, bs58alph[k]);
        k_copy = k_copy.replaceAt(j, bs58alph[l]);

        if (k_copy == key) {
          continue;
        }

        process.stdout.write(`Trying: ${k_copy}\r`);

        try {
          let res = base58check.decode(k_copy, "hex");
          console.log(`Possible key found: ${k_copy} ${JSON.stringify(res)}`);
        } catch (e) {
          continue;
        }
      }
    }
  }
}

I took it from the ZTTL thread in the "CPU Miners Club" discord server: https://discord.gg/jYCEUC

You may want to join their too, cause I will be visiting and posting there from time to time. Thanks

ZetterxMoFb2crhpMgRCHkivyrbapnQpzJ
chrysophylax
Legendary
*
Offline Offline

Activity: 2828
Merit: 1091


--- ChainWorks Industries ---


View Profile WWW
December 11, 2019, 01:04:45 AM
 #1025

These puzzles are fun, here is another one for you to solve:



Winner takes all!

Congrats to a guy named "Christopher Tobias" that cracked this riddle.
He even posted the script he used to crack it:

Code:
const base58check = require('base58check');

const key = "82oMpc3DeEseMVXfXGq7R8ucYNxemeAW2T8MNFSPAYYiMUGgCy2";
const bs58alph = "123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz";

const start = 1;
const end = 50;

String.prototype.replaceAt = function(index, replacement) {
    return this.substr(0, index) + replacement+ this.substr(index + replacement.length);
};

for (let i = start; i <= end; i += 1) {
  for (let j = i + 1; j <= end; j += 1) {
    for (let k = 0; k < bs58alph.length; k += 1) {
      for (let l = 0; l < bs58alph.length; l += 1) {
        let k_copy = key.replaceAt(i, bs58alph[k]);
        k_copy = k_copy.replaceAt(j, bs58alph[l]);

        if (k_copy == key) {
          continue;
        }

        process.stdout.write(`Trying: ${k_copy}\r`);

        try {
          let res = base58check.decode(k_copy, "hex");
          console.log(`Possible key found: ${k_copy} ${JSON.stringify(res)}`);
        } catch (e) {
          continue;
        }
      }
    }
  }
}

I took it from the ZTTL thread in the "CPU Miners Club" discord server: https://discord.gg/jYCEUC

You may want to join their too, cause I will be visiting and posting there from time to time. Thanks

Brilliant ...

#crysx

zettelkasten (OP)
Member
**
Offline Offline

Activity: 486
Merit: 12

Zettelkasten Dev


View Profile
December 14, 2019, 05:00:17 PM
 #1026

New Bootstrap files available, including up to block #900000

https://zettelkasten.org/downloads/bootstrap.zip


ZetterxMoFb2crhpMgRCHkivyrbapnQpzJ
minerja
Sr. Member
****
Offline Offline

Activity: 1248
Merit: 297


View Profile
December 15, 2019, 01:58:07 AM
 #1027

Just out of interest, whats the going rate for Zettel at the moment please? In GBP or $.

Thanks
zettelkasten (OP)
Member
**
Offline Offline

Activity: 486
Merit: 12

Zettelkasten Dev


View Profile
December 17, 2019, 07:32:06 PM
 #1028

Just out of interest, whats the going rate for Zettel at the moment please? In GBP or $.

Thanks

About 0.5 cent
(80 sats at 6700$ per BTC)

ZetterxMoFb2crhpMgRCHkivyrbapnQpzJ
minerja
Sr. Member
****
Offline Offline

Activity: 1248
Merit: 297


View Profile
December 17, 2019, 10:12:09 PM
 #1029

Just out of interest, whats the going rate for Zettel at the moment please? In GBP or $.

Thanks

About 0.5 cent
(80 sats at 6700$ per BTC)

So, with my Ryzen cpu, i am mining no more than 100 a day, so thats 50 cents a day?

SO basically completely pointless, since its costing me $1.50 in power
zettelkasten (OP)
Member
**
Offline Offline

Activity: 486
Merit: 12

Zettelkasten Dev


View Profile
December 18, 2019, 01:09:33 PM
 #1030

Just out of interest, whats the going rate for Zettel at the moment please? In GBP or $.

Thanks

About 0.5 cent
(80 sats at 6700$ per BTC)

So, with my Ryzen cpu, i am mining no more than 100 a day, so thats 50 cents a day?

SO basically completely pointless, since its costing me $1.50 in power

It's not pointless, you can always improve your situation if you know how.
Also, your situation is not representative of everyone else's.

a) what kind of Ryzen do you have? Are you mining on linux 64 bit? 100 ZTTL would be less than 1% of daily coins, so you say you only mine with 400 kh/s, doesn't sound right.

b) others pay much less for power (it's them who are mining the bulk of the current 40 MH/s)

c) price will fluctuate wildly, depending on many factors, e.g. BTC currently crashing hard. So buying may indeed be the better choice right now.


ZetterxMoFb2crhpMgRCHkivyrbapnQpzJ
zettelkasten (OP)
Member
**
Offline Offline

Activity: 486
Merit: 12

Zettelkasten Dev


View Profile
December 18, 2019, 01:50:10 PM
 #1031

Ryzen 7 1700X

ca 700 kH/s

Ubuntu 18 (64 bit)

ZetterxMoFb2crhpMgRCHkivyrbapnQpzJ
minerja
Sr. Member
****
Offline Offline

Activity: 1248
Merit: 297


View Profile
December 18, 2019, 02:06:48 PM
 #1032

Just out of interest, whats the going rate for Zettel at the moment please? In GBP or $.

Thanks

About 0.5 cent
(80 sats at 6700$ per BTC)

So, with my Ryzen cpu, i am mining no more than 100 a day, so thats 50 cents a day?

SO basically completely pointless, since its costing me $1.50 in power

It's not pointless, you can always improve your situation if you know how.
Also, your situation is not representative of everyone else's.

a) what kind of Ryzen do you have? Are you mining on linux 64 bit? 100 ZTTL would be less than 1% of daily coins, so you say you only mine with 400 kh/s, doesn't sound right.

b) others pay much less for power (it's them who are mining the bulk of the current 40 MH/s)

c) price will fluctuate wildly, depending on many factors, e.g. BTC currently crashing hard. So buying may indeed be the better choice right now.



R1800x 32GB ram, SSD, linuc mint 19.3, using 15 threads....695kh/s. Power is £0.16 to £0.18 /kwr over here
https://ibb.co/kSLDc7G

I recon miner would have to be at least double that hashrate to even break even.

have to say, its not just this coin. As far as mining goes, pretty much all ALT coins are screwed.
Look @ Veruscoin, and its new algo...a few dozen peeps made hundreds of dollars over 48-72 hours, but now it has normalised again, its back to less than half a dollar a day.

Thing with your algo, is simple. Without a pool, its winner takes all....so he/she who has a decent server chip, or threadripper, will win the vast majority of the coins, leaving scraps for the rest of us.

I'd be interested to know what someone with say a 1950, or 2950 with quad channel ram is pulling....i bet its more like 2-3 mh/s
In fact, would be interesting to know what the AMD 3700x does, same threadcount as me, but double the L3 cache, bet that makes a huge difference.

Interesting to see where the whole market goes, i can't see how much longer peeps are going to spend $500-100$ on a rig, just to make 30-50 cents a day...


zettelkasten (OP)
Member
**
Offline Offline

Activity: 486
Merit: 12

Zettelkasten Dev


View Profile
December 18, 2019, 02:28:33 PM
 #1033


Interesting to see where the whole market goes, i can't see how much longer peeps are going to spend $500-100$ on a rig, just to make 30-50 cents a day...


As a miner, if you don't sell immediately but place sell orders at levels where your ROI is the way you want it, you can improve your situation quite considerably.



Looking back at 2019, ZTTL had atleast 5 price spikes, at pretty regularly, where you would have been able to sell your coins for 4 or 5 times the average price.

That's how the altcoin market works. If you just constantly sell into an already low liquidity market, it's like you are pissing in your own soup.
No, what you need to do is, especially as a miner, is to hodl and place sell orders at EXACTLY the price level that works for you.

ZetterxMoFb2crhpMgRCHkivyrbapnQpzJ
zettelkasten (OP)
Member
**
Offline Offline

Activity: 486
Merit: 12

Zettelkasten Dev


View Profile
December 18, 2019, 02:31:34 PM
 #1034

here a better view (1D chart):



https://safe.trade/trading/zttlbtc

ZetterxMoFb2crhpMgRCHkivyrbapnQpzJ
minerja
Sr. Member
****
Offline Offline

Activity: 1248
Merit: 297


View Profile
December 20, 2019, 01:22:19 PM
 #1035

Guys,

just wanted to say, done my first Burger to Zettel swap, and it was super easy, and super quick...i mean lightning quick

9900 BURGER traded for 99 ZTTL
http://zettel.dashnetwork.info/tx/a5d0afcd9364cb1a1c3b57178da62c697ad38193269359273fea70b9824f9a6e

Happy mining
J

moonth
Newbie
*
Offline Offline

Activity: 2
Merit: 0


View Profile
January 14, 2020, 12:00:45 PM
 #1036

any news ?
new exchange ?
hardfork ?
almost 2 years, i never seen moving this project seriously..
scamalerts2020
Newbie
*
Offline Offline

Activity: 3
Merit: 0


View Profile
January 14, 2020, 10:33:31 PM
Last edit: January 14, 2020, 10:46:34 PM by scamalerts2020
 #1037

Beware this project totally scam..
dont invest your fund on this project...!!! this project create for joke..
if you believe this project will be success its wrong..
the dev manipulation your mind, he just stell your money...
waste time if you believe this project,. believe me..
dont waste your money and time, mining and invest on this project..

second post
if my post you delete again..
ok.. its just begining !! lets fight with me..
im done SS this post..
chrysophylax
Legendary
*
Offline Offline

Activity: 2828
Merit: 1091


--- ChainWorks Industries ---


View Profile WWW
January 19, 2020, 02:58:25 AM
 #1038

Beware this project totally scam..
dont invest your fund on this project...!!! this project create for joke..
if you believe this project will be success its wrong..
the dev manipulation your mind, he just stell your money...
waste time if you believe this project,. believe me..
dont waste your money and time, mining and invest on this project..

second post
if my post you delete again..
ok.. its just begining !! lets fight with me..
im done SS this post..


if your post is deleted, then he is afraid this project will die ...
and it's probably that right this project is  scam...
scared with bad fundamental, trolling, indication scam project.

Scam? ...

You people just use that word as if you actually understand what it means.

How is this project a 'scam' if it was originally (and still is from what I can see) based on designing an Algo that is a self augmenting Algo for CPU Mining?

Explain how that idea is setup as a 'scam' and how that is 'scamming' people? Do you even know what the word 'scam' actually means?

I have been around long enough (9 Years now) in the CryptoIndustry to know that most of the people in Crypto, are actually NOT in Crypto, but in the business of trying to make money from everything that the CryptoIndustry is.

I'm astounded at some of the trolLing and rubbish that gets published here. READ what the main purpose of this project is, and not just what you BELIEVE it is. Just because YOU decided to gamble (no - not 'invest', which is another word used in this industry by people that have no idea the difference) doesn't mean that it was a project that compelled you to gamble your time or money on it. The project has almost succeeded in creating a self augmenting Algo, and as such is no 'scam' of any sort.

In fact, the code that has gone into this shows how skilled the developer actually is, which would leave me no hesitation in having him/her joining our projects or even our Company. Grow up people, and actually READ deliberately showing how pathetic your posts actually are.

#crysx

scamalerts2020
Newbie
*
Offline Offline

Activity: 3
Merit: 0


View Profile
January 19, 2020, 11:02:12 PM
 #1039

Quote

Scam? ...

You people just use that word as if you actually understand what it means.

How is this project a 'scam' if it was originally (and still is from what I can see) based on designing an Algo that is a self augmenting Algo for CPU Mining?

Explain how that idea is setup as a 'scam' and how that is 'scamming' people? Do you even know what the word 'scam' actually means?

I have been around long enough (9 Years now) in the CryptoIndustry to know that most of the people in Crypto, are actually NOT in Crypto, but in the business of trying to make money from everything that the CryptoIndustry is.

I'm astounded at some of the trolLing and rubbish that gets published here. READ what the main purpose of this project is, and not just what you BELIEVE it is. Just because YOU decided to gamble (no - not 'invest', which is another word used in this industry by people that have no idea the difference) doesn't mean that it was a project that compelled you to gamble your time or money on it. The project has almost succeeded in creating a self augmenting Algo, and as such is no 'scam' of any sort.

In fact, the code that has gone into this shows how skilled the developer actually is, which would leave me no hesitation in having him/her joining our projects or even our Company. Grow up people, and actually READ deliberately showing how pathetic your posts actually are.

#crysx

up to you...
don't blame the community if community don't support this project...
only a few supporters cannot move the project ...
keep support until if you die :p
chrysophylax
Legendary
*
Offline Offline

Activity: 2828
Merit: 1091


--- ChainWorks Industries ---


View Profile WWW
February 05, 2020, 12:09:27 AM
Merited by minerja (1)
 #1040

Quote

Scam? ...

You people just use that word as if you actually understand what it means.

How is this project a 'scam' if it was originally (and still is from what I can see) based on designing an Algo that is a self augmenting Algo for CPU Mining?

Explain how that idea is setup as a 'scam' and how that is 'scamming' people? Do you even know what the word 'scam' actually means?

I have been around long enough (9 Years now) in the CryptoIndustry to know that most of the people in Crypto, are actually NOT in Crypto, but in the business of trying to make money from everything that the CryptoIndustry is.

I'm astounded at some of the trolLing and rubbish that gets published here. READ what the main purpose of this project is, and not just what you BELIEVE it is. Just because YOU decided to gamble (no - not 'invest', which is another word used in this industry by people that have no idea the difference) doesn't mean that it was a project that compelled you to gamble your time or money on it. The project has almost succeeded in creating a self augmenting Algo, and as such is no 'scam' of any sort.

In fact, the code that has gone into this shows how skilled the developer actually is, which would leave me no hesitation in having him/her joining our projects or even our Company. Grow up people, and actually READ deliberately showing how pathetic your posts actually are.

#crysx

up to you...
don't blame the community if community don't support this project...
only a few supporters cannot move the project ...
keep support until if you die :p

It isn't a matter of support of not support ...

It is a matter of YOU calling it a SCAM. KNOW what the word means and THEN if you feel that it is, state it. Scamming people is the process of cheating money from those that are gullible enough to NOT do any backend research and due diligence. Money is not involved here at all. Where is the money taken from you to the dev? Where is the transfer of funds? So in effect, where is the scam?

I am not defending the dev as such, I am just specifying the CORRECT manner of what this project is. It certainly isn't a scam of any sort. It IS an experiment into Dynamic Algorithm Change, and it IS something that the dev has stated from the beginning. How is that a scam?

If you just start up a profile to do nothing else but troll, then I seriously suggest you find another hobby. You want to hammer REAL scams? Look around the richest of the projects and comment there. Some of those who started ripping people off with false claims of project promises, ICO rip offs and so many other forms of monetary theft, are the the ones you need to be looking at calling 'scam'. Those that ARE running around with the wealth they have created from ripping peoples hard earned money off, who travel in luxury and spend in one week more than most make in a year. Yell at those REAL scammers.

But you hammer this project? Really?

#crysx

Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 [52] 53 54 55 56 57 58 »
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!