My skill set matches all the requirements laid out in the job description. In particular, my ability to work to tight deadlines and manage my time effectively make me a good fit for the role. For example, in my current job I have to manage my own workload and tasks, taking briefs from colleagues in multiple and projects departments and creating a priority order that keeps everyone satisfied. Having been in the job for 6 months, I have never missed a deadline.
This file contains 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
<template> | |
<h1>Color Picker Game</h1> | |
<div>{{ message }}</div> | |
<button v-for="color in colors" :key="color" @click="matchColor(color)"> | |
{{ color }} | |
</button> | |
</template> |
This file contains 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: MIT | |
pragma solidity ^0.8.4; | |
import "@openzeppelin/[email protected]/token/ERC20/ERC20.sol"; | |
import "@openzeppelin/[email protected]/token/ERC20/extensions/draft-ERC20Permit.sol"; | |
contract MyToken is ERC20, ERC20Permit { | |
constructor() ERC20("MyToken", "MTK") ERC20Permit("MyToken") {} | |
function mint(address to, uint256 value) external { |
This file contains 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
import { | |
Accordion, | |
AccordionButton, | |
AccordionIcon, | |
AccordionItem, | |
AccordionPanel, | |
Avatar, | |
Box, | |
Button, | |
Center, |
This file contains 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
<html> | |
<head> | |
<title>How do I make the left div align to left and right div align to right</title> | |
<style> | |
div { | |
display: flex; | |
justify-content: space-between; | |
} | |
.left { |
This file contains 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
/* mobile device */ | |
@media only screen and (max-width:320px) { | |
.hero { | |
width: 28%; | |
display: none; | |
visibility: hidden; | |
clear: both; | |
float: left; | |
margin: 10px auto 5px 20px; |
This file contains 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
import React, { useEffect, useState } from "react"; | |
import { ToastContainer, toast } from "react-toastify"; | |
import { ethers } from "ethers"; | |
import "react-toastify/dist/ReactToastify.css"; | |
import Head from "next/head"; | |
export default function Home() { | |
/** |
This file contains 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: GPL-3.0 | |
pragma solidity 0.8.4; | |
contract Vault{ | |
// a contract where the owner create grant for a beneficiary; | |
//allows beneficiary to withdraw only when time elapse | |
//allows owner to withdraw before time elapse | |
//get information of a beneficiary | |
//amount of ethers in the smart contract |
This file contains 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: MIT | |
pragma solidity 0.8.13; | |
contract Deposit { | |
mapping(address => uint256) balances; | |
function depositFund(address _address) public payable { | |
balances[_address] += msg.value; | |
} |
This file contains 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: MIT | |
pragma solidity 0.8.7; | |
contract Counter { | |
uint public count; | |
uint timestop = block.timestamp + 30 seconds; | |
//set block.stamp should not be more than 30 seconds | |
function add() public { | |
require(block.timestamp <= timestop, "your time is up"); |