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); |
https://addons.mozilla.org/en-US/firefox/addon/ublock-origin/
Make sure the following options are off:
Disable pre-fetching| #! /usr/bin/env python3 | |
| """ | |
| Script that helps invoke scrub on individual disks in a multi-disk btrfs | |
| filesystem. | |
| This is helpful for configurations that use erasure coding, (i.e. RAID5/RAID6), | |
| where scrubbing a single disk involves reading data from the other disks. By | |
| default, scrub runs concurrently on every disk in the filesystem, which can | |
| result in huge amounts of I/O for such a configuration. |
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.
| using System; | |
| using System.Linq; | |
| using System.Diagnostics; | |
| using System.Management; | |
| namespace GetProcessList | |
| { | |
| public static class Program | |
| { | |
| static void Main(string[] args) |
| "Provincias": [{ | |
| "id": "1", | |
| "nombre": 'Pinar del Río', | |
| "municipios":["Consolación del Sur", "Guane", "La Palma", "Los Palacios", "Mantua", "Minas de Matahambre", "Pinar del Río", "San Juan y Martínez", "San Luis", "Sandino", "Viñales"] | |
| }, { | |
| "id": "2", | |
| "nombre": 'Artemisa', | |
| "municipios":[ | |
| "Alquízar", "Artemisa", "Bauta", "Caimito", "Guanajay", "Güira de Melena", "Mariel", "San Antonio de los Baños", "Bahía Honda", "San Cristóbal", "Candelaria"] | |
| }, { |
| using System; | |
| using System.Collections.Generic; | |
| namespace SimpleFluentInterface | |
| { | |
| class Program | |
| { | |
| static void Main(string[] args) | |
| { | |
| string s = ListEnrollmentsSelectBuilder.Create() |
| // Compile this code using: csc ipctest.cs /r:Zyan.Communication.dll | |
| // First run — starts server. | |
| // Second run — starts client. | |
| using System; | |
| using System.Linq; | |
| using System.Text; | |
| using Zyan.Communication; | |
| using Zyan.Communication.Protocols.Ipc; |
| <Window x:Class="WpfTraning.MainWindow" | |
| xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" | |
| xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" | |
| xmlns:my="clr-namespace:WpfTraning" | |
| Height="300" Width="400"> | |
| <Window.DataContext> | |
| <my:ViewModel/> | |
| </Window.DataContext> | |
| <Grid> | |
| <Grid.RowDefinitions> |