This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>Document</title> | |
| </head> | |
| <body> | |
| <div id="app"></div> | |
| <script src="https://unpkg.com/react@16.0.0/umd/react.production.min.js"></script> | |
| <script src="https://unpkg.com/react-dom@16.0.0/umd/react-dom.production.min.js"></script> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function upperCaseFirstLetter(word) { | |
| return word[0].toUpperCase() + word.slice(1); | |
| } | |
| function upperCaseWords(sentence) { | |
| var words = sentence.split(" "); | |
| for (var i = 0; i < words.length; i++) { | |
| words[i] = upperCaseFirstLetter(words[i]); | |
| } | |
| return words.join(" "); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const upperCaseFirstLetter = word => `${word[0].toUpperCase()}${word.slice(1)}`; | |
| const upperCaseWords = s => s.split(" ").map(w => upperCaseFirstLetter(w)).join(" "); | |
| console.log(upperCaseWords("code example to refactor")); | |
| /* | |
| or | |
| const upperCaseFirstLetter = word => `${word[0].toUpperCase()}${word.slice(1)}`; |
The new 1.9.x release will be landing in mainnet soon. Here are some important new features to be aware of for validators:
Snapshot size has become very large (On the order of 20 to 30GB to get a validator up and running). This change creates smaller incremental snapshots. Important: Once a validator starts using incremental snapshots, it cannot go back to version 1.8.
Recommended Upgrade Procedure:
The Alpenglow community cluster is ready for validators to join! The cluster is currently waiting for super majority to start. Validators will likely join over the next few days. If you are not part of the gensis set, we can delegate to your validator afterwards.
Operators should do the following to join the cluster:
- Checkout the alpenglow branch from Ashwin’s github:
git clone https://github.com/AshwinSekar/solana.git agave
cd agave
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 3Pn4wcWHH45M59114fScfKvaun2MNTA8zTJuNDwwfe9D | |
| 5AFXMXPqMjCohJHggx58W4MyjW6T2JHrnKS1CCvmTGdS | |
| GjR9WF6iwPj4SFJVH41BXEta6Xm52EVBY9g8NhPapsPD | |
| 8vaycoa9nNLD8aHfCFXb39sDguARL1DvKcRptY3opmxC | |
| meowUbwHX81EpUjbhQPSRDo6wAjMhUyGJd3C5PcXFJr | |
| szAMxGSzMhXu2vZDQrq3hiXoC4WMh4vffmhXQ44SMzQ | |
| 8ziP7TSaKCCCZS2bdGanDB4RaaUVPxzDjABS6HqxFYoY | |
| Tri1jXwCrkyRLmofgEgcZ5ShGdvr8pEBsC2tbAdYRdS. | |
| 56h3j87XSMLWb6ZpKCFYUnFViuktbtwNoGzZqz1pBNiC | |
| Ai62WxJXtpduc8hiE9a6U6n3P8Fr4Cgq21zsJxanbNba |
OlderNewer