<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Topics tagged with javascript]]></title><description><![CDATA[A list of topics that have been tagged with javascript]]></description><link>https://community.secnto.com//tags/javascript</link><generator>RSS for Node</generator><lastBuildDate>Mon, 08 Jun 2026 21:48:04 GMT</lastBuildDate><atom:link href="https://community.secnto.com//tags/javascript.rss" rel="self" type="application/rss+xml"/><pubDate>Invalid Date</pubDate><ttl>60</ttl><item><title><![CDATA[Getting Started with Ethereum Blockchain]]></title><description><![CDATA[<p dir="auto">We want you to avoid tutorial hell and jump into building projects from day one. If you don’t know something as you move along, do a quick google search or ask in our discord channel.</p>
<p dir="auto">Avoid getting stuck and going down rabbit holes. One of your goals should be to get a high level understanding of how all the moving pieces of developing on the blockchain come together. On your second go, you can go more in depth or come up with your own projects.</p>
<p dir="auto">Our main goal is to get to done. If you’re stuck, you have our permission to copy and paste the sample code just so that you can move on to the next lesson and get to done.</p>
<p dir="auto"><strong>A Note on Security 🚨</strong></p>
<p dir="auto">There are numerous sophisticated attempts to hack, phish and steal crypto currencies since there is no central authority to over see the blockchain and you cannot undo any transaction.</p>
<p dir="auto">Double check all urls, even the urls you click through searching on Google to make sure they are accurate. Never share your seed and private keys with anyone and make sure to back them up in multiple secure places.</p>
<p dir="auto">A good rule of thumb is not to trust anyone in the MetaVerse, impersonation is a common mechanism for theft. Always triple check links and wallets you send digital assets to and do not store any credentials in your main code base that is pushed to GitHub. We will be using <a href="https://www.npmjs.com/package/dotenv" target="_blank" rel="noopener noreferrer nofollow ugc">dotenv</a> to store our credentials locally only.</p>
<p dir="auto"><strong>Prerequisites</strong></p>
<p dir="auto"><strong>Wallets</strong></p>
<p dir="auto">To get started you will need a wallet. Your wallet will act as your login to access the Ethereum network. Your public key is like your username and your private key is like your password.</p>
<p dir="auto">We recommend using <a href="https://metamask.io/" target="_blank" rel="noopener noreferrer nofollow ugc">MetaMask</a>. Please store your seed and private keys in a secure place. Create a test account just for this project. We will be using the Rinkeby Test Network, which is a test-network that mimics the the functionality of the real network. This allows us to use Fake Ether as well.</p>
<p dir="auto">Click on the fox icon in your browser, then click Ethereum Mainnet located at the top center, then in the drop down menu click Rinkeby Test Network. (If you dont find Rinkeby Test Network in the dropdown menu, go to settings =&gt; advanced =&gt; then switch on the ‘show test networks’ button. Hopefully the Rinkeby Test Network will showup along with other test networks).</p>
<p dir="auto">Next you will need send your self some fake Ether via what’s known as a faucet. Here are a list of faucets, again double check these as sometimes the faucets are out of fake ether.</p>
<p dir="auto">RBF: <a href="https://www.rinkebyfaucet.com/" target="_blank" rel="noopener noreferrer nofollow ugc">https://www.rinkebyfaucet.com/</a><br />
MyCrypto: <a href="https://app.mycrypto.com/faucet" target="_blank" rel="noopener noreferrer nofollow ugc">https://app.mycrypto.com/faucet</a><br />
Rinkeby: <a href="https://faucet.rinkeby.io" target="_blank" rel="noopener noreferrer nofollow ugc">https://faucet.rinkeby.io</a><br />
MetaMask: <a href="https://faucet.metamask.io" target="_blank" rel="noopener noreferrer nofollow ugc">https://faucet.metamask.io</a><br />
Chainlink: <a href="https://faucets.chain.link/rinkeby" target="_blank" rel="noopener noreferrer nofollow ugc">https://faucets.chain.link/rinkeby</a><br />
You can ask us in the discord if you run out of fake Ether.</p>
<p dir="auto"><strong>Solidity</strong></p>
<p dir="auto">Smart contracts are programmed in Solidity. Solidity is fairly easy to pick up, if you don’t know it, you will pick it up as we move along. It’s concepts from C++, Python and JavaScript so it should be familiar enough.</p>
<p dir="auto">Here’s a cheat sheet to speed up your learning:</p>
<ul>
<li>A high level overview of the Solidity language: <a href="https://solidity-by-example.org/" target="_blank" rel="noopener noreferrer nofollow ugc">https://solidity-by-example.org/</a></li>
<li>CryptoZombies is another amazing resource to pick up Solidity as well: <a href="https://cryptozombies.io" target="_blank" rel="noopener noreferrer nofollow ugc">https://cryptozombies.io</a></li>
</ul>
<p dir="auto"><strong>JavaScript</strong></p>
<p dir="auto">You’ll need to have an intermediate understanding of JavaScript or another programming language to get through this tutorial. If you are new to coding, we recommend learning a coding language like JavaScript or Python first. We will be using some Javascript libraries like Ethers.js to interact with our smart contract.</p>
<p dir="auto"><strong>Code Editor</strong></p>
<p dir="auto">You can use your favorite code editor but download the package that allows for Solidity syntax highlighting. For some lessons we will use Remix, an online development environment for smart contracts (<a href="http://remix.ethereum.org/" target="_blank" rel="noopener noreferrer nofollow ugc">remix.ethereum.org/</a>).</p>
<p dir="auto">➡️ Action Item Share with us your public address in the #general <a href="https://discord.gg/UQayXxzazc" target="_blank" rel="noopener noreferrer nofollow ugc">discord</a> and let us know what you’re hoping to build after you finish your course.</p>
]]></description><link>https://community.secnto.com//topic/2320/getting-started-with-ethereum-blockchain</link><guid isPermaLink="true">https://community.secnto.com//topic/2320/getting-started-with-ethereum-blockchain</guid><dc:creator><![CDATA[cyberian]]></dc:creator><pubDate>Invalid Date</pubDate></item><item><title><![CDATA[JavaScript: Modifying DOM and populating it with JSON data]]></title><description><![CDATA[<p dir="auto">i’ve got a JSON data base, and need to populate a website with it’s content. It’s the first time a try doing something like this (still learning JS).</p>
<pre><code>&lt;div class="cardsection"&gt;
  &lt;div class="card"&gt; 
    &lt;div class= "photoandname"&gt;
      &lt;div class="profilphoto"&gt;
      &lt;/div&gt;
      &lt;h2 class="name"&gt; &lt;/h2&gt;
    &lt;/div&gt;
    &lt;div class="informations"&gt;
      &lt;h3 class="location"&gt; &lt;/h3&gt;
      &lt;p class="caption"&gt; &lt;/p&gt;
      &lt;p class="price"&gt; &lt;/p&gt;
    &lt;/div&gt;
    &lt;div class="tags"&gt;
      &lt;button class="tagButton"&gt; &lt;/button&gt;
      &lt;button class="tagButton"&gt; &lt;/button&gt;
     &lt;/div&gt;
  &lt;/div&gt;
&lt;/div&gt;
</code></pre>
]]></description><link>https://community.secnto.com//topic/2096/javascript-modifying-dom-and-populating-it-with-json-data</link><guid isPermaLink="true">https://community.secnto.com//topic/2096/javascript-modifying-dom-and-populating-it-with-json-data</guid><dc:creator><![CDATA[zaasmi]]></dc:creator><pubDate>Invalid Date</pubDate></item><item><title><![CDATA[How to add external CSS and Javascript in WordPress]]></title><description><![CDATA[
Strategically make JavaScript and CSS external to utilize browser caching.

Details from Yahoo!
Using external files in the real world generally produces faster pages because the JavaScript and CSS files are cached by the browser.
JavaScript and CSS that are inlined in HTML documents get downloaded every time the HTML document is requested. This reduces the number of HTTP requests that are needed, but increases the size of the HTML document.
On the other hand, if the JavaScript and CSS are in external files cached by the browser, the size of the HTML document is reduced without increasing the number of HTTP requests.
]]></description><link>https://community.secnto.com//topic/2043/how-to-add-external-css-and-javascript-in-wordpress</link><guid isPermaLink="true">https://community.secnto.com//topic/2043/how-to-add-external-css-and-javascript-in-wordpress</guid><dc:creator><![CDATA[zareen]]></dc:creator><pubDate>Invalid Date</pubDate></item><item><title><![CDATA[How can i learn JavaScript with Cybrian]]></title><description><![CDATA[<p dir="auto">Cyberian is the best way to learn to code for beginners. With fun, quick lessons on your phone or desktop, Cyberian teaches adult learners to write real JavaScript. It’s currently available for free on Desktop, Android, and iOS. Cyberian is a Code with Google program.</p>
<p dir="auto">FAQ:</p>
]]></description><link>https://community.secnto.com//topic/854/how-can-i-learn-javascript-with-cybrian</link><guid isPermaLink="true">https://community.secnto.com//topic/854/how-can-i-learn-javascript-with-cybrian</guid><dc:creator><![CDATA[zareen]]></dc:creator><pubDate>Invalid Date</pubDate></item></channel></rss>