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.
clear
clc
fileName1 = 'puzzle.txt';
fileID1 = fopen(fileName1,'r');
%Define file formate, integers seperated by \t
formatSpec = '%i %i';
%Read file into matrix A
A = fscanf(fileID1,formatSpec);
fclose(fileID1);
%Convert matrix into x and y vector
xvector=A(1:2:length(A)-1);
yvector=A(2:2:length(A));
%Plot the solution
scatter(xvector, yvector,'filled')
%Create/open file for SMF code output
fileID2 = fopen('puzzle_smf.txt','wt');
%Table start
fprintf(fileID2,'[table]\n');
%Row start
fprintf(fileID2,'[tr]\n');
%Run index loop
index = 1;
for row=1:25;
%Start row code
fprintf(fileID2,'[td][/td]');
for col=1:26;
%print as two digit format with leading zero
formatSpec = '[td]%02d[/td]';
%Write a col value
fprintf(fileID2,formatSpec,A(index));
index = index +1;
end
%End row code
fprintf(fileID2,'\n[/tr]\n');
end
%table end
fprintf(fileID2,'[/table]');
fclose(fileID2);