Bitcoin Forum
September 23, 2024, 01:46:47 PM *
News: Latest Bitcoin Core release: 27.1 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1] 2 3 4 5 6 7 8 »
1  Other / Politics & Society / Re: Does power really corrupt? on: April 05, 2024, 09:00:36 AM
There is a saying that absolute power corrupts absolutely. The extent to which power can and will corrupt an individual is different from what its effect will be in another. This is as a result of personality differences, exposure, background etc. A selfish person will use power for personal gains and self interest. All over the world, we have seen and read about people whose entire personality had a swift change when they tasted power and everything it comes with. I think that to answer this question, we have to personalize it by pondering on what we will do if given power. Are we going to let it take over our humanity?, Is it going to be an avenue of oppression?, etc.
2  Alternate cryptocurrencies / Altcoin Discussion / InstantDex nearing completion on: April 01, 2015, 09:23:00 PM
Pix here:

http://imgur.com/a/Sx24m


3  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] SuperNET trades on Poloniex as UNITY, asset id 12071612744977229797 on: April 01, 2015, 09:13:08 PM
crosspost from instantdex slack ...

pix here:

http://imgur.com/a/Sx24m



jl777 [7:21 AM]
I also figured out how to get automatch, without automatch

jl777 [7:22 AM]
well, the GUI will be doing some basic automatch when you submit the order, but I am making a background task that will poll all openorders

jl777 [7:22 AM]
then if it sees an order anywhere that would satisfy it, it will proactively do a makeoffer process

jl777 [7:24 AM]
so when we add support to trade on centralized exchanges (user activates this by putting in trading API key for exchange in GUI), then you can put in an InstantDEX order and if it sees a good chance that it can get the order filled on poloniex, it will punch an order through

jl777 [7:25 AM]
anyway, I have a dozen test vectors to get past and still on the easiest ones, so it wont be till much later today for a release

jl777 [7:25 AM]
that is assuming I dont go crazy from all the possible combinations

smiley [7:57 AM]
you're the man @jl777, Its been fun to watch you work over the last 7 months......... Still Hodling........ This channel has been getting interesting these past few weeks. I can't wait to move my trading to Instadex!

jl777 [7:58 AM]
thanks! I want InstantDEX GUI to be something that I would use for trading

jl777 [7:59 AM]
and so I need to make sure the API supports all the things that are needed

jl777 [8:00 AM]
after things calm down, I can port all my trading signals into the API
NEW MESSAGES

cryptosleuth [6:53 PM]
http://imgur.com/a/Sx24m

cryptosleuth [6:53 PM]
here are some pics from one of the latest versions

cryptosleuth [6:53 PM]
it would be good to hear about the major things people want changed

kitchentable [6:55 PM]
that is insanely good looking. I'm loving the panels on the right side.

libertynow [6:59 PM]
Very nice guys.  I"m chomping at the bit.

libertynow [6:59 PM]
Give me some DEX!

kitchentable [7:00 PM]
Buy all instantdex!

4  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] BitcoinDark (BTCD)--Teleport/Telepathy/Ramchains/SuperNET Core on: March 25, 2015, 04:10:00 PM
jl777 [2:34 PM]
cross posted:

jl777 [2:36 PM]
InstantDEX GUI is almost ready for beta, I got virtual orderbooks working (and it is being displayed) for any assetA/assetB (or assetB/assetA if you like it that way)
today I will debug the automatic trade clearing of such dual orderbook entries
each one will have the magic API sequence needed to do the trade and I expect over time I will keep adding more and more methods for trade completing

jl777 [1:48 PM]
crypto777 library is my new sourcebase that I started writing a couple weeks ago, I am combining ideas from TF, new tech from CfB, and just doing what makes sense to me. turns out I am doing things that are similar to previously described http://ftp://intranet.dei.polimi.it/users/Carlo.Piccardi/VarieCda/ArticoliStudenti/i15.pdf, https://www.cs.unm.edu/~saia/papers/RandomBeacon.pdf and others, but it is a method that I will use to solve network security, quantum computer attacks and pangea realtime betting. It is currently able to do pretty fast blocktimes on my 128 thread localhost network, but I still need to add command processing so it can add new nodes, catch up if it falls behind, etc. The consensus mechanism is totally abstracted out from the block contents, so a plugin can be created for any new tx type.

I believe I improved on BCnext TF, at least I have a method to practically do thousands of tx per block, with a very fast blocktime, but this is still "theoretical" I havent coded it yet, but it is "only" a distributed network application level complexity once the decentralized consensus is taken care of. The big problem is what to do with all that data! this I dont have a solution for yet, but I do have ideas and once the older projects go into maintenance mode, I will have time to experiment

mr_e [2:10 PM]
Is this using btcd or is it a completely separate "coin"?

jl777 [2:36 PM]
the crypto777 "coin" (I think I will name it CLOCK as the blocks come out like clockwork) is a framework to add a decentralized consensus onto anything, eg. pangea chips, but I am also investigating BTCD sidechains as it makes no sense to release yet another coin when you can enhance an existing one. CLOCK supports the concept of a ledger, which is simply a balance tied to an account and there are transactions that modify the ledger. I use 48 byte signature and 32 bytes for simple tx, but all the tx handling I would prefer to be totally abstracted away from CLOCK itself.

I have worked hard to make the code as simple and easy to understand as possible. With the line count being so low, it becomes feasible to get a full code review for any and all flaws. The temptation to contaminate the consensus mechanism with blockdata is quite high though... But if I can totally abstract out the blockdata semantics, then it will be a framework for any sort of data consensus, in realtime, that a subset of nodes can maintain. So a node would subscribe to a tx stream type X, Y and Z and only have to deal with them and if a tx type B is having a problem, it would just mess up ledger B, while all the other ledgers just keep on going. So like a blockchain OS, you can run multiple "processes" but just one consensus chain. My breakthrough idea is to overlap the time variable consensus generation with the actual blockchain data, since the consensus is only about which nodes are to become generators (no tx data at all), there is little room for disagreement, forks, etc. and this chain builds very fast. <2 seconds in my localhost test network of 128 threads. I have a logN network topology, so add 6 hops at worst case 500 milliseconds each hop still gets us to 5 second blocktimes for the consensus chain.

now we have a consensus chain growing once per 5 seconds and that means the data chains can be any time above this and it will be like a CLOCK

Since the codebase is so small and I fully understand it, I can start to solve the more difficult issues, like a backed and pegged fiat crypto, realtime ledger consensus, hmm actually I think those are the only two unsolved things left

so combined with the other improvements, BTCD is quite a sleeper now

btcddev [2:44 PM]
:smile:
5  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] BitcoinDark (BTCD)--Teleport/Telepathy Privacy Tech--SuperNET Core Coin on: March 04, 2015, 08:50:04 PM
Maybe they're dumping because the wallet isnt even syncing. Not with correct peers, not with correct conf. Atleast it should scare alot if not all new investors.  Roll Eyes

uh yeah. you are so right. my wallet is not even syncing. oh wait a minute, yea it is, solid as rock, going on six months now.

get a life.
6  Alternate cryptocurrencies / Altcoin Discussion / Re: bobsurplus destroyed cloakcoin and longandshorts is destroying shadowcoin on: March 04, 2015, 11:31:41 AM
wut? bob surplus was in cloak?
7  Alternate cryptocurrencies / Service Announcements (Altcoins) / Re: Will you use InstantDEX? on: March 03, 2015, 06:28:23 PM
No. I want to keep myself as far as possible from jl777 scams.

LOL, I think jl777 already delivered a lot of amazing work to prove he is no scammer ...  troll

Could you give some examples of these "amazing work"?

SuperNET
Ramchains
Telepathy
Teleport
InstantDEX

https://github.com/jl777/libjl777

As far as I can tell...
None of this is actually functioning in a production environment yet...
Oh, there is a SuperNET client, but I would be stunned if more than 50 people are running it.

And it's a good thing you linked to a code library...
Because the official InstantDEX thread has not seen a post from James in 142 days...
Which is pretty much the case for the whole nxtVenture empire.

https://nxtforum.org/nxtventures/


The best source of centralized information appears to be the SuperNET newsletter.

http://nxter.org/supernet-newsletter-14/

I love this one, what a shocker!!!

"Chancecoin’s lead developer, magician, seems to have disappeared."




Bud, I can tell you James has been in the BTCD / SN / Instandex slack pretty much 24 / 7 for the past six months running, working endlessly with dozens of devs. You are pretty much talking out your ass at this point, maybe you should give it a rest.
8  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN]BitNet-vpncoin SuperNET|AES|Domain&Website System|VPN|Voice&video call on: February 26, 2015, 09:07:47 PM
^^^ I will agree with this too.
From what I have read on their website it is based on SuperNET which is supported by VPNcoin wallet.

On the other hand we could also create an exchange through Bitnet as well as using the SuperNET one.

Anyone up for it?

Hey, I do agree...
Anyways, I would also like everyone to put their focus on an In-Wallet exchange, what say guys?
@Vpncoin,
Is it possible for it to get added in the upcoming versions of the wallet?

That would be redundant.  You will be able to trade against any other coin via the Supernet integration and Instandex.
9  Alternate cryptocurrencies / Service Discussion (Altcoins) / Re: What's the longest you've waited for a support ticket to be solved at Cryptsy? on: February 25, 2015, 06:13:19 PM
LOL, did the rep follow up on the ticket on his own? Or had you recently replied to it to 'bump' it in their system?

I never receive replies to the tickets themselves, even after 'bumping' them. The only way I've been able to get a reply is by mentioning the tickets in the Cryptsy chat box. But they recently scolded me, telling me the chat box was not for support issues. But each time I mention the tickets there, I get a reply, never fails. Now only if I could get a resolution instead of a request for more patience on my behalf, well that would be something!

I've heard that if you have a verified account (i.e., if you give them your identity) that suddenly the support services are like 100x better and more effective.

3 months though...damn.

So I have at least another month of waiting. Great.


If they are blowing you off in chat i'd say start a dedicated name & shame thread in this forum. Plenty of people will help keep it bumped to the top. Cryptsy deserves to be shamed until they change their ways or loose all the customers. Just my 2 sat.
10  Alternate cryptocurrencies / Altcoin Discussion / Re: Is BitcoinDark severely undervalued? on: February 25, 2015, 06:00:56 AM
BTCD will be the reference currency for the InstantDex decentralized exchange, which is nearing completion. This will allow a large liquidity aspect no matter which pairs are being traded. Dividends from InstantDex and Supernet both flow into BTCD. In addition, the BTCD teleport system will serve as the main anon backbone for the entire SuperNet ecosystem.

Most of this has been happening well under the radar - out of sight of this forum - since the SuperNet / BTCD community works in a decentralized Slack-based structure (currently around 400 active participants, 100 channels). The recent implosion of BTER has led to a full court press on finishing both the GUI and the backend of the InstantDex decentralized exchange. The current activity in the Slack is quite impressive to watch - both in the level of activity, and the decentralized mode it is all happening in.

The low liquidity for BTCD currently is a symptom of both a deep-set holding mentality among current investors - who are well aware of what's ahead for BTCD - and the disappearance of BTER, which was the most liquid exchange for BTCD. Add this to the fact that BTCD is being ruthlessly accumulated each time it drops below 4.

So the previous poster's advice is solid advice if the trading time frame is day trading.  Viewing the longer time frame a different picture emerges.
11  Alternate cryptocurrencies / Service Discussion (Altcoins) / Re: Cryptsy NXT Withdraw - 23 days and still "being processed" on: February 15, 2015, 08:44:17 PM
This post should be endlessly bumped. Along with every other post about Crypsy fraud.

They are gaming you to see if you give up, and let them keep the money.  There is no other explanation for an exchange to be doing this to so many people, for so many months in a row.

You have three options:

1) give up

2) contact the florida Better Business Bureau and join the many complainants trying to regain their funds

3) lurk on the cryptsy chat and politely but insistently harass any mod that shows up with your ticket number and request for resolution. That's how i finally got my funds back.

good luck man. and for anyone else, get your money the fuck outa cryptsy while you can.



12  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] SuperNET trades on BTER and Poloniex as UNITY id 12071612744977229797 on: February 14, 2015, 09:42:53 PM
yes.i suppose mozart would not be mozart at all if we did not know mozart.
13  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] SuperNET trades on BTER and Poloniex as UNITY id 12071612744977229797 on: February 13, 2015, 09:23:19 PM
If decentralization is so awesome then why are most decentralized coins failing?  Last I check Ripple is heavily centralized and #2 and it continues to go up, while everything else is going down.

Do customers of PayPal and Stripe complain about those companies' centralization?  Hardly..  this obsession with centralized has a lot to  do with this libertarian streak in cryptos but, at the same time, somebody like Jackson Palmer is correct in that those libertarians are likely holding back the blockchain technology with all of their unnecessary politics.



Or maybe you are not paying attention to the single, most obvious trend of the last 15 years  -which is decentralization - in everything.
14  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [NKT] NAKAMOTODARK New wallet![BITTREX][BOUNTIES][A tribute to the genius][NKT] on: February 12, 2015, 08:33:19 PM
Cryptsy is the largest exchange and the most solid. They always solved issues properly, most complaints were back in dec 2013 when they had significant growth problems, they went from 2,000 account in July 2013 to over 200,000 accounts in the end of the year (now over 300,000 270,000 ). Can't blame them too much.

You are apparently not currently aware of the massive numbers of people who are having problems with cryptsy. By seemingly recommending them or minimizing the current situation you are venturing into the territory of being co - responsible for people who rely on your word.
15  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] BitcoinDark (BTCD)--Teleport/Telepathy/Ramchains/SuperNET Core on: February 11, 2015, 06:21:10 AM
In the meantime i think the above is a very good idea: folks in the slack channel should be pasting interesting bits here. This will help with the information flow and give a more realistic activity level in this thread.
16  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Ethereum: Welcome to the Beginning on: January 21, 2015, 08:49:30 PM
such silliness. people saying that ethereum has achieved nothing?

they are building an ecosystem that is very much there in the public space to be seen by anyone who looks.

i think tilecoin is a fine project but it is like comparing something very small to something much, much larger in concept & ambition. your decision to use foul language further sabotages whatever point you are trying to make.
17  Alternate cryptocurrencies / Announcements (Altcoins) / Re: Official Anoncoin chat thread (including history) on: January 16, 2015, 03:30:06 PM
My personal opinion is that no altcoin these days can afford to discourage people showing up with basic questions. As for SN, having been in the slack channel there a couple months, i can say without exaggeration that it has some of the most interesting and active dev work currently happening, and a refreshingly open atmosphere.

BTW Noahssh is pretty central in the scene there, he might have even been checking things out here with regard to possible supernet functionality. Would not hurt to show him around.
18  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] xCash : First Coin Feat. 100% Stealth Anon - NEW xChange P2P OTC on: January 16, 2015, 03:22:59 PM
last night i sent a good amount of coins from cryptsy to my wallet.     still not there.   anyone else have this problem ?

is it cryptsy's fault or the wallet ?   i'd appreciate any help.     thank you
ctyptsy give it time.

my advice would be to open a ticket immediately. took me over three weeks to get them to credit 40000 missing opal.
19  Alternate cryptocurrencies / Announcements (Altcoins) / Re: Official Anoncoin chat thread (including history) on: January 16, 2015, 07:34:59 AM
Or one might consider that SN thread is a friendlier place that is more welcoming to basic questions, instead of being met with a major bug up ones ass attitude attack.
20  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] SuperNET trades on BTER and Poloniex as UNITY id 12071612744977229797 on: January 05, 2015, 09:04:05 PM
I want to start a petiton for the implementation of the Electrum BTC wallet into the SuperNET client. I talked to everyone and my understanding is, that this is currently not worked on. Many people would feel safer, if they could have BTC directly on their BTC wallet instead of using MGW (at the start atleast). So I propose the following:
Implementation of the opensource Electrum BTC client into the SuperNET client.
The electrum recovery seed is saved in an encrypted message on the blockchain.
The electrum wallet password is saved in an encrypted message on the blockchain.
The SN client can read the BTC addresses and can perform transactions as long as the NXT account is unlocked (or the client knows the password). Who likes such an implemention? We need to tell the devs that we would like something like that. Otherwise nothing will be done in the shortterm!

I'm fully IN

I think this is a excellent idea. A lot of people are coming from a non-nxt background and have an intuitive familiarity with Electrum. SBits is doing it, why not.
Pages: [1] 2 3 4 5 6 7 8 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!