This is a list of URLs to PostgreSQL EXTENSION repos, listed in alphabetical order of parent repo, with active forks listed under each parent.
⭐️ >= 10 stars
⭐️⭐️ >= 100 stars
⭐️⭐️⭐️ >= 1000 stars
Numbers of stars might not be up-to-date.
| import csv | |
| import json | |
| def extract_messages(data, max_messages): | |
| messages = [] | |
| for message_id, message_data in data["mapping"].items(): | |
| if message_data["message"]: | |
| message = message_data["message"] | |
| content = message.get("content", {}).get("parts", [""])[0] |
| {-# LANGUAGE TypeSynonymInstances #-} | |
| data Dual d = D Float d deriving Show | |
| type Float' = Float | |
| diff :: (Dual Float' -> Dual Float') -> Float -> Float' | |
| diff f x = y' | |
| where D y y' = f (D x 1) | |
| class VectorSpace v where | |
| zero :: v |
this is a rough draft and may be updated with more examples
GitHub was kind enough to grant me swift access to the Copilot test phase despite me @'ing them several hundred times about ICE. I would like to examine it not in terms of productivity, but security. How risky is it to allow an AI to write some or all of your code?
Ultimately, a human being must take responsibility for every line of code that is committed. AI should not be used for "responsibility washing." However, Copilot is a tool, and workers need their tools to be reliable. A carpenter doesn't have to
| # pip install panel==0.12.4 bokeh==2.4.0 holoviews==1.14.6 hvplot==0.7.3 shapely==1.7.1 | |
| # panel serve holoviz_linked_brushing.py --autoreload --show | |
| import hvplot.pandas | |
| import holoviews as hv | |
| import panel as pn | |
| from bokeh.sampledata.iris import flowers | |
| pn.extension(sizing_mode="stretch_width") | |
| hv.extension("bokeh") |
The package that linked you here is now pure ESM. It cannot be require()'d from CommonJS.
This means you have the following choices:
import foo from 'foo' instead of const foo = require('foo') to import the package. You also need to put "type": "module" in your package.json and more. Follow the below guide.await import(…) from CommonJS instead of require(…).| /* | |
| * credit to Dhrumil Shah (@wandcrafting) and Robert Haisfield (@RobertHaisfield) | |
| * for the original concept which was part of their RoamGames submission | |
| * and can be found at: https://www.figma.com/file/5shwLdUCHxSaPNEO7pazbe/ | |
| * | |
| */ | |
| /* ======= OPTIONS ======== */ | |
| /* note: if you change these, reload the page to see the effect */ |
| .monaco-editor .cursors-layer .cursor { | |
| background: transparent; | |
| border-radius: 100%; | |
| width: 30px !important; | |
| background: conic-gradient(yellow 55deg, transparent 0 125deg, yellow 0); | |
| transform: rotateZ(180deg); | |
| animation: eat 0.5s linear infinite; | |
| } | |
| @keyframes eat { |