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 re | |
import yt_dlp | |
def download_wav(url): | |
ydl_opts={} | |
with yt_dlp.YoutubeDL(ydl_opts) as ydl: | |
info_dict = ydl.extract_info(url, download=False) | |
video_title = info_dict['title'] |
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
TODAY’S PICKS | |
- https://media.wired.com/photos/637c22edc16b4f8de1df58cc/16:9/pass/Filmmakers-Can-Tweak-Your-TV-Settings-in-More-Ways-Than-Ever-Gear-GettyImages-1385473818.jpg | |
CHANNEL CHANGER | |
Filmmakers Can Tweak Your TV Settings in More Ways Than Ever | |
BOONE ASHWORTH | |
- https://media.wired.com/photos/627bfd36a4fb038463303e27/16:9/pass/Sony-WH-1000MX5-Gear.jpg | |
LISTEN UP | |
The 18 Best Wireless Headphones for Everyone |
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
version: '3.3' | |
services: | |
blog: | |
image: ghost:4 | |
restart: always | |
ports: | |
- 8080:2368 | |
volumes: | |
- ~/data/content:/var/lib/ghost/content |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 { nord as base } from "react-syntax-highlighter/dist/esm/styles/prism"; | |
/** @type { React.CSSProperties } */ | |
let baseBg = { | |
borderRadius: "0", | |
margin: "0", | |
background: "transparent", | |
overflow: "hidden", | |
textAlign: "left", | |
whiteSpace: "pre", |
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
{ | |
100: '#F0F3FF', | |
300: '#7D8398', | |
400: '#565868', | |
500: '#444753', | |
600: '#40414E', | |
700: '#343540', | |
800: '#202123', | |
} |
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 { Clipboard } from "lucide-react"; | |
import { useState } from "react"; | |
import ReactMarkdown from "react-markdown"; | |
import { Prism as SyntaxHighlighter } from "react-syntax-highlighter"; | |
import dark from "../theme/dark"; | |
export default function Markdown({ markdown }) { | |
return ( | |
<ReactMarkdown | |
children={markdown} |
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
<div className="max-w-3xl mx-auto px-2 py-4"> | |
<button type="button" className="inline-flex items-center px-4 py-2 leading-6 text-sm text-gpt-100 transition ease-in-out duration-150" disabled=""> | |
<svg className="animate-spin -ml-1 mr-3 h-5 w-5 text-white" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24"> | |
<circle className="opacity-25" cx="12" cy="12" r="10" stroke="currentColor" strokeWidth="4"></circle> | |
<path className="opacity-75" fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"></path> | |
</svg> | |
Loading... | |
</button> | |
</div> |