Skip to content

Instantly share code, notes, and snippets.

View tomfa's full-sized avatar

Tomas Fagerbekk tomfa

View GitHub Profile
@tomfa
tomfa / code.js
Created January 12, 2022 13:00
Connecting to multiple databases with Prisma
/*
* Source: https://github.com/prisma/prisma/issues/2443#issuecomment-630679118
* Client typings is generated with the cli commands below:
*
* prisma generate --schema prisma/schema1.prisma
* prisma generate --schema prisma/schema2.prisma
*/
import { PrismaClient as PrismaClient1 } from '../prisma/client1'
import { PrismaClient as PrismaClient2 } from '../prisma/client2'
@tomfa
tomfa / ImageIcon.stories.tsx
Created January 5, 2022 19:29
Example storybook
import React from 'react';
import { Meta } from '@storybook/react';
import Component from './ImageIcon';
export default {
title: 'components/ImageIcon/ImageIcon',
component: Component,
} as Meta;
const Template = (props: React.ComponentProps<typeof Component>) => <Component {...props} />;
@tomfa
tomfa / cache.ts
Last active December 29, 2021 11:43
Caching in Node with Redis and/or in-memory storage + Browser with localStorage
import { ICache } from './types';
import { MemoryClient } from './memoryClient';
import { RedisClient } from './redisClient';
export class CacheClient implements ICache {
private client: ICache;
constructor({ redisUrl }: { redisUrl?: string }) {
if (redisUrl) {
this.client = new RedisClient({ redisUrl });
@tomfa
tomfa / create-signed-urls.ts
Last active December 20, 2021 22:33
Upload to S3 from Typescript
// Demo of creating upload urls to AWS S3.
// See github.com/tomfa/nextjs-s3-upload for a complete app
import {
S3Client,
PutObjectCommand,
} from "@aws-sdk/client-s3";
import { getSignedUrl } from "@aws-sdk/s3-request-presigner";
const s3 = new S3Client({
@tomfa
tomfa / types.ts
Last active January 30, 2023 21:05
LogStructure.ts
type ApplicationLog = {
level: 'debug' | 'info' | 'warning' | 'danger' | 'critical',
message: string,
createdAt: number,
userId?: string,
// a business metric, e.g. SIGNUP
action?: string,
monetaryValue?: number,
requestId?: string,
@tomfa
tomfa / bigquery_import.py
Last active October 21, 2021 20:13
Demo on how to upload to BigQuery with python3. See https://notes.webutvikling.org/starting-bigquery/
# 1. install dependencies
# 2. Set service account json in code
# or with env var "SA_ACCOUNT"
# 3. Run this file to import test data:
# "python3 bigquery_import.py"
import os
import json
from google.cloud import bigquery
@tomfa
tomfa / deploy.yml
Created October 20, 2021 12:30
Github Action: depend on test to succeed for deployment
# place this file in .github/workflows/ folder in repo
#
# This will run tests on push to master branch, then
# deploy if test succeeds
#
# This is controlled by the job "deploy" value "needs: test"
name: Deploy
on:
@tomfa
tomfa / .github_slash_workflows_slash_release.sdk
Created May 23, 2021 12:03
semantic-release setup example
name: Release SDK
on:
push:
branches:
- master
jobs:
lint:
@tomfa
tomfa / yarn.npm.install.sh
Created May 21, 2021 22:23
Bash script to start any node project.
install() {
if test -f "package.json"; then
if test -f "package-lock.json"; then
npm install
elif test -f "yarn.lock"; then
yarn
else
echo "warning: no lock file"
yarn
fi
@tomfa
tomfa / Component.tsx
Last active October 9, 2021 18:07
NextJS storing state in URL
import { useQueryState } from 'next-usequerystate';
import { useEffect } from 'react';
const defaultData = {
name: 'Robert Paulsen',
age: 37,
}
const parse = (query) => {
try {
const json = JSON.parse(String(query));
return {