- 14 dkg cukru moučky
- 30 dkg hladké mouky
- 8 dkg mletých ořechů (mandle, lískové, vlašské
- 21 dkg másla
- 1 žloutek
- 2 lžičky kakaa (volitelně)
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
| public class RoundedTimeProvider : TimeProvider { | |
| // Private constructor to prevent direct instantiation | |
| private RoundedTimeProvider() { } | |
| // Factory methods for different precisions | |
| public static RoundedTimeProvider NativePrecision(string? localTimeZoneName = null) => new() { | |
| LocalTimeZoneInternal = localTimeZoneName == null ? TimeZoneInfo.Local : TimeZoneInfo.FindSystemTimeZoneById(localTimeZoneName), | |
| RoundingFunction = x => x, |
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
| /* This is sample code for the following video: https://youtu.be/36p2-gr_iYk | |
| * The following NuGet packages are needed: | |
| * Hangfire | |
| * Hangfire.AspNetCore | |
| * Hangfire.SqlServer | |
| */ | |
| using Hangfire; | |
| var builder = WebApplication.CreateBuilder(args); |
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
| /* [Preview] */ | |
| base_color = "#333"; | |
| text_color = "#ddd"; | |
| /* [Text] */ | |
| // Displayed text | |
| text = "ALTAIR"; | |
| // Displayed text font | |
| text_font = "Arial Rounded MT Bold"; | |
| // Nominal font size |
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
| /* [Tag options] */ | |
| diameter = 30; | |
| thickness = 2; | |
| extrusion = 1; | |
| rim_width = 1.67; | |
| hole_diameter = 4; | |
| /* [Plater options] */ | |
| tag_start_number = 1; | |
| tag_rows = 6; |
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
| <?xml version="1.0" encoding="utf-8"?> | |
| <CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet"> | |
| <CodeSnippet Format="1.0.0"> | |
| <Header> | |
| <Title>Insert input model subclass</Title> | |
| <Author>Michal A. Valasek</Author> | |
| <Shortcut>imodel</Shortcut> | |
| </Header> | |
| <Snippet> | |
| <Code Language="csharp" Delimiter="$"><![CDATA[[BindProperty] |
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
| /**************************************************************************** | |
| * Altair's GoPro mounts library for OpenSCAD version: 1.0.0 (2021-04-16) * | |
| * Copyright (c) Michal A. Valasek, 2021 license: CC BY-NC-SA 4.0 * | |
| * ------------------------------------------------------------------------ * | |
| * www.rider.cz * www.altair.blog * | |
| ****************************************************************************/ | |
| // Demo | |
| $fn = 16; | |
| color("#cc3333") gopro_mount_f(); |
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
| include <A2D.scad>; // https://github.com/ridercz/A2D | |
| assert(a2d_required([1, 6, 0]), "Please upgrade A2D library to version 1.6.0 or higher."); | |
| /* [General] */ | |
| height = 15; | |
| main_hole_size = [35.5, 42.5]; | |
| prop_hole_size = [40, 15]; | |
| wall_thickness = 6; | |
| radius = 3; |
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
| // For more information about this code (in Czech) see | |
| // https://www.altair.blog/2019/11/layered-text | |
| /* [Base] */ | |
| base_color = "#333333"; | |
| base_paddding = 2; | |
| base_height = 2; | |
| /* [Text layers] */ | |
| layer_heights = [1, 1]; |
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
| /* [Parameters] */ | |
| inner_diameter_a = 20; | |
| opening_angle_a = 60; | |
| inner_diameter_b = 22; | |
| opening_angle_b = 110; | |
| height = 20; | |
| wall_thickness = 2.49; // 6 perimeters of 0.4 mm nozzle | |
| /* [Hidden] */ | |
| $fn = 64; |