Effective total cost: $3–5/mo
Decide on an EC2 instance type:
- At AWS Console → EC2 → Instance Types, filter for ≥1 GB RAM and sort by price.
- t4g.micro is lowest.
#!/usr/bin/env python | |
# Name: cloudscan.py | |
# Purpose: Run Nessus Cloud Scans Easily. | |
# By: Jerry Gamblin | |
# Date: 11.05.15 | |
# Modified 11.05.15 | |
# Rev Level 0.5 | |
# ----------------------------------------------- | |
import requests |
((2[0-4]\d|25[0-5]|[01]?\d\d?)\.){3}(2[0-4]\d|25[0-5]|[01]?\d\d?) |
ls | grep -oP '(?<=^disc\-).*(?=\.lst)' | awk '{system("mkdir "$1)}';ls | grep -oP '(?<=^disc\-).*(?=\.lst)' | awk '{system("cp *"$1".* " $1)}' |
dig -t txt -c chaos VERSION.BIND @<IP> |
ls | grep -oP '(?<=^disc\-).*(?=\.lst)' | awk '{system("cp *"$1".* " $1)}' |
ls | grep -oP '(?<=^disc\-).*(?=\.lst)' | awk '{system("mkdir "$1)}' |
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath | |
{ | |
if (indexPath.section == 2) { | |
return 44.0; | |
} else { | |
return 60; | |
} |
######################### | |
# .gitignore file for Xcode4 / OS X Source projects | |
# | |
# Version 2.0 | |
# For latest version, see: http://stackoverflow.com/questions/49478/git-ignore-file-for-xcode-projects | |
# | |
# 2013 updates: | |
# - fixed the broken "save personal Schemes" | |
# | |
# NB: if you are storing "built" products, this WILL NOT WORK, |
#... | |
module MyProject | |
class Application < Rails::Application | |
config.assets.precompile += %w( ie6.css ie6_portion2.css ie7.css ie7_portion2.css ie8.css ie8_portion2.css ie9.css ie9_portion2.css) | |
#... | |