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
| /***************************************************************************** | |
| * PARAMETRIC MAGNETIC CLASP for protective mask version 1.1.0 (2020-03-30) * | |
| * ------------------------------------------------------------------------- * | |
| * Copyright (c) Michal Altair Valasek, 2020 - Licensed under CC BY-NC-SA * | |
| * www.rider.cz * www.altairis.cz * www.altair.blog * | |
| *****************************************************************************/ | |
| include <A2D.scad>; // https://github.com/ridercz/A2D | |
| assert(a2d_required([1, 5, 0]), "Please upgrade A2D library to version 1.5.0 or higher."); |
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
| // Redukce odsávání pro stolovou pilu ve FutLabu | |
| // (c) Michal A. Valášek, 2020 - CC BY-NC-SA | |
| include <A2D.scad>; // https://github.com/ridercz/A2D | |
| assert(a2d_required([1, 5, 0]), "Please upgrade A2D library to version 1.5.0 or higher."); | |
| /* [Narrow part] */ | |
| narrow_outer_diameter = 64; | |
| narrow_length = 25; |
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
| /**************************************************************************** | |
| * SUCTION CUP HOLDER version 1.0 (2020-02-11) * | |
| * Copyright (c) Michal Altair Valasek, 2020 * | |
| * www.rider.cz | www.altair.blog * | |
| ****************************************************************************/ | |
| /* [General] */ | |
| inner_diameter = 56; | |
| height = 30; | |
| wall_thickness = 1.67; |
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
| @ECHO OFF | |
| REG ADD HKCU\Software\Microsoft\Office\16.0\Outlook\AutoDiscover /v ExcludeExplicitO365Endpoint /t REG_DWORD /d 1 /f /reg:32 | |
| REG ADD HKCU\Software\Policies\Microsoft\Office\16.0\Outlook\AutoDiscover /v ExcludeExplicitO365Endpoint /t REG_DWORD /d 1 /f /reg:32 | |
| REG ADD HKCU\Software\Microsoft\Office\16.0\Outlook\AutoDiscover /v ExcludeExplicitO365Endpoint /t REG_DWORD /d 1 /f /reg:64 | |
| REG ADD HKCU\Software\Policies\Microsoft\Office\16.0\Outlook\AutoDiscover /v ExcludeExplicitO365Endpoint /t REG_DWORD /d 1 /f /reg:64 |
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
| /****************************************************************************** | |
| * WATER MILL TOY version 1.0 (2019-09-24) | |
| * Copyright (c) Michal Altair Valasek, 2019, licensed under CC BY-NC-SA | |
| * www.rider.cz | www.altair.blog | |
| *****************************************************************************/ | |
| /* OSBS:build */ // enable https://github.com/ridercz/OSBS | |
| /* [Common] */ | |
| side_width = 100; |
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; | |
| using System.Drawing; | |
| using System.Drawing.Printing; | |
| using System.IO; | |
| using System.Linq; | |
| using System.Threading; | |
| namespace CardPrinter { | |
| class Program { | |
| private const string FOLDER_PATH = @"D:\Downloads\badges\Avers"; |
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
| intersection() { | |
| rotate_extrude() { | |
| translate([20, 0]) circle(5, $fn = 16); | |
| } | |
| translate([0, 0, -5]) linear_extrude(10) rotate_splice(5, 20, 50); | |
| } | |
| module rotate_splice(count, angle_length, radius) { | |
| for(i = [0:count - 1]) { | |
| angle_begin = 360 / count * i; |