Skip to content

Instantly share code, notes, and snippets.

View gsans's full-sized avatar
🚁
Hawaii is Awesome

Gerard Sans gsans

🚁
Hawaii is Awesome
View GitHub Profile
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,
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
@gsans
gsans / src_service-worker.js
Created June 29, 2022 18:14
codez058: service worker
workbox.core.setCacheNameDetails({ prefix: "appsyncmasterclass-frontend" });
workbox.core.skipWaiting()
workbox.core.clientsClaim()
const cacheFiles = [
{
"revision": "931caf57a56b47ef400c",
"url": "/img/icons/android-chrome-192x192.png"
},
@gsans
gsans / public_manifest.json
Created June 29, 2022 18:13
codez057: manifest file
{
"name": "appsyncmasterclass-frontend",
"short_name": "appsyncmasterclass-frontend",
"theme_color": "#4DBA87",
"icons": [
{
"src": "./img/icons/android-chrome-192x192.png",
"sizes": "192x192",
"type": "image/png"
},
@gsans
gsans / vue.config.js
Created June 29, 2022 18:12
codez056: custom pwa configuration
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',
@gsans
gsans / Tweet.vue
Created June 14, 2022 15:18
codez055: compact tweet details
<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>
@gsans
gsans / LogIn.vue
Created June 14, 2022 15:04
codez054: fix login page
<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>
@gsans
gsans / tailwind.config.js
Created June 11, 2022 10:25
codez053: set media query breakpoints
const defaultTheme = require('tailwindcss/defaultTheme')
module.exports = {
purge: { content: ['./public/**/*.html', './src/**/*.vue'] },
darkMode: false, // or 'media' or 'class'
theme: {
container: {
center: true
},
maxHeight: {
@gsans
gsans / GLDToken.sol
Created February 25, 2022 15:58
ERC20 GLD token
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 {
@gsans
gsans / hello-world.sol
Created February 25, 2022 15:39
Helloworld smart contract
// 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;
}