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
library(heatmaply) | |
library(shiny) | |
library(plotly) | |
ui <- fluidPage( | |
titlePanel("Old Faithful Geyser Data"), | |
mainPanel( | |
plotlyOutput(outputId = 'heatmap') | |
) |
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 { useState, useEffect } from 'react' | |
function App() { | |
const [count, setCount] = useState(0) | |
// Should print the latest count a render happens | |
console.log(count) | |
useEffect(() => { | |
console.log('In effect') |
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
--- | |
apiVersion: v1 | |
kind: ConfigMap | |
metadata: | |
name: metricbeat-daemonset-modules | |
namespace: kube-system | |
labels: | |
k8s-app: metricbeat | |
data: | |
system.yml: |- |
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
[ | |
{ | |
"database": "load_planner", | |
"index": "saas-base", | |
"nodes": { | |
"table": "saas_api_user", | |
"schema": "public", | |
"columns": [], | |
"transform": { | |
"rename": { |
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 time | |
import random | |
from elasticapm import Client, instrument | |
from elasticapm.base import get_client as get_apm_client | |
from elasticapm.contrib.celery import register_exception_tracking, register_instrumentation | |
from elasticapm.traces import execution_context | |
from celery import Celery | |
from celery.canvas import group |
OlderNewer