Bitcoin Forum
May 26, 2024, 11:26:23 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
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 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 ... 146 »
501  Bitcoin / Project Development / Re: Mining Control Panel & Managment Software (Web & desktop support) on: November 03, 2012, 10:24:25 PM
[Optimizations Notes]
Web pages could be (optionally)rendered a maximum once every 5 minutes (Except for dynamic pages like account settings where it needs to be updated instantly)
This can save query connections to the database again completely allowing more processing to the pushpoold/share INSERTS

but unless your using this with many many many people like 100's people which I doubt and closing connections correctly the mysql database shouldn't use more processing that would affect pushpoold
Actually now that you mention it I think the reason why so many complained about Mining Farm and Pushpoold was cuz of the table locking problems(MyISam), So I'll just take note to make it InnoDB for Pushpoold tables to prevent locking and web-frontend freeze ups.
502  Bitcoin / Project Development / Re: Mining Control Panel & Managment Software (Web & desktop support) on: November 03, 2012, 09:09:32 PM
[Optimizations Notes]
Web pages could be (optionally)rendered a maximum once every 5 minutes (Except for dynamic pages like account settings where it needs to be updated instantly)
This can save query connections to the database again completely allowing more processing to the pushpoold/share INSERTS
503  Economy / Services / Shane's Surveys (Beta Test) on: November 03, 2012, 06:07:22 AM
Hello Bitcoin community!

I created a website that is under beta testing and is code named "Shane's Surveys", The idea is for you to take surveys and you earn Bitcoins, I've tested it and it seems to be working for me so I'm looking for beta testers help me get this thing going. First off only 1 ad network is working the 2nd ad network called "Virool" isn't working at the moment but soon to be fixed.
Here is the link: http://pipboy3000.com/surveysite
Bitcoins are paid out with coinapult.com since you sign up with your email address.

Post bugs and errors here in this thread... Cheers!
504  Bitcoin / Development & Technical Discussion / Re: cbitcoin - Bitcoin implementation in C. Currently in development. on: November 03, 2012, 01:20:07 AM
Great stuff Grin
505  Bitcoin / Development & Technical Discussion / Re: Satoshi Bitcoin client variable explanation in main.h (Bitcoin Pseudocode Client on: November 03, 2012, 01:17:34 AM
Great stuff thanks everyone for the help, That's one step closer to compiling all this information together.
506  Bitcoin / Development & Technical Discussion / Re: Satoshi Bitcoin client variable explanation in main.h (Bitcoin Pseudocode Client on: November 02, 2012, 10:56:59 PM
Not sure how you missed this but:

Code:
[main.h]
...
static const int64 COIN = 100000000;
...
static const int64 MAX_MONEY = 21000000 * COIN;

to find such symbols (assuming they are in .h files) simply:
Code:
grep COIN *.h


That literately does not exist on main.h so I'm not sure which source code you are referring to.
Infact the integer 100000000 isn't even found on main.h on the github page https://github.com/bitcoin/bitcoin/blob/master/src/main.h
507  Bitcoin / Project Development / Re: Mining Control Panel & Managment Software (Web & desktop support) on: November 02, 2012, 10:54:19 PM
Excellent thanks for getting back to me so quickly, Cheers
508  Bitcoin / Project Development / Re: Mining Control Panel & Managment Software (Web & desktop support) on: November 02, 2012, 10:26:59 PM
Why you need desktop software, I would have everything running thru the website, your probably going to need background software processes to get the information to the mysql database. 
Website software will the priority over the Desktop since web development is my expertise and plus the website software will probably be preferred by most.



I can provide screenshots on request if anyone would like to see what I made Smiley!
Screen shots are always helpful, I need some ideas on how the GUI's should be set-up and what information/graphs operators like to see the most.


Was your project same idea or just Desktop/website only based? what languages did you use?
509  Bitcoin / Development & Technical Discussion / Satoshi Bitcoin client variable explanation in main.h (Bitcoin Pseudocode Client on: November 02, 2012, 07:34:03 AM
This is for research for the Bitcoin Pseudocode Client project where we attempt at making the Bitcoin client in multiple lanaguages with complete documentation and proccesses on everything in everylanguage, so Bitcoin speaks to Every developer, I'm doing this for free so every little bit helps (Link to project: https://github.com/Xenland/Bitcoin-Pseudocode-Client/tree/gh-pages)

My question to you is... Does anyone know what the following variables are for in main.h?
I just know what MAX_MONEY is the 21 million hard limit but I can't find the COIN variable(but i assume it is the value of 100000000 for converting to satoshi) in any of the bitcoin source files(how do devs usual search for variables globally through a project?)

I'm guessing MAX_BLOCK_SIZE is the amount of transactions in one block but in what units i wonder? (kilobyte limit?, tx limit?, etc)
What is max orphan transactions? why even have a max orphans? why not just toss'em?

Quote
static const unsigned int MAX_BLOCK_SIZE = 1000000;
static const unsigned int MAX_BLOCK_SIZE_GEN = MAX_BLOCK_SIZE/2;
static const unsigned int MAX_BLOCK_SIGOPS = MAX_BLOCK_SIZE/50;
static const unsigned int MAX_ORPHAN_TRANSACTIONS = MAX_BLOCK_SIZE/100;
static const unsigned int MAX_INV_SZ = 50000;
static const unsigned int MAX_BLOCKFILE_SIZE = 0x8000000; // 128 MiB
static const unsigned int BLOCKFILE_CHUNK_SIZE = 0x1000000; // 16 MiB
static const unsigned int UNDOFILE_CHUNK_SIZE = 0x100000; // 1 MiB
static const unsigned int MEMPOOL_HEIGHT = 0x7FFFFFFF;
static const int64 MIN_TX_FEE = 50000;
static const int64 MIN_RELAY_TX_FEE = 10000;
static const int64 MAX_MONEY = 21000000 * COIN;
inline bool MoneyRange(int64 nValue) { return (nValue >= 0 && nValue <= MAX_MONEY); }
static const int COINBASE_MATURITY = 100;
// Threshold for nLockTime: below this value it is interpreted as block number, otherwise as UNIX timestamp.
static const unsigned int LOCKTIME_THRESHOLD = 500000000; // Tue Nov  5 00:53:20 1985 UTC

Thank you everyone!
510  Bitcoin / Bitcoin Discussion / Mining C-Panel & management software ideas/features needed on: November 02, 2012, 07:15:24 AM
Post found here https://bitcointalk.org/index.php?topic=121993.0
511  Bitcoin / Project Development / Re: Mining Managment Software (Web & desktop support) on: November 02, 2012, 05:44:09 AM
I'd imagine the basics should be something like the following...


Website Software:
*Login/Register
*Check up on miners
*Withdraw -Coins
*Add/Remove Miners
*Loook at graphs

Desktop Software
*View graphs of stats
*Send commands to miners remotely(Start/Stop/Edit miner parameters)
512  Bitcoin / Project Development / Mining Control Panel & Managment Software (Web & desktop support) on: November 02, 2012, 05:24:13 AM
Hello everyone I plan on re-writing my Mining Farm application that was written for PHP, MySql, HTML, Pushpoold and Bitcoin. I would like to completely rewrite it so it's aim is for desktop and website software. Download packages will include 3 options (Desktop Support Only), (Website Support Only), (Desktop & Website Support).
I would like the software to incorporate Bitcoin integration as well as all or most of other AltCoin(s) Support.

This new project will be aimed at helping those who know how to set-up mining equipment already but who want a "Control Panel" to get stats on all their miners with out needed to open each miners terminal to calculate stats. Some other goals are to produce reports for groups miners, For example, A mining operator has some friends that want you the operator to manage their miners so they don't have to, you setup a contract/agreement on what you get paid in percentage and so the reports will produce what your friend get paid and what you get paid for managing their equipment so you can manually pay or automatically pay your friends.

I need from you is a list of features the basic desktop & website software should have(advanced features will come in due-time). Also I'm in need of a website-designer the requirements of the website designer is a PSD file of how the website software should look and I will slice up the PSD file and integrate it into the website software logic.

I will start the coding for this as soon as all the planning is in order, but the target date to get started for coding is December 1st 2012.

Lets get the basics down for what desktop and website software needs as far as managing your miners on a control panel setup.
513  Bitcoin / Project Development / Re: [ANNOUNCE] New Merchant Service on: October 22, 2012, 11:59:48 PM
Bitcoin need this!
514  Other / Off-topic / Re: Bitcoin memes! on: October 21, 2012, 09:41:45 PM



I just smoked me some Atlas sockpuppet!
515  Other / Off-topic / Re: Bitcoin memes! on: October 18, 2012, 02:46:39 AM
Those last two are truly epic!!

Love ya Bruno!



HAHA Most deff!
516  Other / Off-topic / Re: Oh why Oh Why did I use paypal.... on: October 15, 2012, 10:18:01 PM
The only thing I lost was 2 mini-serial-lcds and now i have a negative balance but good thing i spent (almost) everything right after he sent.... still the negative balance is not morally supporting to see when i log into paypal and in the back of my head. w/e the banks are going down once everyone realises that facebook credits are just as tangible as their USD currency in their bank and once that is realised they will accept Bitcoin.

I hope I get my money back but today I feel that I should just brush this off and keep pushing bitcoin even harder (in a respectable way) to the masses!

First lets start by getting Bitcoin into the firefox spellcheck as being a valid word not Bit coin or Bit-coin as the valid word... that really annoys me.
Next up we'll get it printed in the Dictionary, it will be listed as verb, noun, lol I gotta work on Bitcoinmall now thanks for your support mates. I'll keep updating the details as it comes peace!
517  Other / Off-topic / Re: Oh why Oh Why did I use paypal.... on: October 15, 2012, 12:52:56 AM
For some reason I acutally used paypal for doing business across international borders.... now some dood thought it would be funny to rip me off $120 of LCD screens(I even gave him a deal... sigh). And claims that the package I sent him was empty..... Oh gawd... Never again will i make this mistake... long story short i have a negative balance, and knowing paypal I will not get the refund the scamming customer will.

You obviously love pain?

lol, some truth to that maybe.
518  Other / Off-topic / Oh why Oh Why did I use paypal.... on: October 15, 2012, 12:48:19 AM
For some reason I acutally used paypal for doing business across international borders.... now some dood thought it would be funny to rip me off $120 of LCD screens(I even gave him a deal... sigh). And claims that the package I sent him was empty..... Oh gawd... Never again will i make this mistake... long story short i have a negative balance, and knowing paypal I will not get the refund the scamming customer will.
519  Bitcoin / Project Development / Re: With GLBSE gone, can somebody PLEASE write something like this or better? on: October 10, 2012, 10:30:29 PM
Sooo I guess its time to make a P2P Stock Exchange hehe Smiley Where do we begin Cheesy
520  Bitcoin / Development & Technical Discussion / Re: Double-spending with 6 confirmations on: October 08, 2012, 10:33:36 PM
If your so worried about this issue, I would recommend running 8 Bitocin nodes in different servers around the world and have only your clients connect to those 8 Bitcoin nodes ONLY and not the hardcoded IP addresses in Bitcoin, It would be impossible for anyone to find out all those 8 server(Unless you told them which your an idiot if that became the ase). This way you surround your self with "Clean" nodes and only if all 8 Bitcoin nodes were cancerous would your Clients turn cancerous which is infeasible.

I need a solution for everyone, not only for myself. But thx anyway.

Well then host 1000 Clean bitcoin nodes or at least host more Bitcoin nodes around the world more than cancer nodes.  Did anyone mention to you that its near impossible to know if you've taken over a Bitcoin client(Unless you have some kind of control over the computer it self to query the Bitcoin client for the connected nodes)? I was gritty about this issue my self a year back, The only answer is that its very infeasible for this to happen unless the incentive is great (You know your friend has a million bitcoins and leaves his computer open) but I'd imagine when Bitcoin goes mainstream more then half the population will not know how, or even want to run their own Bitcoin nodes to leave their own computer security to their self and bitting their teeth all day wondering if their Bitcoins are stolen yet or if they "Did it right", they will rely on companies called Bitcoin banks or a hardware device that thwarts these kind of attacks).
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 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 ... 146 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!