Bitcoin Forum
June 17, 2024, 06:46:35 PM *
News: Voting for pizza day contest
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1]
1  Bitcoin / Mining software (miners) / Re: Simple CPU stratum miner Implementation on: December 11, 2015, 01:00:21 AM
Yes, because no one helped here.
I asked help for 2 weeks, and all just wasted my time, while I tried to find a solution, without sucess.

Also, I'm talking with one that do a petty bad things, I can see, so, you aren't in conditions to judge here.

Just do me  afavor, delete my account, as, I can't do it, it's missing the option in my profile.

It's not funny to have 360 seconds of waiting every time I write a post or a message, seriously, here I feel like a criminal, not like a normal student like I'm.

P.S: I always know what I write, I'm not stupid.
2  Bitcoin / Mining software (miners) / Re: Simple CPU stratum miner Implementation on: December 11, 2015, 12:49:00 AM
What a winner, it's our fault you did badly...

I simply asked for help, it's a fault to ask for help?
3  Bitcoin / Mining software (miners) / Re: Simple CPU stratum miner Implementation on: December 11, 2015, 12:15:42 AM
Seriously, thanks to all, I got a bad mark, really, THANKS!

Also, I speak bad of this forum, under every light and circumstance!

The karma will do it's move.

To the Admin, don't waste your time if you want to bann me etc... I'm just goigng to delete this account, I don't wanna to stay here more, in this shitty stupid place where no one helps!

To sum up, thanks to Kano, and who thinks I was working on a stupid botnet or the hell it's, I'll always speak and write bad about this forum!

I hope to not see this place and everyone of you again.


P.S: Actually I can't delete my account, as the option is missing, I'm not surprised...

In any case, I'll not come back, NEVER!!!!
4  Bitcoin / Mining software (miners) / Re: Simple CPU stratum miner Implementation on: December 03, 2015, 12:57:55 PM
botnet ...
Personally I would like to run such a miner under Windows at my work during working day (after end of working day my laptop crunches BOINC projects).

Seriously?
A single core CPU miner?
If you found a single share or block, it'll be a real miracle, you should know it.

In any case, can we stop making unuseful comments?

Thanks.
5  Bitcoin / Mining software (miners) / Re: Simple CPU stratum miner Implementation on: December 01, 2015, 09:04:12 PM
It's a good suggestion, thanks, but I only know the C# language so far, that is the real problem, I didn't find a C# proxy for now.
Did you know one?
6  Bitcoin / Mining software (miners) / Re: Simple CPU stratum miner Implementation on: December 01, 2015, 04:23:57 PM
Well, if I'm wrong on something, why then you don't simple tell me where I'm wrong without saying it like I'm a completely ignorant?
I'm pretty new to all of this, and never read about ASCI before, it was obvious, I write it at the beginning that I was new, or not?

In every case, stop with all this complaning about everything I say or did, if somebody want to help me, just did it here or with a PM, I have only a few days left, and I need to hurry.

I wasted too much time for complains.

Also, thank for saying it nepaluz.
7  Bitcoin / Mining software (miners) / Re: Simple CPU stratum miner Implementation on: November 30, 2015, 03:16:17 PM
In fact, I'm NOT asking others to do it for me.

I'm asking others how I can connect in first, because I didn't understand it right, as the server, simply close the connection.

I read on how it works, all say TCP, but TCP doens't connect, so I'm confused.

The education works fine too if somebody tells me where I'm doing wrong, I'll be able to learn it quickier and do it right, or I'm wrong?

So, I remember, I'm asking for help with a problem into the code, not for a program just completed by others!
8  Bitcoin / Mining software (miners) / Re: Simple CPU stratum miner Implementation on: November 28, 2015, 09:24:03 PM
Yeah, so, I bring an ASCI miner to school and say that I did it?
The best way to have the worst mark...
9  Bitcoin / Mining software (miners) / Re: Simple CPU stratum miner Implementation on: November 28, 2015, 12:11:50 PM
I'm only at the second year of programming, it's the first time I use the socket and net dll.

And, before yesterday I don't know what a botnet was.

it's only a project for school, I need a good vote as I'm a bit low on this school subject.

I know that a CPU miner is unuseful for bitcoin, but it's the best project I cna think of to try and take the best mark form my teacher.

I have only 1 week left before I have to send the work.

Also, for a botnet, it should be more comfortable to write right into the code the link, port etc to connect to the pool, and not using an external file!

I any case, I don't use any vpn, or whatever to hide form where I'm, if you want I tell you too, it's not a problem for me.

Just please, I'll not make any trouble, I just need a good mark for it, please, I'm only asking for some help, nothing more.

If there is anything I cna do to prove that it's a botnet, or any kind of similar thing, just tell me, I'll prove that it's a simple school project, nothing more nothing less, promise.
10  Bitcoin / Mining software (miners) / Re: Simple CPU stratum miner Implementation on: November 27, 2015, 02:40:45 PM
It's happy to see that I'm seen like a criminal when I ask for simple help.

Yeah... a very helping place isn't it?
11  Bitcoin / Mining software (miners) / Re: Simple CPU stratum miner Implementation on: November 27, 2015, 12:43:44 PM
Why I want to create a botnet for a school project?
This make no sense, also, I'll be the first to  make this project for school, and I was looking for something different and interesting.

I'm not one of these that want to create botnet or what else.

it's a simple cpu miner, I'm asking for help, so, if anyone want to help me, I'm glad for it.

So, thanks to who'll help me doing this little project.
12  Bitcoin / Mining software (miners) / Re: Simple CPU startum miner Implementation on: November 25, 2015, 11:47:10 PM
Here I post what I have done from now on.
I prefer is someone helps me, like, we make it together, so, to make it simple.
The main objective is that I can learn how a miner work creating one.

the code:


Code:
using System;
using System.IO;
using System.Text;
using System.Net.Sockets;
using System.Security.Cryptography;
namespace BitcoinMiner
{
    class MainClass
    {
        static internal string user, pass, pool, poolPort, id, extraNonce1, extraNonce2;
        static internal TcpClient tcp= new TcpClient();

        public static void Main()
        {
            if (!File.Exists("conf.txt"))
            {
                Console.WriteLine("FILE DI CONFIGURAZIONE MANCANTE!");
                Console.ReadLine();
                return;
            }
            else
                Carica();
            Invia("connessione");
            Console.ReadLine();
        }
        static internal void Carica()
        {
            StreamReader sr = new StreamReader("conf.txt");
            pool = sr.ReadLine();
            poolPort = sr.ReadLine();
            user = sr.ReadLine();
            pass = sr.ReadLine();
            sr.Close();
            ScriviLog("Configurazione caricata correttamente.");
        }
        static internal void Invia(string tipo)
        {
            NetworkStream stream;
            switch (tipo)
            {
                case "connessione":
                    {//TCP non funziona!!!! forse serve il sistema delle richieste HTTP!!!!!!!!!!!!
                        ScriviLog("connessione in corso...");
                        tcp.Connect(pool, Convert.ToInt32(poolPort));
                        stream = tcp.GetStream();
                        byte[] a = Encoding.UTF8.GetBytes("{\"id\": 1, \"method\": \"mining.subscribe\", \"params\": []}\\n");
                        stream.Write(a, 0, a.Length);
                        byte[] d = new byte[tcp.ReceiveBufferSize];
                        stream.Read(d, 0, (int)tcp.ReceiveBufferSize);
                        ScriviLog(Encoding.UTF8.GetString(d));
                        stream.Close();
                        break;
                    }
            }
        }
        static internal void ScriviLog(string log)
        {
            Console.WriteLine("[" + DateTime.Now + "] " + log);
        }
    }
}
13  Bitcoin / Mining software (miners) / Simple CPU stratum miner Implementation on: November 25, 2015, 10:28:36 PM
Hi to all, for a school project I'll love to implement a simple C# CPU startum miner that connect with a real pool.

Actually I know C# 4.0

Also, here are some details:
Port:3333
JASON-RPC

Anyone can help me? I'm stuck at the connection, using a simple TCP doesn't work at all.

Thanks to all!
Pages: [1]
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!