package | from version | to version |
---|---|---|
betsy | 1.0.2 | 1.0.2-1596731055829 |
non-blocking-json | 1.0.0 | 1.1.0-1596731055829 |
overmind | 24.1.1 | 25.0.0-1596731055829 |
overmind-angular | 24.1.1 | 25.0.0-1596731055829 |
overmind-devtools | 25.1.1 | 26.0.0-1596731055829 |
overmind-devtools-client | 7.1.1 | 8.0.0-1596731055829 |
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 tree = { | |
auth: { | |
user: {} | |
}, | |
issues: { | |
list: [] | |
}, | |
projects: { | |
list: [], | |
filter: 'completed' |
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
chrome.extension.onMessage.addListener(function(request, sender, sendResponse) { | |
console.log("request type", request.type) | |
if (request.type === "enable") { | |
chrome.pageAction.show(sender.tab.id); | |
} | |
else if (request.type === "up") { | |
capture(sender.tab.id, request.dimensions); | |
} | |
sendResponse({}); |
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
#!/usr/bin/env bash | |
# sudo apt-get install -y curl | |
# curl https://gist.githubusercontent.com/mikepsinn/b1142aa685ef71d6d3af9b01fc386539/raw/self-signed-wildcard-ssl-for-nginx.sh | sudo bash -s | |
ROOT_DOMAIN=codesandbox.test | |
# Specify where we will install | |
SSL_DIR="ssl" | |
# Set the wildcarded domain we want to use | |
WILDCARD_DOMAIN="*.${ROOT_DOMAIN}" |
package | from version | to version |
---|---|---|
betsy | 1.0.2 | 1.0.2-1591603562887 |
overmind | 23.1.0 | 24.0.0-1591603562887 |
overmind-angular | 23.1.0 | 24.0.0-1591603562887 |
overmind-devtools | 24.1.0 | 25.0.0-1591603562887 |
overmind-devtools-client | 6.1.0 | 7.0.0-1591603562887 |
overmind-devtools-vscode | 5.1.0 | 6.0.0-1591603562887 |
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 * as React from 'react' | |
import { createConfig, TCss } from '@stitches/css' | |
const config = createConfig({ | |
tokens: { | |
colors: { | |
RED: 'tomato', | |
}, | |
}, | |
}) |
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 App from 'next/app' | |
import React from 'react' | |
import { createCss, TCss } from '@stitches/css' | |
import { Provider, config } from './css' | |
export default class MyApp extends App<{ serverCss: TCss<typeof config> }> { | |
render() { | |
const { Component, pageProps, serverCss } = this.props | |
return ( | |
<Provider css={serverCss || createCss(config)}> |
🧵
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
class AppleSubscription { | |
String productId; | |
int purchaseDate; | |
int expiresDate; | |
bool isActive; | |
AppleSubscription.fromJSON(Map<String, dynamic> json) : | |
productId = json["productId"], | |
purchaseDate = json["purchaseDate"], | |
expiresDate = json["expiresDate"], |