Bitcoin Forum
May 23, 2024, 07:41:06 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 2 3 4 5 6 7 8 9 10 [11] 12 13 14 15 »  All
  Print  
Author Topic: 【ANN】aelf Token(ELF) Launch Report  (Read 19651 times)
Aelf Spanish
Copper Member
Jr. Member
*
Offline Offline

Activity: 276
Merit: 1


View Profile
March 17, 2019, 11:55:10 PM
 #201

HEre you got the last 2 pics of the set of four (being the first 2 published yesterday). Hope now you got a better idea about what staking means Smiley



Aelf Spanish
Copper Member
Jr. Member
*
Offline Offline

Activity: 276
Merit: 1


View Profile
March 18, 2019, 10:37:49 PM
 #202

Over 510,000 telegram members reached!
Join our #telegram community http://t.me/aelfblockchain    (english)
Other languages : Chinese (https://t.me/aelf_chs/), Russian (https://t.me/aelf_russian/), Vietnamese (https://t.me/aelf_vietnam), Turkish (https://t.me/aelf_turkish), Japanese (https://t.me/aelfjapan/), Korean (https://t.me/aelfkorean/), Arabic (https://t.me/aelf_arabic/), German (https://t.me/aelfgerman), Italian (https://t.me/aelfitalian), Spanish (https://t.me/aelf_spanish), French (https://t.me/aelf_french), India (https://t.me/aelfindia)

Aelf Spanish
Copper Member
Jr. Member
*
Offline Offline

Activity: 276
Merit: 1


View Profile
March 20, 2019, 11:59:18 PM
 #203

here we got the base of the system of dPoS algorithm for the verification of blocks in our blockchain


Aelf Spanish
Copper Member
Jr. Member
*
Offline Offline

Activity: 276
Merit: 1


View Profile
March 21, 2019, 11:55:25 PM
 #204


Development Progress Update (Mar 17th)



Completed Block Explorer Plugin (Second Edition); completed Economic system regression, 80%.


Release-v0.7.0:
- [Verifying] Multi-asset contract
- [In progress] sidechain module, completed single node debugging, dredging multi-nodes
- [Completed] Consensus module after Economic System adaptation improvement
- [In progress] Contract parameters input/output optimization
- [In progress] TODO and bug fixing in Issues

Block Explorer:
- [Completed] Block Explorer Plugin (Second Edition)
- [Completed] Chain scanning service adjustment (LIB support)
- [In progress] Block Explorer/Wallet Adaptation v0.7.0, 90%

Testing:
- [In progress] Expansion of unit tests for refactored modules
[Completed] Blockchain service test case improvement
[Completed] LIB / State manager test case improvement
[Completed] Network synchronization test case improvement
[In progress] Economic Systems related test cases improvement
- [In progress] Multi-node process dredge and bug fixing
[Completed] Fixed memory growth problem, running for extended time
[Completed] Multi-node transaction dredging and bug fixing
[Verifying] Unable to switch to the ‘longest executed chain’ properly
- [In progress] Economic system regression, 80%

Other:
- [Completed] Reorganize monitoring related projects according to v0.7.0
- [In progress] Script compatibility with Windows, enabling Windows users to build upon aelf
- [In progress] Official website revision

Plan for This Week:

Release-V0.7.0:
- Continue to work on sidechain multi-node debugging and problem solving
- Continue to work on integration testing and fix related bugs

Wallet/Block Explorer:
- Continue to work on related integration testing based on v0.7.0
- Native Wallet App Research and Demo

Other:

- Implement codes in TODO related issues
Aelf Spanish
Copper Member
Jr. Member
*
Offline Offline

Activity: 276
Merit: 1


View Profile
March 22, 2019, 11:28:51 PM
 #205

Github 101 — Understanding Github and How Aelf Uses It



If you’re not a developer, then chances are you may never have heard of Github. However, it’s a vital technical tool in development, particularly so for blockchain projects. All the code that runs aelf and many other blockchain projects is stored on Github, and there are good reasons why it has become the project management tool of choice.

Version Control with Git



When a team of developers is working together on a project, they need a way of controlling which version of the software is the master copy. Whether there are two or twenty developers, version control is necessary to track all the changes that have been made to the underlying code.

The way this is managed in version control systems is through branching and merging. If a programmer wants to make changes to the master code, then they download a copy from the master code repository and make the changes on their version, without affecting the master code. They can then merge their changes with the master copy once they’re ready to go live.

Git is a system that manages version control. It was developed back in 2005 by Linus Torvalds, the software engineer who created the Linux operating system. Linux is open source, so any developer can propose changes to the underlying code. Therefore, Torvalds developed Git as a way of managing version control for the Linux code. Git takes a snapshot of the current version of the code each time there is a change. Changes are known as commits.

By itself, Git is an excellent tool for developers, and according to a Stack Overflow survey, it’s used by more than 87% of all developers. However, it isn’t very user-friendly for non-coders, which is where Github comes in.
Aelf Spanish
Copper Member
Jr. Member
*
Offline Offline

Activity: 276
Merit: 1


View Profile
March 23, 2019, 11:32:09 PM
 #206


https://medium.com/aelfblockchain/github-101-understanding-github-and-how-aelf-uses-it-76b9904e1224

Pull Request and Profiles


In Github, a developer creates their own branch, called a fork, by taking a copy of the source code. Once they make their changes to the code, they can submit a pull request. This tells the owner of the code that there’s a change to be reviewed.

When the change is accepted, it is incorporated into the project source code as a change, known as a commit. The number of commits on any given project is a reliable indicator of the activity levels and therefore, the health of a project.

For the last twelve months, aelf has ranked in the top ten blockchain/cryptocurrency projects in terms of Github commits, demonstrating the hard work and commitment of the aelf development team in the leadup to the main net launch.

Profiles make Github a very compelling tool for developers and project leaders alike. Each time a developer successfully logs a commit for any given project, it’s stored against their own personal profile on Github.

So, if a developer submits a pull request for the code of an open-source project that they haven’t worked on before, the project leader can review all of their previous commits before they approve the pull request. Therefore, the Github profile acts as a kind of resumé for programmers, with a log of prior coding work.

Aelf Spanish
Copper Member
Jr. Member
*
Offline Offline

Activity: 276
Merit: 1


View Profile
March 24, 2019, 11:52:49 PM
 #207

What the Aelf Community Gains from Github
Github is the ideal tool for sharing progress and information about project development. Any aelf community members can enjoy the various features of Github outlined below.

Transparent Metrics
Firstly, Github is user-friendly, and you don’t have to be a programmer or even have an account to browse projects and users. Under the “Insights” tab for any given project, there’s a set of useful metrics that anyone can view. These include a dashboard showing an overview of activity.



You can also view the number of commits to the project.



There are other features too, including the option to view the profiles of the developers who are working on the project.

At aelf, we firmly believe that our token holders’ interests are linked to the long-term future of the aelf platform. Therefore, Github provides an ideal place to share the progress of our project development with our token holders and other interested stakeholders.

Having the source code all in one place means that once the aelf main net is live, node holders have a central repository from which to access all the current files necessary for running a node.
Aelf Spanish
Copper Member
Jr. Member
*
Offline Offline

Activity: 276
Merit: 1


View Profile
March 26, 2019, 11:55:11 PM
 #208

Singapore firms eye Dubai as emirate emerges as startup hub
They believe Dubai can be springboard to Middle East markets; among those which've taken the plunge include aelf, Touche and WeInvest


DUBAI is firing up its startup ambitions - and a rising number of Singapore firms are taking notice.

These companies see expansion opportunities in Dubai amid a startup-friendly environment as well as partnership possibilities with both the private and public sectors. They also believe the emirate can be a springboard to the Gulf region and the wider Middle East market.

Among the companies that have taken the plunge is blockchain startup aelf, which has forayed into the Middle East through Dubai-based consultancy Connect Global Strategies.

Co-founder Zhuling Chen said the Middle East is fast becoming a growing influence in the global blockchain ecosystem.

"Both the business community and governments are seeking to reorient the economy away from the oil industry, and the blockchain industry has become a key focus in making this a reality. This is evident in the sheer number of new blockchain applications across the region, including retail payments, land registry, business registration, and personal identity management," Mr Chen said.

Dubai's fintech accelerator programme FinTech Hive has also attracted interest from Singapore startups. Its 2018 edition saw more than 300 applications from over 45 countries, with 4 per cent of them from Singapore.

Digital wealth platform WeInvest and insurtech firm InsureVite were among the selected finalists of the programme in 2017 and 2018, respectively.

Arif Amiri, chief executive of the Dubai International Financial Centre (DIFC) Authority, said WeInvest has raised US$12.2 million since graduating from the programme, and has opened an office in DIFC as part of its international expansion.

He added that in 2018, FinTech Hive signed more than 10 landmark agreements with leading fintech institutions across major markets in the world, including Singapore, Kuala Lumpur, New York and Brussels.

Another early bird on the Dubai scene is local biometrics startup Touche which announced last October that it had gotten Dubai-based SEED Group on board as its local sponsor and partner. SEED Group is a diversified group of companies that establishes strategic partnerships with organisations in various sectors to accelerate their presence in the Middle East.

Touche chief executive Sahba Saint-Claire told BT then: "The Middle East, and the United Arab Emirates in particular, are very interesting markets. We have spoken to a number of companies and regardless of their size, we have found them very entrepreneurial, innovative and open to new technologies."

Touche offers businesses a fingerprint-based payment and loyalty management system. Mr Saint-Claire added: "The senior executives we talk to get our vision, which is to deliver much more personalised and convenient in-person customer experiences through the Touche solution, whether that is through biometrics or through more traditional payment methods."

Though Dubai can't yet hold a candle to startup strongholds such as Silicon Valley, London and Beijing, its efforts to get into the game have seen some headway. The city ranked second, after Jakarta, in a 2017 report by CB Insights that analysed emerging startup hubs.

The report crunched disclosed global venture capital (VC) data to identify promising startup markets among the long tail of more than 50 countries that collectively take 5 per cent of global VC deals. VC investment into Dubai soared from US$20 million in 2012 to US$411 million in 2016.

Walid Hanna, founder and chief executive officer of one of the region's largest VC firms Middle East Venture Partners (MEVP), said the company has identified six key tech verticals with attractive growth potential in the Middle East and North Africa (MENA): new media, e-commerce and marketplaces, fintech, healthtech, edutech and travel.

"Because South-east Asia (SEA) and MENA have a lot in common - a large digital-savvy population, fragmented or differentiated markets, and a growing middle class - there is an opportunity for SEA companies in those sectors to expand here and vice versa," said Mr Hanna. "GuavaPass and travel search engine Wego (an MEVP portfolio company) are some of the companies that have successfully done this expansion and we expect this trend to accelerate in the future."

At the regulatory level, the Dubai Financial Services Authority (DFSA) inked a fintech accord with the Monetary Authority of Singapore last August to pave the way for each party to refer fintech companies to the other, as well as facilitate the sharing of information on innovation in the financial sector.

The parties also agreed to work on joint projects on the application of key technologies; these include digital and mobile payments, blockchain and distributed ledgers, big data and application programming interfaces (APIs).

As more startups venture to Dubai, some might face hurdles as the emerging hub grapples with teething issues. For instance, while there is a lot of "solid early-stage investors" there, the regional technology sector lacks Series B and later stage growth capital, noted MEVP's Mr Hanna.

"In addition, one of the biggest challenges startups in Dubai face is the difficulty in acquiring technical talent," he added. "There needs to be further encouragement of technology-based education and training for youth to develop their talents and prepare them for jobs that require these skills."

That said, innovation and partnerships continue to drive the city's growth, making it an attractive destination not just for startups, but corporates looking to also be part of the ecosystem.

For instance, HSBC is creating an innovation network across the globe through innovation labs and fintech accelerators in Hong Kong, the UK, Mexico, and most recently in Dubai. Its innovation labs help it think and act like startups, explained Ghinwa Baradhi, HSBC's chief information officer for MENA and Turkey.

"Strong economic growth, gaining venture capitalism and angel investment opportunities as well as a progressive leadership vision are a few game changers that make the startup scene unique in Dubai," said Mrs Baradhi.

Aelf Spanish
Copper Member
Jr. Member
*
Offline Offline

Activity: 276
Merit: 1


View Profile
March 27, 2019, 11:01:05 PM
 #209

Aelf Spanish
Copper Member
Jr. Member
*
Offline Offline

Activity: 276
Merit: 1


View Profile
March 28, 2019, 11:39:09 PM
 #210

Here you got an videoreview done by the guys from Dapper weekly, which has been published in steemit, showing great interest in our orientation towards decentralized projects!

https://youtu.be/n6gfkAzfq3I



Aelf Spanish
Copper Member
Jr. Member
*
Offline Offline

Activity: 276
Merit: 1


View Profile
March 29, 2019, 10:17:13 PM
 #211

What stage do you think we are at in the global blockchain industry?
Catch @czhuling at the Indonesia Blockchain Summit next Monday and find out what the leaders in the industry think (and guess how many #Indomies Zhuling will have).

Aelf Spanish
Copper Member
Jr. Member
*
Offline Offline

Activity: 276
Merit: 1


View Profile
March 30, 2019, 11:50:53 PM
 #212

Do you speak coding? Dev language? Ever wished you could understand aelf's weekly development report? We are here to help! aelf tech 101 is here to bring simplified, easy to follow explanation on dev terms and concepts!

Aelf Spanish
Copper Member
Jr. Member
*
Offline Offline

Activity: 276
Merit: 1


View Profile
April 01, 2019, 10:57:50 PM
 #213

AELF Progress Report (Mar 25th — 31st)

Completed 90% of new aelf official website; making Development documentation.

https://medium.com/aelfblockchain/aelf-progress-report-mar-25th-31st-ad7fe87fe533

Aelf Spanish
Copper Member
Jr. Member
*
Offline Offline

Activity: 276
Merit: 1


View Profile
April 02, 2019, 11:37:56 PM
 #214


aelftech101 continues with the second topic: “Unit testing and detailing of the refactoring module”.
Let’s dive in!

https://twitter.com/i/status/1112969729654714368

Aelf Spanish
Copper Member
Jr. Member
*
Offline Offline

Activity: 276
Merit: 1


View Profile
April 03, 2019, 11:28:30 PM
 #215

Glad to share our thoughts in Indonesia hosted by @KoinXid. Great to see my dear friend who helped @aelfblockchain community is also taking bigger roles in the blockchain scene in Indonesia! You know who I’m talking about! ;-)

Aelf Spanish
Copper Member
Jr. Member
*
Offline Offline

Activity: 276
Merit: 1


View Profile
April 04, 2019, 11:38:05 PM
 #216

Aelfiego Song of the Week 19 - Phil Kavanagh | Are We Alone
This week, we are featuring a special piece by one of the aelf community! Phil Kavanagh:

https://www.youtube.com/watch?v=08n2HYau900&feature=youtu.be

Aelf Spanish
Copper Member
Jr. Member
*
Offline Offline

Activity: 276
Merit: 1


View Profile
April 05, 2019, 11:39:35 PM
 #217

 3rd topic is “Script compatibility with Windows! Learn how aelf allows users to build scripts.

https://twitter.com/aelfblockchain/status/1114069931383906304?s=21

Aelf Spanish
Copper Member
Jr. Member
*
Offline Offline

Activity: 276
Merit: 1


View Profile
April 06, 2019, 11:57:13 PM
 #218

Aelf Spanish
Copper Member
Jr. Member
*
Offline Offline

Activity: 276
Merit: 1


View Profile
April 07, 2019, 11:02:50 PM
 #219

Aelf Spanish
Copper Member
Jr. Member
*
Offline Offline

Activity: 276
Merit: 1


View Profile
April 10, 2019, 11:06:57 PM
 #220

Episode 3 of The Dapper Weekly was very fun to review! @mycryptoheroes_ have a very exciting game on their hands. Watch the review and use the referal code to get a bonus!


https://www.youtube.com/watch?v=WORjmr8bV0Q

Pages: « 1 2 3 4 5 6 7 8 9 10 [11] 12 13 14 15 »  All
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!