I hereby claim:
- I am ridercz on github.
- I am ridercz (https://keybase.io/ridercz) on keybase.
- I have a public key ASAHzRzIu8FjooJ67Avq-ksBi3C0TD8SBxZBOc5A4iB1rwo
To claim this, I am signing this object:
@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 |
/****************************************************************************** | |
* 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; |
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"; |
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; |
/***************************************************************************** | |
** OpenSCAD Example Code by Michal Altair Valasek - https://www.rider.cz ** | |
** Licensed under terms of Creative Commons Attribution License (cc-by) ** | |
** https://creativecommons.org/licenses/by/4.0/ ** | |
*****************************************************************************/ | |
base_width = 40; // X | |
base_depth = 30; // Y | |
base_height = 20; // Z | |
wall = 1; |
I hereby claim:
To claim this, I am signing this object:
using System; | |
using System.Linq; | |
using System.Net; | |
using System.Threading.Tasks; | |
namespace Downloads { | |
class Program { | |
static void Main(string[] args) { | |
var urls = new string[] { |
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
public class Program { | |
public static void Main() { | |
// Test data | |
byte[] prefix = { 0xDE, 0xAD, 0xBE, 0xEF }; // 4 bytes | |
byte[] block1 = { 0xAA, 0xAA, 0xAA, 0xAA }; // 4 bytes | |
byte[] block2 = { 0xBB, 0xBB, 0xBB, 0xBB, 0xBB, 0xBB, 0xBB, 0xBB, }; // 8 bytes |
using System; | |
using System.IO; | |
using System.Linq; | |
using System.Security.Cryptography.X509Certificates; | |
using System.Threading.Tasks; | |
using Certes; | |
using Certes.Acme; | |
using Certes.Pkcs; | |
namespace AcmePOC { |