Skip to content

Instantly share code, notes, and snippets.

View quanticc's full-sized avatar
👽
>:]

Ivan Abarca quanticc

👽
>:]
View GitHub Profile
@quanticc
quanticc / deploymentSettings.ps1
Created June 12, 2021 17:54 — forked from daurrutia/deploymentSettings.ps1
Windows Server AD Deployment Settings on AWS (DNS, Domain join)
<#
.Synopsis
Joins new Windows server to a Windows domain on AWS
.DESCRIPTION
Sets local DNS entries to DNS server(s) by IP (Set-DnsClientServerAddress)
Enables "Use this connection's DNS suffix in DNS registration" (Set-DnsClient)
Appends domain DNS suffix (WMI)
Adds server to domain in specified OU and renames server (Add-Computer)
.EXAMPLE
Log on to new server
@quanticc
quanticc / README.md
Created June 8, 2020 21:20 — forked from hollemawoolpert/README.md
Simple VRP with Google Developer Resources

Binder

Simple VRP with Google Developer Resources¶

Demonstrates a solution for the simple multi-vehicle routing problem (VRP) using a combination of Google libraries and services. Sample depot and shipment locations randomly chosen in the San Antonio, TX metro area. Distances and times are based on Google's road network.

Getting Started

You will need a Google Maps Platform API Key.

Run on binder

@quanticc
quanticc / RateLimiter.java
Created September 1, 2019 08:48
A single file rate limiter in Java.
/*
* Copyright 2016-2019 Robert Winkler and Bohdan Storozhuk
* Copyright 2019 Volkan Yazici
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*