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.9" | |
services: | |
db: | |
image: postgres | |
volumes: | |
- ./data/db:/var/lib/postgresql/data | |
environment: | |
- POSTGRES_DB=postgres | |
- POSTGRES_USER=postgres |
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
using System; | |
namespace YourDomenName | |
{ | |
public readonly struct Optional<TValue> where TValue : notnull | |
{ | |
private readonly TValue? _value; | |
public static Optional<TValue> None { get; } = new (default, false); | |
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
//Author: John Sonmez | https://stackoverflow.com/users/45365 | https://github.com/jsonmez | |
//Source: https://stackoverflow.com/a/7061653/7422280 | |
//GitHub: https://github.com/jsonmez/Defaultable-Dictionary | |
using System; | |
using System.Collections; | |
using System.Collections.Generic; | |
using System.Collections.ObjectModel; | |
namespace DefaultableDictionary |
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
[{ | |
"Modifier": "publicMod", | |
"Name": "Angle", | |
"FullName": "Tetris.Angle", | |
"Namespace": "Tetris", | |
"BaseClass": null, | |
"Attributes": [{ | |
"Modifier": "publicMod", | |
"IsConstant": false, | |
"IsStatic": false, |
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
// ==UserScript== | |
// @name Chan & Idol Sankaku Video Helper | |
// @name:ja Chan & Idol Sankaku Video Helper | |
// @name:ru Chan & Idol Sankaku Video Helper | |
// @namespace https://www.sankakucomplex.com/ | |
// @version 1.1.2 | |
// @description Resize HTML5 Player's width, disable autoplay, show control panel, set volume in 1%. | |
// @description:ja Resize HTML5 Player's width, disable autoplay, show control panel, set volume in 1%. | |
// @description:ru Уменьшает ширину плеера до 1000, отключает автовоспроизведение, показывает панель навигации, устанавливает громкость в 1%. | |
// @author MrModest |
NewerOlder