Skip to content

Instantly share code, notes, and snippets.

View iancullinane's full-sized avatar
🐶
cdk playground

Ian Cullinane iancullinane

🐶
cdk playground
  • Massachusetts
  • 06:27 (UTC -04:00)
View GitHub Profile
# Hello, and welcome to makefile basics.
#
# You will learn why `make` is so great, and why, despite its "weird" syntax,
# it is actually a highly expressive, efficient, and powerful way to build
# programs.
#
# Once you're done here, go to
# http://www.gnu.org/software/make/manual/make.html
# to learn SOOOO much more.
@fancyremarker
fancyremarker / .bash_login.jenkins
Last active March 6, 2023 19:21
[A.] Scripts related to Jenkins client setup
# if running bash
if [ -n "$BASH_VERSION" ]; then
# include .bashrc if it exists
if [ -f "$HOME/.bashrc" ]; then
. "$HOME/.bashrc"
fi
fi
@sovcik
sovcik / create_installer_account.sh
Created December 8, 2010 21:33
Script to be passed to Amazon AWS AMI as "user-data". This script creates "installer" account using which you can connect to your instance and perform its customization without necessity to share instance key-pair private key.
#!/bin/bash
###############################################
#
# Script creates system user account, configures it for SSH access
# and gives it "root" access via SUDO.
# Intention is to pass it as "user-data" to Amazon AWS instance, which will
# execute it during its start-up.
#
# Copyright (c) 2010 by Jozef Sovcik, http://www.vanilladesk.com
# Feel free to modify it as necessary.