A Pen by Kade Stroude on CodePen.
A Pen by Kade Stroude on CodePen.
A Pen by Kade Stroude on CodePen.
My submission for the second challenge in the FCC responsive web design series
More info here: https://www.freecodecamp.org/learn/responsive-web-design/responsive-web-design-projects
A Pen by Kade Stroude on CodePen.
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
| <!-- | |
| Deleted the intro message. | |
| A lot of this is reinterpreted code from the template (https://codepen.io/freeCodeCamp/pen/zNqgVx) , but I have still written it line-by-line. Ultimately, this is how I began coding, way before this bootcamp, leveraging open-source technologies and ammending them to achieve my desired result. Therefore I felt no need to come up with a website idea completely from scratch. This is just an exercise consolidating my knowledge from the tutorials. | |
| --> | |
| <main id="main"> | |
| <h1 id="title"> Kade Stroude</h1> | |
| <h2 id="subtitle"> FCC: Tribute Page Submission</h2> | |
| <p>A brief history of yet another self-taught developer</p> | |
| <figure id="img-div"> |
No, seriously, don't. You're probably reading this because you've asked what VPN service to use, and this is the answer.
Note: The content in this post does not apply to using VPN for their intended purpose; that is, as a virtual private (internal) network. It only applies to using it as a glorified proxy, which is what every third-party "VPN provider" does.
- A Russian translation of this article can be found here, contributed by Timur Demin.
- A Turkish translation can be found here, contributed by agyild.
- There's also this article about VPN services, which is honestly better written (and has more cat pictures!) than my article.
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
| // SPDX-License-Identifier: UNLICENSED | |
| pragma solidity ^0.8.0; | |
| contract Score { | |
| constructor () { | |
| owner = msg.sender; | |
| } | |
| // I have added a constructor - a function that is only executed once when the contract is deployed on the Ethereum blockchain. Here I have defined the contract owner. | |
| uint score = 5; | |
| // Friendly reminder that Solidity is a statically typed language, so you always need to declare the variable type. Anyways... | |
| mapping(address => uint) score_list; |
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
| // SPDX-License-Identifier: UNLICENSED | |
| pragma solidity ^0.8.0; | |
| contract HelloWorld { | |
| string public message; | |
| constructor(string memory initialiseMessage) { | |
| message = initialiseMessage; | |
| } | |
| function update (string memory newMessage) public{ |