Bitcoin Forum
June 29, 2024, 04:33:39 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 ... 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 77 78 79 80 81 82 83 84 85 [86] 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 ... 272 »
1701  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [OSC]OpenSourcecoin-- Online wallet launched @ http://coinbit.pw on: November 30, 2013, 04:28:19 AM
overtime, the value, steady production, and features will make this coin a winner. ask bcx he threw 3 th/s at it and couldn't even budge the block targets. like bitcoin, the stringent difficulty rules can sometimes lead to longer block times and a stranding effect, but in an electronic environment, OpenSourcecoin is proof that fast block times don't always mean less security, and give Sunny King credit for his thoughtfulness in designing Peercoin, which OSC is ultimately derived from.
Yeah, I noticed how the difficulty shifts with network hash rate rather than being stuck high when the power drops off. I've had transactions with some coins get stuck for hours or days when this happens. For applications where getting that first confirmation quickly is important it's a good feature.

BTW, I tried to get a p2pool set up. It connects to Ocoin and cgminer connects to it and finds blocks but they aren't propagated or recorded by the network, plus the payout is wrong. I'll do more hacking when I get time.

there are several pools already, such as osc.dsync.net which was the first functional pool, and is arguably the best. i think most people mine at coinex, but the dsync pools are known for finding more blocks per gh/s than any other. that could be just seen as my opinion, but coinex has had 150 ghs, but we'd be hitting a block every 5 minutes with less than 10
1702  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [OSC]OpenSourcecoin-- Online wallet launched @ http://coinbit.pw on: November 29, 2013, 10:22:19 PM
how many OSC have been minted so far?

almost 1 million were almost into phase two of production. starting at block 128,000 20 coins per block until block 256,000. i posted the exact calculations back on page 4 or 5 of this thread, but around 5 million coins will be produced in this time period. this period will be followed by a 144,000 block period at 25 coins per block, leaving just over 12 million coins in production at the first block halving, where the reward will drop to 12.5 coins per block. overtime, the value, steady production, and features will make this coin a winner. ask bcx he threw 3 th/s at it and couldn't even budge the block targets. like bitcoin, the stringent difficulty rules can sometimes lead to longer block times and a stranding effect, but in an electronic environment, OpenSourcecoin is proof that fast block times don't always mean less security, and give Sunny King credit for his thoughtfulness in designing Peercoin, which OSC is ultimately derived from.
1703  Alternate cryptocurrencies / Altcoin Discussion / Re: [Contest] OpenEx Logo(s) .125 to the winner on: November 29, 2013, 04:36:28 AM
I've decided to split the prize evenly between cryptasm and mook. mook has received payment but where is cryptasm?
1704  Alternate cryptocurrencies / Altcoin Discussion / Re: [Contest] OpenEx Logo(s) .125 to the winner on: November 29, 2013, 04:04:50 AM
mook, the dimensions on this second image are perfect, but the top one should be 190x 50px, alright? thanks.. i need a btc address from you as well since you and cryptasm had arguably the best submissions. excellent work. i can't decide who to award first place and who to award second, but i think i will end up going with yours for the logos. however, cryptasm private messaged me some amazing artwork so i think he deserves some btc as well. i would love to use his images for advertising purposes and yours for the logo. excellent jobs all around!

1705  Alternate cryptocurrencies / Altcoin Discussion / Re: OpenEx: Progress Report- 91% complete on: November 29, 2013, 03:52:29 AM
Withdrawals are not automated because no one knows how

you're so right muddafudda. we built a trade engine that handles 900,000 queries per second and we can't figure out for the life of us how to handle withdrawals with jsonRPCphp...

Code:
<?php
...
$id mysql_real_escape_string($_GET["id"]);

$sql mysql_query("SELECT * FROM Wallets WHERE `id`='$id'");

$coin mysql_result($sql,0,"Acronymn");

$ip mysql_result($sql,0,"ip");

$port mysql_result($sql,0,"port");

$bitcoin establishRPCConnection($ip,$port);
$bitcoin->sendfromaccount($loggedInUser->display_username);

?>
1706  Alternate cryptocurrencies / Altcoin Discussion / Re: OpenEx: Progress Report- 91% complete on: November 29, 2013, 03:26:27 AM
I started building a new gui this morning for launch. i was supposed to be taking a break for thanksgiving, but i just couldn't help myself. i ended up doing something no one has ever accomplished before, utilizing jquery to style the viewport with css3 animations. i think you're gonna like it, it looks pretty sick. think windows metro 8 start screen ;P
1707  Alternate cryptocurrencies / Altcoin Discussion / Re: [Contest] OpenEx Logo(s) .125 to the winner on: November 29, 2013, 01:50:24 AM
cryptasm is the winner and mook the runner up.

here is what i need from you:

PSD's, Vector and transparent png's.

dimensions:

logo left, text right : 190 x 50

logo top, text bottom : 350 x 500

then submit your bitcoin addresses. thank you very much for your proffessional designs.

thanks everyone who participated!

1708  Other / Off-topic / Re: The Coding Thread on: November 27, 2013, 09:31:35 AM
I'm bumping the coding thread Tongue I want to post up some more code here soon Cheesy

can you debug an sql query? i can't get my form to work for some odd strange reason.

Code:
<b>Ban A user</b>
<form action="" method="POST">
<input type="hidden" name="banby" value="<?php  echo $account?>" />
<input type="text" name="to_ban" class="shadowfield" />
<input type="submit" value="ban" class="blues" />
</form>
<?php

if (isset($_POST["to_ban"]))
{
$banby mysql_real_escape_string(strip_tags($_POST["banby"]));
$to_ban mysql_real_escape_string(strip_tags($_POST["to_ban"]));
$sqly mysql_query("UPDATE userCake_Users SET `Banned`='1' WHERE `Username`='$to_ban'");
$sqlz mysql_query("UPDATE userCake_Users SET `BannedBy`='$banby' WHERE `Username`='$to_ban'");
}


1709  Alternate cryptocurrencies / Altcoin Discussion / Re: OpenEx: Progress Report- 91% complete on: November 27, 2013, 08:24:50 AM
the exchange is 95% complete!

new features:

view server load.

view all servers.

ping servers, restart servers, restart coin clients.

user agreement added to registration page.

index.php trimmed of fat, all procedural code converted into functions and moved to funcs.general.php

change passwords.

send activation emails.

reset passwords by mail.

jquery loading animations complete(update spinner, slide up slide down)

chat scrolling animations fixed. works great now.

json wallet class complete and ready for beta testing.

withdrawal page completed with password confirmation. justin is working on email confirmations.

sitebanning. sitebanned users may no longer log in

lowered fee's: trade fee is .5%, withdrawal fee .1%

Tasks remaining:

click to ban users from mod page

Ajax handling of trade page, so tables are updated in real time.

order stacking(order, combine)

comprehensive vulnerability testing

beta test rpc

beta test trade engine(again)

MISC low priority tasks(either before or after launch depends on how much time we have.

API

General site improvements

Responsive layout.
1710  Alternate cryptocurrencies / Altcoin Discussion / Re: OpenEx Coin Choose Poll on: November 27, 2013, 05:56:11 AM
Interesting that you want to show your complete name to everyone. Why does you name sound like a cross between Justin Bieber and a razor company, sounds a little iffy to me?

I asked about an opinion on it. It is a yes or no. Criticizing is not needed as we are deciding in community favor.

besides the fact that hes not even criticizing the question... just your name... lol
Mhmmm....
1711  Alternate cryptocurrencies / Altcoin Discussion / Re: What's the fastest coin out there? on: November 27, 2013, 03:13:57 AM
I really don't think speed matters as much as you're making it out.

definitely matters.  alot.  are you gonna sit on an old pc with windows 95 or get windows 8?  faster is better, time is money

No it really doesn't if you've been following cryptos a long time. To change the block times to be super fast can be done in seconds, yet only 1 or 2 coins has tried something like that for a reason.

it leads to higher orphan rate and less security.

--experience
1712  Alternate cryptocurrencies / Altcoin Discussion / Re: [Contest] OpenEx Logo(s) .125 to the winner on: November 27, 2013, 03:10:34 AM
thanks, i've changed my last entry a bit. tried to make it look a bit more 3D



that's del.ic.io.us lol


i'll leave this open just a few days for fairness. i do really like this one, it'll be hard to top.
1713  Alternate cryptocurrencies / Altcoin Discussion / Re: [Contest] OpenEx Logo(s) .125 to the winner on: November 27, 2013, 02:02:33 AM
i like cryptasm's the best so far. it lacks refinement though. i'd like to see a logo that looks a little more 3d/beveled
1714  Alternate cryptocurrencies / Altcoin Discussion / Re: OpenEx: Fee shares-extended to 50 additional shares by demand on: November 27, 2013, 12:47:26 AM
i may hold a vote with the staff and see what they think about additional shares. justin has voted no at this time. i'm up in the air about it.

 anywho, i have finalized a deal with Wansec for hosting. we have secured 3 servers total. at a price of 500 setup + 500 per month.

this setup includes:

Reverse Proxy Server:

specs
{

classified  Grin

}

Front End/ Database server
   {
   Dual Xeon L5520
   72 gb ram
   4x 500 gb sata raid 10
   10 gb port speed
   3 ip addresses
   }
Wallet Server. Will Serve 20 coin wallets which will use moderate bandwidth(Bitcoin and Litecoin will use the most.
   {
   Dual Xeon L5520
   72 gb ram
   4x 500 gb sata raid 1
   10 gb port speed
   2 ip address
   {

This deal includes a 95th percentile billing agreement on bandwidth. we pay for 15mb/s , with 30 hours burst up to 10 gb/s, so somewhere around 38 tb.
1715  Alternate cryptocurrencies / Altcoin Discussion / Re: OpenEx: Progress Report- 91% complete on: November 26, 2013, 10:21:54 PM
Pretty good going so far. Can you tell me who among the staff are actual coders? Cool

Would you be willing to take any suggestions privately via chat?

Good luck!

justin and i do all of the coding. and yes, i know we need to stop concatenating strings together and switch to PDO. this is like the roughdraft.
1716  Alternate cryptocurrencies / Altcoin Discussion / Re: [Contest] OpenEx Logo(s) .125 to the winner on: November 26, 2013, 07:32:58 PM


we have a new leader. still to early to decide. also i will be offering a consolation prize of .01 to all worthy submissions. lets see what ya got! this is a business, it needs to be nice
1717  Alternate cryptocurrencies / Altcoin Discussion / Re: OpenEx: Fee shares-extended to 50 additional shares by demand on: November 26, 2013, 07:22:35 PM
https://blockchain.info/tx/deead4a499fe143a1c8bba18f8bc8e42321c23a742f9d4dbb89043dcfe5a31c8


Sorry for being late; i requested a cashout and it just takes forever.

eh its ok, this offfer is officially sold out! we don' t need anymore money! more shares sold in 2 months.

edit first page please  Roll Eyes EDIT : sorry, didn't see it was in 2 parts

& gl again. Don't make like mcxnow  Cool

Definitely won't happen. More money to be made in the long run ligitemately than running off with the money.
1718  Alternate cryptocurrencies / Altcoin Discussion / Re: OpenEx: Fee shares-extended to 50 additional shares by demand on: November 26, 2013, 03:27:27 PM
Total Shares Sold: 155

total income: 3.875 BTC  Shocked

Thanks for supporting us guys, full speed ahead! expect opening next week or the following week. really depends on how long it takes to get the servers setup with wansec, and test our rpc stuff, which shouldn't take long at all.

CFO of Wansec is supposed call tonight, and help me build a server configuration.

ideally we'd have

1x webserver

1x database server

1x wallet server


but we might end up with

1x web/database server

1x wallet server

all depends on what we can afford
1719  Alternate cryptocurrencies / Altcoin Discussion / Re: OpenEx: Fee shares-extended to 50 additional shares by demand on: November 26, 2013, 03:26:36 PM
https://blockchain.info/tx/deead4a499fe143a1c8bba18f8bc8e42321c23a742f9d4dbb89043dcfe5a31c8


Sorry for being late; i requested a cashout and it just takes forever.

eh its ok, this offfer is officially sold out! we don' t need anymore money! more shares sold in 2 months.
1720  Alternate cryptocurrencies / Altcoin Discussion / Re: [Contest] OpenEx Logo(s) .125 to the winner on: November 26, 2013, 03:10:08 PM
Is this the same contest as in the other old thread or are these two different logo's?

there is OpenEx(the altcoin exchange) and OpenSourcecoin(the coin) hope that explains it.
Pages: « 1 ... 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 77 78 79 80 81 82 83 84 85 [86] 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 ... 272 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!