Skip to content

Instantly share code, notes, and snippets.

@Layoric
Layoric / mix.md
Last active August 2, 2023 01:56 — forked from gistlyn/mix.md
Mix Gists

Available Gists

Projects

  • console-cs {to:'.'} project,C# C# .NET 6 Console App
  • console-fs {to:'.'} project,F# F# .NET 6 Console App
  • console-vb {to:'.'} project,VB VB .NET 6 Console App
  • console-ss {to:'.'} project,S# #Script Console App
  • console-lisp {to:'.'} project,Lisp #Script Lisp Console App
  • init {to:'.'} project,C# Empty .NET 6 ServiceStack App
@Layoric
Layoric / step-by-step-gatling-idea.md
Last active December 12, 2016 23:29 — forked from groovybayo/step-by-step-gatling-idea.md
Gatling: Step by step guide to IntelliJ integration

Step by step guide to setting up IDEA to write gatling simulations

Prerequisites:

Have [SBT plugin][sbt-plugin] installed

Begin

  • [Create a new project][create-project] in IDEA ( File > New Project ...)
    • Make sure you select a maven module
@Layoric
Layoric / ec2-startup.sh
Created September 13, 2016 06:30 — forked from ReedD/ec2-startup.sh
User data for EC2 to set up Docker and Compose (Fig) for ec2-user
#!/bin/sh
export PATH=/usr/local/bin:$PATH;
yum update
yum install docker -y
service docker start
# Docker login notes:
# - For no email, just put one blank space.
# - Also the private repo protocol and version are needed for docker
# to properly setup the .dockercfg file to work with compose