It was the Bitcointalk forum that inspired us to create Bitcointalksearch.org - Bitcointalk is an excellent site that should be the default page for anybody dealing in cryptocurrency, since it is a virtual gold-mine of data. However, our experience and user feedback led us create our site; Bitcointalk's search is slow, and difficult to get the results you need, because you need to log in first to find anything useful - furthermore, there are rate limiters for their search functionality.
The aim of our project is to create a faster website that yields more results and faster without having to create an account and eliminate the need to log in - your personal data, therefore, will never be in jeopardy since we are not asking for any of your data and you don't need to provide them to use our site with all of its capabilities.
We created this website with the sole purpose of users being able to search quickly and efficiently in the field of cryptocurrency so they will have access to the latest and most accurate information and thereby assisting the crypto-community at large.
*** ccminer 1.5-git for nVidia GPUs by tpruvot@github ***
Built with the nVidia CUDA SDK 6.5
Based on pooler cpuminer 2.3.2
CUDA support by Christian Buchner and Christian H.
Include some of djm34 additions and sp optimisations
BTC donation address: 1AJdfCpLWPNoAMDfHF1wD5y8VgKSSTHxPo
[2014-11-23 03:34:06] Starting Stratum on stratum+tcp://yaamp.com:3633
[2014-11-23 03:34:06] NVML GPU monitoring enabled.
[2014-11-23 03:34:06] 1 miner threads started, using 'x13' algorithm.
[2014-11-23 03:34:06] Stratum extranonce answer id is not correct!
[2014-11-23 03:34:06] stratum time is at least 34s in the future
[2014-11-23 03:34:06] yaamp.com:3633 x13 block 8885
[2014-11-23 03:34:06] accepted: 1/1 (100.00%), 0.00 khash/s yay!!!
[2014-11-23 03:34:16] stratum time is at least 87s in the future
[2014-11-23 03:34:16] yaamp.com:3633 x13 block 8885
[2014-11-23 03:34:16] GPU #0: GeForce GTX 660, 1291 kH/s
[2014-11-23 03:35:16] GPU #0: GeForce GTX 660, 1287 kH/s
[2014-11-23 03:35:19] stratum time is at least 88s in the future
[2014-11-23 03:35:19] yaamp.com:3633 x13 block 8885
[2014-11-23 03:35:19] GPU #0: GeForce GTX 660, 1290 kH/s
[2014-11-23 03:36:20] GPU #0: GeForce GTX 660, 1285 kH/s
[2014-11-23 03:36:24] yaamp.com:3633 x13 block 8885
[2014-11-23 03:36:24] GPU #0: GeForce GTX 660, 1290 kH/s
[2014-11-23 03:36:31] yaamp.com:3633 x13 block 78884
[2014-11-23 03:36:31] GPU #0: GeForce GTX 660, 1290 kH/s
using System;
using System.Net.Sockets;
using System.Text;
namespace ccMonitor
{
static class Api
{
public static string GetSummary(string ip = "127.0.0.1", int port = 4068)
{
return Request(ip, port, "summary");
}
public static string GetThreads(string ip = "127.0.0.1", int port = 4068)
{
return Request(ip, port, "threads");
}
public static string GetHistory(int thread = 0 , string ip = "127.0.0.1", int port = 4068)
{
return Request(ip, port, "histo|" + thread);
}
private static string Request(string ip, int port, string message)
{
string responseData;
using (TcpClient client = new TcpClient(ip, port))
using (NetworkStream stream = client.GetStream())
{
byte[] data = Encoding.ASCII.GetBytes(message);
stream.Write(data, 0, data.Length);
data = new Byte[2560];
int bytes = stream.Read(data, 0, data.Length);
responseData = Encoding.ASCII.GetString(data, 0, bytes);
}
return responseData;
}
}
}