Skip to content

Instantly share code, notes, and snippets.

View shortdiv's full-sized avatar
🚧
Always a WIP

Divya shortdiv

🚧
Always a WIP
  • us-central1
View GitHub Profile
We can't make this file beautiful and searchable because it's too large.
ride_id,rideable_type,started_at,ended_at,start_station_name,start_station_id,end_station_name,end_station_id,start_lat,start_lng,end_lat,end_lng,member_casual
A847FADBBC638E45,docked_bike,2020-04-26 17:45:14,2020-04-26 18:12:03,Eckhart Park,86,Lincoln Ave & Diversey Pkwy,152,41.8964,-87.661,41.9322,-87.6586,member
5405B80E996FF60D,docked_bike,2020-04-17 17:08:54,2020-04-17 17:17:03,Drake Ave & Fullerton Ave,503,Kosciuszko Park,499,41.9244,-87.7154,41.9306,-87.7238,member
5DD24A79A4E006F4,docked_bike,2020-04-01 17:54:13,2020-04-01 18:08:36,McClurg Ct & Erie St,142,Indiana Ave & Roosevelt Rd,255,41.8945,-87.6179,41.8679,-87.623,member
2A59BBDF5CDBA725,docked_bike,2020-04-07 12:50:19,2020-04-07 13:02:31,California Ave & Division St,216,Wood St & Augusta Blvd,657,41.903,-87.6975,41.8992,-87.6722,member
27AD306C119C6158,docked_bike,2020-04-18 10:22:59,2020-04-18 11:15:54,Rush St & Hubbard St,125,Sheridan Rd & Lawrence Ave,323,41.8902,-87.6262,41.9695,-87.6547,casual
356216E875132F61,docked_bike,2020-04-30 17:55:4

title: 'Building Serverless CRUD apps with Netlify Functions & FaunaDB' authors:

  • David Wells tweet: >- Building Serverless CRUD apps with Netlify Functions & FaunaDB topics:
  • tutorials tags:
  • serverless
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Country People
Canada 5
Croatia 1
France 2
Germany 3
Ireland 1
Italy 1
Kenya 1
Portugal 3
Spain 4
Department Number
Developer Experience 11
Engineering 63
Finance 3
Founders Office 4
Marketing 15
People 6
Product 13
Sales 18
Name People Color
Developer Experience 10 #daff00
Platform 10 #61ff00
DevOps 5 #00f6ff
SRE 8 #ff00bd
Internal Tools 10 #00ffc3

Vue State Management and Vuex

This is a full-day workshop on architecting state management in Vue. In this workshop, you will learn why you should use Vuex in your Vue application. Through hands-on exercises, you will learn the basics of Vuex like state, actions, mutations, and getters. We will also cover using named modules as well as best practices. If time permits, we may even dive into the new composition api and how we can harness it for state management!

Slides!

https://github.com/shortdiv/vuex-workshop

Before You Arrive

Make sure you can create a new boilerplate Vue application using Vue CLI.

Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
package main
import (
"fmt"
"io"
"log"
"net/http"
"strings"
)