Bitcoin Forum
July 05, 2024, 01:02:46 AM *
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 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 ... 391 »
821  Alternate cryptocurrencies / Altcoin Discussion / Re: The altcoin topic everyone wants to sweep under the rug on: April 15, 2016, 07:06:12 AM
did the monero wrote that fact about infinite supply in their ann Huh   if i was an investard in monero i would feel cheated if it isnt

No one can fork Monero without the support of the decentralized miners. The distinction from the Dash masternode scam, is that a masternode is staked only once with DRK (Dash tokens) and earns 50+% ROI per annum forever after for the largest holders of Dash tokens, thus further centralizing the coin meaning there is a centralized oligarchy which the investors are relying on for their future expecation of profits which afaics fulfills the Howey test for what is an investment security that is regulated by the Securities Act. A decentralized PoW miner is constantly expending on electricity in a competitive free market. Owning a lot of Monero doesn't give you any leverage as a miner.
822  Alternate cryptocurrencies / Altcoin Discussion / Re: [neㄘcash, ᨇcash, net⚷eys, or viᖚes?] Name AnonyMint's vapor coin? on: April 15, 2016, 07:01:25 AM
TPTB, I must say, I love when someone challenges you and you spill out all this good stuff.

I intend to pull all that deep theoretical stuff together one day more coherently and also delve more into CoinCube's interesting theoretical explorations.

Just been lacking available energy due to my illness (which appears to be on the mend), and now off on the tangent of deep coding and computer science research and practicalities.

I need to go back to sleep now, because the cure is asking for so much sleep.

My posts will be sort of jumbled and all over the place due to this chaotic state of my life, energy, falling asleep at any time, waking for an hour, sleepy again, brownouts interrupting my work or sleep (difficult to sleep without aircon here), etc.. In and out of consciousness. Sometimes I am not sure if I was awake or dreaming when I wrote something.
823  Economy / Economics / Re: Martin Armstrong Discussion on: April 15, 2016, 06:57:33 AM
TPTB, I must say, I love when someone challenges you and you spill out all this good stuff.

I intend to pull all that deep theoretical stuff together one day more coherently and also delve more into CoinCube's interesting theoretical explorations.

Just been lacking available energy due to my illness (which appears to be on the mend), and now off on the tangent of deep coding and computer science research and practicalities.

I need to go back to sleep now, because the cure is asking for so much sleep.

My posts will be sort of jumbled and all over the place due to this chaotic state of my life, energy, falling asleep at any time, waking for an hour, sleepy again, brownouts interrupting my work or sleep (difficult to sleep without aircon here), etc.. In and out of consciousness. Sometimes I am not sure if I was awake or dreaming when I wrote something.
824  Alternate cryptocurrencies / Altcoin Discussion / Re: [neㄘcash, ᨇcash, net⚷eys, or viᖚes?] Name AnonyMint's vapor coin? on: April 15, 2016, 06:41:59 AM
Elegance and comprehensibility via holistic unification of design concepts...

Add more elegant syntax and less noisy implementation of polymorphism, first-class functions, etc...

One of the big issues these days is asynchronous programming. The following delve into this issue:

[...]

I am absolutely astonished they undid making Rust a tasklet based runtime i.e. like stackless Python with a language native coroutine M:N threading model, especially with the excellent actor based concurrency model already built in there which should have been perfect. Originally their i/o was based on libuv, probably the leading portable asynchronous i/o library written in C, so all their i/o was also async. A full fat coroutine + all async i/o new systems programming language ticking every box for a C++ replacement - Rust v0.12 sounds great, doesn’t it?

Unfortunately they ended up canning the greenlet support because theirs were slower than kernel threads which in turn demonstrates someone didn’t understand how to get a language compiler to generate stackless coroutines effectively (not surprising, the number of engineers wired the right way is not many in this world, but see http://www.reddit.com/r/rust/comments/2l0a4b/do_rust_web_servers_use_libuv_through_libgreen_or/ for more detail). And they canned the async i/o because libuv is “slow” (which it is only because it is single threaded only, plus forces a malloc + free per async operation as the buffers must last until completion occurs, plus it enforces a penalty over synchronous i/o see http://blog.kazuhooku.com/2014/09/the-reasons-why-i-stopped-using-libuv.html), which was a real shame - they should have taken the opportunity to replace libuv with something better (hint: ASIO + AFIO, and yes I know they are both C++, but Rust could do with much better C++ interop than the presently none it currently has) instead of canning always-async-everything in what could have been an amazing step up from C++ with most of the benefits of Erlang without the disadvantages of Erlang.

A huge missed opportunity I think, and sadly it looks like the ship has sailed on those decisions Sad, and both untick pretty major boxes for some people including me. As it is a personal goal of mine to see AFIO become the asynchronous filesystem and file i/o implementation entering the C++ standard library to complement ASIO as the C++ Networking library entering in C++ 17, I can’t complain too much I suppose, it’s just it renders Rust as less likely to make C++ obsolete/encourage C++ to up its game.

[...]

 
+Steve Klabnik Oh for sure. As it happens, I'm currently in a week long private discussion about how best to tweak C++/LLVM to ideally support stackless coroutines via a new "safe C++" modifier which has the compiler enforce safer and much more coroutine efficient programming idioms on functions and namespaces so marked up (indeed such safe C++ would substantially close the gap with Rust and Go I think). So I absolutely understand the difficulties in not just deciding on a design, but persuading people - most of whom are not async wired - that implementing the design is a good idea. There is also a big problem that we need reference compiler implementations to demonstrate the design works, and that means raising at least $40k to fund the requisite developers.

No, my objection to dropping async i/o in Rust was more that there is nothing wrong with libuv, it's just it's slow. Slow is 100% fine for a v1.0 language release, so long as you're faster than Python it isn't important. I'd prefer that all the people who jump onboard with 1.0 code against the right kind of i/o library API with the right kind of semantics, and we'll fix up performance over the coming years. Moreover, my day job's main code base is currently wasting a chunk of time dealing with Rust's incomplete i/o facilities, and for us at least a slow but fully async i/o library baked into the language would be far better than currently wrestling with pushing networking apis into threads just to work around blocking issues and bugs. mio is a non starter for us, as are most of the other async i/o frameworks for Rust, because we need Windows and besides we don't want to get locked into an expensive to replace library which may get orphaned.

Anyway, I'm sure you all had the same discussions when you decided to drop built in libuv, I guess coming from an async background I like async. For many if not most programmers async just isn't important, and it's an easy drop given the average cost benefit.

[...]

 
+Niall Douglas I think that 'slow' wasn't the full objection here, exactly. Let me lay out a slightly fuller history, slightly modified from a HN comment:

------------

In the beginning, Rust had only green threads. Eventually, it was decided that a systems language without systems threads is... strange. So we needed to add them. Why not add choice? Since the interfaces could be the same, why not abstract over them, and you could just choose which one you wanted?

At the same time, the problems with green threads by default were becoming issues. Segmented stacks cause slow C interop. You need a runtime to manage them, etc. Furthermore, the overall abstraction was causing an unacceptable cost. The green threads weren't very green. Plus, with the need to actually release someday looming, decisions needed to be made regarding tradeoffs. And since Rust is supposed to be a systems language, having 1:1 threads and basically no runtime makes more sense than N:M threads and a runtime. . So libgreen was removed, the interface was re-done to be 1:1 thread centric.

[...]

+Steve Klabnik Regarding green threads - which aren't necessarily stackless coroutines - yes a new userspace implementation is highly unlike to beat the kernel which has had years of tuning. This is one of the big objections to Microsoft's resumable functions proposal before WG21, some of us think it too heavy and too ungenerically useful outside its narrowly defined use case.

Stackless coroutines are a bit different though, because they require no C stack at all. The way we're thinking about them for C++ is that the compiler will emit, for each compiled function, its maximum possible stack frame size with stack frame constructor and destructor. It also prevents you writing code which causes uncalculatable stack consumption, so that's the "safe C++" part (interestingly, via those same safeguards we can also guarantee some function can never fail unexpectedly which is great for high reliability ultra low latency scenarios, but that's an aside). To call that function, one simply constructs its stack at some arbitrary location the callee asks for (could be static mem, could be malloc, could be the C stack), and calls the function setting the stack frame register to the new stack frame.

One can now pause and resume the execution of that function with a complete knowledge of what context needs to be saved and restored. What you get looks as if stackful coroutines, but context switching is optimal and no actual stack is needed except if you call the C library which can't be a resumption point. The price is that the programmer can't do some things, and can only call inline defined C++ functions or other safe C++ functions or the C library, and alloca with a dynamically calculated value is obviously verboten.

Anyway, my point is that you can modify the language to make stackless coroutines efficient, and I do wish Rust had done that for 1.0. But I entirely accept that stuff must be cut to reach a 1.0 release, else you'd be at it forever. Thanks for the extra info though.

[...]

+Niall Douglas yeah, absolutely: there are different ways to build them. That's just about the particular way they had been built at the time, which is why they had to go. Smiley https://github.com/rustcc/coroutine-rs also popped up recently, though I haven't checked the implementation.


Coroutines are computer program components that generalize subroutines for nonpreemptive multitasking, by allowing multiple entry points for suspending and resuming execution at certain locations. Coroutines are well-suited for implementing more familiar program components such as cooperative tasks, exceptions, event loop, iterators, infinite lists and pipes.

Comparison with subroutines

When subroutines are invoked, execution begins at the start, and once a subroutine exits, it is finished; an instance of a subroutine only returns once, and does not hold state between invocations. By contrast, coroutines can exit by calling other coroutines, which may later return to the point where they were invoked in the original coroutine; from the coroutine's point of view, it is not exiting but calling another coroutine. Thus, a coroutine instance holds state, and varies between invocations; there can be multiple instances of a given coroutine at once. The difference between calling another coroutine by means of "yielding" to it and simply calling another routine (which then, also, would return to the original point), is that the latter is entered in the same continuous manner as the former. The relation between two coroutines which yield to each other is not that of caller-callee, but instead symmetric.

Any subroutine can be translated to a coroutine which does not call yield.

To implement a programming language with subroutines requires only a single stack that can be preallocated at the start of program execution. By contrast, coroutines, able to call on other coroutines as peers, are best implemented using continuations. Continuations may require allocation of additional stacks, and therefore are more commonly implemented in garbage-collected high-level languages.[citation needed] Coroutine creation can be done cheaply by preallocating stacks or caching previously allocated stacks.

Comparison with generators

Generators, also known as semicoroutines, are also a generalisation of subroutines, but are more limited than coroutines. Specifically, while both of these can yield multiple times, suspending their execution and allowing re-entry at multiple entry points, they differ in that coroutines can control where execution continues after they yield, while generators cannot, instead transferring control back to the generator's caller. That is, since generators are primarily used to simplify the writing of iterators, the yield statement in a generator does not specify a coroutine to jump to, but rather passes a value back to a parent routine.

However, it is still possible to implement coroutines on top of a generator facility, with the aid of a top-level dispatcher routine (a trampoline, essentially) that passes control explicitly to child generators identified by tokens passed back from the generators:

Comparison with mutual recursion

Using coroutines for state machines or concurrency is similar to using mutual recursion with tail calls, as in both cases the control changes to a different one of a set of routines. However, coroutines are more flexible and generally more efficient. Since coroutines yield rather than return, and then resume execution rather than restarting from the beginning, they are able to hold state, both variables (as in a closure) and execution point, and yields are not limited to being in tail position; mutually recursive subroutines must either use shared variables or pass state as parameters. Further, each mutually recursive call of a subroutine requires a new stack frame (unless tail call elimination is implemented), while passing control between coroutines uses the existing contexts and can be implemented simply by a jump.

Common uses

*    State machines within a single subroutine, where the state is determined by the current entry/exit point of the procedure; this can result in more readable code compared to use of goto, and may also be implemented via mutual recursion with tail calls.
*    Actor model of concurrency, for instance in video games. Each actor has its own procedures (this again logically separates the code), but they voluntarily give up control to central scheduler, which executes them sequentially (this is a form of cooperative multitasking).
*    Generators, and these are useful for streams – particularly input/output – and for generic traversal of data structures.
*    Communicating sequential processes where each sub-process is a coroutine. Channel inputs/outputs and blocking operations yield coroutines and a scheduler unblocks them on completion events.


stackfulness

In contrast to a stackless coroutine a stackful coroutine can be suspended from within a nested stackframe. Execution resumes at exactly the same point in the code where it was suspended before. With a stackless coroutine, only the top-level routine may be suspended. Any routine called by that top-level routine may not itself suspend. This prohibits providing suspend/resume operations in routines within a general-purpose library.

first-class continuation

A first-class continuation can be passed as an argument, returned by a function and stored in a data structure to be used later. In some implementations (for instance C# yield) the continuation can not be directly accessed or directly manipulated.

Without stackfulness and first-class semantics, some useful execution control flows cannot be supported (for instance cooperative multitasking or checkpointing).

[...]

In general, stackful coroutine is more powerful than stackless coroutine. So why do we want stackless coroutine? short answer: efficiency.

Stackful coroutine typically needs to allocate a certain amount of memory to accomodate its runtime-stack (must be large enough), and the context-switch is more expensive compared to the stackless one, e.g. Boost.Coroutine takes 40 cycles while CO2 takes just 7 cycles in average on my machine, because the only thing that a stackless coroutine needs to restore is the program counter.

That said, with language support, probably stackful coroutine can also take the advantage of the compiler-computed max-size for the stack as long as there's no recursion in the coroutine, so the memory usage can also be improved.

Speaking of stackless coroutine, bear in mind that it doesn't mean that there's no runtime-stack at all, it only means that it uses the same runtime-stack as the host side, so you can call recursive functions as well, just that all the recursions will happen on the host's runtime-stack. In contrast, with stackful coroutine, when you call recursive functions, the recursions will happen on the coroutine's own stack.


C#'s await/async is compiler feature which rewrites method into special class-finite_state_machine. All method's local variables are automatically moved into fields of that class, and code of method is moved into special class method which depending on current state just jumps by switch into right await position (http://www.codeproject.com/Articles/535635/Async-Await-and-the-Generated-StateMachine ) . That is similar in something to stackless coroutines.

In C++ stackless coroutines can be implemented just within 100 code lines, for example look to Boost.Asio. Of course syntax sugar is less sweet - local variables must be moved into class field by hands, but everything else is similar in shape and content. For instance state machine is generated automatically (with similar switch inside), by macros. (See talk by Christopher M. Kohlhoff http://blip.tv/boostcon/why-c-0x-is-the-awesomest-language-for-network-programming-5368225 , code example - https://github.com/chriskohlhoff/awesome/blob/master/server.cpp ).

Boost.Coroutine library provides stackful coroutines for C++ on wide range of platforms.
Stackful coroutines are much more powerfull than stackless ones:

___________________
Major advantage #1:

Stackful coroutine allows to encapsulate all asynchronous logic inside components - in a such way, that client code would look EXACTLY SAME to SYNCHRONOUS code.
For example, Python's gevent library does monkey patching of stadard sockets which automaticly turns all code that use them into "asyncronous", without any changes (http://www.gevent.org/intro.html#monkey-patching ).

Another demo can be found at Boost.Coroutine: it has example of simple server which asynchronously reads data from tcp port and prints it on screen, and all this happens in one thread. Reading loop looks exactly same as "normal" blocking code:

___________________
Advantage #2, Performance:

When you have chained levels of awaits - special code is executed at each of them - one level awaits another, and so on. It is O(N).

But in case of stackful coroutines, no matter how long chain you have - each level "implicitly" awaits the bottom one, that is O(1). Among other things this is extremely fast: http://www.boost.org/doc/libs/1_54_0/libs/coroutine/doc/html/coroutine/performance.html

___________________
Advantage #3, the Killer:

Exactly same syntax of await can be emulated with help of Stackful Coroutines.
I have made small proof-of-concept: https://github.com/panaseleus/await_emu :


I am thinking about all these issues w.r.t. to Rust and for example how to implement the await/async emulation I coded for EMCAScript 1.6:

Code: (asyncify.js)
'use strict';
/*
Inputs a generator function which must 'yield' only Promises, and may
optionally return a value. The return value may optionally be a Promise.

Returns a function which inputs the arguments of the generator function, and
returns a Promise which resolves when the generator function is done.
The return value of the generator function—or undefined—is the resolved value.

The optional '_this' input sets the value of 'this' for the generator function.

Inspiration from and wanting it to work without transpile in ES6:
  https://thomashunter.name/blog/the-long-road-to-asyncawait-in-javascript/
  http://jlongster.com/A-Study-on-Solving-Callbacks-with-JavaScript-Generators#Async-Solution--2--P
Wanted a solution built on correct primitives of Promises & generators (e.g. not node-fibers):
  https://github.com/yortus/asyncawait#2-featuregotcha-summary
  http://howtonode.org/generators-vs-fibers
  https://blog.domenic.me/youre-missing-the-point-of-promises/
*/
function asyncify(func, _this) {
  return function() {                             // inputs 'arguments'
    return new Promise((resolve, reject) => {     // inputs functions to invoke to resolve and reject the returned Promise
      // Function that iterates (via recursion) each Promise 'yield'ed then return value (of a generator function 'gen')
      function f(gen, previous/*= undefined*/) {
        const {value, done} = gen.next(previous)  // employ ES6 to destructure the returned named tuple into new const vars, https://davidwalsh.name/es6-generators
        if (done)
          // 'value' is the return value or undefined if none,
          // https://davidwalsh.name/es6-generators
          resolve(value)
        else
          // Assume the returned 'value' is a Promise; so
          // recurse our iteration function when the Promise resolves
          value.then(_ => f(gen, _)).catch(_ => reject(_))
      }
      f(func.apply(_this, arguments))             // iterate the input 'func' function
    })
  }
}


Code: (AsyncQueue.js)
'use strict';
/*
Queue of Promises resolved in FIFO order, that enables chaining asynchronous
events which operate on a value.

Pushing to the end of queue returns a Promise which resolves to the value set
by the last shift off the front of the queue, or to the initialized value in
case no prior shifts occurred.

Shifting off the start of the queue inputs the value to resolve the next queued
Promise (which is saved to the initialized value if no next Promise is queued).
*/
object('currentScript').then(_ => fetch[(_ ? _() : document.getElementsByTagName('script').last())['id']]( // register module output with fetch.js
  function(value) {
    var fifo = []
    this.push = () => new Promise(_ => {fifo.push(_); if (fifo.length == 1) _(value)})
    this.shift = _ => {fifo.shift(); if (fifo.length) {fifo[0](_)} else {value = _}}
  }
))
825  Alternate cryptocurrencies / Altcoin Discussion / Re: Why the darkcoin/dash instamine matters on: April 15, 2016, 06:08:59 AM
Without Masternodes they would either secure a shitcoin without value or they wouldn't even bother to mine it.
Masternode network is what gives Dash value. Darksend and Instantx is there thanks to it.

On this I agree, but the rewards are grossly excessive for the services provided.

I showed the high school level probability math that masternodes make InstantX insecure. I've already retorted the "why don't you break it then?" bullshit, so I won't again.

Masternodes destroy the network effects that a coin needs to attain adoption. I had already explained why, so I won't again.

The Dash scammers and accomplices are always trying to spin their scam as something other than a scam. Sigh.



did the monero wrote that fact about infinite supply in their ann Huh   if i was an investard in monero i would feel cheated if it isnt

No one can fork Monero without the support of the decentralized miners. The distinction from the Dash masternode scam, is that a masternode is staked only once with DRK (Dash tokens) and earns 50+% ROI per annum forever after for the largest holders of Dash tokens, thus further centralizing the coin meaning there is a centralized oligarchy which the investors are relying on for their future expecation of profits which afaics fulfills the Howey test for what is an investment security that is regulated by the Securities Act. A decentralized PoW miner is constantly expending on electricity in a competitive free market. Owning a lot of Monero doesn't give you any leverage as a miner.




I showed the high school level probability math that masternodes make InstantX insecure...Masternodes destroy the network effects that a coin needs to attain adoption.

Thats strange. I wonder why he didn’t listen.

The thing is, bedroom wannabees that "nearly" wrote the new Microsoft Word and spend all day long trashing real projects on bitconitalk form such a rich source of authoritative technical appraisal.

Evan should understand that.

Maybe if you re-assert your awesome pedigree he'll entertain you  Wink (You've sure entertained us).

Quoted for posterity, so we can refer to this in retrospect when we can more clearly see who was the (ad hominem hurling[1]) fool here.

Btw, Evan did reply on my thread and did not deny the math error. He tried to claim it was an honest mistake, yeah right.  Roll Eyes Then he disappeared upon being challenged.

[1] I suppose that is the first listed "talent" on your resume. I've never seen you respond factually nor display any significant technical acumen.
826  Alternate cryptocurrencies / Altcoin Discussion / Re: [DASH] Dash - Building the IoM | Dash Nation Progress Thread on: April 15, 2016, 06:06:40 AM
Without Masternodes they would either secure a shitcoin without value or they wouldn't even bother to mine it.
Masternode network is what gives Dash value. Darksend and Instantx is there thanks to it.

On this I agree, but the rewards are grossly excessive for the services provided.

I showed the high school level probability math that masternodes make InstantX insecure. I've already retorted the "why don't you break it then?" bullshit, so I won't again.

Masternodes destroy the network effects that a coin needs to attain adoption. I had already explained why, so I won't again.

The Dash scammers and accomplices are always trying to spin their scam as something other than a scam. Sigh.



did the monero wrote that fact about infinite supply in their ann Huh   if i was an investard in monero i would feel cheated if it isnt

No one can fork Monero without the support of the decentralized miners. The distinction from the Dash masternode scam, is that a masternode is staked only once with DRK (Dash tokens) and earns 50+% ROI per annum forever after for the largest holders of Dash tokens, thus further centralizing the coin meaning there is a centralized oligarchy which the investors are relying on for their future expecation of profits which afaics fulfills the Howey test for what is an investment security that is regulated by the Securities Act. A decentralized PoW miner is constantly expending on electricity in a competitive free market. Owning a lot of Monero doesn't give you any leverage as a miner.




I showed the high school level probability math that masternodes make InstantX insecure...Masternodes destroy the network effects that a coin needs to attain adoption.

Thats strange. I wonder why he didn’t listen.

The thing is, bedroom wannabees that "nearly" wrote the new Microsoft Word and spend all day long trashing real projects on bitconitalk form such a rich source of authoritative technical appraisal.

Evan should understand that.

Maybe if you re-assert your awesome pedigree he'll entertain you  Wink (You've sure entertained us).

Quoted for posterity, so we can refer to this in retrospect when we can more clearly see who was the (ad hominem hurling[1]) fool here.

Btw, Evan did reply on my thread and did not deny the math error. He tried to claim it was an honest mistake, yeah right.  Roll Eyes Then he disappeared upon being challenged.

[1] I suppose that is the first listed "talent" on your resume. I've never seen you respond factually nor display any significant technical acumen.
827  Alternate cryptocurrencies / Altcoin Discussion / Re: Dash: The Future Internet Of Money? on: April 15, 2016, 06:05:50 AM
Without Masternodes they would either secure a shitcoin without value or they wouldn't even bother to mine it.
Masternode network is what gives Dash value. Darksend and Instantx is there thanks to it.

On this I agree, but the rewards are grossly excessive for the services provided.

I showed the high school level probability math that masternodes make InstantX insecure. I've already retorted the "why don't you break it then?" bullshit, so I won't again.

Masternodes destroy the network effects that a coin needs to attain adoption. I had already explained why, so I won't again.

The Dash scammers and accomplices are always trying to spin their scam as something other than a scam. Sigh.
828  Alternate cryptocurrencies / Altcoin Discussion / Re: [neㄘcash, ᨇcash, net⚷eys, or viᖚes?] Name AnonyMint's vapor coin? on: April 15, 2016, 05:50:31 AM
Watch the video.

"Look, we are like c++ but much safer"... but as he points out at some point, well, if c++ evolves they might go bust. I mean what's your selling point? That your compiler notifies you? And is there anything that prevents a compiler software of c++ to notify the user that what he is doing is unsafe?

Elegance and comprehensibility via holistic unification of design concepts. You basically have to know the C++ compiler source code now to know what it will do. The 1000+ pages of specification is a clusterfuck.

Add more elegant syntax and less noisy implementation of polymorphism, first-class functions, etc.. Then fix corner cases (e.g. 'const') where the C++ compiler can't give you the correct warning nor (as explained in the video) enforce the programmer's intended semantics at the LLVM optimization layer.

AlexGR, I think you would be well served by taking a compiler design course and the implementation of both a low-level imperative paradigm and a high-level functional programming paradigm languages. This would start to help you see all the variables involved that you are trying to piecemeal or oversimplify. The issues are exceedingly complex.
829  Alternate cryptocurrencies / Speculation (Altcoins) / Re: [XMR] Monero Speculation on: April 15, 2016, 05:29:28 AM
I'll leave how I derived these numbers as an exercise to the reader for now with the hint that it is almost entirely objective.

smoothie replied before you wrote your post:

So then basically everything you've said is just words.

No facts/proof to back up your bold claims.

No worries. On to the next thread...

Hypocrisy is not meritocracy. It is even worse in that it is self-defeating.

You may not like how I presented it as a bit of a puzzle

I didn't dislike you claiming with implied but without explicit proof. Smoothie didn't like it! By transitive logic as quoted. I was pointing out the hypocrisy of smoothie's attack on me by applying his logic to your post.
830  Alternate cryptocurrencies / Speculation (Altcoins) / Re: [XMR] Monero Speculation on: April 15, 2016, 05:26:10 AM
@TPTB_need_war The AMD cpus are generally much more cost efficient than Intel across the board for XMR mining (and some people have noticed this). The APU models can mine on both the CPU and GPU.

Yes but that isn't my point. Try again.

Hint: what ratio of carryless multiply instructions to other instructions does Cryptonite use and what is the optimum possible in a memory hard hash.

(note this is my old hash design and I am willing to give it away so no harm to do this now)

Cryptonight does not use carryless multiplication. Another hash algorithm could use it but that is not relevant to XMR at this time (maybe propose on the technical improvements thead?). Some ARM chips support it too at very low cost.

Afair, carryless multiply is generally part of the AES algorithm and is one of the AES-NI instructions. It has been 2 years since I studied the Monero hash algorithm source code, so it is possible you use some AES-NI instructions and not all of them.

My post was entirely relevant to point that I was replying to which is that GPUs may have a cost advantage over the CPU for the current Cryptonite algorithm, and what a solution could be.
831  Alternate cryptocurrencies / Altcoin Discussion / Re: The altcoin topic everyone wants to sweep under the rug on: April 15, 2016, 05:13:37 AM
Until I receive a formal apology from sasha in this thread for calling me delusional and then telling people to Google my history to see how I'm a "bad actor", there is no possibility of collaboration.

My company and its partners will not work with projects or people who personally attack our personnel or management.
Charles I did this because I couldn't really understand your behavior and what you actually wanted. It was in the heat of the moment and I apologize for this.  I have to mention that I know Alex from NXT community since at least a couple years, we've met at a conference, I've been following Scorex and his articles closely at least since October or November last year. It was a very obvious choice for me to build on scorex, since I liked the approach and it would obviously speed up the development. Of course Scorex is not production-ready but no one was going to put it into production immediately.

I know Alex as a member of NXT community and NXT developer, not as an IOHK employee. I can somehow understand your position now but you should also understand mine. Crypto is about cooperation, and I really expect people to cooperate, especially when they seem interested, like you did. So these developments were unexpected for me,  and I made these remarks.   This situation does not do any good to either party.  Please let's finish this and move on to building products.

Actions speak louder than words. Have you removed the misleading statements from your website and inserted a disclaimer that your interactions on the open source Scorex do not constitute an endorsement, commitment, nor assistance from IOHK?

I think you don't understand well the predicament Charles is in, considering that he is running a global corporation and is ostensibly a USA citizen. He can't at any costs be later claimed to have contributed to the promotion of illegal investment securities to non-accredited USA investors (and regulatory issues in other jurisdictions). Although he won't come right out and say this, you need to respect and understand that this issue is most definitely lurking (unless Charles specifically states here that is not an issue for him). He is being diplomatic but it is up to you to have a brain and read between the lines so there won't be a misunderstanding. This is not a small matter. Jail time is potentially involved.

Disclaimer: IANAL so consult your own. And I have had no discussions with Charles on this matter, nor on legal issues, nor any private communication with Charles since 2014 (before he formed Ethereum) afair.
832  Alternate cryptocurrencies / Altcoin Discussion / Re: IOHK Research and Scorex ARE NOT working with Waves on: April 15, 2016, 05:10:16 AM
Until I receive a formal apology from sasha in this thread for calling me delusional and then telling people to Google my history to see how I'm a "bad actor", there is no possibility of collaboration.

My company and its partners will not work with projects or people who personally attack our personnel or management.
Charles I did this because I couldn't really understand your behavior and what you actually wanted. It was in the heat of the moment and I apologize for this.  I have to mention that I know Alex from NXT community since at least a couple years, we've met at a conference, I've been following Scorex and his articles closely at least since October or November last year. It was a very obvious choice for me to build on scorex, since I liked the approach and it would obviously speed up the development. Of course Scorex is not production-ready but no one was going to put it into production immediately.

I know Alex as a member of NXT community and NXT developer, not as an IOHK employee. I can somehow understand your position now but you should also understand mine. Crypto is about cooperation, and I really expect people to cooperate, especially when they seem interested, like you did. So these developments were unexpected for me,  and I made these remarks.   This situation does not do any good to either party.  Please let's finish this and move on to building products.

Actions speak louder than words. Have you removed the misleading statements from your website and inserted a disclaimer that your interactions on the open source Scorex do not constitute an endorsement, commitment, nor assistance from IOHK?

I think you don't understand well the predicament Charles is in, considering that he is running a global corporation and is ostensibly a USA citizen. He can't at any costs be later claimed to have contributed to the promotion of illegal investment securities to non-accredited USA investors (and regulatory issues in other jurisdictions). Although he won't come right out and say this, you need to respect and understand that this issue is most definitely lurking (unless Charles specifically states here that is not an issue for him). He is being diplomatic but it is up to you to have a brain and read between the lines so there won't be a misunderstanding. This is not a small matter. Jail time is potentially involved.

Disclaimer: IANAL so consult your own. And I have had no discussions with Charles on this matter, nor on legal issues, nor any private communication with Charles since 2014 (before he formed Ethereum) afair.
833  Alternate cryptocurrencies / Altcoin Discussion / Re: Ethereum / Synereo Cooperation on: April 15, 2016, 05:01:18 AM
I was thinking synereo was possibly meant

Same answer though. I don't even really know what that is, beyond some vague thing about social media. No idea how it was launched, what it does, etc. Never looked at it.

A competing social network for maskcoin or jambox or w/e hes calling it now. Hes trying to imply that you and Shelby intentionally gang on together on things maybe?

I dont know, but it seems like you broke the fella so i guess we probably wont know

I've read most of the 50+ page Synereo white paper, expended several hours viewing some of their YouTube Hangouts, done some limited discussion with their founding developer (username here Elokane), and posted in every recent Synereo thread in Altcoin Discussion.

Synereo was launched as a vaporware ICO and the math whiz on the project is Greg Meredith who is into process calculus research and was one of key persons apparently on Microsoft's BizTalk design. Greg is into using Scala and also is collaborating on the math modeling of Ethereum's upcoming, promised Casper design (which btw several of us, excluding smooth, have criticized in the Ethereum Paradox thread for its fundamental insoluble flaws).

I have pointed out that there are numerous P2P (aka distributed) social networking projects, so the idea of Synereo being the first and able to sweep the world, is very slim, especially they have no compelling features afaics. Thus I have criticized them for preselling tokens ("AMPS") with no adoption and on hype. Their major claim as an innovative feature is an "Attention Model" which is composed of reputation ("Reo") and a counter-vailing force of being able to pay to override reputation with the AMPS tokens. In other words, they aim to make the content that the users share more relevant. I had pointed out that the Reo needs to be fine-grained on for example #hashtags, and Elokane indicated that although that is not in the white paper they are implementing something like that, yet there is no holistic public specification afaik. They are claiming to be very close to beta, but I've pointed out that doesn't mean they are any where near adoption. I have also pointed out that Facebook users don't seem to have major complaints about the relevance of shared content on feeds, thus I doubt anyone will adopt Synereo (because their friends won't be there and much less content sharing and other chicken and egg dilemmas).

Also I have pointed out that the economics of advertising is the most someone could expect to earn by being paid to share (the AMPs model) is perhaps about $1 (in developing world) to $10 (first-world) per day and probably not that much. It simply isn't worth anyone's time. People don't join social networks to be paid some palty income. They join for other more important reasons. Thus I've argued the economic model for the AMPS is fundamentally flawed.

Thus I have argued they are preselling shit which no market.

Also I don't really understand the process calculus well enough to know if it is technobabble bullshit or not, but it sure looks like it to me. It looks like ivory tower shit that has no real implications in the real world. What did BizTalk do that was relevant? I did a Google search and it seems basically no one used it? Excuse me for being skeptical but the selling of ICOs is becoming too lucrative and attractive for every Joe who has some technobabble to make n00bs drool.

Smooth is not involved in my JAMBOX project at all. I occasionally trade ideas with him about technology. My JAMBOX project will when it is crowdsourced (not for tokens just for Tshirts!) will explain that it targets compelling features and economics. I have not yet announced that, because for one thing is that at the moment I am working on potentially creating a new programming language based on top of Rust, or perhaps contributing to Rust. Because JAMBOX is based on the concept of empowering mobile apps, and so I need to be sure the language we are using is the best in severals ways one of which is JIT compilation.

I don't hate Synereo's people. I just wish they hadn't done a vaporware ICO, both for the legal reasons of selling unregistered investment securities to non-accredited USA investors apparently in violation of securities law as provided for by the Supreme Court's Howey test and simply because it is the antithesis of the objective ethics (i.e. no zero-sum games) of meritocratic software development to sell vaporware.
834  Alternate cryptocurrencies / Altcoin Discussion / Re: Synereo Community Hangout - 11 Feb 2016 - Protip: Get In Here! on: April 15, 2016, 05:00:29 AM
I was thinking synereo was possibly meant

Same answer though. I don't even really know what that is, beyond some vague thing about social media. No idea how it was launched, what it does, etc. Never looked at it.

A competing social network for maskcoin or jambox or w/e hes calling it now. Hes trying to imply that you and Shelby intentionally gang on together on things maybe?

I dont know, but it seems like you broke the fella so i guess we probably wont know

I've read most of the 50+ page Synereo white paper, expended several hours viewing some of their YouTube Hangouts, done some limited discussion with their founding developer (username here Elokane), and posted in every recent Synereo thread in Altcoin Discussion.

Synereo was launched as a vaporware ICO and the math whiz on the project is Greg Meredith who is into process calculus research and was one of key persons apparently on Microsoft's BizTalk design. Greg is into using Scala and also is collaborating on the math modeling of Ethereum's upcoming, promised Casper design (which btw several of us, excluding smooth, have criticized in the Ethereum Paradox thread for its fundamental insoluble flaws).

I have pointed out that there are numerous P2P (aka distributed) social networking projects, so the idea of Synereo being the first and able to sweep the world, is very slim, especially they have no compelling features afaics. Thus I have criticized them for preselling tokens ("AMPS") with no adoption and on hype. Their major claim as an innovative feature is an "Attention Model" which is composed of reputation ("Reo") and a counter-vailing force of being able to pay to override reputation with the AMPS tokens. In other words, they aim to make the content that the users share more relevant. I had pointed out that the Reo needs to be fine-grained on for example #hashtags, and Elokane indicated that although that is not in the white paper they are implementing something like that, yet there is no holistic public specification afaik. They are claiming to be very close to beta, but I've pointed out that doesn't mean they are any where near adoption. I have also pointed out that Facebook users don't seem to have major complaints about the relevance of shared content on feeds, thus I doubt anyone will adopt Synereo (because their friends won't be there and much less content sharing and other chicken and egg dilemmas).

Also I have pointed out that the economics of advertising is the most someone could expect to earn by being paid to share (the AMPs model) is perhaps about $1 (in developing world) to $10 (first-world) per day and probably not that much. It simply isn't worth anyone's time. People don't join social networks to be paid some palty income. They join for other more important reasons. Thus I've argued the economic model for the AMPS is fundamentally flawed.

Thus I have argued they are preselling shit which no market.

Also I don't really understand the process calculus well enough to know if it is technobabble bullshit or not, but it sure looks like it to me. It looks like ivory tower shit that has no real implications in the real world. What did BizTalk do that was relevant? I did a Google search and it seems basically no one used it? Excuse me for being skeptical but the selling of ICOs is becoming too lucrative and attractive for every Joe who has some technobabble to make n00bs drool.

Smooth is not involved in my JAMBOX project at all. I occasionally trade ideas with him about technology. My JAMBOX project will when it is crowdsourced (not for tokens just for Tshirts!) will explain that it targets compelling features and economics. I have not yet announced that, because for one thing is that at the moment I am working on potentially creating a new programming language based on top of Rust, or perhaps contributing to Rust. Because JAMBOX is based on the concept of empowering mobile apps, and so I need to be sure the language we are using is the best in severals ways one of which is JIT compilation.

I don't hate Synereo's people. I just wish they hadn't done a vaporware ICO, both for the legal reasons of selling unregistered investment securities to non-accredited USA investors apparently in violation of securities law as provided for by the Supreme Court's Howey test and simply because it is the antithesis of the objective ethics (i.e. no zero-sum games) of meritocratic software development to sell vaporware.
835  Alternate cryptocurrencies / Altcoin Discussion / Re: Synereo - Earn Money Using Social Media on: April 15, 2016, 04:59:56 AM
I was thinking synereo was possibly meant

Same answer though. I don't even really know what that is, beyond some vague thing about social media. No idea how it was launched, what it does, etc. Never looked at it.

A competing social network for maskcoin or jambox or w/e hes calling it now. Hes trying to imply that you and Shelby intentionally gang on together on things maybe?

I dont know, but it seems like you broke the fella so i guess we probably wont know

I've read most of the 50+ page Synereo white paper, expended several hours viewing some of their YouTube Hangouts, done some limited discussion with their founding developer (username here Elokane), and posted in every recent Synereo thread in Altcoin Discussion.

Synereo was launched as a vaporware ICO and the math whiz on the project is Greg Meredith who is into process calculus research and was one of key persons apparently on Microsoft's BizTalk design. Greg is into using Scala and also is collaborating on the math modeling of Ethereum's upcoming, promised Casper design (which btw several of us, excluding smooth, have criticized in the Ethereum Paradox thread for its fundamental insoluble flaws).

I have pointed out that there are numerous P2P (aka distributed) social networking projects, so the idea of Synereo being the first and able to sweep the world, is very slim, especially they have no compelling features afaics. Thus I have criticized them for preselling tokens ("AMPS") with no adoption and on hype. Their major claim as an innovative feature is an "Attention Model" which is composed of reputation ("Reo") and a counter-vailing force of being able to pay to override reputation with the AMPS tokens. In other words, they aim to make the content that the users share more relevant. I had pointed out that the Reo needs to be fine-grained on for example #hashtags, and Elokane indicated that although that is not in the white paper they are implementing something like that, yet there is no holistic public specification afaik. They are claiming to be very close to beta, but I've pointed out that doesn't mean they are any where near adoption. I have also pointed out that Facebook users don't seem to have major complaints about the relevance of shared content on feeds, thus I doubt anyone will adopt Synereo (because their friends won't be there and much less content sharing and other chicken and egg dilemmas).

Also I have pointed out that the economics of advertising is the most someone could expect to earn by being paid to share (the AMPs model) is perhaps about $1 (in developing world) to $10 (first-world) per day and probably not that much. It simply isn't worth anyone's time. People don't join social networks to be paid some palty income. They join for other more important reasons. Thus I've argued the economic model for the AMPS is fundamentally flawed.

Thus I have argued they are preselling shit which no market.

Also I don't really understand the process calculus well enough to know if it is technobabble bullshit or not, but it sure looks like it to me. It looks like ivory tower shit that has no real implications in the real world. What did BizTalk do that was relevant? I did a Google search and it seems basically no one used it? Excuse me for being skeptical but the selling of ICOs is becoming too lucrative and attractive for every Joe who has some technobabble to make n00bs drool.

Smooth is not involved in my JAMBOX project at all. I occasionally trade ideas with him about technology. My JAMBOX project will when it is crowdsourced (not for tokens just for Tshirts!) will explain that it targets compelling features and economics. I have not yet announced that, because for one thing is that at the moment I am working on potentially creating a new programming language based on top of Rust, or perhaps contributing to Rust. Because JAMBOX is based on the concept of empowering mobile apps, and so I need to be sure the language we are using is the best in severals ways one of which is JIT compilation.

I don't hate Synereo's people. I just wish they hadn't done a vaporware ICO, both for the legal reasons of selling unregistered investment securities to non-accredited USA investors apparently in violation of securities law as provided for by the Supreme Court's Howey test and simply because it is the antithesis of the objective ethics (i.e. no zero-sum games) of meritocratic software development to sell vaporware.
836  Alternate cryptocurrencies / Altcoin Discussion / Re: Synereo on: April 15, 2016, 04:59:20 AM
I was thinking synereo was possibly meant

Same answer though. I don't even really know what that is, beyond some vague thing about social media. No idea how it was launched, what it does, etc. Never looked at it.

A competing social network for maskcoin or jambox or w/e hes calling it now. Hes trying to imply that you and Shelby intentionally gang on together on things maybe?

I dont know, but it seems like you broke the fella so i guess we probably wont know

I've read most of the 50+ page Synereo white paper, expended several hours viewing some of their YouTube Hangouts, done some limited discussion with their founding developer (username here Elokane), and posted in every recent Synereo thread in Altcoin Discussion.

Synereo was launched as a vaporware ICO and the math whiz on the project is Greg Meredith who is into process calculus research and was one of key persons apparently on Microsoft's BizTalk design. Greg is into using Scala and also is collaborating on the math modeling of Ethereum's upcoming, promised Casper design (which btw several of us, excluding smooth, have criticized in the Ethereum Paradox thread for its fundamental insoluble flaws).

I have pointed out that there are numerous P2P (aka distributed) social networking projects, so the idea of Synereo being the first and able to sweep the world, is very slim, especially they have no compelling features afaics. Thus I have criticized them for preselling tokens ("AMPS") with no adoption and on hype. Their major claim as an innovative feature is an "Attention Model" which is composed of reputation ("Reo") and a counter-vailing force of being able to pay to override reputation with the AMPS tokens. In other words, they aim to make the content that the users share more relevant. I had pointed out that the Reo needs to be fine-grained on for example #hashtags, and Elokane indicated that although that is not in the white paper they are implementing something like that, yet there is no holistic public specification afaik. They are claiming to be very close to beta, but I've pointed out that doesn't mean they are any where near adoption. I have also pointed out that Facebook users don't seem to have major complaints about the relevance of shared content on feeds, thus I doubt anyone will adopt Synereo (because their friends won't be there and much less content sharing and other chicken and egg dilemmas).

Also I have pointed out that the economics of advertising is the most someone could expect to earn by being paid to share (the AMPs model) is perhaps about $1 (in developing world) to $10 (first-world) per day and probably not that much. It simply isn't worth anyone's time. People don't join social networks to be paid some palty income. They join for other more important reasons. Thus I've argued the economic model for the AMPS is fundamentally flawed.

Thus I have argued they are preselling shit which no market.

Also I don't really understand the process calculus well enough to know if it is technobabble bullshit or not, but it sure looks like it to me. It looks like ivory tower shit that has no real implications in the real world. What did BizTalk do that was relevant? I did a Google search and it seems basically no one used it? Excuse me for being skeptical but the selling of ICOs is becoming too lucrative and attractive for every Joe who has some technobabble to make n00bs drool.

Smooth is not involved in my JAMBOX project at all. I occasionally trade ideas with him about technology. My JAMBOX project will when it is crowdsourced (not for tokens just for Tshirts!) will explain that it targets compelling features and economics. I have not yet announced that, because for one thing is that at the moment I am working on potentially creating a new programming language based on top of Rust, or perhaps contributing to Rust. Because JAMBOX is based on the concept of empowering mobile apps, and so I need to be sure the language we are using is the best in severals ways one of which is JIT compilation.

I don't hate Synereo's people. I just wish they hadn't done a vaporware ICO, both for the legal reasons of selling unregistered investment securities to non-accredited USA investors apparently in violation of securities law as provided for by the Supreme Court's Howey test and simply because it is the antithesis of the objective ethics (i.e. no zero-sum games) of meritocratic software development to sell vaporware.
837  Alternate cryptocurrencies / Altcoin Discussion / Re: The altcoin topic everyone wants to sweep under the rug on: April 15, 2016, 04:58:54 AM
I was thinking synereo was possibly meant

Same answer though. I don't even really know what that is, beyond some vague thing about social media. No idea how it was launched, what it does, etc. Never looked at it.

A competing social network for maskcoin or jambox or w/e hes calling it now. Hes trying to imply that you and Shelby intentionally gang on together on things maybe?

I dont know, but it seems like you broke the fella so i guess we probably wont know

I've read most of the 50+ page Synereo white paper, expended several hours viewing some of their YouTube Hangouts, done some limited discussion with their founding developer (username here Elokane), and posted in every recent Synereo thread in Altcoin Discussion.

Synereo was launched as a vaporware ICO and the math whiz on the project is Greg Meredith who is into process calculus research and was one of key persons apparently on Microsoft's BizTalk design. Greg is into using Scala and also is collaborating on the math modeling of Ethereum's upcoming, promised Casper design (which btw several of us, excluding smooth, have criticized in the Ethereum Paradox thread for its fundamental insoluble flaws).

I have pointed out that there are numerous P2P (aka distributed) social networking projects, so the idea of Synereo being the first and able to sweep the world, is very slim, especially they have no compelling features afaics. Thus I have criticized them for preselling tokens ("AMPS") with no adoption and on hype. Their major claim as an innovative feature is an "Attention Model" which is composed of reputation ("Reo") and a counter-vailing force of being able to pay to override reputation with the AMPS tokens. In other words, they aim to make the content that the users share more relevant. I had pointed out that the Reo needs to be fine-grained on for example #hashtags, and Elokane indicated that although that is not in the white paper they are implementing something like that, yet there is no holistic public specification afaik. They are claiming to be very close to beta, but I've pointed out that doesn't mean they are any where near adoption. I have also pointed out that Facebook users don't seem to have major complaints about the relevance of shared content on feeds, thus I doubt anyone will adopt Synereo (because their friends won't be there and much less content sharing and other chicken and egg dilemmas).

Also I have pointed out that the economics of advertising is the most someone could expect to earn by being paid to share (the AMPs model) is perhaps about $1 (in developing world) to $10 (first-world) per day and probably not that much. It simply isn't worth anyone's time. People don't join social networks to be paid some palty income. They join for other more important reasons. Thus I've argued the economic model for the AMPS is fundamentally flawed.

Thus I have argued they are preselling shit which no market.

Also I don't really understand the process calculus well enough to know if it is technobabble bullshit or not, but it sure looks like it to me. It looks like ivory tower shit that has no real implications in the real world. What did BizTalk do that was relevant? I did a Google search and it seems basically no one used it? Excuse me for being skeptical but the selling of ICOs is becoming too lucrative and attractive for every Joe who has some technobabble to make n00bs drool.

Smooth is not involved in my JAMBOX project at all. I occasionally trade ideas with him about technology. My JAMBOX project will when it is crowdsourced (not for tokens just for Tshirts!) will explain that it targets compelling features and economics. I have not yet announced that, because for one thing is that at the moment I am working on potentially creating a new programming language based on top of Rust, or perhaps contributing to Rust. Because JAMBOX is based on the concept of empowering mobile apps, and so I need to be sure the language we are using is the best in severals ways one of which is JIT compilation.

I don't hate Synereo's people. I just wish they hadn't done a vaporware ICO, both for the legal reasons of selling unregistered investment securities to non-accredited USA investors apparently in violation of securities law as provided for by the Supreme Court's Howey test and simply because it is the antithesis of the objective ethics (i.e. no zero-sum games) of meritocratic software development to sell vaporware.
838  Alternate cryptocurrencies / Altcoin Discussion / Re: POLL - which coins are scams as defined in the OP? on: April 15, 2016, 04:58:11 AM
I was thinking synereo was possibly meant

Same answer though. I don't even really know what that is, beyond some vague thing about social media. No idea how it was launched, what it does, etc. Never looked at it.

A competing social network for maskcoin or jambox or w/e hes calling it now. Hes trying to imply that you and Shelby intentionally gang on together on things maybe?

I dont know, but it seems like you broke the fella so i guess we probably wont know

I've read most of the 50+ page Synereo white paper, expended several hours viewing some of their YouTube Hangouts, done some limited discussion with their founding developer (username here Elokane), and posted in every recent Synereo thread in Altcoin Discussion.

Synereo was launched as a vaporware ICO and the math whiz on the project is Greg Meredith who is into process calculus research and was one of key persons apparently on Microsoft's BizTalk design. Greg is into using Scala and also is collaborating on the math modeling of Ethereum's upcoming, promised Casper design (which btw several of us, excluding smooth, have criticized in the Ethereum Paradox thread for its fundamental insoluble flaws).

I have pointed out that there are numerous P2P (aka distributed) social networking projects, so the idea of Synereo being the first and able to sweep the world, is very slim, especially they have no compelling features afaics. Thus I have criticized them for preselling tokens ("AMPS") with no adoption and on hype. Their major claim as an innovative feature is an "Attention Model" which is composed of reputation ("Reo") and a counter-vailing force of being able to pay to override reputation with the AMPS tokens. In other words, they aim to make the content that the users share more relevant. I had pointed out that the Reo needs to be fine-grained on for example #hashtags, and Elokane indicated that although that is not in the white paper they are implementing something like that, yet there is no holistic public specification afaik. They are claiming to be very close to beta, but I've pointed out that doesn't mean they are any where near adoption. I have also pointed out that Facebook users don't seem to have major complaints about the relevance of shared content on feeds, thus I doubt anyone will adopt Synereo (because their friends won't be there and much less content sharing and other chicken and egg dilemmas).

Also I have pointed out that the economics of advertising is the most someone could expect to earn by being paid to share (the AMPs model) is perhaps about $1 (in developing world) to $10 (first-world) per day and probably not that much. It simply isn't worth anyone's time. People don't join social networks to be paid some palty income. They join for other more important reasons. Thus I've argued the economic model for the AMPS is fundamentally flawed.

Thus I have argued they are preselling shit which no market.

Also I don't really understand the process calculus well enough to know if it is technobabble bullshit or not, but it sure looks like it to me. It looks like ivory tower shit that has no real implications in the real world. What did BizTalk do that was relevant? I did a Google search and it seems basically no one used it? Excuse me for being skeptical but the selling of ICOs is becoming too lucrative and attractive for every Joe who has some technobabble to make n00bs drool.

Smooth is not involved in my JAMBOX project at all. I occasionally trade ideas with him about technology. My JAMBOX project will when it is crowdsourced (not for tokens just for Tshirts!) will explain that it targets compelling features and economics. I have not yet announced that, because for one thing is that at the moment I am working on potentially creating a new programming language based on top of Rust, or perhaps contributing to Rust. Because JAMBOX is based on the concept of empowering mobile apps, and so I need to be sure the language we are using is the best in severals ways one of which is JIT compilation.

I don't hate Synereo's people. I just wish they hadn't done a vaporware ICO, both for the legal reasons of selling unregistered investment securities to non-accredited USA investors apparently in violation of securities law as provided for by the Supreme Court's Howey test and simply because it is the antithesis of the objective ethics (i.e. no zero-sum games) of meritocratic software development to sell vaporware.
839  Alternate cryptocurrencies / Altcoin Discussion / Re: [neㄘcash, ᨇcash, net⚷eys, or viᖚes?] Name AnonyMint's vapor coin? on: April 15, 2016, 04:57:08 AM
I was thinking synereo was possibly meant

Same answer though. I don't even really know what that is, beyond some vague thing about social media. No idea how it was launched, what it does, etc. Never looked at it.

A competing social network for maskcoin or jambox or w/e hes calling it now. Hes trying to imply that you and Shelby intentionally gang on together on things maybe?

I dont know, but it seems like you broke the fella so i guess we probably wont know

I've read most of the 50+ page Synereo white paper, expended several hours viewing some of their YouTube Hangouts, done some limited discussion with their founding developer (username here Elokane), and posted in every recent Synereo thread in Altcoin Discussion.

Synereo was launched as a vaporware ICO and the math whiz on the project is Greg Meredith who is into process calculus research and was one of key persons apparently on Microsoft's BizTalk design. Greg is into using Scala and also is collaborating on the math modeling of Ethereum's upcoming, promised Casper design (which btw several of us, excluding smooth, have criticized in the Ethereum Paradox thread for its fundamental insoluble flaws).

I have pointed out that there are numerous P2P (aka distributed) social networking projects, so the idea of Synereo being the first and able to sweep the world, is very slim, especially they have no compelling features afaics. Thus I have criticized them for preselling tokens ("AMPS") with no adoption and on hype. Their major claim as an innovative feature is an "Attention Model" which is composed of reputation ("Reo") and a counter-vailing force of being able to pay to override reputation with the AMPS tokens. In other words, they aim to make the content that the users share more relevant. I had pointed out that the Reo needs to be fine-grained on for example #hashtags, and Elokane indicated that although that is not in the white paper they are implementing something like that, yet there is no holistic public specification afaik. They are claiming to be very close to beta, but I've pointed out that doesn't mean they are any where near adoption. I have also pointed out that Facebook users don't seem to have major complaints about the relevance of shared content on feeds, thus I doubt anyone will adopt Synereo (because their friends won't be there and much less content sharing and other chicken and egg dilemmas).

Also I have pointed out that the economics of advertising is the most someone could expect to earn by being paid to share (the AMPs model) is perhaps about $1 (in developing world) to $10 (first-world) per day and probably not that much. It simply isn't worth anyone's time. People don't join social networks to be paid some palty income. They join for other more important reasons. Thus I've argued the economic model for the AMPS is fundamentally flawed.

Thus I have argued they are preselling shit which no market.

Also I don't really understand the process calculus well enough to know if it is technobabble bullshit or not, but it sure looks like it to me. It looks like ivory tower shit that has no real implications in the real world. What did BizTalk do that was relevant? I did a Google search and it seems basically no one used it? Excuse me for being skeptical but the selling of ICOs is becoming too lucrative and attractive for every Joe who has some technobabble to make n00bs drool.

Smooth is not involved in my JAMBOX project at all. I occasionally trade ideas with him about technology. My JAMBOX project will when it is crowdsourced (not for tokens just for Tshirts!) will explain that it targets compelling features and economics. I have not yet announced that, because for one thing is that at the moment I am working on potentially creating a new programming language based on top of Rust, or perhaps contributing to Rust. Because JAMBOX is based on the concept of empowering mobile apps, and so I need to be sure the language we are using is the best in severals ways one of which is JIT compilation.

I don't hate Synereo's people. I just wish they hadn't done a vaporware ICO, both for the legal reasons of selling unregistered investment securities to non-accredited USA investors apparently in violation of securities law as provided for by the Supreme Court's Howey test and simply because it is the antithesis of the objective ethics (i.e. no zero-sum games) of meritocratic software development to sell vaporware.
840  Alternate cryptocurrencies / Speculation (Altcoins) / Re: [XMR] Monero Speculation on: April 15, 2016, 04:43:16 AM
I was thinking synereo was possibly meant

Same answer though. I don't even really know what that is, beyond some vague thing about social media. No idea how it was launched, what it does, etc. Never looked at it.

A competing social network for maskcoin or jambox or w/e hes calling it now. Hes trying to imply that you and Shelby intentionally gang on together on things maybe?

I dont know, but it seems like you broke the fella so i guess we probably wont know

I've read most of the 50+ page Synereo white paper, expended several hours viewing some of their YouTube Hangouts, done some limited discussion with their founding developer (username here Elokane), and posted in every recent Synereo thread in Altcoin Discussion.

Synereo was launched as a vaporware ICO and the math whiz on the project is Greg Meredith who is into process calculus research and was one of key persons apparently on Microsoft's BizTalk design. Greg is into using Scala and also is collaborating on the math modeling of Ethereum's upcoming, promised Casper design (which btw several of us, excluding smooth, have criticized in the Ethereum Paradox thread for its fundamental insoluble flaws).

I have pointed out that there are numerous P2P (aka distributed) social networking projects, so the idea of Synereo being the first and able to sweep the world, is very slim, especially they have no compelling features afaics. Thus I have criticized them for preselling tokens ("AMPS") with no adoption and on hype. Their major claim as an innovative feature is an "Attention Model" which is composed of reputation ("Reo") and a counter-vailing force of being able to pay to override reputation with the AMPS tokens. In other words, they aim to make the content that the users share more relevant. I had pointed out that the Reo needs to be fine-grained on for example #hashtags, and Elokane indicated that although that is not in the white paper they are implementing something like that, yet there is no holistic public specification afaik. They are claiming to be very close to beta, but I've pointed out that doesn't mean they are any where near adoption. I have also pointed out that Facebook users don't seem to have major complaints about the relevance of shared content on feeds, thus I doubt anyone will adopt Synereo (because their friends won't be there and much less content sharing and other chicken and egg dilemmas).

Also I have pointed out that the economics of advertising is the most someone could expect to earn by being paid to share (the AMPs model) is perhaps about $1 (in developing world) to $10 (first-world) per day and probably not that much. It simply isn't worth anyone's time. People don't join social networks to be paid some palty income. They join for other more important reasons. Thus I've argued the economic model for the AMPS is fundamentally flawed.

Thus I have argued they are preselling shit which no market.

Also I don't really understand the process calculus well enough to know if it is technobabble bullshit or not, but it sure looks like it to me. It looks like ivory tower shit that has no real implications in the real world. What did BizTalk do that was relevant? I did a Google search and it seems basically no one used it? Excuse me for being skeptical but the selling of ICOs is becoming too lucrative and attractive for every Joe who has some technobabble to make n00bs drool.

Smooth is not involved in my JAMBOX project at all. I occasionally trade ideas with him about technology. My JAMBOX project will when it is crowdsourced (not for tokens just for Tshirts!) will explain that it targets compelling features and economics. I have not yet announced that, because for one thing is that at the moment I am working on potentially creating a new programming language based on top of Rust, or perhaps contributing to Rust. Because JAMBOX is based on the concept of empowering mobile apps, and so I need to be sure the language we are using is the best in severals ways one of which is JIT compilation.

I don't hate Synereo's people. I just wish they hadn't done a vaporware ICO, both for the legal reasons of selling unregistered investment securities to non-accredited USA investors apparently in violation of securities law as provided for by the Supreme Court's Howey test and simply because it is the antithesis of the objective ethics (i.e. no zero-sum games) of meritocratic software development to sell vaporware.
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 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 ... 391 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!