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 { createApp } from 'vue' | |
import { DefaultApolloClient } from '@vue/apollo-composable' | |
import { ApolloClient, createHttpLink, InMemoryCache } from '@apollo/client/core' | |
import App from './App.vue' | |
const httpLink = createHttpLink({ | |
uri: 'https://l5z4hz.sse.codesandbox.io/', | |
}) | |
const apolloClient = new ApolloClient({ | |
link: httpLink, |
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
Planet Earth is hosting a number of conflicts now of large proportions and sad consequences. Hence I hope you'll excuse my lack of room for any attempt at a witty intro to this interview. I'd say let's focus on the art, the artist and her story, and try to find inspiration and strength in all that art has to offer to the human race. I discovered Anna Lucia (Twitter, works on Tezos, works on Foundation, Art Blocks) and her work in the Genuary days of 2021, and followed her since. Here's what she had to say in an interview carried out actually a couple months ago now. Thanks Anna Lucia! | |
Q: What is your background? | |
A: I've always loved playing around with numbers for as long as I can remember. When I was little, my mom used to keep me entertained with story sums on long car trips. Numbers is what kept me calm and happy. Naturally, in school, I excelled at math. At the same, I was always making stuff. It started with making clothes for my Barbie that I would design on the computer. That evolved in designing and |
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
workbox.core.setCacheNameDetails({ prefix: "appsyncmasterclass-frontend" }); | |
workbox.core.skipWaiting() | |
workbox.core.clientsClaim() | |
const cacheFiles = [ | |
{ | |
"revision": "931caf57a56b47ef400c", | |
"url": "/img/icons/android-chrome-192x192.png" | |
}, |
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
{ | |
"name": "appsyncmasterclass-frontend", | |
"short_name": "appsyncmasterclass-frontend", | |
"theme_color": "#4DBA87", | |
"icons": [ | |
{ | |
"src": "./img/icons/android-chrome-192x192.png", | |
"sizes": "192x192", | |
"type": "image/png" | |
}, |
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
const manifest = require('./public/manifest.json') | |
module.exports = { | |
pwa: { | |
name: manifest.short_name, | |
themeColor: manifest.theme_color, | |
msTileColor: manifest.background_color, | |
appleMobileWebAppCapable: 'yes', | |
appleMobileWebAppStatusBarStyle: 'black', | |
workboxPluginMode: 'InjectManifest', |
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> | |
<div v-if="tweet.profile" class="w-full p-2 pt-1 pb-1 md:p-4 md:pt-2 md:pb-2 border-b hover:bg-lightest flex"> | |
<div class="flex-none mr-2 md:mr-4 pt-1"> | |
<a :href="`#/${tweet.profile.screenName}`"> | |
<img :src="`${tweet.profile.imageUrl || 'default_profile.png'}`" class="h-12 w-12 rounded-full flex-none"/> | |
</a> | |
</div> | |
<div class="w-full"> | |
<div class="flex items-center w-full"> | |
<p class="font-semibold">{{ tweet.profile.name }}</p> |
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> | |
<div class="w-full mt-5 flex justify-center items-center flex-col p-5 md:p-0"> | |
<i class="fab fa-twitter text-blue text-4xl mb-8"></i> | |
<p class="font-bold text-2xl mb-4">Log in to Twitter</p> | |
<div class="w-full md:w-1/3 bg-lightblue border-b-2 border-dark mb-4 p-2"> | |
<p class="text-dark">Phone, email, or username</p> | |
<input v-model="email" class="w-full bg-lightblue text-lg" type="text" ref="email"> | |
</div> | |
<div class="w-full md:w-1/3 bg-lightblue border-b-2 border-dark mb-4 p-2"> | |
<p class="text-dark">Password</p> |
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
const defaultTheme = require('tailwindcss/defaultTheme') | |
module.exports = { | |
purge: { content: ['./public/**/*.html', './src/**/*.vue'] }, | |
darkMode: false, // or 'media' or 'class' | |
theme: { | |
container: { | |
center: true | |
}, | |
maxHeight: { |
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
pragma solidity ^0.8.0; | |
import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; | |
import "@openzeppelin/contracts/access/Ownable.sol"; | |
contract GLDToken is ERC20, Ownable { | |
constructor(uint256 initialSupply) ERC20("Gold", "GLD") { | |
_mint(msg.sender, initialSupply); | |
} | |
function mint(address to, uint256 amount) public onlyOwner { |
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.10; | |
contract HelloWorld { | |
string message = "Hello world!"; | |
function set(string memory _msg) public { | |
message = _msg; | |
} |