Bitcoin Forum
May 11, 2024, 09:16:45 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 »
181  Alternate cryptocurrencies / Announcements (Altcoins) / Re: 📁 novusphere.io 📁 Advanced File Index 📁 Crowdfund LIVE 📁 Open Development 📁 on: March 06, 2017, 01:00:04 AM
What coin holders will receive profits from the platform? Which makes sense to buy these coins, except speculative?

there will be a coin integration into the platform for rewards on uploading content
182  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN]Cryptocurrency's killer app: disrupting web ads via RaiBlocks micropayments on: March 05, 2017, 10:43:31 PM
so 340,282,366.920939 Mrai x 0.0000600BTC = 2041BTC = 2.592.951$

man, I'll wait for the cool off dip
183  Alternate cryptocurrencies / Announcements (Altcoins) / Re: ██ MAR ██ Marijuanacoin ██ Platform ██ Facility ██ Cryptopia ██ SeedShop Soon ██ on: March 02, 2017, 06:35:45 PM
mmmm that means someone bought a shitload of MAR cheap, yobit here we come!

orders filled.

accumulating for the main event

What to expect the following weeks:

This weekend : New Block Explorer
This weekend/monday : SeedShop
1 - 2 Weeks : Wallet Update
1 -2 Weeks : Video documenting the GrowFacility build Cool
3-4 Weeks : Re-build WebWallet into new platform/server. (Remove all bugs)

good one
184  Alternate cryptocurrencies / Announcements (Altcoins) / Re: 📁 Novus: AFIX 🎥 VIDZ Burn/Swap 🎥 CROWDFUND LIVE! 📁 250+ Member Discord 📁 on: March 02, 2017, 06:24:54 PM
Hey everyone,

Today we're launching the gateway prototype we've been working on so far as well as one example of a Specific File Search Index (SFSI) for Videos built on top of AFIX. I'd heavily urge you to keep in mind, these are not by any means finished products but prototypes modeling how things will work during the centralized parts of this project but as well how things should feel even after we've decentralized the project.

You can access the gateway at: http://gateway.novusphere.io
There's currently a restriction on indexing objects at 1 every minute to prevent abuse. Any content that we've added ourselves to the gateway (such as Movies or Music) have no copyright attached to them.

The main gateway of AFIX is designed with "Google" in mind. While currently, the search algorithm being used is very primitive and will be improved in time, it's abstract enough that it lets you search for whatever you want on the platform.

Let's take a look at some music by searching "NCS Music"
http://gateway.novusphere.io/sfsi/#/q/1/ncs%20music

Looking at "Ahrix - Nova"
http://gateway.novusphere.io/sfsi/#/27

click "MetaData" and from this we can now understand some of the information associated with this record,
Code:
  "MetaData": {
    "AudioType": 3,
    "Encoding": "audio/mpeg",
    "Title": "Ahrix - Nova",
    "Type": "audio",
    "Hash": "QmbFwV3C73eqM5x2AvRjPYXifoBe73JkBQYWhn5jBsYR4t",
    "Description": "Ahrix Nova NCS Release Music\r\nhttps://www.youtube.com/watch?v=FjNdYp2gXRY",
    "PreferredNode": null
  },

Clicking it, we can see the system is able to easily render the information into something useful your browser can play back for you. In this case, we don't need a specialized javascript to generate our html content, but rather just a static template
Code:
    <script data-name="audio" type="text/x-handlebars-template">
        <div class="text-center">
            <audio controls autoplay>
                <source src="{{ Url }}" type="{{text Object.MetaData.Encoding}}" />
            </audio>
        </div>
    </script>

What about Movies? Lets take a look at "Cinderella"
http://gateway.novusphere.io/sfsi/#/21

As we can see, the abstract gateway can handle videos in such a similar fashion.

The powerful part about AFIX is it doesn't dictate how the data is presented to you. An example of this is building a Specific File Search Index (SFSI) on top of AFIX through the PUSH API. We've already started on one for videos which can be viewed here: http://gateway.novusphere.io/sfsi/video/

Using the same engine that powers the AFIX Gateway with pure client side code (html/css/js) as any server-side processing is done by the PUSH API we can present the information for objects of type "video" in a completely different visually appealing way!

Through a SFSI, one can present information in a vastly different way, for example
http://gateway.novusphere.io/sfsi/video/#/watch/21
versus
http://gateway.novusphere.io/sfsi/#/21

Continue reading if you want, but less important and more so rambling on...

Here is some relevant context formatted from what I said on Discord,

the whole platform (Novusphere) is built around storing arbitrary objects (metadata)... coin some fancy hipster term for this... Smart Objects.

So a smart object can really contain ANYTHING it's user defined and there's no formal structure to it. Now, if we want to take a look at an example, here's the object used for "The Bat"
Code:
{"Backdrop":"//image.tmdb.org/t/p/w1280/uRz6KgauShQ0HOESoJnOhLp5Wkh.jpg","Poster":"//image.tmdb.org/t/p/w1280/kuqbKnzULGFDZEBrOjQooBray5w.jpg","Genres":["Horror","Mystery","Thriller"],"Actors":null,"Director":null,"ReleaseDate":"1959-08-09T00:00:00","Runtime":80.0,"VideoType":2,"AgeRating":null,"SubtitleHash":null,"Title":"The Bat","Type":"video","Hash":"QmanUGSxZ7nzN8jCLRMsUS7a86oHF6jc8nZEBxCLAEqnfu","Description":"Mystery writer Cornelia Van Gorder has rented a country house called &quot;The Oaks&quot;, which not long ago had been the scene of some murders committed by a strange and violent criminal known as &quot;The Bat&quot;.Meanwhile, the house&#39;s owner, bank president John Fleming, has recently embezzled one million dollars in securities, and has hidden the proceeds in the house, but he is killed before he can retrieve it.","PreferredNode":null}

If you want to see that more nicely formatted... https://jsonformatter.curiousconcept.com/

There are going to be a few object types we define for example "video" refers to a video file being stored on IPFS with some basic information about it, however a user (or programmer) could define an entirely custom data type.

While a big part of our platform focuses on IPFS, this is a specific type of Smart Object at the end of day which is consistent in one parameter which is it must contain a field called "Hash" which stores the IPFS Hash field.

However, could a user define an object that doesn't use IPFS? Sure. Lets say you wanted to use an entirely different data storage and content delivery medium like Storj for videos, you could create some type "video_storj" but that's part of the job, there's a couple other steps. You then need to define a (java) script which explains to the browser "how do I render or present this content to the user" because typically, the browser isn't going to know what exactly to do with your Smart Object unless you tell it.

Now, you can take this an extra step further by creating an entire website (or SFSI) which specifically looks for "video_storj" and aggregates the data in a useful manner. The example/screenshots Dynamic showed you shows a useful aggregation of IPFS video meta data which is presented in the same way that a typical streaming site is set up.

Going further, you don't have to be some crypto hipster either. You can stick to good old HTTP/S as well! Typical streaming sites load their videos usually in iframe contents, so we can define such a type known as "iframe" which simply contains a link to the resource and maybe some additional presentation details and now a person can find that information which the gateway because a Smart Object details it. Essentially a traditional streaming website (one that uses mirrors to other centralized web servers) could be build on top of AFIX as well.

Really, the potential is limitless and how a developer of an SFSI chooses to utilize and present that meta data is entirely up to them. The system will be flexible and robust enough that they can easily define custom filter queries on-par with typical SQL without the gateway host having to worry about things like SQL injection. Of course, we'll be developing a few SFSIs of our own and setting up a few of our own standard Smart Object formats, but really nothing is to prevent any programmer from really utilizing the platform in their own way and making it "their own"

All of that explains to you what the system is like if you're a programmer, but generalizing what it comes down to as a user is sites such as Imgur, streaming websites, or even a database of torrent magnet links could be built on top of AFIX. Really it's up to the SFSI creator to make and choose their own schema to their Smart Object type and visual aesthetics and presentation of the data.

The possibilities are endless.

Thanks.

interesting

will keep my eye on it for the next milestones
185  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] NUBIS - SHA256d - PoW - PoS 250% - NO ICO - NEW INFO on: March 02, 2017, 06:13:25 PM
natural grow

fundamentally driven

very obviously not a p&d
186  Economy / Services / Re: PureVidz Fixed Signature Campaign || Upto 0.08 BTC || #Open on: March 02, 2017, 03:56:06 PM
Announcement/Update- Those who joined before 5th will be paid on 5th and those who enrolled after 5th will be paid on 10th March.

Hope that answers the queries for the questions related to payments.

alright thanks for clarification.

awaiting payment on the 5th Wink
187  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] VISIO COIN - ultimate video streaming & sharing platform on: March 02, 2017, 03:44:12 PM
Windows initial wallet: https://visio.wtf/wallets/visio-qt.zip

working like a charm
188  Alternate cryptocurrencies / Announcements (Altcoins) / Re: RISE | Under Construction on: March 02, 2017, 03:00:31 AM
I gave them my bitcoins because they said they will develop Rise with it, they didnt, so it is fraud.
189  Alternate cryptocurrencies / Announcements (Altcoins) / Re: 📁 Novus: AFIX 🎥 VIDZ Burn/Swap 🎥 CROWDFUND LIVE! 📁 250+ Member Discord 📁 on: March 02, 2017, 02:16:08 AM
rekt vidz bag holder taking vengeance

honestly, as long as people still think purevidz was the market research and PV was just a false trail, what was your expectation?

anyway, will be great to see a great product tmrw
190  Alternate cryptocurrencies / Announcements (Altcoins) / Re: RISE | Under Construction on: March 02, 2017, 12:33:24 AM
I invested 5BTC in your project because I liked your vision and dreams.

So to set up a buywall to refund the community which believed in you should cleanse your soul from sin.

Dont wanna go to jail? Dont wanna burn in hell? Set up a buywall to refund your investors.
191  Alternate cryptocurrencies / Announcements (Altcoins) / Re: 📁 Novus: AFIX 🎥 VIDZ Burn/Swap 🎥 CROWDFUND LIVE! 📁 250+ Member Discord 📁 on: March 02, 2017, 12:02:19 AM
192  Alternate cryptocurrencies / Announcements (Altcoins) / Re: 🎥 PureVidz.net: Decentralized Streaming WebTorrents 🎥 VIDZ - Trading Now 🎥 on: March 01, 2017, 11:43:32 PM
I'm still surprised that Vidz is traded above the ICO price. quite spectacular, I have to admit. Despite the fud attack and remaining dev running away (with his share of ICO funds), I was expecting the project to be dead and forgotten by now.


If at all, Vidz was Open source, Is there any possibility that we'll see new devs taking up from where PV stopped?

dude seriously, check the vidz wallets

https://chainz.cryptoid.info/vidz/#!rich

PV's wallets are still all untouched. Many fat wallets being filled daily more and more.

to your second question. yes you can, imagine you're a good developer you can just clone the purevidz website (already done here http://www.freerainradio.com/Clonesite/SiteCloner-1.03/SiteCloner/sites/1/1486706550/) and develop it further in an IPFS based manner. create a new twitter account for communication (slack still has 238 user) and you're good to go.
193  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] MonetaryUnit [MUE] Quark based, CPU mining, faucet, explorer, pool, wallet on: March 01, 2017, 11:30:30 PM
Dear community, apologies for no update regarding X11 migration until now.

Over the next couple of days we will be adding the next services to MUEX.io

Once they have been added, focus will be on releasing the public beta testing for the X11 migration asap.
During this time, please take the opportunity to make yourself heard regarding what you might like to see in the new MUE X11/MN wallets.

We are heading to very interesting times for MonetaryUnit, following in the footsteps of giants.

To remind you about the migration


The algo will be X11
We will be utilising the governance structure of Dash and MasterNodes.
A MasterNode requires 500k MUE
POW will be rewarded 45% of block reward
MNs will be rewarded 45% of block reward
10% will be allocated to the development fund
Block reward will remain at 40 MUE per block
Block time will remain at 40 seconds per block
Max coin supply will be capped at 4,000,000,000

We look forward to hearing your thoughts, ideas & feedback.

Many thanks, B & the rest of the MonetaryUnit team



you guys should drive up the marketing, especially now that dash is ath'ing
194  Alternate cryptocurrencies / Announcements (Altcoins) / Re: 🍁 [ANN][KUSH][PoW+PoS Hybrid] KushCoin || No Premine || No IPO 🍁 on: March 01, 2017, 07:14:42 PM
no, just a bunch of nothing
195  Alternate cryptocurrencies / Announcements (Altcoins) / Re: 🎥 PureVidz.net: Decentralized Streaming WebTorrents 🎥 VIDZ - Trading Now 🎥 on: March 01, 2017, 04:05:11 PM
there is a dev, working and preparing
196  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [SHA256] PinkDog - become a pink millionaire. Catch some rays with us!!! on: March 01, 2017, 02:45:57 PM
yobit first, polo second

buying the lows
197  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [RNS] Introducing Renos - A community based altcoin on: March 01, 2017, 01:08:32 AM
What is the special feature of this coin? I see no, and it is free coin, beneficial for cheaters, it may not list on exchanges, and the wallet may contain virus.
so what it is? https://www.coinexchange.io/market/RNS/BTC Wink


7.5BTC volume

275sat high

not too bad
198  Alternate cryptocurrencies / Announcements (Altcoins) / Re: 🎥 PureVidz.net: Decentralized Streaming WebTorrents 🎥 VIDZ - Trading Now 🎥 on: February 28, 2017, 02:21:43 AM
I have just finished a small paper about the whole PureVidz deal: https://www.dropbox.com/s/wy9kmcgdr6548ln/What%20the%20fuck%20happened%20to%20PureVidz.pdf?dl=0

It doesn't necessarily clarify much or bring to light the true identity of PV or asphyxia, just states what some of us know and what is still questionable. What I have done is: bring everything together. Anyone can connect the dots they like and that they see fit. It can be anything.

Better than watching Game of Thrones
199  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] VISIO.WTF - ultimate video streaming & sharing platform on: February 27, 2017, 01:50:00 PM
Wow guys

Huge success on the ICO

now PureVidz Vision can be put into action


200  Alternate cryptocurrencies / Announcements (Altcoins) / Re: 🎥 PureVidz.net: Decentralized Streaming WebTorrents 🎥 VIDZ - Trading Now 🎥 on: February 27, 2017, 02:52:01 AM


sick, 77 BTC in 3 minutes
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 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!