<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Boney</title>
    <description>The latest articles on DEV Community by Boney (@boney_platon).</description>
    <link>https://dev.to/boney_platon</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F650413%2Ff13016f6-1cf9-4233-99a9-e496119e8cc1.png</url>
      <title>DEV Community: Boney</title>
      <link>https://dev.to/boney_platon</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/boney_platon"/>
    <language>en</language>
    <item>
      <title>PLATO TALK #3 — Wonderful discussion sharing</title>
      <dc:creator>Boney</dc:creator>
      <pubDate>Fri, 14 Jan 2022 03:17:36 +0000</pubDate>
      <link>https://dev.to/boney_platon/plato-talk-3-wonderful-discussion-sharing-43he</link>
      <guid>https://dev.to/boney_platon/plato-talk-3-wonderful-discussion-sharing-43he</guid>
      <description>&lt;h1&gt;
  
  
  PLATO TALK #3 — Wonderful discussion sharing
&lt;/h1&gt;

&lt;h2&gt;
  
  
  TOPIC： &lt;strong&gt;Privacy-Preserving Computation Application Scenario Sharing&lt;/strong&gt;
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;“Share what you think is a viable implementation scenario and solution based on Privacy-Preserving Computation technology”&lt;/strong&gt; &lt;/p&gt;

&lt;h2&gt;
  
  
  cherima
&lt;/h2&gt;

&lt;p&gt;I think privacy computing can be applied to Defi first.  As we all know, transactions on blockchain can be queried, which means that once someone knows your address, they can access a lot of information about you, which will bring great security risks to users.  Let's say you participate in an airdrop, and for that you need to provide an Ethereum address.  In order to avoid confusion with the usual used addresses, you choose to create a new address, so that no one really knows how your account relates to another account.  However, after you receive the airdrop and want to sell the tokens, you transfer tokens to an addres offered by CEX which you usually use.  This may seem innocuous, but it actually reveals personal information.  First of all, you should also have charged CEX with other addresses. It is easy to check the other addresses you have charged to this address on the browser, so others can know the information of other accounts you are using, and even check all your transaction records.  There may be some accounts that are linked to your real identity, and all of your information is exposed, which is pretty scary when you think about it.  After using privacy computing, we can realize the privacy transaction function, so that the actual transaction data and transaction execution process are not visible to the outside, so that no one can check the transaction data you send, and even can not know who is the recipient of the transaction, so as to protect the privacy of the participants of the transaction.&lt;/p&gt;

&lt;p&gt;I know that ZCASH has implemented private transactions, but it does not provide universal privacy computing.  PHALA and OASIS, based on TEE technology, can provide a common privacy computing infrastructure, and it is easy to realize privacy transactions based on such infrastructure.  Phala made a private transaction demo in 2020, which was implemented by creating a privacy computing contract, which was executed in TEE. The data passed in by the user when invoking the privacy contract was encrypted, so that the outside could not know the specific data.&lt;/p&gt;

&lt;p&gt;I've seen PlatON's documentation on privacy computing, but haven't studied it much.  Some time ago, I participated in a test activity of private computing network, but I didn't have a strong sense of participation, because I didn't quite understand how to use this product.  The computing network does not support writing what I want, it is probably not the same thing as the privacy contract mentioned in documentation.&lt;/p&gt;

&lt;p&gt;PlatON Privacy Transaction/Token&lt;br&gt;
&lt;a href="https://github.com/AlayaNetwork/Alaya-Go/tree/feature-confidential-token"&gt;https://github.com/AlayaNetwork/Alaya-Go/tree/feature-confidential-token&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://github.com/PlatONnetwork/confidential-transaction"&gt;https://github.com/PlatONnetwork/confidential-transaction&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  nihat
&lt;/h2&gt;

&lt;p&gt;An application can be made to transmit the data related to covid19 disease of the people in the community [follow-up of vaccinated, unvaccinated] from health institutions to the ministry of health, store it here, change it,  distribute it to other institutions that want to access this data.&lt;/p&gt;

&lt;p&gt;Process：&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;The information of people from health institutions about covid19 is transferred to the data warehouse created by the Ministry of Health via the PlatON Network.&lt;/li&gt;
&lt;li&gt;&lt;p&gt;The technology that ensures security in the data warehouse and its storage and access permissions are defined.  People who are not at risk of covid19 are determined.  People who are not at risk of disease generate their own data matrix with the mobile application&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;This QR code can be used in public institutions, shopping malls, airports, etc.  used in places.  People who are not at risk of illness and quarantine are allowed to enter the building by scanning the QR code at the building entrances.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;The approved data matrix of the persons diagnosed with the disease is canceled from the system and quarantine control is ensured.&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;h2&gt;
  
  
  Chopper
&lt;/h2&gt;

&lt;p&gt;First, work out  the security and availability of data: a large number of valid data, such as hospital records, are dormant and cannot be used in a safe and wide range, which fails to give play to the real value of data.  Zero-knowledge proof technology allows verifiers to verify the source of data without infringing on privacy (without exposing data), and to guarantee ciphertext data with integrity, robustness and zero-knowledge characteristics, i.e. guarantee the security and availability of data.&lt;/p&gt;

&lt;p&gt;We also need to solve the data safety to be Shared: Re-encryption agent (the encrypted data in the case of security through the client's encrypted, that can share to recipient which can decrypt data), identity based encryption (identity) of the specified receiver and attribute-based encryption (property) of the specified data receiver technology for safety to achieve data sharing.Let the data under the premise of security, play its maximum value.&lt;/p&gt;

&lt;p&gt;Sharing such as electronic medical records, if there is a case electronic network sharing platform, the patient as a data provider, with electronic medical records and encryption key, the patient's medical record will be encrypted and stored in a decentralized network, and determines who has permissions to access the data, at the same time the data owner can give security access authorization to a third party, such as hospitals and insurance companies.&lt;/p&gt;

&lt;p&gt;most hospital data is independent, lying in their own hospital database. In fact, the utilization rate is not high, data can only be used to generate value. If these data can be integrated into a shared platform to provide samples and references for scientific research and case studies, share medical research results and reduce repeated input of resources, the utilization rate of data can be improved.&lt;/p&gt;

&lt;h2&gt;
  
  
  susu123
&lt;/h2&gt;

&lt;p&gt;Cases are an excellent application scenario, which can better help medical staff make an overall assessment of patients, track the recovery of discharged patients, and review them regularly! And it can be transferred between different hospitals and departments, reducing unnecessary inspection procedures! marvelous!&lt;/p&gt;

&lt;p&gt;The current global medical system is actually independent of each other. Each hospital has its own patient database, but it is independent of each other. Each hospital is an independent center. Cumbersome and repetitive medical examinations result in a waste of resources, and patients will also spend more examination fees. If the network technology of blockchain is used to allow patients to have their own case data, and to authorize different hospitals to control their own health data, it can protect their privacy and prevent their data from being sold by centralized hospitals. To other hospitals, it can save the cost of repeated inspections. This is a real decentralization and a great initiative.&lt;/p&gt;

&lt;p&gt;According to their own needs, patients decide to show a certain part of the data, but not all the data.&lt;/p&gt;

&lt;h2&gt;
  
  
  Akira
&lt;/h2&gt;

&lt;p&gt;Encryption of mobile device data, internal data of financial institutions and medical information data can all be regarded as application scenarios for privacy computing.&lt;/p&gt;

</description>
      <category>discuss</category>
      <category>devops</category>
      <category>privacy</category>
    </item>
    <item>
      <title>[Prize Discussion] Plato Talk #3</title>
      <dc:creator>Boney</dc:creator>
      <pubDate>Tue, 11 Jan 2022 13:45:17 +0000</pubDate>
      <link>https://dev.to/boney_platon/prize-discussion-plato-talk-2-dp4</link>
      <guid>https://dev.to/boney_platon/prize-discussion-plato-talk-2-dp4</guid>
      <description>&lt;h2&gt;
  
  
  PLATO TALK #3
&lt;/h2&gt;

&lt;h4&gt;
  
  
  TOPIC：Privacy-Preserving Computation Application Scenario Sharing
&lt;/h4&gt;

&lt;p&gt;“Share what you think is a viable implementation scenario and solution based on Privacy-Preserving Computation technology”&lt;/p&gt;

&lt;p&gt;REWARD: &lt;strong&gt;4000 LAT&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Topic Deadline: &lt;strong&gt;2022/1/13 12:00 UTC&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Online Events-Discord（plato-talk）: &lt;strong&gt;&lt;a href="https://discord.gg/CGz3cSfn9J"&gt;https://discord.gg/CGz3cSfn9J&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--dT2b8RTe--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/k2k7wtgjlzpx42h1wm1s.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--dT2b8RTe--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/k2k7wtgjlzpx42h1wm1s.png" alt="Image description" width="880" height="431"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Event details：&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--KeHnMefh--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/h1n6owdj57al7bbjemog.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--KeHnMefh--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/h1n6owdj57al7bbjemog.png" alt="Image description" width="880" height="2485"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
      <category>beginners</category>
      <category>discuss</category>
      <category>devops</category>
      <category>privacy</category>
    </item>
    <item>
      <title>PLATO TALK #2 — Wonderful discussion sharing</title>
      <dc:creator>Boney</dc:creator>
      <pubDate>Fri, 31 Dec 2021 04:15:48 +0000</pubDate>
      <link>https://dev.to/boney_platon/plato-talk-2-wonderful-discussion-sharing-3gl8</link>
      <guid>https://dev.to/boney_platon/plato-talk-2-wonderful-discussion-sharing-3gl8</guid>
      <description>&lt;h2&gt;
  
  
  TOPIC：Tell about your understanding of decentralization
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;“What is decentralization, why is it important, what opportunities and challenges does decentralization face, and what are your expectations and recommendations for PlatON decentralization?”&lt;/strong&gt; &lt;/p&gt;

&lt;h2&gt;
  
  
  @cherima
&lt;/h2&gt;

&lt;p&gt;Decentralization is actually a concept proposed relative to centralization, it is a new form of social relations and content generation formed with the development of the Internet.&lt;/p&gt;

&lt;p&gt;We should be familiar with centralization, when content of a website can only be officially released, we can say it is centralized;  When a site allows users to speak freely, but the operator can delete user comments at will, we say it is centralized.  Extending to the real world, we can also find many examples of centralization. In private enterprises, if the boss is in charge, We say it is centralized;  Everything in a country is in the hands of a small group of people, We also say it centralized.&lt;/p&gt;

&lt;p&gt;It can be seen that the main characteristic of centralization is the concentration of power, while decentralization is to distribute power to other participants.&lt;/p&gt;

&lt;p&gt;Decentralization does not mean the elimination of the center, but the weakening of the center and the strengthening of other participants.  The center is chosen by all participants, and the center is not permanent, but only works for a certain period of time. Tt the end of the term, participants will choose a center again.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Why do we need decentralization?&lt;/strong&gt;&lt;br&gt;
All power tends to corrupt and absolute power corrupts absolutely.  As we said before, the purpose of decentralization is to decentralize power, so decentralization can solve this problem well.&lt;/p&gt;

&lt;p&gt;Thanks to the rapid development of the Internet, people's life now has been very convenient, and they can even make money and live without leaving home.  However, if you think about it carefully, you can find a big problem. The current Internet enterprises are too centralized, and users' data are controlled by large Internet enterprises, which will bring great risks of data leakage and hidden dangers of security.  Facebook had a data leakage in 2018 that exposed the data of hundreds of millions of users;  A we-media enterprise seized users' intellectual property rights and caused huge losses to users.  With no profit, game makers shut down servers, wipe out player data, and wipe out years of player work.  The root of these problems is over-centralization, which is not good for the development of the Internet, so the Internet needs a revolution -- decentralization.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Advantages and disadvantages of decentralization&lt;/strong&gt;&lt;br&gt;
The advantages of decentralization can be discussed at two levels.&lt;br&gt;
The first is the node level and the second is the governance level.&lt;br&gt;
At the node level, due to decentralization, we can obtain higher security, fault tolerance and anti-collusion, which is not available in the centralized network, there are many references.&lt;/p&gt;

&lt;p&gt;At the governance level, power is distributed among many participants and decisions are made jointly by all participants, making it more democratic.  At the same time, it can reduce the working pressure of the original central node.&lt;/p&gt;

&lt;p&gt;The disadvantage of decentralization is that due to the large number of participants, decisions need to be agreed by all, which leads to lower efficiency than the centralized approach.  Therefore, consensus algorithms such as dPoS and nPoS appear in blockchain to improve efficiency.&lt;/p&gt;

&lt;h2&gt;
  
  
  @adybose
&lt;/h2&gt;

&lt;p&gt;It's very informative reading all the explanations and views about decentralization and the current crypto ecosystem.&lt;/p&gt;

&lt;p&gt;I am a big supporter of decentralization. I really find all the different ideas in the space very interesting. It is accepted that Bitcoin happens to be the most decentralized because of its POW consensus model,  but it is slow. We can scale a network to achieve higher number of transactions, and try to achieve decentralization through other means as well.&lt;/p&gt;

&lt;p&gt;I published a summary post on this topic of Decentralization on my blog:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://adityabose.hashnode.dev/what-is-decentralization"&gt;https://adityabose.hashnode.dev/what-is-decentralization&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;To try answer the question of What is Decentralization, i would like to answer it from a system theory standpoint....&lt;/p&gt;

&lt;p&gt;Decentralization refers to a system where there is no single centralized authority that makes decisions on behalf of all the parties. Instead each party, also called a peer, makes local autonomous decisions towards its individual goals which may possibly conflict with those of other peers. Peers directly interact with each other and share information or provide service to other peers. An open decentralized system is one in which the entry of peers is not regulated. Any peer can enter or leave the system at any time.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Why is decentralization necessary?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Decentralization solves trust issues by empowering multiple participants to manage a network. Users don't have to trust a central authority, and protocols are designed to prevent bad behavior. Decentralization allows participants to have fair participation and opportunity in a network.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Opportunities&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;The biggest opportunity with decentralization is being able to break free from the monopolies of today who have a great access to all our data and exploit it for profits. In decemtralized systems, users ideally own their data and use it in a way that preserves their privacy. Users can participate in a trustless and permissionless way which gives the power of inclusivity and equitable opportunity.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Challenges&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;One of the biggest challenges of Decentralization is to achieve true Decentralization in the first place. No system is a 100% decentralized, with some tradeoffs being made across the crypto ecosystem between decentralization, trust, efficiency, speed, and scalability. While Bitcoin and Ethereum are the biggest network with the most decentralization with their POW consensus mechanism, they are slow. This is why many solutions to solve the problem of scalability with newer consensus models like POS where participants stake their assets to be able to qualify as validators. There, a network with too few validators compromises on decentralization.&lt;/p&gt;

&lt;p&gt;Another challenge is dependence of centralized services which can pose risks of being single point of failures. For example, validators often run full nodes in a cloud provided by a third party. If these cloud or node service providers go down, this could bring down the network. This had happened with Ethereum when Infura went down in 2020 due to incorrectly upgrsding their client during Ethereum’s Eth2 hard fork. Moreover, over 50% cost of cloud services comes from storage. With the increasing of blockchain data, the cost of validator arises. Therefore, reducing the size of storage is important for validators to reduce cost and further maintain the security of the network. &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Suggestion&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Where PlatON network scores is its privacy preserving focus, with validators selected from many nodes.&lt;/p&gt;

&lt;p&gt;One suggestion that I can come up to improve the status quo of PlatON's decentralization is to run some incentive programs for running validator nodes so that more participants join the network as validators, which would increase the number of nodes.&lt;/p&gt;

&lt;p&gt;Another technical aspect which I believe the PlatON network is already trying to solve with the v2 architecture, is to reduce the space required to run validators, using technologies like Zero Knowledge proofs. This would make it easier  to run and sync validator nodes on one's own machines instead of relying on centralized cloud servers, reducing the risks that come with single point of failures of third party centralized services.&lt;/p&gt;

&lt;h2&gt;
  
  
  &lt;a class="mentioned-user" href="https://dev.to/seven"&gt;@seven&lt;/a&gt;
&lt;/h2&gt;

&lt;p&gt;Decentralization can be tricky sometimes. A lot of people mention the term decentralization, a lot of organizations do the same, but hardly would you find people who are implementing this to the core. &lt;/p&gt;

&lt;p&gt;We all talk about decentralization, and yet we still have some bodies/orgs that are responsible for keeping everything in check. Yes, we know that decentralization comes with a lot of ease by posing the influence of re-organizing and rebuilding what seems to have been done in a traditional way. Say for the DeFi (Decentralized Finance) ecosystem.  &lt;/p&gt;

&lt;p&gt;We've all come to understand that centralization had a negative effect for some time. In some countries, some banks can literally place a restriction on your bank account if you exceed a particular transaction threshold limit, then you'd be required to go over to the physical bank to try and upgrade your account to another level or one that can accommodate the amount of money that want to have in it, and I dare say that process of doing that is annoyingly stressful. I think Decentralization itself brings an end to situations like these. &lt;/p&gt;

&lt;p&gt;But then, a study has shown that Decentralization in its fullness has an issue with inclusivity. The technology that decentralization is spreading across the globe is a little bit cut out from the marginalized. When I say "the marginalized", I'm referring to people who are displaced, folks who are in third world countries, folks who do not even have an idea of how the digital economy works, not to even talk of "Decentralization". Then, this big question arises: how do we preach the gospel of "decentralization" to such people? How do we make sure that there's inclusion for such demography of people? I know that this can be difficult at first, but  I believe that the PlatON Network can do this with the right set of people when they find them, It might take some time, but it doesn't mean it cannot be achieved. &lt;/p&gt;

&lt;p&gt;That's why I love the work that Jack Dorsey and the folks at B-trust are doing.&lt;br&gt;
（Jack and the team at B-trust are currently working on providing development funds for the people working on bitcoin's core. &lt;br&gt;
It is more like an incentivization program that will enable the development of the web3 space/decentralization ecosystem by making this resources available for people (mostly developers) who are from under-represented groups. &lt;br&gt;
They're currently focusing on Africa, as a continent for a start, then they'll spread on to the global south, to regions like India, and then perhaps to the whole world.&lt;br&gt;
）&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;what opportunities and challenges does decentralization face&lt;/strong&gt;&lt;br&gt;
For now, I think that the issue of information about the whole idea behind decentralization should be properly distributed to everyone. There's a whole lot of people who are very skeptical about this idea. Yes, I know this will definitely be present in the early stage of a revolution, so if there's a means of incentivizing people with the required information that they need, then I think a little part of the problem will be solved.&lt;/p&gt;

&lt;h2&gt;
  
  
  @Akira6
&lt;/h2&gt;

&lt;p&gt;In a system with many nodes distributed, each node has a high degree of autonomy. Nodes are free to connect with each other and form new connected units. Any node may become the center of the stage, but does not have a mandatory central control function. The influence between nodes and nodes will form a non-linear causal relationship through the network. This open, flat and egalitarian system phenomenon or structure is called decentralization.&lt;/p&gt;

&lt;p&gt;Decentralization has three main advantages: fault tolerance, resistance to attack, and resistance to collusion. It also makes the rights of each user equal on the chain and dilutes real-world hegemony making it impossible to form a monopoly. That is why decentralization is important.&lt;/p&gt;

&lt;p&gt;The opportunity may be that decentralized applications are not yet accepted by mainstream society, and there is still a large market to open. The challenge may be the barriers in technology like the impossible triangle, or the stagnant development of ecological projects due to the market downturn.&lt;/p&gt;

&lt;p&gt;Perhaps increase the number of nodes or remove sudo authority.&lt;/p&gt;

&lt;h2&gt;
  
  
  @nihat
&lt;/h2&gt;

&lt;p&gt;Decenralization is the distribution or transfer of decision-making and operating tasks to users from a center. It has been trending with the development of blockchain technology. It is important for the network structures to be stronger and to survive. I think that PlatON Network will develop decentralization applications and make projects suitable for technological progress&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Why is decentralization a trend?&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;No credentials are required to interact with a decentralized system.  Transactions are carried out anonymously using private and public keys. &lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Transactions and control are distributed among the people using the system rather than a central authority. &lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;User data is kept confidential. &lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Because it makes everyday life safer, fairer, faster, cheaper, transparent and anonymous.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;It is also a technology that prevents central structures from using our personal information for their own benefit.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Centralized structures may choose to restrict or prohibit the use of blockchain technology in order not to lose their power. &lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;suggestion&lt;/strong&gt;&lt;br&gt;
In PlatON Network 2.0 vision;  It is stated that it is building the necessary infrastructure for decentralized artificial intelligence.  PlatON Network also stated that it is working to ensure that everyone has access to open source artificial intelligence.&lt;/p&gt;

&lt;p&gt;We need to tell people about this technology and the advantages it brings. &lt;/p&gt;

&lt;p&gt;PlatON network  can make studies and developments in areas that require the use of payment systems, voting systems, energy sector, Internet of Things IOT and artificial intelligence.&lt;/p&gt;

&lt;h2&gt;
  
  
  @Chopper
&lt;/h2&gt;

&lt;p&gt;Web3.0 should be a decentralized network. Facing the personal credit security crisis, we urgently need a more secure, private and fair Internet environment.  Empower everyone to control and maintain their own (digital) identity, assets and data, and thus their own destiny.&lt;/p&gt;

&lt;p&gt;In Web2.0, your data has value, but it doesn't belong to you, and the value isn't given to you. In Plato talk#1, I expressed that on-chain data is a gold mine, and the more applications, the more data, the bigger the gold mine In Web3.0, your value behavior will eventually be rewarded, the carrier of value is your data, but also belongs to you.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;what opportunities and challenges does decentralization face&lt;/strong&gt;&lt;br&gt;
Decentralization, scalability, security, and  three factors cannot fully account for each other, which is the main problem existing at present&lt;/p&gt;

&lt;p&gt;like bitcoin, as a decentralized digital currency, sacrifices performance features to meet the design needs of decentralization and security.  The scalability was not achieved.&lt;/p&gt;

&lt;p&gt;The scalability of Ethereum network (ETH) can only ensure decentralization and security. Currently, The  TPS  is still very low, and ethereum transaction congestion often occurs.&lt;/p&gt;

&lt;p&gt;in 2017, Bitcoin launched lightning network and isolated witness technology to complete transactions in the chain and confirm transactions in the chain.&lt;/p&gt;

&lt;p&gt;Ethereum solutions are currently moving toward Layer 2, like Matic Arbitrum Optimistic  ZKSync alleviates congestion on Etherum L1 to some extent and reduces transaction fees for end users.&lt;/p&gt;

&lt;p&gt;Ethereum's upcoming ETH2.0 seeks to address transaction congestion through sharding, including NEAR, which also uses sharding.&lt;/p&gt;

&lt;p&gt;We are talking about Solona, which has improved TPS to some extent, but not long ago, a suspected DDOS attack brought down the trading network, which is not allowed in a decentralized network and is not in line with the original intention of decentralization.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;what are your expectations and recommendations for PlatON decentralization?&lt;/strong&gt;&lt;br&gt;
I would like platon to be truly decentralized and expand from the current 201 nodes to more so that the network can operate safely.&lt;/p&gt;

</description>
      <category>devops</category>
      <category>discuss</category>
      <category>distributedsystems</category>
      <category>privacy</category>
    </item>
    <item>
      <title>[Prize Discussion] Plato Talk #2
</title>
      <dc:creator>Boney</dc:creator>
      <pubDate>Tue, 28 Dec 2021 02:59:13 +0000</pubDate>
      <link>https://dev.to/boney_platon/prize-discussion-plato-talk-2-1bi1</link>
      <guid>https://dev.to/boney_platon/prize-discussion-plato-talk-2-1bi1</guid>
      <description>&lt;h2&gt;
  
  
  PLATO TALK #2
&lt;/h2&gt;

&lt;h3&gt;
  
  
  TOPIC：&lt;strong&gt;Tell about your understanding of decentralization&lt;/strong&gt;
&lt;/h3&gt;

&lt;p&gt;“What is decentralization, why is it important, what opportunities and challenges does decentralization face, and what are your expectations and recommendations for PlatON decentralization?” &lt;/p&gt;

&lt;p&gt;REWARD:  &lt;strong&gt;4000 LAT&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Topic Deadline:  &lt;strong&gt;2021/12/30 12:00 UTC&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Online Events-Discord（plato-talk）: &lt;a href="https://discord.gg/CGz3cSfn9J"&gt;https://discord.gg/CGz3cSfn9J&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--av3IjHAh--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/thmmqtnhj4lonho0s4eu.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--av3IjHAh--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/thmmqtnhj4lonho0s4eu.png" alt="Image description" width="880" height="431"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Event details：&lt;br&gt;
&lt;a href="https://letuscompute.hashnode.dev/discord-eventplato-talk-share-views-ideas-suggestions-based-on-the-talk-topic"&gt;https://letuscompute.hashnode.dev/discord-eventplato-talk-share-views-ideas-suggestions-based-on-the-talk-topic&lt;/a&gt;&lt;/p&gt;




&lt;p&gt;&lt;strong&gt;About PlatON：&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;PlatON Website：&lt;a href="https://platon.network/en"&gt;https://platon.network/en&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Alaya Website：&lt;a href="https://www.alaya.network/en"&gt;https://www.alaya.network/en&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;PlatON Privacy-Preserving Computation WhitePaper: &lt;a href="https://link.medium.com/hHaZHcz9Djb"&gt;https://link.medium.com/hHaZHcz9Djb&lt;/a&gt; &lt;/p&gt;

&lt;p&gt;PlatON 2.0 WhitePaper：&lt;a href="https://link.medium.com/KCbkhaG9Djb"&gt;https://link.medium.com/KCbkhaG9Djb&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;PlatON 2.0 PPT：&lt;a href="https://www.slideshare.net/ShiHeng1/privacypreserving-ai-network-platon-20-249734241"&gt;https://www.slideshare.net/ShiHeng1/privacypreserving-ai-network-platon-20-249734241&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Developer Program：&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Hackathon：&lt;a href="https://github.com/AlayaNetwork/Alaya-Season-Hackathon"&gt;https://github.com/AlayaNetwork/Alaya-Season-Hackathon&lt;/a&gt; &lt;/p&gt;

&lt;p&gt;Grants: &lt;a href="https://latticex.foundation/grants"&gt;https://latticex.foundation/grants&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Dev-Bounty：&lt;a href="https://github.com/LatticeX-Foundation/dev-bounties"&gt;https://github.com/LatticeX-Foundation/dev-bounties&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Contact：&lt;/strong&gt;&lt;br&gt;
Twitter：&lt;a href="https://twitter.com/PlatON_Network"&gt;https://twitter.com/PlatON_Network&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Discord：&lt;a href="https://discord.gg/jAjFzJ3Cff"&gt;https://discord.gg/jAjFzJ3Cff&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Dev-Telegram：&lt;a href="https://t.me/joinchat/LhO63AsZ_iozZGNl"&gt;https://t.me/joinchat/LhO63AsZ_iozZGNl&lt;/a&gt;&lt;/p&gt;

</description>
      <category>beginners</category>
      <category>devops</category>
      <category>discuss</category>
      <category>privacy</category>
    </item>
    <item>
      <title>PLATO TALK #1  --- Wonderful discussion sharing</title>
      <dc:creator>Boney</dc:creator>
      <pubDate>Thu, 23 Dec 2021 06:54:19 +0000</pubDate>
      <link>https://dev.to/boney_platon/plato-talk-1-wonderful-discussion-sharing-19mg</link>
      <guid>https://dev.to/boney_platon/plato-talk-1-wonderful-discussion-sharing-19mg</guid>
      <description>&lt;h2&gt;
  
  
  PLATO TALK #1  --- Wonderful discussion sharing
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--T17Icrbs--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/viehbqwy47sjfp592f9h.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--T17Icrbs--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/viehbqwy47sjfp592f9h.png" alt="Image description" width="690" height="338"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;⛳TOPIC：  &lt;strong&gt;Talk about your views on privacy. Why is privacy important?&lt;/strong&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  cherima
&lt;/h2&gt;

&lt;p&gt;I believe that privacy is the product of human's self-will and social development. It is an independent space established by a person, which can protect our spiritual world.  When a person's privacy is leaked, he will lose his sense of security, which may lead to huge problems in his life.  People are the basic elements of society. The disclosure of a person's privacy may not only affect him, but also his family, friends and colleagues.  Privacy is closely linked with the current society. If the problem of privacy leakage occurs widely, it may lead to social instability.&lt;/p&gt;

&lt;h2&gt;
  
  
  Chopper
&lt;/h2&gt;

&lt;p&gt;In the Internet era, data is a gold mine. Everyone participates in it, but it seems that all data does not belong to them.  So the protection of private data is naturally important.&lt;/p&gt;

&lt;p&gt;Facebook Now equipped with billions of these virtual identities, Facebook owns a treasure trove of data that it rents out to advertisers. To be clear, Facebook does not necessarily sell this data.&lt;br&gt;
Instead, they use this data to create highly-accurate models, which marketers then target with ads. This is a double-edged sword (for us) as this data collection also contributes to Facebook’s ability to make its platform even more addicting, thus bringing in more attention.This process feeds into itself, creating the multi-billion dollar behemoths that we know today. On the off chance that you are still unaware, they have gotten really good at this. In 2020, Facebook brought in $85.96 billion in revenue, $84.2 billion of which was from advert&lt;/p&gt;

&lt;p&gt;User-generated content (UGC) is the dominant model of the Internet.  As you said, data brings a lot of profits to big companies, but we don't share any of the profits, and they don't even ask me , which reflects the importance of privacy protection.  Let the data truly belong to the user.&lt;/p&gt;

&lt;p&gt;there is another example of the importance of private data protection .The Year 2020, Finnish Psychology  The cybercriminals behind a data breach at Vastaamo, a treatment facility, began blackmailing patients for hundreds each  Euro and threatened to post their personal health data online.  Hackers are said to have accessed 40,000 copies  Vastaamo patients' medical records and demanded a ransom of about 450,000 euros.  The Tor site that the attacker is running  The website posted 300 patient records, including therapists' treatment records in addition to names and contact information.  The disclosure of a person's psychotherapy record can be even more damaging to patients, involving a person's reputation, the person  Relationships and work.&lt;/p&gt;

&lt;h2&gt;
  
  
  xiyu
&lt;/h2&gt;

&lt;p&gt;Hello everyone.&lt;br&gt;
I'd like to share with you some of my superficial understanding of privacy.&lt;br&gt;
I want to talk about privacy from a technical point of view.&lt;/p&gt;

&lt;p&gt;I think privacy can be divided into two levels, and basically I call it "static privacy".&lt;br&gt;
This is also the most common form of privacy, such as the transmission of information on untrusted links, in which information can be hijacked by anyone. If both sides of the communication are unwilling to disclose the specific content of the information, the simplest thing is of course to encrypt the information.&lt;br&gt;
Symmetric encryption is one kind, but it can only realize the information exchange between two people. when the same person needs to interact with multiple people, it needs to manage multiple keys at the same time, so symmetric encryption appears to be "tightly coupled".&lt;br&gt;
Asymmetric encryption provides a more "loosely coupled" method, but this alone cannot resist man-in-the-middle attacks, so it is usually used with "signatures" to verify the identity of both sides of the interaction. in fact, this is the method that the blockchain can provide to us. At this point, if no processing is done, the identity and the privacy of the content will be bound together.&lt;br&gt;
In some scenarios, people need to exchange confidential information anonymously. If man-in-the-middle attacks are considered, it is generally not easy for both parties to be anonymous. But it can ensure that the receiver does not know who the sender is. At this point, secret key exchange technology is combined with asymmetric encryption.&lt;/p&gt;

&lt;p&gt;I call these scenarios "static privacy", but what is "dynamic privacy"?&lt;/p&gt;

&lt;p&gt;In fact, the existing cases of "dynamic privacy" scenarios are not common, but they are very useful. In fact, when we often talk about data rights in PlatON, we use what I call a "dynamic privacy" approach.&lt;/p&gt;

&lt;p&gt;The important premise of confirming the right of data is the separation of the ownership and the right of use of the data. in the digital world, the replication of the data itself is very easy, so the previous data sale is basically an one-shot sale, when I sell the data in my hand. in theory, this data loses the value of being sold again.&lt;/p&gt;

&lt;p&gt;In general, the value of the data can be extracted by mining algorithms, while different data mining methods may extract different values, so in theory, the data owner hopes to maintain the long-term value of the data. PlatON privacy computing technology system can actually bring this breakthrough.&lt;/p&gt;

&lt;p&gt;In fact, the theoretical research in this field started very early, for example, algorithms such as FHE can support this implementation, but at present, the biggest problem is engineering implementation in applications. And the existing algorithms still have many defects in engineering landing, which may be the reason why we do not see too many applications of "dynamic privacy" at present. We hope that PlatON can bring important breakthroughs in this aspect in the future.&lt;/p&gt;

&lt;p&gt;Privacy will be an important infrastructure for web3. In fact, in the past, the protection of user privacy was endorsed by large companies in the Internet field, and users have no ability to guarantee whether user data is used out of bounds.&lt;br&gt;
But in the web3 scenario, although users have more freedom, they put forward higher requirements for privacy protection. An important concept of blockchain is "The code is law", so privacy protection in the field of web3 needs decentralized privacy computing to ensure. This is an infrastructure-level requirement in the area of a blockchain.&lt;/p&gt;

</description>
      <category>discuss</category>
      <category>privacy</category>
    </item>
    <item>
      <title>PlatON Global Developer Ambassador (Computator) Program (2022)</title>
      <dc:creator>Boney</dc:creator>
      <pubDate>Thu, 23 Dec 2021 06:53:04 +0000</pubDate>
      <link>https://dev.to/boney_platon/platon-global-developer-ambassador-computator-program-2022-1gfk</link>
      <guid>https://dev.to/boney_platon/platon-global-developer-ambassador-computator-program-2022-1gfk</guid>
      <description>&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--fnDwNCeB--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/qv9jf80wu4bp0k4fh2vx.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--fnDwNCeB--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/qv9jf80wu4bp0k4fh2vx.png" alt="Image description" width="680" height="360"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Along with the release of the PlatON 2.0 whitepaper, PlatON has officially entered the 2.0 era as a decentralized privacy-preserving AI network.&lt;/p&gt;

&lt;p&gt;Combining blockchain and privacy-preserving computation technologies, PlatON is building a decentralized and collaborative AI network and global brain to drive the democratization of AI for safe artificial general intelligence.&lt;/p&gt;

&lt;p&gt;Backed by the LatticeX Foundation’s Computator Fund, the PlatON Global Developer Ambassador Program has officially started its recruitment to allow developers from all regions to join the building of a “smart network” and expand the protocol’s global influence and recognition while achieving its mission. Your help will be key to PlatON’s growth in local developer communities.&lt;/p&gt;

&lt;h2&gt;
  
  
  Our Ambassador Program
&lt;/h2&gt;

&lt;p&gt;The PlatON Global Developer Ambassador Program aims to identify PlatON-loving technology and ecosystem leaders for the protocol’s open-source community. If you wish to become a PlatON Global Developer Ambassador, we expect you to be familiar with PlatON and recognize our mission. Meanwhile, PlatON Ambassadors should popularize PlatON’s technological concepts in local markets with great passion and encourage new developers and companies to contribute to the building of the PlatON ecosystem.&lt;/p&gt;

&lt;h2&gt;
  
  
  What We Can Offer
&lt;/h2&gt;

&lt;p&gt;As an official PlatON Ambassador, you could get:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Funding support:&lt;/strong&gt; You could get performance-based incentives and allowances, as well as a budget for community building.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Extensive access to PlatON:&lt;/strong&gt; You will have a chance to work with PlatON’s key developer team, receive product &amp;amp; technology training, and get deeply involved in the development of PlatON’s core protocol.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Developer community governance:&lt;/strong&gt; An outstanding Ambassador could participate in the governance of PlatON open-source technology community as its maintainer and become a member of the Project Management Committee (PMC).&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Support for project incubation:&lt;/strong&gt; Ambassadors enjoy priority access to PlatON’s support for project incubation. At PlatON, you could facilitate the implementation of various creative insights as a key player.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;At PlatON, you will get a rewarding experience. While meeting strong partners and building personal networks, you’ll be one of the first pioneers to witness the birth of a “smart network”.&lt;/p&gt;

&lt;h2&gt;
  
  
  Ambassador Levels &amp;amp; Upgrade Mechanism
&lt;/h2&gt;

&lt;p&gt;There are four Ambassador levels, which are determined according to each Ambassador’s competence and contribution, and each level comes with a unique scope of ecosystem participation, as well as different benefits and rewards.&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Level&lt;/th&gt;
&lt;th&gt;Required Period for Upgrade&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Entry&lt;/td&gt;
&lt;td&gt;3 months&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Intermediate&lt;/td&gt;
&lt;td&gt;6 months&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Senior&lt;/td&gt;
&lt;td&gt;12 months&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Tenure&lt;/td&gt;
&lt;td&gt;/&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;Once an Ambassador reaches the required period for upgrade, we will assess whether he/she could be upgraded to a higher level depending on his/her &lt;strong&gt;work hours, competence, output, and performance.&lt;/strong&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Ambassador Tasks
&lt;/h2&gt;

&lt;p&gt;Ambassador Tasks could be formulated and executed depending on their own resources and competence. For instance, Ambassador Tasks could include the following:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Build and manage local developer communities&lt;/strong&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Build local developer communities and recruit active and insightful developers.&lt;/p&gt;

&lt;p&gt;Keep the community active by promoting exchanges and discussions; offer technical support for the community.&lt;/p&gt;

&lt;p&gt;Unlock the full potential of the community, encourage members of the community to contribute to PlatON, motivate the development of privacy-preserving applications, and provide suggestions for improving PlatON’s technology and ecosystem.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Conduct technical talks and community-based education campaigns&lt;/strong&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Develop a full understanding of PlatON, summarize the features and concepts of PlatON’s core technology, study the latest technological advancement in the crypto world, offer segment-specific solutions for PlatON, create valuable and appealing content for promotion and education.&lt;/p&gt;

&lt;p&gt;Work with local universities, organizations, communities, and media agencies for community education and promotion.&lt;/p&gt;

&lt;p&gt;Identify potential partners in the local market, build partnerships, and promote the adoption of PlatON.&lt;/p&gt;

&lt;p&gt;Participate in activities that promote PlatON’s ecosystem growth, take part in local developer contests/hackathons on behalf of PlatON, and speak up for PlatON at developer conferences, workshops, and gatherings.&lt;/p&gt;

&lt;p&gt;Host regular tech podcasts to share PlatON’s latest technology and ecosystem progress with the community, analyze PlatON’s core technologies and products, promote its latest announcements and events, and study popular trends, state-of-the-art technologies and applications, etc.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Contribute to the building of PlatON’s infrastructure&lt;/strong&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Improve existing tutorials and documents and have them translated into the local language to help developers better understand PlatON.&lt;/p&gt;

&lt;p&gt;Provide the necessary and available development tools for all types of PlatON developers, produce the relevant technical documents and videos, development tutorials, examples, solutions, etc.&lt;/p&gt;

&lt;p&gt;Contribute to protocol development, technical analysis &amp;amp; discussion, as well as the improvement of product experiences, tests, etc.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Organize developer events&lt;/strong&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Organize local developer training, meetup, and other events, such as tech talks, AMAs, etc.&lt;/p&gt;

&lt;p&gt;Organize local hackathons/developer contests, identify and incubate outstanding PlatON-powered projects.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Contribute to the design of PlatON’s technology stack and its research on key technology&lt;/strong&gt; &lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Track the research and theories on the latest technology concerning PlatON, study their applications, and prepare and share the relevant reports.&lt;/p&gt;

&lt;p&gt;Assist in the research, discussion, and POC design of PlatON’s technology stack and ecosystem map, and promote the implementation of PlatON technology roadmap on an ongoing basis.&lt;/p&gt;

&lt;h2&gt;
  
  
  Requirements
&lt;/h2&gt;

&lt;p&gt;Familiar with PlatON, and recognize and  get self-motivated to promote its vision and values.&lt;/p&gt;

&lt;p&gt;Keen on data privacy, with an emphasis on the preservation of data privacy.&lt;/p&gt;

&lt;p&gt;A tech expert in a certain field who is passionate about new technologies and concepts, with the hacker spirit and strong learning capacities.&lt;/p&gt;

&lt;p&gt;A self-driven and dedicated developer who excels at execution, communication, and coordination.&lt;/p&gt;

&lt;p&gt;Proficiency in spoken and written English.&lt;/p&gt;

&lt;h2&gt;
  
  
  How to Apply
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;All candidates are encouraged to learn about PlatON before submitting an application&lt;/li&gt;
&lt;/ol&gt;

&lt;blockquote&gt;
&lt;p&gt;To understand PlatON, one should start from the PlatON2.0 whitepaper, the whitepaper on privacy-preserving computation, and the developer documentation.&lt;/p&gt;

&lt;p&gt;Candidates should learn how to develop and deploy a contract on PlatON.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;ol&gt;
&lt;li&gt;Join the PlatON community to get the latest news&lt;/li&gt;
&lt;/ol&gt;

&lt;blockquote&gt;
&lt;p&gt;Discord：&lt;a href="https://discord.gg/ghSgf46aNx"&gt;https://discord.gg/ghSgf46aNx&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Forum：&lt;a href="https://forum.latticex.foundation/c/PlatON-EN/20"&gt;https://forum.latticex.foundation/c/PlatON-EN/20&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;GitHub：&lt;a href="https://github.com/PlatONnetwork"&gt;https://github.com/PlatONnetwork&lt;/a&gt;  &lt;a href="https://github.com/LatticeX-Foundation"&gt;https://github.com/LatticeX-Foundation&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Medium：&lt;a href="https://medium.com/platon-network"&gt;https://medium.com/platon-network&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Twitter：&lt;a href="https://twitter.com/PlatON_Network"&gt;https://twitter.com/PlatON_Network&lt;/a&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;strong&gt;3. Submit the application form for the PlatON Global Ambassador Program&lt;/strong&gt;&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;Application link: &lt;a href="https://forms.gle/xSNf7d4tmiDekJWV6"&gt;https://forms.gle/xSNf7d4tmiDekJWV6&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;ol&gt;
&lt;li&gt;Once a candidate passed PlatON’s review, he/she should go through a short interview.&lt;/li&gt;
&lt;/ol&gt;

&lt;blockquote&gt;
&lt;p&gt;After an application is submitted, it will be reviewed by the LatticeX Foundation and the PlatON core developer team, which generally takes 7 workdays.&lt;/p&gt;

&lt;p&gt;Candidates who passed our initial screening will have to go through a short online interview.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;ol&gt;
&lt;li&gt;Get started with Ambassador Tasks as an Intern Ambassador&lt;/li&gt;
&lt;/ol&gt;

&lt;blockquote&gt;
&lt;p&gt;Candidates passing the interview will become Intern Ambassadors upon successful KYC authentication and go through a 21-day internship, during which time Intern Tasks will be assigned. A qualified Intern Ambassador will officially become an Entry Ambassador. In the following stages, you could complete more Ambassador Tasks to upgrade your level. A higher Ambassador level means more rewards and benefits.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;ol&gt;
&lt;li&gt;Apply for an upgrade at quarterly meetings&lt;/li&gt;
&lt;/ol&gt;

&lt;blockquote&gt;
&lt;p&gt;Ambassadors are required to submit by-weekly performance reports that contain their key results and performance measure, work content, and plans for the next two weeks.&lt;/p&gt;

&lt;p&gt;At the PlatON Developer Ambassador meeting held every quarter, Ambassadors will report their progress, achievements, and performance measure, suggestions and feedback, as well as the need for PlatON support. Also, the meeting will assess Ambassadors’ upgrade application. &lt;/p&gt;
&lt;/blockquote&gt;

&lt;h2&gt;
  
  
  Ambassador Incentives
&lt;/h2&gt;

&lt;p&gt;Incentives for PlatON Global Developer Ambassadors cover 2 parts: Base Salary + Contribution Reward. In particular, different Ambassador levels correspond to different base salaries, which are the reward for Ambassadors’ daily efforts in the building, maintaining, and managing PlatON’s developer communities. The base salary is will be available once you become an Ambassador.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Base salary:&lt;/strong&gt;&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Level&lt;/th&gt;
&lt;th&gt;Required Period for Upgrade&lt;/th&gt;
&lt;th&gt;Base Salary&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Intern&lt;/td&gt;
&lt;td&gt;21 days&lt;/td&gt;
&lt;td&gt;2,000 LAT/month&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Entry&lt;/td&gt;
&lt;td&gt;3 months&lt;/td&gt;
&lt;td&gt;4,000 LAT/month&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Intermediate&lt;/td&gt;
&lt;td&gt;6 months&lt;/td&gt;
&lt;td&gt;8,000 LAT/month&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Senior&lt;/td&gt;
&lt;td&gt;12 months&lt;/td&gt;
&lt;td&gt;12,000 LAT/month&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Tenure&lt;/td&gt;
&lt;td&gt;/&lt;/td&gt;
&lt;td&gt;20,000 LAT/month&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;&lt;strong&gt;Contribution rewards:&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;As a PlatON Ambassador and a member of the PlatON ecosystem, all contributions to PlatON developer community and its ecosystem growth will be noted through rewards in addition to the base salary.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Rewards are offered for contributions including but not limited to the following:&lt;/strong&gt;&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Content&lt;/th&gt;
&lt;th&gt;&lt;strong&gt;Criteria&lt;/strong&gt;&lt;/th&gt;
&lt;th&gt;Rewards (LAT)&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Build local developer communities&lt;/td&gt;
&lt;td&gt;Build a local PlatON developer community (one-time reward)&lt;/td&gt;
&lt;td&gt;2000&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Recruit community developers&lt;/td&gt;
&lt;td&gt;Recruit users with a background in development, design, and research into self-built organizations or official PlatON organizations. &lt;br&gt;&lt;br&gt;*Note: Reward will only be available if the recruited user could provide detailed background information and stay active in the community for at least 5 days (consecutive/non-consecutive).&lt;/td&gt;
&lt;td&gt;20/person&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Encourage participation&lt;/td&gt;
&lt;td&gt;Encourage developers to contribute to the ecosystem growth of PlatON/Alaya. You should submit proof for this contribution (e.g. links, pictures).&lt;/td&gt;
&lt;td&gt;200/person/time&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Publish introduction articles&lt;/td&gt;
&lt;td&gt;Post articles on the PlatON/Alaya network on social media, developer communities, or forums. &lt;br&gt;&lt;br&gt;*Note: Such articles should be easily transmittable and simply expressed, with a particular emphasis on the PlatON’s advantages. Moreover, they ought to introduce PlatON (its visions, technology structure &amp;amp; principles, etc.) to a wider audience. The specific reward will be determined according to the quality level assigned to each article.&lt;/td&gt;
&lt;td&gt;Level D: 500/article, &lt;br&gt;Level C: 800/article, &lt;br&gt;Level B 1,200/article, &lt;br&gt;Level A: 2,000/article&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Create development tutorials/solutions&lt;/td&gt;
&lt;td&gt;Create development tutorials and solutions (video/document) targeting developers in the PlatON/Alaya ecosystem. &lt;br&gt;&lt;br&gt;* The content you submitted should be logically consistent and complete, covering a delivery introduction that specifies the following: &lt;br&gt;- The tool and language used in your tutorial/solution; &lt;br&gt;- what can be learned from your tutorial/solution; &lt;br&gt;- the target issue of your solution; what does your code achieve; &lt;br&gt;- other information that may help us understand your tutorial/solution, such as why would the article be helpful to developers. &lt;br&gt;The specific reward will be determined according to the quality level assigned to each tutorial/solution.&lt;/td&gt;
&lt;td&gt;Level C: 1,200/tutorial (or solution), &lt;br&gt;Level B 2,500/tutorial (or solution), &lt;br&gt;Level A: 3,500/ tutorial (or solution)&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Produce videos&lt;/td&gt;
&lt;td&gt;Create videos about the PlatON/Alaya network. &lt;br&gt;&lt;br&gt;*Such videos should last longer than 1 minute. Furthermore, they should contain rich, interesting content while facilitating community education and promotion. &lt;br&gt;The specific reward will be determined according to the quality level assigned to each video.&lt;/td&gt;
&lt;td&gt;Level C: 1,200/video, &lt;br&gt;Level B 2,500/video, &lt;br&gt;Level A: 5,000/video&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Translation of articles&lt;/td&gt;
&lt;td&gt;Translate articles about the PlatON community (including those from WeChat, Medium, Forum, etc.) into another language and post them on social media. &lt;br&gt;&lt;br&gt;The translated article should be fluently expressed and factual. Machine translation or copycatting will not be accepted.&lt;/td&gt;
&lt;td&gt;400/short article (less than 2,000 words), &lt;br&gt;800/long article&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Translation of developer documents&lt;/td&gt;
&lt;td&gt;Translate documents listed on PlatON/Alaya Developer Docs into another language and submit them for demonstration. &lt;br&gt;&lt;br&gt;The translated document should be fluently expressed and factual. Machine translation or copycatting will not be accepted.&lt;/td&gt;
&lt;td&gt;600/short article (less than 2,000 words), &lt;br&gt;1,000/long article&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Proofread &amp;amp; improve developer documents&lt;/td&gt;
&lt;td&gt;Review, proofread and improve documents listed on PlatON/Alaya Developer Docs. &lt;br&gt;&lt;br&gt;*To be specific, you should submit feedback via Issue (including but not limited to spelling mistakes, ambiguous/wrong descriptions, etc.), as well as the revised content through PR. &lt;br&gt;The specific reward will be determined according to our ratings of revision quality and problem level.&lt;/td&gt;
&lt;td&gt;100~1200/PR&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Maintain PlatON’s GitHub library&lt;/td&gt;
&lt;td&gt;Optimize PlatON’s GitHub library for improved user experiences, and fix/address GitHub issues. &lt;br&gt;*The specific reward will be determined according to our ratings of your contribution and work quality.&lt;/td&gt;
&lt;td&gt;500~2000/PR&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Develop infrastructure tools&lt;/td&gt;
&lt;td&gt;Offer PlatON developers essential tools for development, testing, and monitoring. &lt;br&gt;&lt;br&gt;*You should provide complete and useable tools, as well as documents that specify their purpose and value.&lt;/td&gt;
&lt;td&gt;5,000/tool&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Build partnerships&lt;/td&gt;
&lt;td&gt;Promote cooperation between PlatON and universities, media agencies, developer communities, companies, and organizations. &lt;br&gt;&lt;br&gt;*Finalized PR promotions by the parties involved are deemed as the sign of valid partnerships.&lt;/td&gt;
&lt;td&gt;6,800/partner&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Facilitate the implementation of PlatON-powered projects&lt;/td&gt;
&lt;td&gt;Unlock the potential of the developer community, encourage and support potential developer/project teams to develop/integrate PlatON-based applications, and contribute to the implementation of the project. &lt;br&gt;&lt;br&gt;*You are required to submit a complete profile of the project (its purpose, value, implementation plan). The delivery of Milestone 1 of the project is deemed as the sign of valid contribution.&lt;/td&gt;
&lt;td&gt;8,000/project&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;PlatON podcasts&lt;/td&gt;
&lt;td&gt;Host regular tech podcasts to share PlatON’s latest technology and ecosystem progress with the community, analyze PlatON’s core technologies and products, promote its latest announcements and events, and study popular trends, state-of-the-art technologies and applications, etc. &lt;br&gt;&lt;br&gt;*The podcast must last longer than 10 minutes, and the relevant video link should also be provided.&lt;/td&gt;
&lt;td&gt;3,000/podcast&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Organize training/education programs for community developers&lt;/td&gt;
&lt;td&gt;Organize themed online/offline training to help community developers understand PlatON and learn how to develop on PlatON. &lt;br&gt;&lt;br&gt;*Such training/education programs require the attendance of at least 10 people. In addition, you are required to record the program and provide the relevant video link.&lt;/td&gt;
&lt;td&gt;3,800/program&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Organize developer meetups &amp;amp; AMAs&lt;/td&gt;
&lt;td&gt;Organize online AMAs and offline meetups about PlatON. &lt;br&gt;&lt;br&gt;*Offline meetups require the attendance of at least 20 people. Also, you should provide the relevant photos/videos that record their process and submit a briefing. &lt;br&gt;Online events should last longer than 30 minutes, with an audience of at least 100 people. Additionally, you should record the entire process and submit the video link.&lt;/td&gt;
&lt;td&gt;1,800/event&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Host developer contests/hackathons/seminars&lt;/td&gt;
&lt;td&gt;Work with third parties to host PlatON developer contests/hackathons for the local community. &lt;br&gt;&lt;br&gt;*Such developer contests/hackathons require the participation of at least 5 teams, each with a finalized delivery. &lt;br&gt;As for seminars, you should provide the relevant photos or video and submit a briefing.&lt;/td&gt;
&lt;td&gt;6,000/event&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Attend third-party conferences/events&lt;/td&gt;
&lt;td&gt;Participate in third-party events that may promote PlatON’s ecosystem growth, and speak up for PlatON. &lt;br&gt;*Before getting involved in an event, you should submit an overview of the third-party conference/event, including its goal, agenda, and focus. Additionally, you are also required to provide photos or videos of the conference/event and write PR articles for promotion.&lt;/td&gt;
&lt;td&gt;8,000/event&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Participate in developer contests/hackathons on behalf of PlatON&lt;/td&gt;
&lt;td&gt;Participate in third-party developer contests/hackathons on behalf of PlatON. &lt;br&gt;&lt;br&gt;*The relevant task should involve the adoption of the PlatON/Alaya network.&lt;/td&gt;
&lt;td&gt;10,000/event&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Train new Ambassadors&lt;/td&gt;
&lt;td&gt;The task is only available to Ambassadors at the Intermediate level or higher. &lt;br&gt;&lt;br&gt;*As an Intermediate Ambassador, you could introduce friends to the PlatON Global Ambassador Program and help them become qualified PlatON Ambassadors. Rewards will be available for each valid referral. &lt;br&gt;You are required to submit the name and CV of the new Ambassador and a short training video of 15~30 seconds.&lt;/td&gt;
&lt;td&gt;2,000/person&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Ecosystem and tech research&lt;/td&gt;
&lt;td&gt;Produce referable research reports based on the latest technology research, theories, and competition analysis.&lt;/td&gt;
&lt;td&gt;3,000/report&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Views &amp;amp; suggestions&lt;/td&gt;
&lt;td&gt;Provide constructive views/suggestions for improving PlatON’s technology and ecosystem. You are required to submit detailed views and suggestions to PlatON’s official Forum or GitHub for extensive discussion in the developer community. The relevant link should also be provided.&lt;/td&gt;
&lt;td&gt;1,000/suggestion&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;h2&gt;
  
  
  Notice
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;PlatON Ambassadors face quarterly performance appraisals. For ambassadors who failed to meet the relevant criteria, the Foundation may suspend their incentives.&lt;/li&gt;
&lt;li&gt;The Foundation will determine specific Ambassador Reward based on the bi-weekly reports submitted by Ambassadors. The Foundation reserves the right to approve or reject any submission from Ambassadors.&lt;/li&gt;
&lt;li&gt;The Ambassador Incentive is settled once a month, with the relevant statistics confirmed before the 5th of each month, and the distribution completed within 10 subsequent workdays.&lt;/li&gt;
&lt;li&gt;The Foundation reserves the right to alter the terms and conditions of the Ambassador Reward Program as it deems appropriate.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;We are convinced that data is our most fundamental and crucial “inherent right” in an era of digital economy. Challenges such as the protection of data privacy and sovereignty, the promotion of data circulation, the creation of data-based value, and the facilitation of collaborative computation are beyond the reach of any single individual or organization. This is why we are asking you to join us, starting from this moment!&lt;/p&gt;

</description>
      <category>devops</category>
      <category>privacy</category>
      <category>opensource</category>
      <category>blockchain</category>
    </item>
    <item>
      <title>[Reward] Plato Talk #1</title>
      <dc:creator>Boney</dc:creator>
      <pubDate>Tue, 21 Dec 2021 08:32:29 +0000</pubDate>
      <link>https://dev.to/boney_platon/reward-plato-talk-1-dc2</link>
      <guid>https://dev.to/boney_platon/reward-plato-talk-1-dc2</guid>
      <description>&lt;h2&gt;
  
  
  PLATO TALK #1
&lt;/h2&gt;

&lt;p&gt;TOPIC：Talk about your views on privacy. Why is privacy important?&lt;/p&gt;

&lt;p&gt;REWARD:  4000 LAT&lt;/p&gt;

&lt;p&gt;Topic Deadline 2021/12/22 10:00 UTC&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Discord（plato-talk）: &lt;a href="https://discord.gg/CGz3cSfn9J"&gt;https://discord.gg/CGz3cSfn9J&lt;/a&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--XEdOEKDs--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/a7204hmgvquogvwa9epu.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--XEdOEKDs--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/a7204hmgvquogvwa9epu.png" alt="Image description" width="880" height="431"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Event details：&lt;br&gt;
&lt;a href="https://dev.to/boney_platon/discord-eventplato-talk-share-views-ideas-suggestions-based-on-the-talk-topic-44ah"&gt;https://dev.to/boney_platon/discord-eventplato-talk-share-views-ideas-suggestions-based-on-the-talk-topic-44ah&lt;/a&gt;&lt;/p&gt;




&lt;p&gt;&lt;strong&gt;About PlatON：&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;PlatON Website：&lt;a href="https://platon.network/en"&gt;https://platon.network/en&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Alaya Website：&lt;a href="https://www.alaya.network/en"&gt;https://www.alaya.network/en&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;PlatON Privacy-Preserving Computation WhitePaper: &lt;a href="https://link.medium.com/hHaZHcz9Djb"&gt;https://link.medium.com/hHaZHcz9Djb&lt;/a&gt; &lt;/p&gt;

&lt;p&gt;PlatON 2.0 WhitePaper：&lt;a href="https://link.medium.com/KCbkhaG9Djb"&gt;https://link.medium.com/KCbkhaG9Djb&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;PlatON 2.0 PPT：&lt;a href="https://www.slideshare.net/ShiHeng1/privacypreserving-ai-network-platon-20-249734241"&gt;https://www.slideshare.net/ShiHeng1/privacypreserving-ai-network-platon-20-249734241&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Developer Program：&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Hackathon：&lt;a href="https://github.com/AlayaNetwork/Alaya-Season-Hackathon"&gt;https://github.com/AlayaNetwork/Alaya-Season-Hackathon&lt;/a&gt; &lt;/p&gt;

&lt;p&gt;Grants: &lt;a href="https://latticex.foundation/grants"&gt;https://latticex.foundation/grants&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Dev-Bounty：&lt;a href="https://github.com/LatticeX-Foundation/dev-bounties"&gt;https://github.com/LatticeX-Foundation/dev-bounties&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Contact：&lt;/strong&gt;&lt;br&gt;
Twitter：&lt;a href="https://twitter.com/PlatON_Network"&gt;https://twitter.com/PlatON_Network&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Discord：&lt;a href="https://discord.gg/jAjFzJ3Cff"&gt;https://discord.gg/jAjFzJ3Cff&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Dev-Telegram：&lt;a href="https://t.me/joinchat/LhO63AsZ_iozZGNl"&gt;https://t.me/joinchat/LhO63AsZ_iozZGNl&lt;/a&gt;&lt;/p&gt;

</description>
    </item>
    <item>
      <title>[Discord Event]Plato Talk-Share Views, Ideas, Suggestions Based On The Talk Topic </title>
      <dc:creator>Boney</dc:creator>
      <pubDate>Mon, 20 Dec 2021 07:15:17 +0000</pubDate>
      <link>https://dev.to/boney_platon/discord-eventplato-talk-share-views-ideas-suggestions-based-on-the-talk-topic-44ah</link>
      <guid>https://dev.to/boney_platon/discord-eventplato-talk-share-views-ideas-suggestions-based-on-the-talk-topic-44ah</guid>
      <description>&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--2yBlsMio--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/7eleqlgoc0t3at8bf2vf.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--2yBlsMio--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/7eleqlgoc0t3at8bf2vf.png" alt="Image description" width="880" height="431"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;LatticeX Foundation connects with developers around the world through the Computation Fund. It aims to promote the development of distributed computation, blockchain, cryptography, artificial intelligence, and privacy-preserving computation while recruiting and supporting developers to jointly build a digital utopia. To this end, we strive to bring more global developers to PlatON and foster distributed intelligent agents who share our visions. Step by step, PlatON will build an autonomous open-source tech ecosystem.&lt;br&gt;
To build an active community where discussions and exchanges are encouraged, we will hold Plato Talks so that users could air their views on privacy preservation, cryptography, and AI and offer inspirations for the development of PlatON.&lt;/p&gt;

&lt;p&gt;Plato Talks encourage free discussions about the research and experiment of PlatON’s various functions during the life cycle of data, as well as the building of a closed loop that incorporates the privacy preservation of on-chain data, privacy-preserving storage of off-chain data, data capitalization, privacy-preserving computation, data trades, and algorithm/model trades.&lt;/p&gt;

&lt;h2&gt;
  
  
  👉How to participate
&lt;/h2&gt;

&lt;p&gt;Each “Plato Talks” is given a topic. Participate in the activity by replying to your opinions, ideas, and suggestions on Discord(plato-talk)based on the topic.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;Discord（plato-talk）: &lt;a href="https://discord.gg/CGz3cSfn9J"&gt;https://discord.gg/CGz3cSfn9J&lt;/a&gt; &lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Invite others to like your message and the user with the most likes will be rewarded.&lt;br&gt;
&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--nVIQ17p3--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/r7e1jtkyca52ly0fjv16.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--nVIQ17p3--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/r7e1jtkyca52ly0fjv16.png" alt="Image description" width="343" height="94"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  🎁Plato rewards
&lt;/h2&gt;

&lt;p&gt;Users are encouraged to invite members of the PlatON community to like their views and suggestions, and the top 5 users (ranked by the total number of likes within 48 hours, excluding invalid replies) will receive awesome rewards from PlatON.&lt;br&gt;
image&lt;/p&gt;

&lt;h2&gt;
  
  
  💝Participation reward
&lt;/h2&gt;

&lt;p&gt;The first 5 users (excluding invalid replies and the above prize winners) participating in discussions will receive the participation reward.&lt;br&gt;
image&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Notice&lt;br&gt;
Only replies under discussions relating to the specified topic will be regarded as valid.&lt;br&gt;
The rewards will be distributed the next Friday after the end of the event.&lt;/em&gt;&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;About PlatON：&lt;/strong&gt;&lt;br&gt;
PlatON Website：platon.network/en&lt;br&gt;
Alaya Website：alaya.network/en&lt;br&gt;
PlatON Privacy-Preserving Computation WhitePaper: link.medium.com/hHaZHcz9Djb&lt;br&gt;
PlatON 2.0 WhitePaper：link.medium.com/KCbkhaG9Djb&lt;br&gt;
PlatON 2.0 PPT：slideshare.net/ShiHeng1/privacypreserving-a..&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Developer Program：&lt;/strong&gt;&lt;br&gt;
Hackathon：github.com/AlayaNetwork/Alaya-Season-Hackat..&lt;br&gt;
Grants: latticex.foundation/grants&lt;br&gt;
Dev-Bounty：github.com/LatticeX-Foundation/dev-bounties&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Contact：&lt;/strong&gt;&lt;br&gt;
Twitter：twitter.com/PlatON_Network&lt;br&gt;
Discord：discord.gg/jAjFzJ3Cff&lt;br&gt;
Dev-Telegram：t.me/joinchat/LhO63AsZ_iozZGNl&lt;/p&gt;
&lt;/blockquote&gt;

</description>
      <category>privacy</category>
      <category>devops</category>
      <category>beginners</category>
      <category>discuss</category>
    </item>
    <item>
      <title>PlatON Grant Hackathon is coming!($170,000 Prize Pool)</title>
      <dc:creator>Boney</dc:creator>
      <pubDate>Wed, 04 Aug 2021 10:41:50 +0000</pubDate>
      <link>https://dev.to/boney_platon/platon-grant-hackathon-is-coming-170-000-prize-pool-2fk5</link>
      <guid>https://dev.to/boney_platon/platon-grant-hackathon-is-coming-170-000-prize-pool-2fk5</guid>
      <description>&lt;p&gt;PlatON Grant Hackathon is coming!&lt;br&gt;
Share the $170,000 Prize Pool and Learn from the Workshop series! The Hackathon is opened on hackerlink. &lt;/p&gt;

&lt;p&gt;Event details: &lt;a href="https://hidorahacks.medium.com/platon-grant-hackathon-opens-on-hackerlink-io-57355f70a96a"&gt;https://hidorahacks.medium.com/platon-grant-hackathon-opens-on-hackerlink-io-57355f70a96a&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Quick registration: &lt;a href="https://hackerlink.io/en/grant/Alaya/1"&gt;https://hackerlink.io/en/grant/Alaya/1&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Join the Telegram group chat for registration and teaming up! &lt;a href="https://t.me/joinchat/neSjeUIee8U4ZjA1"&gt;https://t.me/joinchat/neSjeUIee8U4ZjA1&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Event Github: &lt;a href="https://github.com/AlayaNetwork/Alaya-Season-Hackathon"&gt;https://github.com/AlayaNetwork/Alaya-Season-Hackathon&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Feel free to chat with me(@Boney2) on Discord（&lt;a href="https://discord.gg/jAjFzJ3Cff%EF%BC%89"&gt;https://discord.gg/jAjFzJ3Cff）&lt;/a&gt; for more details, thanks!&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Lumino - Secure Multi-Party Computation Ceremony</title>
      <dc:creator>Boney</dc:creator>
      <pubDate>Wed, 23 Jun 2021 02:49:29 +0000</pubDate>
      <link>https://dev.to/boney_platon/lumino-secure-multi-party-computation-ceremony-4m43</link>
      <guid>https://dev.to/boney_platon/lumino-secure-multi-party-computation-ceremony-4m43</guid>
      <description>&lt;p&gt;The PlatON Secure Multiparty Computing Ceremony Lumino is launched! The 60-day ceremony invites cryptography and blockchain geeks around the world to get deeply involved in building a privacy computing infrastructure!&lt;/p&gt;

&lt;p&gt;The open source code and software can be downloaded at： &lt;a href="https://github.com/PlatONnetwork/Lumino"&gt;https://github.com/PlatONnetwork/Lumino&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Lumino ceremony homepage: &lt;br&gt;
&lt;a href="https://lumino.latticex.foundation/home"&gt;https://lumino.latticex.foundation/home&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Guidance for Lumino Contributors:&lt;br&gt;
&lt;a href="https://medium.com/platon-network/a-guidance-for-lumino-contributors-7c9eb201e097"&gt;https://medium.com/platon-network/a-guidance-for-lumino-contributors-7c9eb201e097&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  How to Participate:
&lt;/h2&gt;

&lt;p&gt;Send an email to LatticeX Foundation at &lt;a href="mailto:lumino@latticex.foundation"&gt;lumino@latticex.foundation&lt;/a&gt; In the email, please fill in the following information:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Name (first name or nickname)&lt;/li&gt;
&lt;li&gt;Alaya Network Address&lt;/li&gt;
&lt;li&gt;Correspondence address (mailing address for gifts)&lt;/li&gt;
&lt;li&gt;Which computing group you would like to join (BN254 curve group or BLS12–381 curve group, or both.)&lt;/li&gt;
&lt;li&gt;Whether you would like to apply for the Google Cloud.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  More information
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://medium.com/platon-network/q-a-all-about-lumino-the-secure-multi-party-computation-ceremony-174ef3a0c56e"&gt;Q&amp;amp;A | All about Lumino, the secure multi-party computation ceremony&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://medium.com/platon-network/welcome-to-join-lumino-65c9b8e49209"&gt;Welcome to Join Lumino&lt;/a&gt;&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;Welcome developers to PlatON&lt;br&gt;
github.com/LatticeX-Foundation/dev-bounties..&lt;br&gt;
Send an email &lt;a href="mailto:developer@latticex.foundation"&gt;developer@latticex.foundation&lt;/a&gt; to submit more ideas and suggestions&lt;/p&gt;
&lt;/blockquote&gt;

</description>
      <category>beginners</category>
      <category>privacy</category>
      <category>security</category>
      <category>opensource</category>
    </item>
    <item>
      <title>PlatON Developer Bounty Program</title>
      <dc:creator>Boney</dc:creator>
      <pubDate>Wed, 16 Jun 2021 08:42:45 +0000</pubDate>
      <link>https://dev.to/boney_platon/platon-developer-bounty-program-28e8</link>
      <guid>https://dev.to/boney_platon/platon-developer-bounty-program-28e8</guid>
      <description>&lt;p&gt;PlatON is a new generation of privacy-preserving AI network initiated and driven by the LatticeX Foundation, and is also an open-source community project. Such a huge infrastructure requires joint effort from community developers.&lt;/p&gt;

&lt;p&gt;To encourage community developers to get more involved in the development and design of core infrastructure, the LatticeX Foundation launched Developer Bounty Program to reward those who provide basic services for PlatON and Alaya.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://github.com/LatticeX-Foundation/dev-bounties/blob/c8513aff4a7f03cbc0f765b1a3e32a9a3716d55a/Developer%20Bounty%20Program(Phase-I).md"&gt;https://github.com/LatticeX-Foundation/dev-bounties/blob/c8513aff4a7f03cbc0f765b1a3e32a9a3716d55a/Developer%20Bounty%20Program(Phase-I).md&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Send an email &lt;a href="mailto:developer@latticex.foundation"&gt;developer@latticex.foundation&lt;/a&gt; to submit more ideas and suggestions&lt;/p&gt;

</description>
      <category>blockchain</category>
      <category>privacycomputing</category>
      <category>bounty</category>
    </item>
  </channel>
</rss>
