This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CREATE TABLE authors | |
( | |
au_id CHAR(3) NOT NULL, | |
au_fname VARCHAR(15) NOT NULL, | |
au_lname VARCHAR(15) NOT NULL, | |
phone VARCHAR(12) , | |
address VARCHAR(20) , | |
city VARCHAR(15) , | |
state CHAR(2) , | |
zip CHAR(5) , |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
---SQL CODE--- | |
/* Create Our Tables */ | |
CREATE TABLE recgroup | |
( | |
groupname VARCHAR(15) NOT NULL, | |
leadsinger VARCHAR(15), | |
yearformed VARCHAR(20) NOT NULL, | |
genre VARCHAR(15), |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
---JAVA CODE--- | |
/* | |
* To change this license header, choose License Headers in Project Properties. | |
* To change this template file, choose Tools | Templates | |
* and open the template in the editor. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/********************************* | |
COMMENTS - DO NOT COPY THIS CODE | |
Worked in the past, I remember having to do this weird thing to get the pages to save a certain place, but I forget. | |
You may need to adjust "For idx = 1 To numPages" to numPages being the actual pages, as the loop broke on me once. | |
Also, If you navigate to the desired output folder with the "save as" button, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.awt.Color; | |
import java.awt.Graphics2D; | |
import java.awt.RenderingHints; | |
import java.awt.geom.AffineTransform; | |
import java.awt.image.AffineTransformOp; | |
import java.awt.image.BufferedImage; | |
import java.io.File; | |
import java.io.IOException; | |
import java.util.Random; | |
import java.util.Scanner; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#This was done automatically by: https://github.com/glenpike/npm-g_nosudo | |
NPM_PACKAGES="/home/torch2424/.npm-packages" | |
NODE_PATH="$NPM_PACKAGES/lib/node_modules:$NODE_PATH" | |
PATH="$NPM_PACKAGES/bin:$PATH" | |
# Unset manpath so we can inherit from /etc/manpath via the `manpath` | |
# command | |
unset MANPATH # delete if you already modified MANPATH elsewhere in your config | |
MANPATH="$NPM_PACKAGES/share/man:$(manpath)" | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Example image: (TO DO) | |
#!/usr/bin/conky -d -c | |
## .conkyrc configuration | |
alignment top_right | |
background yes | |
border_margin 5 | |
border_width 5 | |
color0 555555 # | |
color1 FCAF3E # zolty |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Nice little guide | |
# http://blog.podrezo.com/making-node-js-work-with-apache/ | |
<VirtualHost *:80> | |
# Reverse proxy from gogs github issue: https://github.com/gogits/gogs/issues/806 | |
# | |
ProxyPreserveHost On | |
ProxyRequests off | |
ProxyPass / http://localhost:PORT/ | |
ProxyPassReverse / http://localhost:PORT/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<h2 style="text-align: center;">PRIVACY POLICY MODEL FOR MOBILE APPLICATIONS</h2> | |
<p></p> | |
<p>This privacy policy governs your use of the software application (“Application”) for mobile devices that was created by Aaron Turner. </p> | |
<h4> </h4> | |
<h4>What information does the Application obtain and how is it used?</h4> | |
<p></p> | |
<p><strong>User Provided Information</strong> </p> | |
<p>The Application obtains the information you provide when you download and register the Application. Registration with us is optional. However, please keep in mind that you may not be able to use some of the features offered by the Application unless you register with us.</p> | |
<p></p> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#/bin/bash | |
# http://stackoverflow.com/questions/26935515/in-linux-how-to-compare-two-directories-by-filename-only-and-get-list-of-result | |
# How to read bash script flags: http://stackoverflow.com/questions/14447406/bash-shell-script-check-for-a-flag-and-grab-its-value | |
if [ "$#" -ne 4 ]; then | |
# Not Enough Params, Show Usage |
OlderNewer