https://addons.mozilla.org/en-US/firefox/addon/ublock-origin/
Make sure the following options are off:
Disable pre-fetching
https://addons.mozilla.org/en-US/firefox/addon/ublock-origin/
Make sure the following options are off:
Disable pre-fetching| using System.Collections.Generic; | |
| namespace SimpleMarkdown; | |
| class Testing | |
| { | |
| public static void Test() | |
| { | |
| // either use .With or set MarkdownBuilder.DefaultParseMode to globally set it once | |
| string nice = "Hey!".Bold().Link("https://google.com/").With(ParseMode.Markdown); |
| using Telegram.Bot.Types.Enums; | |
| namespace tmdbQueryBot.Markdown; | |
| /// <summary> | |
| /// https://core.telegram.org/bots/api#markdownv2-style | |
| /// </summary> | |
| public static class Generator | |
| { | |
| public static ParseMode OutputMode { get; set; } = ParseMode.Html; |
| #!/usr/bin/env bash | |
| # MIT License | |
| # Copyright (c) 2024 fandingo <reddit.com/u/fandingo> | |
| # Permission is hereby granted, free of charge, to any person obtaining a copy of | |
| # this software and associated documentation files (the "Software"), to deal in | |
| # the Software without restriction, including without limitation the rights to | |
| # use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies |
| version: "3" | |
| services: | |
| traefik: | |
| image: traefik:v2.10 | |
| container_name: 'traefik' | |
| command: | |
| - '--log.level=DEBUG' | |
| - '--api.insecure=true' | |
| - '--api.dashboard=true' |
| using System; | |
| using System.ComponentModel; | |
| using System.IO; | |
| using System.Timers; | |
| namespace NetFileSystemWatcher | |
| { | |
| public enum ConnectionState | |
| { | |
| /// <summary> |
Command Flags
| Flag | Options | Description |
|---|---|---|
-codec:a |
libfaac, libfdk_aac, libvorbis | Audio Codec |
-quality |
best, good, realtime | Video Quality |
-b:a |
128k, 192k, 256k, 320k | Audio Bitrate |
-codec:v |
mpeg4, libx264, libvpx-vp9 | Video Codec |
Have a repository on GitHub? Planning on making a repository on GitHub? This checklist is intended to introduce you to various features that may help you make the most of your GitHub repository with specific recommendations for C# repositories.
These are only suggestions.
They may not be appropriate for all repositories.
They are in no particular order.
Click each item to expand for more information.
| #! /usr/bin/env python3 | |
| import argparse | |
| import re | |
| import subprocess | |
| import sys | |
| from typing import List, NoReturn, Set | |
| PATH_REGEX = re.compile("path\s+(?P<path>[^\s]+)") |