I hereby claim:
- I am pry0cc on github.
- I am pry0cc (https://keybase.io/pry0cc) on keybase.
- I have a public key whose fingerprint is 4F84 4948 8DC6 2D35 F4B1 13D4 A39C 6C67 EEF0 2546
To claim this, I am signing this object:
#!/bin/bash | |
### Usage: chmod +x easy-wordpress.sh && ./easy-wordpress.sh yourapp.yourdomain.com | |
NAME="wordpress" | |
DOMAIN="$1" | |
SUBDOMAIN="www" | |
WWW="$SUBDOMAIN.$DOMAIN" | |
DB="_db" | |
DB_NAME="$NAME$DB" |
"question":"Do you currently employ or work with an organization that manages your IT Security?", | |
"options": [ | |
{ | |
"class":"btn-danger", | |
"value":"No", | |
"score":-10 | |
}, | |
{ | |
"class":"btn-primary", | |
"value":"We contract a company", |
#!/bin/bash | |
# | |
# https://github.com/Nyr/openvpn-install | |
# | |
# Copyright (c) 2013 Nyr. Released under the MIT License. | |
# Detect Debian users running the script with "sh" instead of bash | |
if readlink /proc/$$/exe | grep -q "dash"; then | |
echo "This script needs to be run with bash, not sh" |
#!/bin/bash | |
# | |
# https://github.com/Nyr/openvpn-install | |
# | |
# Copyright (c) 2013 Nyr. Released under the MIT License. | |
# Detect Debian users running the script with "sh" instead of bash | |
if readlink /proc/$$/exe | grep -q "dash"; then | |
echo "This script needs to be run with bash, not sh" |
#!/usr/bin/env ruby | |
require 'mechanize' | |
require 'json' | |
### You need to insert a valid key here. | |
key = "" | |
@agent = Mechanize.new() |
Don't worry, be happy, and turn it off and on again |
#!/bin/bash | |
echo "How many pages of images you would like?" | |
### Sets threshold for loop ### | |
read max_pages | |
echo "At what resolution would you like them." | |
echo "1] 1920x1080" | |
echo "2] 3840x2160" |
I hereby claim:
To claim this, I am signing this object:
#!/usr/bin/env ruby | |
require 'json' | |
require 'mechanize' | |
require 'rubygems' | |
require 'open-uri' | |
puts "Looking up #{ARGV[0]}" | |
agent = Mechanize.new |
import java.util.Scanner; | |
public class JoshuaFlores_Exam4 { | |
public static void main(String[] args){ | |
Scanner input = new Scanner(System.in); | |
int day = 1; | |
int floor = 120; | |
int weeks = 7; | |
int roachsize = 3; | |
double formula = 0.53 * roachsize * 4; |