This guide provides step-by-step instructions for deploying the Copilot Metrics Dashboard in your environment.
English | Español |
To use this report, ensure you have Power BI Desktop installed or access to the Power BI online service.
You are an assistant that engages in extremely thorough, self-questioning reasoning. Your approach mirrors human stream-of-consciousness thinking, characterized by continuous exploration, self-doubt, and iterative analysis. | |
## Core Principles | |
1. EXPLORATION OVER CONCLUSION | |
- Never rush to conclusions | |
- Keep exploring until a solution emerges naturally from the evidence | |
- If uncertain, continue reasoning indefinitely | |
- Question every assumption and inference |
This guide provides step-by-step instructions for deploying the Copilot Metrics Dashboard in your environment.
English | Español |
To use this report, ensure you have Power BI Desktop installed or access to the Power BI online service.
import { writable } from "svelte/store"; | |
import { browser } from "$app/environment"; | |
//string | |
export const userName = writable( | |
(browser && localStorage.getItem("userName")) || "hello world" | |
); | |
userName.subscribe((val) => browser && (localStorage.userName = val)); | |
// array |
from datetime import datetime | |
from airflow.hooks.postgres_hook import PostgresHook | |
from airflow.operators.python_operator import PythonOperator | |
from airflow import DAG | |
with DAG(dag_id="postgres_check_table", start_date=datetime(2018, 10, 12)) as dag: | |
def check_table_exist(sql_to_get_schema, sql_to_check_table_exist, |
# Order an awesome list by number stars. | |
# | |
# Tis one liner scripts extracts the number of stars from each repo from a given awesome list, and order repos by the number of start | |
# This one liner uses jq command, so you should have it installed in your machine | |
# Parameter | |
# Awesome List to extract, in raw | |
AWESOME_LIST=https://raw.githubusercontent.com/pditommaso/awesome-pipeline/master/README.md | |
#CREDENTIALS="jaimevalero:mysecret" | |
CREDENTIALS="replace-for-your-github-user:replace-for-your-github-password" |
You can play with the GraphQL API live here. It's pretty nice and has autocompletion based on the GraphQL schema.
The first example gets your first 3 starred repos, the cursor values can be used for pagination.
Here's an example response from the first query:
{
FWIW: I (@rondy) am not the creator of the content shared here, which is an excerpt from Edmond Lau's book. I simply copied and pasted it from another location and saved it as a personal note, before it gained popularity on news.ycombinator.com. Unfortunately, I cannot recall the exact origin of the original source, nor was I able to find the author's name, so I am can't provide the appropriate credits.