- Location - The location of the application. Usually just a URL, but the location can contain multiple pieces of information that can be used by an app
- pathname - The "file/directory" portion of the URL, like
invoices/123
- search - The stuff after
?
in a URL like/assignments?showGrades=1
. - query - A parsed version of search, usually an object but not a standard browser feature.
- hash - The
#
portion of the URL. This is not available to servers inrequest.url
so its client only. By default it means which part of the page the user should be scrolled to, but developers use it for various things. - state - Object associated with a location. Think of it like a hidden URL query. It's state you want to keep with a specific location, but you don't want it to be visible in the URL.
- pathname - The "file/directory" portion of the URL, like
This file contains hidden or 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
Remember that in addition to the prior instructions, when writing queries and code examples, please adhere to the following guidelines: | |
General: | |
- Database access is done using Ash 3.0/AshPostgres resources | |
- Don't use Ash resources for in memory data structures unless specified | |
- Only implement coding standards for new/modified code unless explicitly specified | |
- Minimal comments (only notable/counter-intuitive), no module level or function level docs | |
- Always Remove any unused aliases |
This file contains hidden or 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
Mix.install( | |
[ | |
{:ash, "~> 3.0"}, | |
{:ash_json_api, "~> 1.0"}, | |
{:plug_cowboy, "~> 2.5"}, | |
{:open_api_spex, "~> 3.16"} | |
], | |
consolidate_protocols: false | |
) |
This file contains hidden or 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
defmodule Datalog do | |
defstruct rules: [], facts: %{} | |
alias Datalog.{Fact, Rule} | |
alias __MODULE__ | |
def new, do: %__MODULE__{} | |
def add_rule(%Datalog{rules: rules} = datalog, %Rule{} = rule) do | |
{:ok, %Datalog{datalog | rules: [rule | rules]}} |
This file contains hidden or 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
// TypeScript Fundamentals For JavaScript Developers | |
/* | |
Tutorial for JavaScript Developers wanting to get started with TypeScript. | |
Thorough walkthrough of all the basic features. | |
We will go through the basic features to gain a better understanding of the fundamentals. | |
You can uncomment the features one by one and work through this tutorial. | |
If you have any questions or feedback please connect via Twitter: | |
A. Sharif : https://twitter.com/sharifsbeat | |
*/ |
This file contains hidden or 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
// @ts-check | |
import { useState, useEffect } from 'react' | |
function getCurrentLocation () { | |
return { | |
pathname: window.location.pathname, | |
search: window.location.search | |
} | |
} |
This file contains hidden or 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 from 'react'; | |
import PropTypes from 'prop-types'; | |
import { set, get } from 'lodash/fp'; | |
/** | |
* This is a copy-pasta job of Formik's Field component. It's needed in | |
* order to handle nested values. Future versions of formik will support | |
* this. | |
*/ |
This file contains hidden or 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 fs = require('fs') | |
const os = require('os') | |
const vm = require('vm') | |
const yaml = require('js-yaml') | |
const { paramCase } = require('change-case') | |
const { GraphQLClient } = require('graphql-request') | |
const cmd = process.argv[2] | |
const MIGRATION_PATH = `./db/migrations` | |
const isLocalTarget = target => target.startsWith('local/') |
This file contains hidden or 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
// FP Lenses | |
const lens = get => set => ({ get, set }); | |
const view = lens => obj => lens.get(obj); | |
const set = lens => val => obj => lens.set(val)(obj); | |
const over = lens => fn => obj => set(lens)(fn(view(lens)(obj)))(obj); | |
const lensProp = key => lens(prop(key))(assoc(key)); |
This file contains hidden or 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 styled, { css } from 'emotion/react' | |
import { space, width, fontSize, color, responsiveStyle } from 'styled-system' | |
export const display = responsiveStyle('display') | |
export const flex = responsiveStyle('flex') | |
export const order = responsiveStyle('order') | |
const wrap = responsiveStyle('flex-wrap', 'wrap', 'wrap') | |
const direction = responsiveStyle('flexDirection', 'direction') | |
const align = responsiveStyle('alignItems', 'align') |
NewerOlder