Skip to content

Instantly share code, notes, and snippets.

View inv3r53's full-sized avatar
🎯
Focusing

inv3r53 inv3r53

🎯
Focusing
View GitHub Profile
@inv3r53
inv3r53 / CrmAuth.java
Created March 1, 2024 00:02 — forked from jlattimer/CrmAuth.java
Dynamics CRM Java SOAP only authentication
import java.io.ByteArrayInputStream;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.OutputStreamWriter;
import java.net.HttpURLConnection;
import java.net.URL;
import java.security.MessageDigest;
import java.text.SimpleDateFormat;
import java.util.Calendar;
import java.util.Date;
@inv3r53
inv3r53 / deployment-tool-ansible-puppet-chef-salt.md
Created March 9, 2017 09:31 — forked from jaceklaskowski/deployment-tool-ansible-puppet-chef-salt.md
Choosing a deployment tool - ansible vs puppet vs chef vs salt

Requirements

  • no upfront installation/agents on remote/slave machines - ssh should be enough
  • application components should use third-party software, e.g. HDFS, Spark's cluster, deployed separately
  • configuration templating
  • environment requires/asserts, i.e. we need a JVM in a given version before doing deployment
  • deployment process run from Jenkins

Solution